diff --git a/webdriver-ts-results/src/Common.ts b/webdriver-ts-results/src/Common.ts index 8ecab1eb5..a6d719d37 100644 --- a/webdriver-ts-results/src/Common.ts +++ b/webdriver-ts-results/src/Common.ts @@ -109,9 +109,11 @@ export interface Benchmark { } export interface RawResult { - f: string; - b: string; - v: { [k: string]: number[] }; + f: number; + b: { + b: number; + v: { [k: string]: number[] }; + }[]; } export interface ResultValues { diff --git a/webdriver-ts-results/src/reducer.ts b/webdriver-ts-results/src/reducer.ts index 4ea451d89..32eb02fa5 100644 --- a/webdriver-ts-results/src/reducer.ts +++ b/webdriver-ts-results/src/reducer.ts @@ -18,21 +18,24 @@ import { const benchmarks = rawBenchmarks; -const results: Result[] = rawResults.map((result) => { - const values: { [k: string]: ResultValues } = {}; - for (const key of Object.keys(result.v)) { - const r = result.v[key]; - const vals = { - mean: r ? jStat.mean(r) : Number.NaN, - median: r ? jStat.median(r) : Number.NaN, - standardDeviation: r ? jStat.stdev(r, true) : Number.NaN, - values: r, - }; - values[key] = vals; +const results: Result[] = []; +for (let result of rawResults) { + for (let b of result.b) { + const values: { [k: string]: ResultValues } = {}; + for (const key of Object.keys(b.v)) { + const r = b.v[key]; + const vals = { + mean: r ? jStat.mean(r) : Number.NaN, + median: r ? jStat.median(r) : Number.NaN, + standardDeviation: r ? jStat.stdev(r, true) : Number.NaN, + values: r, + }; + values[key] = vals; + } + results.push({ framework: frameworks[result.f].name, benchmark: benchmarks[b.b].id, results: values }); } - - return { framework: result.f, benchmark: result.b, results: values }; -}); +} +console.log(results) const removeKeyedSuffix = (value: string) => { if (value.endsWith("-non-keyed")) return value.slice(0, -10); diff --git a/webdriver-ts-results/src/results.ts b/webdriver-ts-results/src/results.ts index 60796f881..ae22568c7 100644 --- a/webdriver-ts-results/src/results.ts +++ b/webdriver-ts-results/src/results.ts @@ -1,3473 +1,208 @@ import {RawResult} from './Common'; export const results: RawResult[]=[ -{"f":"alpine-v3.12.0-keyed","b":"01_run1k","v":{"total":[103.607,102.254,102.591,103.227,103.918,107.872,106.871,106.214,109.419,107.731,105.471,106.149,106.285,106.437,107.222],"script":[68.895,67.427,67.459,68.012,68.903,69.495,70.204,69.632,71.934,70.247,69.31,69.715,69.909,70.139,70.882],"paint":[34.232,34.351,34.657,34.756,34.555,37.887,36.129,36.05,36.972,37.009,35.676,35.952,35.9,35.832,35.864]}}, -{"f":"alpine-v3.12.0-keyed","b":"02_replace1k","v":{"total":[125.675,126.615,125.484,126.377,127.919,129.478,128.177,126.176,128.629,128.274,128.225,125.961,126.01,127.082,125.97],"script":[90.378,93.931,91.434,92.303,94.46,95.374,95.313,91.875,93.746,95.624,95.219,91.899,92.24,94.267,93.084],"paint":[34.686,32.034,33.518,33.557,32.941,33.576,32.348,33.777,34.37,32.132,32.491,33.538,33.214,32.308,32.375]}}, -{"f":"alpine-v3.12.0-keyed","b":"03_update10th1k_x16","v":{"total":[22.216,22.378,22.123,24.056,22.349,22.594,22.218,22.033,26.049,22.659,22.544,21.581,22.753,21.603,22.277],"script":[5.201,4.837,4.888,4.848,4.539,5.205,4.658,4.766,4.842,4.706,5.021,4.707,5.082,4.914,4.943],"paint":[15.481,15.429,15.773,17.804,16.272,15.652,16.054,15.928,18.977,15.993,15.894,15.488,16.148,14.654,15.047]}}, -{"f":"alpine-v3.12.0-keyed","b":"04_select1k","v":{"total":[36.747,36.725,34.089,33.967,36.758,33.631,36.617,40.243,37.58,35.255,36.84,37.012,36.843,34.378,33.205,36.281,34.098,34.895,33.844,34.453,34.041,33.738,35.621,33.985,32.594],"script":[29.336,30.715,29.819,30.498,29.261,29.576,29.702,32.31,31.515,30.687,31.767,32.738,32.832,30.689,30.392,30.03,30.665,31.569,30.34,30.842,30.665,30.659,31.81,30.607,29.46],"paint":[6.249,5.525,3.252,2.581,5.735,3.154,5.764,6.926,5.134,4.33,3.159,2.848,2.699,2.793,1.61,5.3,2.618,2.44,2.255,2.742,2.007,2.239,2.335,3.186,2.143]}}, -{"f":"alpine-v3.12.0-keyed","b":"05_swap1k","v":{"total":[35.981,33.578,32.108,33.094,33.526,32.616,33.118,34.254,32.774,34.354,34.193,34.011,32.586,33.577,33.461],"script":[12.639,13.3,12.353,13.01,12.881,12.131,12.285,13.715,12.462,12.749,13.315,13.01,12.067,13.359,13.104],"paint":[20.891,19.024,18.384,18.237,18.782,18.475,19.479,18.653,18.096,19.171,18.228,19.154,18.986,18.836,18.748]}}, -{"f":"alpine-v3.12.0-keyed","b":"06_remove-one-1k","v":{"total":[24.704,24.981,24.282,24.219,24.421,24.02,24.072,24.29,24.384,24.221,24.989,23.986,23.892,24.178,26.632],"script":[8.649,8.396,8.369,8.258,8.138,8.205,8.13,8.188,8.043,8.285,8.284,8.011,7.52,8.229,8.308],"paint":[14.779,15.495,14.876,14.947,15.36,14.789,15.169,15.052,15.583,14.7,15.733,15.094,15.343,14.936,17.521]}}, -{"f":"alpine-v3.12.0-keyed","b":"07_create10k","v":{"total":[947.253,941.109,939.441,941.708,936.228,932.425,943.091,943.124,942.337,939.233,935.55,917.989,917.258,948.936,935.121],"script":[583.398,589.414,589.875,588.497,585.727,581.678,591.654,590.298,584.783,588.118,584.933,565.909,567.488,591.836,581.664],"paint":[356.865,344.775,342.423,346.369,343.58,343.82,344.533,345.15,350.67,344.245,343.679,345.22,342.854,350.185,346.631]}}, -{"f":"alpine-v3.12.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[119.145,122.647,118.164,119.258,119.248,119.22,117.88,119.267,118.915,118.937,118.59,118.347,119.077,119.633,119.166],"script":[80.514,83.019,80.482,81.704,80.86,80.402,80.195,82.121,82.268,82.059,81.042,81.228,81.512,80.218,81.814],"paint":[37.652,38.666,36.707,36.581,37.438,37.755,36.718,36.169,35.702,35.925,36.572,36.158,36.582,38.216,36.385]}}, -{"f":"alpine-v3.12.0-keyed","b":"09_clear1k_x8","v":{"total":[53.849,52.829,52.801,52.977,52.313,53.284,52.711,52.509,52.398,51.392,50.835,50.894,51.945,54.888,51.577],"script":[51.64,49.996,50.787,50.783,50.35,51.165,50.668,50.05,50.198,48.761,48.592,49.297,49.762,52.024,49.995],"paint":[1.241,1.585,1.392,2.054,1.303,1.978,1.507,2.314,1.478,1.688,2.104,1.465,1.423,1.461,0.935]}}, -{"f":"alpine-v3.12.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6623735427856445]}}, -{"f":"alpine-v3.12.0-keyed","b":"22_run-memory","v":{"DEFAULT":[13.917808532714844]}}, -{"f":"alpine-v3.12.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[14.029696464538574]}}, -{"f":"alpine-v3.12.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.5181503295898438]}}, -{"f":"alpine-v3.12.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[128.82764625549316]}}, -{"f":"alpine-v3.12.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[43.7734375]}}, -{"f":"alpine-v3.12.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[13.576171875]}}, -{"f":"alpine-v3.12.0-keyed","b":"43_first-paint","v":{"DEFAULT":[76.9]}}, -{"f":"anansi-v0.14.0-keyed","b":"01_run1k","v":{"total":[54.37,55.43,56.193,57.707,56.183,56.953,57.094,57.772,57.703,57.515,56.645,55.272,56.629,55.74,55.919],"script":[19.759,21.275,20.78,22.091,20.708,21.436,21.356,21.475,21.895,20.568,21.452,19.588,21.326,20.794,20.925],"paint":[34.191,33.713,34.993,35.191,35.036,35.101,35.298,35.847,35.378,36.515,34.76,35.231,34.857,34.485,34.516]}}, -{"f":"anansi-v0.14.0-keyed","b":"02_replace1k","v":{"total":[68.309,70.936,66.799,69.121,68.242,67.256,68.034,66.842,69.719,71.703,70.363,69.611,70.722,70.61,67.167],"script":[31.321,33.484,31.323,32.294,30.912,31.389,31.39,30.522,31.107,32.87,31.321,31.293,31.344,31.861,31.393],"paint":[36.524,36.994,35.044,36.383,36.875,35.418,36.167,35.882,38.166,38.364,38.61,37.872,38.918,38.301,35.323]}}, -{"f":"anansi-v0.14.0-keyed","b":"03_update10th1k_x16","v":{"total":[29.64,28.336,27.064,27.541,26.331,28.173,26.2,26.223,29.892,28.155,27.681,26.112,28.009,28.109,26.688],"script":[10.814,10.683,10.268,10.492,10.352,10.573,10.232,9.978,11.308,10.897,10.475,10.372,10.254,10.867,10.557],"paint":[17.208,15.987,14.239,15.68,13.839,16.299,14.139,15.251,16.247,15.175,16.166,14.579,16.414,15.666,14.533]}}, -{"f":"anansi-v0.14.0-keyed","b":"04_select1k","v":{"total":[11.757,11.661,11.334,10.756,11.606,11.365,12.142,11.771,12.381,11.086,11.707,12.404,11.448,10.884,12.287,12.112,11.893,12.422,11.769,12.196,10.866,11.491,12.031,11.763,12.308],"script":[8.831,8.252,8.49,8.184,9.175,9.349,8.705,8.706,8.762,8.71,8.708,8.52,8.716,8.653,9.131,9.339,8.629,8.444,8.992,9.486,8.817,9.015,9.334,9.036,9.196],"paint":[2.055,3.253,1.976,2.441,1.331,1.146,2.948,2.744,2.994,1.361,2.485,3.704,2.164,2.104,2.612,1.978,3.118,3.199,2.629,2.168,1.182,1.902,2.556,1.71,2.96]}}, -{"f":"anansi-v0.14.0-keyed","b":"05_swap1k","v":{"total":[28.251,27.77,27.889,27.715,27.665,28.975,28.476,28.564,27.814,28.114,27.855,27.854,27.706,31.639,27.945],"script":[9.198,9.07,8.692,8.477,9.222,9.094,9.487,8.835,9.018,9.48,9.472,9.52,9.26,10.431,8.921],"paint":[17.208,17.668,17.078,18.463,17.627,17.902,17.887,17.96,17.149,17.064,16.851,17.054,16.834,19.894,17.195]}}, -{"f":"anansi-v0.14.0-keyed","b":"06_remove-one-1k","v":{"total":[109.721,106.542,109.547,107.459,108.409,108.922,107.581,108.452,108.507,107.021,107.658,106.712,107.627,108.471,108.369],"script":[36.156,35.697,37.157,36.196,35.989,35.936,36.8,36.655,36.054,35.529,36.267,35.324,36.528,36.258,35.928],"paint":[72.03,69.551,71.358,69.904,71.151,71.812,69.863,70.3,71.107,70.249,70.176,70.138,69.911,71.025,71.235]}}, -{"f":"anansi-v0.14.0-keyed","b":"07_create10k","v":{"total":[601.542,610.266,600.617,603.254,602.341,599.173,603.699,614.448,618.358,588.921,601.52,593.562,602.83,598.929,595.312],"script":[235.44,243.767,235.048,245.219,238.09,235.784,241.764,247.02,252.06,229.12,234.443,234.636,241.776,234.555,237.406],"paint":[359.296,359.795,358.905,351.093,357.561,356.742,355.255,360.788,359.413,353.163,360.346,352.318,354.397,357.712,351.237]}}, -{"f":"anansi-v0.14.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[71.213,71.177,69.939,69.811,70.625,70.132,69.728,69.887,69.813,70.315,70.936,69.857,70.435,69.26,70.586],"script":[30.618,31.021,30.508,30.347,31.17,29.946,30.153,30.369,30.54,30.414,31.211,30.226,31.218,29.86,30.99],"paint":[39.668,39.256,38.51,38.548,38.573,39.292,38.688,38.607,38.371,38.996,38.834,38.758,38.329,38.513,38.704]}}, -{"f":"anansi-v0.14.0-keyed","b":"09_clear1k_x8","v":{"total":[17.872,18.231,18.403,19.453,17.763,19.551,18.606,17.058,17.776,18.839,19.102,17.119,17.381,19.794,18.485],"script":[15.598,16.649,16.723,16.988,15.585,17.824,16.648,14.75,15.918,17.21,17.234,15.206,15.484,17.153,16.9],"paint":[1.252,1.069,1.202,1.752,1.409,1.62,1.643,1.884,1.283,1.523,1.423,1.624,1.073,2.542,1.481]}}, -{"f":"anansi-v0.14.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.44365596771240234]}}, -{"f":"anansi-v0.14.0-keyed","b":"22_run-memory","v":{"DEFAULT":[6.599560737609863]}}, -{"f":"anansi-v0.14.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.491524696350098]}}, -{"f":"anansi-v0.14.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.826088905334473]}}, -{"f":"anansi-v0.14.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[47.56851291656494]}}, -{"f":"anansi-v0.14.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[257.1123046875]}}, -{"f":"anansi-v0.14.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[73.4833984375]}}, -{"f":"anansi-v0.14.0-keyed","b":"43_first-paint","v":{"DEFAULT":[41.4]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"01_run1k","v":{"total":[44.889,44.044,45.891,44.714,44.762,45.363,46.007,44.772,44.555,44.064,43.682,45.863,43.279,46.656,44.323],"script":[9.657,9.25,10.202,10.053,10.152,10.273,9.926,9.672,9.447,9.099,8.851,10.352,9.091,9.809,9.519],"paint":[34.807,34.372,35.259,34.218,34.184,34.661,35.668,34.669,34.695,34.544,34.397,35.085,33.76,36.417,34.367]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"02_replace1k","v":{"total":[56.046,53.898,55.218,54.382,54.087,54.766,54.793,54.183,55.739,55.801,55.502,54.111,54.119,54.022,54.412],"script":[16.937,16.133,16.407,16.041,15.916,15.959,16.194,16.118,16.365,17.282,16.716,15.929,16.342,16.107,16.423],"paint":[38.636,37.287,38.337,37.847,37.613,38.328,38.11,37.588,38.86,38.067,38.311,37.715,37.305,37.449,37.522]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"03_update10th1k_x16","v":{"total":[17.87,17.233,17.348,19.222,17.287,17.048,17.302,17.731,18.153,18.063,18.623,18,17.482,16.64,17.523],"script":[1.493,1.514,1.842,2.73,1.961,1.35,1.506,2.347,1.752,1.77,2.083,2.309,2.066,1.046,1.961],"paint":[14.521,14.662,13.98,14.989,14.263,14.15,13.659,13.758,13.547,14.546,15.387,13.587,13.737,14.622,13.985]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"04_select1k","v":{"total":[3.655,3.902,3.912,3.523,3.918,3.513,3.41,3.762,4.143,3.86,3.794,4.57,3.951,4.312,3.328,3.939,3.899,4.222,3.747,3.688,4.177,3.823,3.726,4.934,3.939],"script":[1.275,1.542,1.514,1.016,0.631,1.304,0.918,1.053,1.532,1.559,1.284,1.312,1.276,0.916,1.143,1.259,1.065,1.348,1.241,1.737,1.262,1.358,0.676,1.865,1.274],"paint":[2.294,2.266,1.91,1.772,3.192,1.347,2.397,2.257,2.086,2.142,2.417,2.857,2.579,3.299,2.078,1.678,2.739,2.37,1.986,1.86,1.92,1.836,2.961,2.78,1.704]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"05_swap1k","v":{"total":[20.385,19.744,19.835,19.935,21.784,19.465,20.465,19.685,20.039,20.317,20.009,19.967,21.443,19.404,20.202],"script":[1.806,1.117,1.724,1.488,1.658,1.037,1.569,1.265,1.637,1.353,2.097,1.437,1.019,1.313,1.718],"paint":[16.362,17.122,17.369,17.742,18.617,16.954,17.517,16.72,17.2,17.344,16.671,16.709,17.931,16.76,17.492]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"06_remove-one-1k","v":{"total":[15.967,16.079,15.913,15.921,15.746,15.94,15.515,15.751,17.35,15.485,15.87,16.13,15.905,16.018,16.159],"script":[1.097,1.1,1.071,1.07,0.928,1.035,0.775,1.002,0.963,0.777,1.102,0.845,0.965,1.097,1.071],"paint":[14.171,13.966,14.142,14.166,14.125,14.017,13.824,14.054,15.325,13.829,14.079,14.548,14.247,14.163,14.215]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"07_create10k","v":{"total":[452.838,445.978,452.346,445.026,444.628,445.789,447.831,447.077,448.97,442.659,449.835,447.42,445.271,444.143,444.344],"script":[101.376,102.436,106.789,100.778,100.802,101.97,101.889,101.978,101.531,100.493,103.619,103.02,101.567,100.321,101.813],"paint":[344.643,336.735,338.529,337.426,337.127,337.044,338.564,338.004,340.511,335.44,339.473,337.696,336.966,337.138,335.84]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[48.208,47.798,47.636,48.441,49.823,47.285,48.056,48.429,47.914,49.122,48.966,48.752,48.963,49.18,49.652],"script":[8.434,8.597,8.334,8.507,9.049,8.329,8.257,8.294,8.588,8.675,8.442,8.322,8.539,8.538,8.746],"paint":[38.888,38.278,38.41,39.053,39.856,38.077,38.861,39.261,38.424,39.546,39.627,39.537,39.525,39.676,40.028]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"09_clear1k_x8","v":{"total":[24.394,24.243,24.258,24.109,24.933,25.528,24.029,24.091,24.293,25.059,23.381,24.321,23.732,22.652,23.421],"script":[22.561,22.435,22.316,21.888,22.914,23.967,21.873,22.352,22.396,22.999,21.272,22.225,22.066,20.946,21.514],"paint":[0.9,1.705,1.838,2.11,1.766,1.438,1.296,1.43,1.029,1.961,1.661,1.989,0.726,0.764,1.82]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.406661033630371]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"22_run-memory","v":{"DEFAULT":[4.666803359985352]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.87972354888916]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.193966865539551]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[29.7732515335083]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[137.7392578125]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[42.990234375]}}, -{"f":"angular-cf-v17.0.2-keyed","b":"43_first-paint","v":{"DEFAULT":[198.2]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"01_run1k","v":{"total":[45.075,44.244,45.397,45.282,44.363,44.21,44.132,44.033,44.077,44.065,44.139,43.954,44.668,44.07,44.942],"script":[9.1,8.493,9.062,9.393,8.682,8.46,8.615,8.691,8.844,8.845,8.767,8.852,8.729,8.957,9.04],"paint":[35.527,35.309,35.887,35.444,35.25,35.31,35.067,34.915,34.814,34.781,34.937,34.66,35.471,34.687,35.473]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"02_replace1k","v":{"total":[51.087,50.573,50.414,51.577,50.772,51.155,51.606,51.441,51.291,51.273,52.817,50.597,52.015,51.117,50.892],"script":[14.469,14.182,14.528,14.472,14.288,14.167,13.97,14.384,14.599,14.038,15.146,13.541,14.257,14.355,14.129],"paint":[36.16,35.953,35.438,36.669,36.046,36.535,37.172,36.554,36.245,36.794,37.202,36.608,37.318,36.301,36.3]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"03_update10th1k_x16","v":{"total":[17.988,18.64,17.21,17.53,17.25,17.156,16.74,17.931,17.895,17.511,17.338,17.411,17.432,17.636,16.935],"script":[2.41,1.935,1.598,1.855,2.239,2.071,1.333,2.456,1.87,1.595,1.586,1.948,1.507,2.146,1.629],"paint":[13.208,14.484,14.185,13.834,13.79,13.381,14.089,13.849,14.495,14.557,13.408,14.067,14.6,12.435,14.234]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"04_select1k","v":{"total":[3.942,4.52,3.741,3.661,3.666,4.042,4.73,4.004,3.795,3.515,4.143,3.722,4.667,3.756,4.202,4.393,4.589,3.506,3.941,4.287,3.471,3.981,3.298,3.948,4.224],"script":[1.571,1.255,1.014,1.326,0.926,1.484,1.545,0.907,1.291,1.238,1.895,1.709,1.702,0.981,1.555,1.493,1.466,0.987,1.459,1.944,1.549,1.928,1.138,1.519,1.277],"paint":[1.625,3.172,2.303,2.235,2.657,1.564,2.875,2.466,2.406,1.389,1.788,1.915,2.855,1.689,1.979,2.737,1.965,1.621,2.391,2.245,1.823,1.955,2.062,2.195,2.85]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"05_swap1k","v":{"total":[20.642,20.305,21.28,19.827,20.53,20.736,21.671,19.69,19.176,19.505,19.938,19.901,21.285,19.693,19.755],"script":[1.786,1.83,2.315,1.314,1.968,1.701,0.988,1.569,1.062,1.565,1.587,1.378,1.587,1.764,1.489],"paint":[17.123,17.181,16.994,17.462,17.452,17.707,19.322,16.674,17,16.352,17.047,17.372,17.869,16.394,16.723]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"06_remove-one-1k","v":{"total":[15.731,15.979,15.898,15.842,16.295,15.942,15.993,15.854,15.965,15.72,15.876,16.726,16.009,15.969,15.981],"script":[0.908,0.904,1.039,1.019,0.842,1.074,0.917,1.08,0.732,0.899,0.969,0.766,0.993,1.041,1.017],"paint":[13.998,14.371,14.159,14.082,14.589,13.863,14.377,14.093,14.489,14.15,14.193,14.961,14.293,14.227,14.242]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"07_create10k","v":{"total":[441.104,442.817,445.865,446.514,450.346,443.621,440.538,442.616,440.573,445.996,442.315,445.258,450.994,444.511,440.3],"script":[90.95,91.861,92.569,91.628,92.326,92.672,91.7,92.025,91.643,91.749,91.925,93.761,93.204,92.185,91.334],"paint":[343.474,344.112,346.31,348.319,351.077,344.06,342.171,343.902,342.262,347.352,343.761,344.815,351.155,345.668,342.3]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.234,48.215,48.979,48.771,48.865,48.601,48.286,49.051,49.254,49.881,48.443,48.45,48.94,47.534,47.125],"script":[8.768,7.877,8.138,8.112,7.761,7.963,7.786,8.4,7.912,8.258,8.199,8.041,8.261,7.792,7.832],"paint":[39.51,39.375,39.871,39.734,40.158,39.747,39.611,39.725,40.422,40.711,39.333,39.479,39.542,38.812,38.372]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"09_clear1k_x8","v":{"total":[21.865,20.632,22.387,20.846,21.663,24.1,20.885,20.869,21.827,21.1,20.19,21.553,19.467,21.24,21.742],"script":[19.994,18.933,19.752,18.763,19.862,20.832,19.394,18.668,20.286,18.949,18.665,19.586,17.768,18.758,19.199],"paint":[1.24,1.603,2.486,1.993,1.704,2.64,1.388,2.113,1.45,1.931,1.414,1.835,1.597,2.381,2.454]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.9627647399902344]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"22_run-memory","v":{"DEFAULT":[3.5691938400268555]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.726968765258789]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.6038713455200195]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[23.216822624206543]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[105.8125]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[32.48828125]}}, -{"f":"angular-cf-nozone-v17.0.2-keyed","b":"43_first-paint","v":{"DEFAULT":[151.2]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"01_run1k","v":{"total":[44.338,44.53,43.096,44.903,43.607,42.76,42.378,44.063,44.449,46.013,45.162,43.11,45.172,43.544,45.183],"script":[9.596,9.859,9.504,10.097,9.369,8.954,9.127,9.207,9.753,9.785,9.616,9.403,9.525,9.259,9.826],"paint":[34.299,34.168,33.168,34.357,33.82,33.381,32.833,34.423,34.264,35.824,35.044,33.278,35.212,33.86,34.94]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"02_replace1k","v":{"total":[55.033,55.022,54.374,54.626,54.914,54.488,54.313,54.482,55.376,54.803,54.562,54.393,55.126,55.074,55.593],"script":[16.842,16.871,16.245,16.198,16.462,16.42,16.485,16.787,16.9,16.565,16.501,16.453,16.604,16.758,17.125],"paint":[37.658,37.67,37.658,37.945,37.974,37.59,37.34,37.229,38.012,37.769,37.599,37.471,38.029,37.866,37.989]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"03_update10th1k_x16","v":{"total":[18.34,18.269,18.09,17.589,17.401,17.882,17.352,17.893,17.325,18.872,18.234,17.635,18.989,17.685,18.11],"script":[2.279,2.653,2.437,1.956,1.508,3.343,2.75,2.57,2.273,3.029,2.39,2.748,2.391,2.256,2.895],"paint":[14.244,14.698,14.594,12.769,14.149,12.378,13.577,13.735,13.822,14.565,14.183,12.887,13.799,14.414,13.836]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"04_select1k","v":{"total":[5.705,5.239,5.042,6.119,5.405,5.792,5.44,7.018,5.706,5.17,5.337,5.646,5.665,5.315,5.802,6.015,5.773,6.32,6.053,5.886,5.868,5.528,6.108,4.953,5.81],"script":[2.197,2.281,1.899,2.521,2.337,1.516,2.394,3.082,2.522,2.214,2.26,2.175,2.294,2.299,2.511,2.775,2.403,2.897,2.539,2.229,2.713,2.393,2.6,1.56,2.636],"paint":[2.267,2.161,2.484,2.453,2.132,3.228,2.905,3.774,3.029,2.79,2.235,2.784,2.89,2.878,3.069,3,3.087,2.694,2.998,2.791,1.886,2.997,3.376,2.139,3.038]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"05_swap1k","v":{"total":[21.488,20.328,19.373,20.596,21.248,19.4,19.407,19.825,19.46,19.073,18.94,19.953,19.717,18.778,19.91],"script":[1.828,1.121,1.213,1.282,1.41,1.779,1.283,0.999,1.652,1.535,1.115,1.412,1.425,1.248,1.778],"paint":[18.094,18.095,16.484,18.079,17.965,16.481,16.578,17.062,16.762,16.214,15.993,17.128,17.298,15.852,16.919]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"06_remove-one-1k","v":{"total":[17.05,17.554,16.911,18.388,16.967,17.557,17.677,17.257,18.104,19.322,18.696,18.103,18.238,18.581,17.956],"script":[1.297,1.519,1.343,1.318,1.429,1.345,1.627,1.329,1.375,1.599,1.518,1.349,1.456,1.574,1.198],"paint":[14.985,14.97,14.767,16.231,14.776,15.217,15.013,15,15.869,16.6,16.302,15.659,15.302,15.993,16]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"07_create10k","v":{"total":[450.625,451.611,448.179,452.474,450.697,453.732,450.589,454.596,451.244,450.347,457.048,459.099,452.868,449.202,450.091],"script":[103.289,104.552,103.482,104.236,104.686,104.126,103.86,106.387,104.252,105.157,110.143,111.193,103.312,103.209,104.272],"paint":[340.449,340.297,337.759,341.452,339.264,342.326,340.026,341.478,340.316,338.226,340.02,341.026,342.673,339.129,338.95]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.739,49.65,50.588,49.052,50.957,49.469,49.914,48.677,51.271,48.577,49.4,50.003,49.417,49.547,51.37],"script":[9.083,8.901,9.032,8.898,9.826,9.21,9.111,9.111,9.782,9.059,8.991,9.368,9.065,9.058,9.363],"paint":[39.765,39.847,40.633,39.23,40.167,39.355,39.895,38.659,40.55,38.615,39.504,39.716,39.34,39.579,41.049]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"09_clear1k_x8","v":{"total":[24.017,24.562,24.413,24.533,23.785,24.229,24.832,23.381,23.739,24.368,25.021,23.874,24.595,25.284,23.886],"script":[21.488,22.673,22.019,22.904,21.712,22.236,22.483,21.237,21.644,22.776,23.066,21.868,22.521,23.401,22.279],"paint":[1.799,1.778,2.025,1.523,1.963,1.831,1.481,2.051,1.364,0.702,1.323,1.529,1.677,1.782,1.052]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.4137916564941406]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"22_run-memory","v":{"DEFAULT":[4.768803596496582]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.942601203918457]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.2640390396118164]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[29.996676445007324]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[139.2041015625]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[43.427734375]}}, -{"f":"angular-cf-signals-v17.0.2-keyed","b":"43_first-paint","v":{"DEFAULT":[198.2]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"01_run1k","v":{"total":[45.351,47.489,45.138,46.255,45.693,45.588,45.233,47.09,45.479,45.824,44.418,46.041,45.782,45.516,45.56],"script":[10.089,11.08,10.589,10.213,10.508,10.72,10.664,11.01,10.352,10.386,10.744,10.524,10.525,10.461,11.06],"paint":[34.815,35.984,34.111,35.331,34.747,34.425,34.116,35.637,34.692,35.011,33.245,35.086,34.829,34.633,34.09]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"02_replace1k","v":{"total":[54.622,55.235,54.833,54.493,53.816,54.999,55.274,56.328,55.556,54.518,54.796,54.865,54.954,54.036,55.254],"script":[16.526,17.301,16.5,16.442,16.597,16.907,16.425,16.382,16.509,16.48,16.625,16.752,16.401,16.365,16.274],"paint":[37.609,37.45,37.861,37.571,36.752,37.622,38.358,39.465,38.554,37.571,37.707,37.624,38.083,37.188,38.501]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"03_update10th1k_x16","v":{"total":[18.643,17.032,19.926,17.517,17.657,17.904,17.794,17.376,16.736,19.016,18.256,18.711,16.848,17.172,17.576],"script":[1.674,1.832,2.067,2.271,2.154,1.238,1.215,1.648,1.762,2.113,2.193,2.013,1.547,1.867,2.096],"paint":[16.019,14.35,16.122,13.926,14.553,15.283,14.986,14.547,13.43,15.507,14.411,15.17,13.675,14.126,13.854]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"04_select1k","v":{"total":[3.901,4.295,3.947,3.664,3.85,4.19,4.366,4.078,4.313,4.373,3.889,3.689,4.141,4.171,3.676,4.937,4.295,3.7,3.935,3.85,3.752,3.884,3.884,3.484,3.495],"script":[1.564,1.701,1.244,1.391,1.263,1.46,1.781,1.467,1.574,1.713,0.773,0.947,1.151,1.523,1.41,1.58,2.041,1.188,1.848,1.402,1.042,1.092,1.4,0.963,0.964],"paint":[2.244,1.839,2.242,1.804,2.492,1.958,2.487,2.518,2.631,1.252,2.845,1.712,1.876,2.56,1.624,2.8,1.67,2.408,1.988,2.355,2.419,2.701,2.388,2.115,2.434]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"05_swap1k","v":{"total":[174.157,168.981,171.799,170.208,168.986,169.787,170.059,168.426,169.835,170.015,169.497,170.325,175.266,174.904,173.727],"script":[28.343,27.889,28.507,27.344,27.634,27.999,28.232,28.244,27.557,28.501,27.321,27.691,28.203,29.174,28.114],"paint":[143.746,139.476,142.502,140.769,139.352,140.182,140.075,138.317,140.208,138.923,139.868,141.024,144.123,144.593,143.242]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"06_remove-one-1k","v":{"total":[16.634,16.224,16.03,16.039,16.318,16.313,16.863,16.025,15.948,15.961,16.07,15.92,16.029,15.943,16.03],"script":[1.047,1.131,0.938,0.84,0.928,0.84,1.128,1.017,0.779,0.92,0.924,1.061,0.909,1.102,1.096],"paint":[14.146,14.386,14.421,14.246,14.706,14.691,14.746,14.306,14.547,14.368,14.391,13.896,14.143,13.847,13.913]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"07_create10k","v":{"total":[454.042,452.019,451.221,453.252,456.209,451.414,448.799,450.313,456.832,449.676,452.098,451.186,449.079,450.811,457.115],"script":[102.658,103.97,103.924,108.447,108.995,107.089,103.592,107.938,105.998,103.14,106.055,103.758,103.931,102.341,110.041],"paint":[344.446,341.028,340.398,338.106,340.476,337.561,338.224,335.612,343.933,339.619,339.111,340.056,338.174,341.41,340.333]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.544,48.672,49.648,50.894,49.101,50.479,48.394,50.022,50.406,49.054,49.016,49.454,51.544,49.743,49.673],"script":[9.136,8.88,8.96,9.401,8.922,9.387,8.997,9.213,9.698,8.984,8.996,9.344,9.751,9.044,9.304],"paint":[40.5,38.895,39.845,40.585,39.289,40.182,38.503,39.914,39.777,39.165,39.113,39.193,40.845,39.737,39.453]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"09_clear1k_x8","v":{"total":[26.718,25.931,25.559,26.223,25.935,25.651,25.301,26.114,26.098,27.077,26.419,27.16,27.411,27.063,26.949],"script":[24.49,23.972,23.403,24.512,23.997,23.77,24.027,24.602,24.324,25.023,24.245,25.154,24.329,24.301,24.563],"paint":[2.092,1.342,2.032,1.274,1.833,1.769,0.823,1.422,0.825,1.939,0.769,1.737,1.429,2.644,1.894]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.4721183776855469]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"22_run-memory","v":{"DEFAULT":[4.920070648193359]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.068483352661133]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.473480224609375]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.3015079498291]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[147.0751953125]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[45.1875]}}, -{"f":"angular-ngfor-v17.0.2-keyed","b":"43_first-paint","v":{"DEFAULT":[205.4]}}, -{"f":"apprun-v3.30.2-keyed","b":"01_run1k","v":{"total":[46.945,47.197,44.759,46.455,44.185,44.403,45.68,46.573,44.763,45.976,46.242,46.308,46.251,47.388,45.505],"script":[11.194,11.406,10.306,11.982,10.153,10.423,11.09,11.147,10.752,11.114,10.928,10.866,11.133,11.248,10.476],"paint":[35.316,35.339,33.996,34.001,33.594,33.557,34.122,35,33.577,34.42,34.882,35.028,34.693,35.684,34.602]}}, -{"f":"apprun-v3.30.2-keyed","b":"02_replace1k","v":{"total":[52.614,52.562,54.222,53.926,54.324,53.719,53.767,55.216,55.673,52.451,53.978,53.771,54.515,54.91,54.586],"script":[17.004,16.454,17.162,17.665,16.938,17.447,17.6,17.689,17.872,16.63,17.663,17.431,17.824,18.399,16.461],"paint":[35.147,35.64,36.585,35.816,36.943,35.822,35.703,37.071,37.311,35.368,35.862,35.896,36.238,36.037,37.697]}}, -{"f":"apprun-v3.30.2-keyed","b":"03_update10th1k_x16","v":{"total":[56.94,56.19,56.117,56.26,55.488,55.212,54.329,55.851,56.149,56.551,56.219,53.907,55.096,59.647,55.857],"script":[40.534,39.236,39.405,38.852,39.153,37.988,37.517,39.227,39.247,38.329,39.287,37.57,38.194,40.844,37.98],"paint":[14.739,15.5,14.671,16.045,14.385,15.751,15.361,15.283,15.384,16.766,14.912,14.797,15.747,16.556,15.933]}}, -{"f":"apprun-v3.30.2-keyed","b":"04_select1k","v":{"total":[40.856,39.771,40.844,39.658,41.599,40.51,38.665,38.869,39.828,40.238,38.752,40.711,39.721,39.585,39.501,40.783,38.283,38.386,38.993,40.453,39.169,36.604,40.17,40.421,41.711],"script":[36.804,36.451,37.021,36.1,37.379,37.067,34.386,35.047,35.568,36.296,34.79,36.623,35.716,35.189,35.271,36.803,34.857,35.227,34.314,36.804,35.846,32.876,36.507,36.644,38.335],"paint":[2.588,1.974,2.749,2.252,3.097,2.727,2.48,2.618,3.6,3.102,3.335,2.936,2.776,2.244,3.235,2.964,2.404,2.067,3.454,2.679,2.208,2.732,2.538,2.762,2.653]}}, -{"f":"apprun-v3.30.2-keyed","b":"05_swap1k","v":{"total":[55.499,56.166,56.161,53.612,53.7,56.018,55.134,54.609,54.858,55.045,54.683,55.379,54.721,54.675,53.836],"script":[36.206,36.62,37.415,34.798,34.414,36.298,34.552,35.179,35.553,36.61,35.366,36.147,35.801,34.921,35.079],"paint":[17.593,18.428,17.715,17.749,17.026,18.315,19.199,18.113,17.693,16.59,17.438,17.729,16.693,17.727,17.513]}}, -{"f":"apprun-v3.30.2-keyed","b":"06_remove-one-1k","v":{"total":[123.214,122.717,122.118,119.768,120.84,120.596,122.006,119.961,120.416,122.904,120.289,121.156,121.141,121.898,124.057],"script":[49.069,51.255,49.751,48.157,48.558,48.413,50.533,48.534,48.393,50.876,48.471,49.006,49.63,49.831,49.034],"paint":[72.738,70.582,71.107,70.52,70.722,70.8,70.009,70.516,70.793,71.089,70.685,70.837,70.289,70.655,73.83]}}, -{"f":"apprun-v3.30.2-keyed","b":"07_create10k","v":{"total":[488.535,491.712,488.045,474.012,489.716,488.971,491.376,488.359,488.716,489.745,497.135,488.893,491.193,492.703,473.195],"script":[138.271,139.831,140.214,139.885,138.918,139.474,141.169,138.372,139.613,142.415,142.926,141.059,140.275,140.685,139.697],"paint":[343.453,344.833,340.921,327.522,344.106,342.791,343.342,343.362,342.214,340.602,347.384,340.787,343.713,345.185,326.803]}}, -{"f":"apprun-v3.30.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[62.883,62.86,62.774,62.146,62.831,62.503,63.179,62.604,64.196,62.343,63.14,60.534,62.578,63.256,62.497],"script":[21.9,21.738,21.252,21.057,22.373,22.07,22.61,22.398,23.129,21.883,22.621,20.714,21.49,22.215,21.886],"paint":[40.066,40.232,40.527,40.196,39.542,39.499,39.678,39.306,40.182,39.561,39.625,38.925,40.165,40.033,39.699]}}, -{"f":"apprun-v3.30.2-keyed","b":"09_clear1k_x8","v":{"total":[16.929,15.456,16.359,18.261,15.419,16.897,15.575,17.006,15.458,17.338,16.53,16.738,17.371,16,15.374],"script":[15.169,13.507,14.679,16.407,13.438,15.548,13.486,15.215,13.615,15.468,14.636,14.947,15.563,14.619,13.573],"paint":[1.659,1.862,0.783,0.883,0.96,0.867,1.838,0.988,0.904,1.788,1.616,0.907,1.718,0.357,1.706]}}, -{"f":"apprun-v3.30.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5494728088378906]}}, -{"f":"apprun-v3.30.2-keyed","b":"22_run-memory","v":{"DEFAULT":[2.548704147338867]}}, -{"f":"apprun-v3.30.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.8187255859375]}}, -{"f":"apprun-v3.30.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[8.768355369567871]}}, -{"f":"apprun-v3.30.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[17.974596977233887]}}, -{"f":"apprun-v3.30.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[18.1806640625]}}, -{"f":"apprun-v3.30.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.8984375]}}, -{"f":"apprun-v3.30.2-keyed","b":"43_first-paint","v":{"DEFAULT":[66]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"01_run1k","v":{"total":[99.724,98.562,98.513,99.406,98.8,98.872,98.104,98.266,96.954,99.051,97.279,100.345,99.579,100.262,99.873],"script":[62.441,61.203,60.188,61.019,61.544,61.537,60.545,60.268,60.214,61.774,60.57,62.729,61.405,62.299,61.917],"paint":[37.075,37.153,38.114,38.19,37.042,37.124,37.346,37.797,36.533,37.075,36.515,37.407,37.961,37.74,37.739]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"02_replace1k","v":{"total":[105.86,105.103,105.06,105.072,95.845,106.95,103.059,104.882,105.531,105.31,103.777,106.748,103.591,107.035,103.818],"script":[66.528,67.001,66.657,70.52,60.457,67.614,65.439,66.489,66.75,66.419,65.879,66.61,65.42,67.207,65.737],"paint":[39.106,37.885,38.158,34.182,35.169,38.926,37.392,38.167,38.55,38.681,37.672,39.933,37.962,39.443,37.854]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"03_update10th1k_x16","v":{"total":[45.739,50.779,50.558,51.948,51.326,50.778,49.147,47.62,47.968,48.056,49.397,47,49.908,47.781,47.714],"script":[29.643,31.654,31.91,32.855,33.377,32.015,33.132,31.34,30.871,32.056,30.716,30.249,31.828,31.517,31.436],"paint":[15.916,16.913,17.429,18.625,17.638,17.837,15.86,16.138,16.105,15.86,16.881,16.604,17.382,15.992,16.129]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"04_select1k","v":{"total":[14.503,13.899,16.42,13.792,11.266,13.962,13.833,15.109,15.449,14.222,13.865,14.569,14.232,12.379,16.683,15.095,13.749,17.046,13.97,14.266,14.203,15.711,14.225,14.307,13.973],"script":[8.258,8.219,8.627,8.103,8.271,8.122,8.389,8.822,9.482,7.784,9.186,8.65,8.156,7.113,9.501,8.817,9.037,8.58,7.54,8.545,8.175,9.601,8.435,7.683,8.517],"paint":[4.33,4.849,4.463,4.444,2.783,3.612,4.428,4.209,4.81,4.251,3.153,3.688,4.871,5.071,5.694,5.768,4.389,7.095,3.692,3.691,5.152,4.29,5.284,4.637,3.236]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"05_swap1k","v":{"total":[54.881,52.954,53.218,53.77,53.799,54.857,53.326,54.655,54.722,54.884,55.946,53.493,54.874,55.034,52.826],"script":[32.699,30.633,30.925,30.924,31.804,32.537,31.393,33.198,32.476,33.263,31.569,33.269,32.897,31.474,30.821],"paint":[21.02,20.936,20.575,20.762,19.831,19.212,20.432,20.761,21.789,20.324,22.415,20.055,18.878,22.217,21.198]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"06_remove-one-1k","v":{"total":[97.799,98.343,100.912,98.808,97.22,96.172,94.522,96.509,99.162,98.637,95.581,96.137,96.414,98.668,96.844],"script":[22.516,22.031,21.606,21.278,22.094,22.126,21.171,21.953,22.169,22.373,21.53,21.506,22.15,21.777,21.112],"paint":[73.762,73.838,77.464,76.221,73.992,72.343,71.786,73.005,74.972,74.092,73.027,73.533,73.004,75.377,74.467]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"07_create10k","v":{"total":[824.702,836.585,830.455,823.319,818.271,826.739,835.293,828.248,825.699,835.859,831.548,819.188,834.022,826.018,828.963],"script":[459.854,469.67,466.55,455.589,454.812,461.888,467.273,466.151,460.556,467.847,463.116,454.898,469.019,458.375,463.758],"paint":[361.055,363.162,359.956,364.128,359.469,361.013,364.347,358.256,361.293,364.174,364.408,360.434,361.254,364.042,361.23]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"08_create1k-after1k_x2","v":{"total":[110.172,112.843,110.834,113.288,111.261,114.296,113.195,113.133,114.511,113.028,111.573,113.969,112.777,108.387,111.683],"script":[71.36,74.728,73.05,75.006,73.486,73.615,75.216,73.265,73.511,74.326,73.275,74.638,73.347,70.11,73.338],"paint":[38.38,37.732,37.393,37.886,37.391,40.172,37.591,39.482,40.362,38.321,37.901,38.682,39.03,37.871,37.974]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"09_clear1k_x8","v":{"total":[25.702,21.772,19.17,24.947,23.432,25.13,22.046,21.394,23.005,21.755,25.714,25.376,22.482,22.677,25.336],"script":[22.458,19.489,17.06,20.557,18.835,20.442,20.664,19.354,18.226,19.49,20.897,19.769,20.983,18.093,20.528],"paint":[2.208,2.204,2.044,2.894,3.407,3.638,1.311,1.956,4.154,1.456,2.634,2.859,1.42,3.385,3.233]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5060567855834961]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"22_run-memory","v":{"DEFAULT":[10.99211597442627]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"23_update5-memory","v":{"DEFAULT":[10.883932113647461]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[50.931705474853516]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[101.12662506103516]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11.599609375]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.2685546875]}}, -{"f":"arrowjs-v1.0.0-alpha.9-keyed","b":"43_first-paint","v":{"DEFAULT":[74.6]}}, -{"f":"art-v1.1.0-keyed","b":"01_run1k","v":{"total":[43.849,42.663,42.954,44.531,43.57,44.537,42.966,43.008,43.842,44.837,45.387,45.445,44.129,43.043,43.964],"script":[10.347,9.894,9.845,11.007,10.037,10.287,9.884,10.028,10.561,10.126,10.751,10.71,9.841,10.046,10.778],"paint":[33.333,32.612,32.916,33.37,33.347,34.093,32.839,32.819,33.116,34.551,34.452,34.575,34.129,32.835,33.013]}}, -{"f":"art-v1.1.0-keyed","b":"02_replace1k","v":{"total":[46.91,46.398,47.373,45.65,47.468,45.486,46.653,46.302,45.123,45.472,46.961,46.367,46.896,47.189,47.334],"script":[12.605,12.015,12.308,11.64,11.777,11.625,12.144,11.658,11.595,11.659,11.645,11.806,11.877,11.985,12.078],"paint":[34.12,34.171,34.874,33.813,34.787,33.693,34.331,34.445,33.343,33.598,35.111,34.373,34.809,35.016,35.066]}}, -{"f":"art-v1.1.0-keyed","b":"03_update10th1k_x16","v":{"total":[22.001,20.838,20.616,21.881,20.964,20.706,21.342,21.803,21.594,22.705,22.569,23.873,21.972,24.267,20.918],"script":[6.955,6.715,6.302,6.837,7.281,6.779,6.841,7.069,6.22,6.842,6.27,6.868,7.956,7.242,6.048],"paint":[14.736,13.492,14.182,14.901,13.536,13.799,13.715,13.909,14.384,15.352,14.158,16.149,13.289,16.758,14.074]}}, -{"f":"art-v1.1.0-keyed","b":"04_select1k","v":{"total":[10.831,8.432,5.286,8.717,8.492,8.928,5.243,9.157,10.491,5.558,5.32,10.454,7.63,11.1,5.99,11.863,8.962,5.334,6.541,9.437,14.932,4.825,8.441,9.018,6.09],"script":[3.976,3.932,2.316,2.881,2.804,3.886,2.502,3.161,3.939,2.872,2.782,3.254,2.567,3.494,3.146,4.426,4.532,2.274,2.647,3.322,3.782,2.75,2.593,3.005,2.97],"paint":[4.51,3.018,1.672,4.619,3.854,4.116,2.595,4.028,3.359,1.852,1.846,4.185,2.554,4.086,2.699,3.462,5.159,2.745,1.827,3.394,3.999,1.937,2.527,4.689,2.532]}}, -{"f":"art-v1.1.0-keyed","b":"05_swap1k","v":{"total":[23.643,25.909,20.696,22.207,40.62,39.413,20.945,42.628,25.456,20.925,20.076,27.581,45.43,43.651,21.457],"script":[3.642,2.089,2.195,3.349,1.817,2.719,1.903,2.394,2.134,3.062,2.361,2.587,3.467,2.21,3.347],"paint":[17.919,19.768,16.981,16.963,17.058,17.136,16.888,20.047,19.74,17.696,17.586,22.162,19.987,20.398,17.266]}}, -{"f":"art-v1.1.0-keyed","b":"06_remove-one-1k","v":{"total":[18.579,16.769,17.147,16.663,17.681,17.452,16.71,16.632,17.193,16.152,16.102,17.5,16.534,18.535,16.652],"script":[1.341,1.071,1.3,1.05,1.263,1.571,1.612,1.267,1.347,1.266,1.338,0.996,1.323,1.309,1.074],"paint":[15.272,14.408,14.829,14.34,14.776,14.637,13.811,14.13,14.601,14.191,14.135,14.929,14.071,15.45,14.137]}}, -{"f":"art-v1.1.0-keyed","b":"07_create10k","v":{"total":[434.699,431.927,433.205,430.933,427.767,431.417,428.045,437.208,434.271,431.459,433.923,435.237,429.833,432.7,431.701],"script":[101.128,101.361,101.156,100.913,100.423,97.597,98.698,102.503,101.356,99.078,102.049,102.371,99.638,100.69,99.678],"paint":[331.377,328.32,329.896,327.725,325.237,331.675,327.19,332.334,330.777,330.151,329.755,330.614,328.046,329.914,329.905]}}, -{"f":"art-v1.1.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.731,48.939,50.38,48.779,50.527,49.612,49.152,48.796,49.552,48.864,48.982,48.71,49.967,66.23,49.341],"script":[9.734,9.755,10.711,9.937,9.798,10.367,9.842,9.839,9.845,10.032,10.288,9.647,9.795,9.726,9.85],"paint":[39.723,38.87,39.362,38.558,40.413,38.936,39.005,38.652,38.911,38.417,38.384,38.752,39.894,38.64,39.203]}}, -{"f":"art-v1.1.0-keyed","b":"09_clear1k_x8","v":{"total":[11.937,12.324,12.463,12.281,12.487,16.311,14.669,14.81,12.508,15.301,12.277,12.387,15.504,12.376,12.4],"script":[10.87,10.141,10.592,9.828,9.399,11.507,10.664,11.292,10.048,11.019,10.958,11.023,11.082,10.988,9.928],"paint":[0.988,0.956,0.48,1.608,1.52,2.729,1.683,2.402,1.84,4.038,0.726,1.275,2.889,1.303,2.382]}}, -{"f":"art-v1.1.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5035724639892578]}}, -{"f":"art-v1.1.0-keyed","b":"22_run-memory","v":{"DEFAULT":[3.7564563751220703]}}, -{"f":"art-v1.1.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.8595104217529297]}}, -{"f":"art-v1.1.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.770045280456543]}}, -{"f":"art-v1.1.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.93278980255127]}}, -{"f":"art-v1.1.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[14.3369140625]}}, -{"f":"art-v1.1.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.646484375]}}, -{"f":"art-v1.1.0-keyed","b":"43_first-paint","v":{"DEFAULT":[48.5]}}, -{"f":"better-react-v1.1.3-keyed","b":"01_run1k","v":{"total":[61.77,61.509,60.838,62.542,61.001,63.572,61.572,60.454,62.332,60.534,61.519,61.049,62.441,62.208,61.633],"script":[24.53,24.15,24.589,24.028,24.371,26.3,23.925,23.218,24.905,24.08,25.053,23.809,24.76,25.019,24.724],"paint":[36.945,37.064,35.981,36.808,36.368,36.9,37.378,36.972,37.02,36.194,36.102,36.913,36.332,36.807,36.541]}}, -{"f":"better-react-v1.1.3-keyed","b":"02_replace1k","v":{"total":[67.267,66.664,66.058,68.501,66.905,66.174,66.426,67.094,66.681,66.89,66.628,65.553,66.348,67.719,66.562],"script":[29.732,28.933,29.083,29.763,29.635,29.071,29.069,29.11,28.671,29.494,28.925,27.933,29.023,29.086,28.831],"paint":[37.093,37.166,36.716,38.233,36.816,36.834,36.886,37.476,37.486,36.947,37.201,37.076,37.06,38.085,37.209]}}, -{"f":"better-react-v1.1.3-keyed","b":"03_update10th1k_x16","v":{"total":[63.55,64.287,63.11,64.334,63.7,63.34,63.823,64.909,62.924,63.769,63.589,62.794,64.824,63.816,63.782],"script":[45.69,44.949,45.134,45.557,44.501,45.244,45.741,47.455,44.932,45.736,46.072,45.412,46.58,45.641,45.064],"paint":[17.415,17.989,15.89,17.5,18.201,15.528,16.32,17.015,17.415,16.021,14.839,15.76,17.624,16.566,17.365]}}, -{"f":"better-react-v1.1.3-keyed","b":"04_select1k","v":{"total":[42.431,42.712,41.213,40,39.934,38.9,38.6,39.669,40.732,40.296,42.134,40.48,41.34,43.101,40.918,42.318,40.123,41.159,41.511,41.68,42.365,40.377,42.039,43.534,41.322],"script":[35.155,36.81,35.191,34.537,34.271,32.61,32.425,33.667,34.394,34.366,36.813,34.251,34.967,37.231,33.77,36.677,33.93,34.469,34.68,35.458,35.293,34.366,33.955,37.697,35.283],"paint":[4.661,4.214,5.079,4.17,3.84,4.416,4.828,3.89,4.647,4.475,4.595,3.963,3.724,3.851,5.463,3.251,3.554,4.522,4.433,4.973,4.002,4.603,5.154,4.577,5.182]}}, -{"f":"better-react-v1.1.3-keyed","b":"05_swap1k","v":{"total":[194.538,193.566,190.601,191.924,193.702,191.75,195.894,193.569,195.197,194.722,195.19,195.06,195.728,195.158,193.254],"script":[50.337,49.976,50.675,50.327,50.32,49.252,52.349,53.456,51.355,50.594,50.886,50.738,49.148,50.639,51.252],"paint":[142.713,142.958,138.104,139.503,141.328,139.179,141.355,138.39,142.339,141.606,143.538,142.551,143.53,142.95,141.499]}}, -{"f":"better-react-v1.1.3-keyed","b":"06_remove-one-1k","v":{"total":[35.433,35.21,35.513,35.343,34.975,35.119,34.532,35.332,35.553,35.984,35.963,36.654,35.514,34.894,35.915],"script":[16.99,17.334,17.571,17.399,17.537,17.493,17.313,17.83,17.533,17.738,17.178,17.673,17.395,17.378,18.036],"paint":[16.342,16.279,15.711,16.365,16.441,15.738,16.189,15.51,16.057,15.805,16.036,16.877,16.519,16.344,16.321]}}, -{"f":"better-react-v1.1.3-keyed","b":"07_create10k","v":{"total":[563.178,557.531,559.658,559.331,556.443,559.141,561.367,557.649,554.091,555.741,554.547,570.324,560.571,563.415,563.578],"script":[211.752,207.971,208.611,209.863,207.242,212.752,211.927,211.327,207.819,207.943,206.972,212.774,211.081,211.483,211.454],"paint":[345.274,343.471,344.96,343.631,342.947,340.459,343.663,340.471,340.657,341.906,341.723,351.15,343.357,345.853,346.097]}}, -{"f":"better-react-v1.1.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[77.643,78.659,76.609,76.782,78.384,79.9,78.549,79.009,78.252,79.039,76.138,76.374,77.551,79.353,77.091],"script":[34.914,34.797,34.63,34.997,35.1,34.901,35.191,35.38,35.638,35.622,34.881,34.518,34.694,35.008,34.508],"paint":[42.065,43.176,41.308,41.169,42.648,44.288,42.689,42.964,41.882,42.602,40.631,41.189,42.157,43.616,41.924]}}, -{"f":"better-react-v1.1.3-keyed","b":"09_clear1k_x8","v":{"total":[20.964,19.818,19.586,20.27,21.229,20.817,19.864,21.26,19.802,20.027,20.787,21.317,20.649,20.134,19.919],"script":[18.278,17.874,17.444,18.578,19.706,18.471,18.313,19.07,17.7,17.84,19.115,19.334,19.291,18.246,17.971],"paint":[1.024,1.249,1.223,0.804,1.39,1.591,0.499,2.099,1.588,2.074,0.718,1.885,0.775,1.781,0.362]}}, -{"f":"better-react-v1.1.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6080522537231445]}}, -{"f":"better-react-v1.1.3-keyed","b":"22_run-memory","v":{"DEFAULT":[7.455817222595215]}}, -{"f":"better-react-v1.1.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[7.757458686828613]}}, -{"f":"better-react-v1.1.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[32.17576885223389]}}, -{"f":"better-react-v1.1.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[65.39810085296631]}}, -{"f":"better-react-v1.1.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[23.123046875]}}, -{"f":"better-react-v1.1.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[7.46875]}}, -{"f":"better-react-v1.1.3-keyed","b":"43_first-paint","v":{"DEFAULT":[74.7]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"01_run1k","v":{"total":[123.507,121.712,123.188,122.09,123.509,122.88,122.819,123.552,124.391,122.415,124.497,120.157,122.361,123.428,123.158],"script":[85.137,83.856,84.417,83.797,85.218,84.037,84.67,85.319,84.613,83.85,85.552,81.885,83.994,84.672,84.583],"paint":[37.901,37.402,38.297,37.813,37.8,38.381,37.689,37.759,39.305,38.099,38.47,37.803,37.873,38.304,38.133]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"02_replace1k","v":{"total":[135.894,134.798,135.029,134.223,133.5,136.364,134.868,135.085,137.47,134.149,135.698,136.912,137.348,138.349,135.649],"script":[100.907,100.047,100.343,99.631,98.956,101.338,100.317,100.32,101.427,99.307,100.597,101.215,101.051,102.79,101.087],"paint":[34.521,34.175,34.223,34.121,34.094,34.557,34.071,34.288,35.553,34.37,34.625,35.216,35.811,35.081,34.099]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"03_update10th1k_x16","v":{"total":[87.252,84.409,86.425,85.165,87.093,85.048,85.779,86.248,87.174,85.674,84.978,86.637,85.038,86.981,85.439],"script":[68.845,66.375,67.667,66.492,67.983,67.005,67.613,68.166,67.842,67.005,67.054,67.857,66.623,67.991,67.668],"paint":[16.716,16.223,17.207,17.499,17.2,16.568,16.738,15.518,17.575,16.317,16.129,17.458,16.574,17.063,15.517]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"04_select1k","v":{"total":[67.858,65.974,67.313,66.087,66.396,66.623,65.949,66.413,65.879,66.525,68.179,66.055,65.177,65.887,66.322,67.265,66.751,69.291,65.664,66.615,66.605,67.343,66.021,67.749,66.887],"script":[62.302,62.514,63.044,61.741,62.162,62.767,61.862,63.31,62.947,62.985,63.753,62.5,62.509,62.977,62.845,63.181,62.529,62.677,62.066,63.176,62.617,63.093,63.047,63.665,63.477],"paint":[5.402,2.423,3.748,3.176,2.917,2.986,3.911,3.033,2.769,3.264,3.165,3.291,1.626,3.509,1.327,3.008,4.033,6.039,3.449,2.029,3.003,3.616,2.828,3.218,2.267]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"05_swap1k","v":{"total":[87.274,84.439,84.121,84.878,83.501,83.925,86.279,85.833,83.194,84.658,83.384,86.092,85.366,85.809,83.079],"script":[65.211,62.857,63.311,63.632,63.471,62.848,62.557,63.738,62.953,62.948,63.012,62.943,63.606,62.815,61.906],"paint":[20.588,19.253,18.653,19.85,18.601,19.149,20.612,20.402,18.905,20.533,17.994,21.15,19.668,19.629,19.231]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"06_remove-one-1k","v":{"total":[46.808,47.246,47.307,47.043,47.142,49.804,47.269,47.779,46.724,47.148,47.498,47.787,49.117,47.817,47.308],"script":[30.722,31.155,31.162,30.861,31.124,31.52,30.83,31.782,31.05,31.15,31.292,30.925,32.159,31.23,30.746],"paint":[15.297,15.05,15.056,15.454,14.98,17.086,15.323,15.496,15.122,15.25,15.391,16.109,15.934,15.324,15.826]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"07_create10k","v":{"total":[1143.745,1150.559,1129.892,1142.613,1150.874,1142.48,1194.703,1136.804,1131.209,1173.644,1144.887,1131.017,1129.863,1140.476,1131.007],"script":[766.869,774.11,718.82,759.466,753.052,765.435,759.547,757.738,752.914,775.963,766.26,752.674,750.663,750.735,754.32],"paint":[370.099,369.708,404.16,375.862,390.905,370.341,428.251,372.317,371.556,390.877,371.841,371.54,372.469,382.932,369.931]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[144.294,146.196,141.286,142.674,148.916,144.065,145.178,143.826,144.262,148.03,145.828,141.248,145.831,143.967,145.137],"script":[98.833,99.823,97.245,97.465,102.139,99.135,99.975,99.7,100.035,101.51,99.764,96.962,101.083,99.331,99.389],"paint":[44.514,45.381,43.098,44.198,45.764,43.987,44.234,43.167,43.268,45.535,45.073,43.348,43.76,43.702,44.791]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"09_clear1k_x8","v":{"total":[36.672,37.559,38.186,35.92,37.055,39.536,36.713,40.351,36.568,39.173,37.635,37.928,36.901,39.042,39.803],"script":[34.736,35.692,36.58,34.007,35.183,37.322,34.949,37.873,34.584,36.449,34.846,34.96,34.595,37.525,37.328],"paint":[1.823,1.353,1.504,1.159,1.767,2.098,0.838,1.896,2.289,2.611,2.67,2.846,1.205,1.414,2.21]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[44.29856586456299]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"22_run-memory","v":{"DEFAULT":[56.74979591369629]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[56.978187561035156]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[53.22998905181885]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[126.1485481262207]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[3727.9794921875]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[1224.41796875]}}, -{"f":"blazor-wasm-v8.0.0-keyed","b":"43_first-paint","v":{"DEFAULT":[80.8]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"01_run1k","v":{"total":[110.928,111.815,111.409,110.165,112.339,109.241,107.951,108.706,108.32,107.399,109.206,111.179,111.5,114.032,112.349],"script":[71.99,71.399,72.44,71.488,73.277,71.343,69.83,70.044,69.893,69.209,70.21,72.595,72.691,73.89,73.523],"paint":[38.496,39.774,38.496,38.222,38.585,37.433,37.663,37.983,37.97,37.723,38.517,38.096,38.348,39.68,38.359]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"02_replace1k","v":{"total":[119.463,122.121,119.586,115.152,124.564,118.967,119.168,120.335,117.802,117.866,115.686,117.029,116.937,119.885,116.92],"script":[84.68,85.148,85.05,80.917,87.48,84.35,83.633,82.531,81.487,82.154,81.004,81.53,82.152,85.106,82.544],"paint":[34.325,36.51,34.074,33.784,36.534,34.16,35.072,37.304,35.823,35.249,34.242,35.06,34.331,34.319,33.919]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"03_update10th1k_x16","v":{"total":[33.542,33.196,33.115,33.306,33.86,32.577,33.308,33.531,33.142,33.357,34.033,33.332,32.695,33.588,33.012],"script":[16.41,15.446,15.594,15.902,15.408,15.353,15.717,15.824,15.154,15.617,15.668,15.691,14.904,16.084,15.738],"paint":[15.665,15.513,15.378,16.08,17.228,15.69,16.08,16.12,16.386,15.841,16.609,15.035,15.976,16.664,15.741]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"04_select1k","v":{"total":[17.412,16.183,16.985,16.399,15.941,17.079,16.79,17.012,16.883,16.887,17.694,16.495,16.552,16.81,17.855,17.083,17.107,17.786,17.283,16.685,17.103,17.035,16.968,16.666,17.149],"script":[14.746,13.794,14.373,13.493,13.408,13.992,13.788,13.325,13.353,13.856,13.241,13.957,13.731,14.087,13.813,13.298,13.824,14.49,14.305,13.526,13.773,13.918,13.967,13.282,14.245],"paint":[2.567,2.256,1.726,1.719,1.989,2.23,2.79,3.022,3.028,2.166,3.424,1.626,2.322,2.589,3.258,3.639,3.133,3.147,2.093,3.027,2.152,2.507,2.251,3.25,2.833]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"05_swap1k","v":{"total":[34.174,33.558,37.358,34.781,33.271,33.263,34.719,33.972,34.013,33.824,34.376,34.469,34.349,33.869,35.219],"script":[14.357,13.993,13.725,14.299,13.892,13.422,13.772,14.325,13.942,13.372,13.73,13.466,14.049,13.916,14.588],"paint":[18.512,18.251,20.645,19.319,17.755,18.5,19.884,18.311,18.62,18.374,19.342,18.502,18.088,17.98,19.8]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"06_remove-one-1k","v":{"total":[23.116,23.369,22.802,23.039,22.968,23.025,23.282,22.916,22.964,23.657,23.454,22.878,22.869,23.169,23.663],"script":[7.21,6.829,6.859,6.883,7.161,6.916,7.16,6.916,7.038,7.196,6.984,6.903,7.091,7.213,7.216],"paint":[15.435,15.279,14.876,15.114,14.88,15.314,15.372,15.266,15.177,15.722,15.696,14.649,15.028,14.877,15.71]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"07_create10k","v":{"total":[1035.12,1050.729,1063.165,1068.449,1050.793,1065.708,1064.42,1054.801,1075.044,1048.819,1057.981,1050.388,1065.301,1050.515,1057.653],"script":[651.619,657.423,668.393,652.544,674.407,652.538,674.865,661.285,674.291,672.893,678.503,658.53,679.134,668.424,668.339],"paint":[376.73,386.405,387.977,409.034,369.623,406.168,382.442,386.67,394.032,369.152,372.694,384.956,379.446,375.257,382.246]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[118.557,119.762,119.35,117.967,119.718,119.659,118.91,119.876,120.485,118.91,123.525,119.735,119.711,117.025,119.994],"script":[73.738,75.115,75.43,73.865,75.43,75.591,74.548,74.62,75.835,74.685,77.345,75.211,74.186,73.111,75.387],"paint":[43.697,43.66,42.974,43.144,43.348,43.092,43.397,44.14,43.665,43.252,45.286,43.557,44.535,42.943,43.617]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"09_clear1k_x8","v":{"total":[25.99,26.528,26.1,26.554,26.853,26.158,25.48,26.245,26.599,25.85,26.001,24.961,25.123,25.653,25.858],"script":[23.597,24.607,24.535,24.246,24.211,23.521,23.608,23.981,23.922,23.83,23.629,23.165,23.841,23.655,23.902],"paint":[1.231,1.812,0.985,1.417,2.487,2.124,1.248,1.239,1.813,1.167,2.272,0.831,0.559,1.684,1.856]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[41.43125629425049]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"22_run-memory","v":{"DEFAULT":[52.8817663192749]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[53.01170349121094]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[49.2861328125]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[134.14484214782715]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11023.5888671875]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[2813.087890625]}}, -{"f":"blazor-wasm-aot-v8.0.0-keyed","b":"43_first-paint","v":{"DEFAULT":[86.3]}}, -{"f":"blockdom-v0.9.28-keyed","b":"01_run1k","v":{"total":[36.414,37.826,37.061,37.311,36.552,36.809,36.175,36.173,35.983,35.897,36.44,35.726,35.84,36.485,36.673],"script":[3.58,3.76,3.682,3.556,3.608,3.729,3.564,3.52,3.56,3.47,3.595,3.529,3.582,3.653,3.575],"paint":[32.416,33.656,32.973,33.35,32.541,32.672,32.197,32.251,32.032,32.011,32.439,31.742,31.847,32.414,32.703]}}, -{"f":"blockdom-v0.9.28-keyed","b":"02_replace1k","v":{"total":[41.468,41.397,40.337,41.485,40.332,41.728,40.681,40.188,40.855,41.923,41.791,40.27,40.475,41.156,40.809],"script":[6.931,6.893,6.226,6.432,6.452,6.247,6.394,6.212,6.234,6.476,6.408,6.165,6.318,6.627,6.503],"paint":[34.072,34.077,33.668,34.606,33.429,35.035,33.855,33.543,34.195,35.004,34.95,33.653,33.705,34.1,33.874]}}, -{"f":"blockdom-v0.9.28-keyed","b":"03_update10th1k_x16","v":{"total":[16.649,16.522,16.351,16.691,15.918,16.503,16.391,16.04,16.007,16.517,16.022,20.102,16.348,16.225,15.485],"script":[1.368,2.065,0.997,1.199,1.412,1.794,1.024,1.439,1.266,1.306,1.273,1.069,0.913,1.229,1.238],"paint":[13.467,12.672,13.781,14.1,13.184,12.94,14.122,13.082,13.269,13.67,12.955,17.127,13.601,13.808,12.547]}}, -{"f":"blockdom-v0.9.28-keyed","b":"04_select1k","v":{"total":[2.851,2.786,3.305,2.764,3.491,3.134,3.754,2.866,3.495,3.982,3.839,4.114,3.18,3.567,3.442,4.396,4.043,2.778,2.814,3.148,3.698,3.49,3.264,3.218,3.191],"script":[0.929,0.816,1.341,0.62,0.821,0.175,1.233,1.246,1.398,0.863,0.937,0.182,0.191,1.12,0.893,0.561,0.968,0.678,0.663,1.126,1.155,0.804,1.023,0.191,0.897],"paint":[1.822,1.874,1.136,2.045,1.496,2.646,2.413,1.115,1.999,1.633,2.788,2.593,2.877,1.495,1.608,1.551,2.488,1.996,1.63,1.921,2.428,1.586,1.351,1.984,2.189]}}, -{"f":"blockdom-v0.9.28-keyed","b":"05_swap1k","v":{"total":[18.906,19.535,19.343,19.015,18.795,18.998,18.9,19.045,18.765,18.766,19.11,18.736,18.544,18.991,18.606],"script":[0.64,1.203,1.157,0.837,0.889,0.808,0.629,0.86,0.905,0.767,0.947,0.941,0.207,0.598,0.534],"paint":[17.262,16.806,16.68,17.458,16.557,16.601,16.779,16.605,17.127,16.821,16.641,16.512,17.378,17.401,16.491]}}, -{"f":"blockdom-v0.9.28-keyed","b":"06_remove-one-1k","v":{"total":[15.165,15.281,15.486,15.202,15.087,15.335,15.388,15.297,15.192,15.316,15.227,15.338,15.149,15.179,15.286],"script":[0.439,0.184,0.342,0.438,0.176,0.488,0.342,0.267,0.488,0.506,0.19,0.485,0.407,0.195,0.451],"paint":[14.028,14.379,14.199,14.025,14.211,14.093,14.126,14.037,13.978,14.07,14.329,14.135,13.942,14.038,14.116]}}, -{"f":"blockdom-v0.9.28-keyed","b":"07_create10k","v":{"total":[385.459,383.872,380.006,388.538,383.766,381.671,387.835,391.351,391.747,386.205,386.919,393.284,386.012,389.191,393.46],"script":[45.081,45.912,44.998,45.833,45.774,45.359,45.417,44.633,46.648,45.26,46.117,46.37,44.841,45.068,46.051],"paint":[333.593,331.306,328.227,336.052,331.393,329.532,335.797,340.1,338.403,334.234,334.087,340.279,334.532,337.517,340.394]}}, -{"f":"blockdom-v0.9.28-keyed","b":"08_create1k-after1k_x2","v":{"total":[42.35,41.547,42.055,42.395,40.782,42.801,40.451,41.356,42.112,40.958,40.94,40.715,41.462,40.807,43.652],"script":[3.438,3.338,3.471,3.529,3.505,3.592,3.218,3.248,3.755,3.302,3.378,3.232,3.485,3.334,3.676],"paint":[38.077,37.334,37.707,38.001,36.411,38.347,36.402,37.196,37.505,36.777,36.724,36.658,37.131,36.566,39.114]}}, -{"f":"blockdom-v0.9.28-keyed","b":"09_clear1k_x8","v":{"total":[12.479,12.219,11.695,11.688,11.429,11.767,12.5,11.468,11.63,11.822,12.277,11.259,11.58,11.697,11.854],"script":[9.867,10.016,9.332,9.507,9.496,9.572,10.327,9.982,10.022,9.796,10.655,10.057,10.132,9.858,10.13],"paint":[2.527,2.122,2.282,1.93,1.172,2.117,2.101,1.212,1.152,1.944,1.105,1.12,0.963,1.74,1.326]}}, -{"f":"blockdom-v0.9.28-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5469226837158203]}}, -{"f":"blockdom-v0.9.28-keyed","b":"22_run-memory","v":{"DEFAULT":[2.448617935180664]}}, -{"f":"blockdom-v0.9.28-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.463076591491699]}}, -{"f":"blockdom-v0.9.28-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7782049179077148]}}, -{"f":"blockdom-v0.9.28-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[18.24301052093506]}}, -{"f":"blockdom-v0.9.28-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[16.984375]}}, -{"f":"blockdom-v0.9.28-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.3173828125]}}, -{"f":"blockdom-v0.9.28-keyed","b":"43_first-paint","v":{"DEFAULT":[48.8]}}, -{"f":"bobril-v20.6.0-keyed","b":"01_run1k","v":{"total":[54.597,44.985,48.416,44.142,45.199,48.209,48.936,48.256,48.519,45.97,44.304,49.324,41.769,46.127,48.333],"script":[9.088,8.755,9.882,9.947,8.952,9.929,9.986,9.925,8.907,8.925,9.305,9.491,8.501,9.252,9.024],"paint":[33.182,33.923,33.341,32.561,32.648,33.671,32.902,33.62,32.386,32.547,32.057,33.03,32.6,33.89,33.169]}}, -{"f":"bobril-v20.6.0-keyed","b":"02_replace1k","v":{"total":[58.156,59.703,55.79,53.198,52.958,59.151,51.576,58.272,56.616,57.897,55.034,54.025,55.502,52.989,51.218],"script":[13.697,13.89,13.436,13.829,13.773,13.944,13.649,14.044,13.686,13.818,13.691,13.552,13.333,13.88,14.225],"paint":[33.857,35.387,34.349,34.372,33.808,35.704,34.041,33.962,34.142,33.797,33.61,34.414,33.955,34.817,34.203]}}, -{"f":"bobril-v20.6.0-keyed","b":"03_update10th1k_x16","v":{"total":[21.848,19.531,19.317,19.997,21.394,20.264,22.423,19.936,19.919,19.671,19.244,19.325,19.742,20.414,18.749],"script":[4.859,3.885,4.535,4.818,3.879,4.986,4.576,4.728,4.733,4.091,3.621,4.597,5.111,3.95,4.808],"paint":[14.972,14.895,13.789,14.48,14.715,14.222,15.67,14.746,15.072,14.594,14.714,14.614,14.526,15.647,13.829]}}, -{"f":"bobril-v20.6.0-keyed","b":"04_select1k","v":{"total":[4.346,3.992,4.017,4.302,4.495,4.66,4.812,4.461,4.556,4.636,4.585,4.588,4.515,4.68,4.962,4.101,4.863,4.684,4.673,4.402,4.518,4.371,4.237,4.228,3.546],"script":[1.763,1.94,2.078,1.168,2.02,1.96,1.214,1.845,1.376,1.456,1.991,2.255,1.993,2.367,2.246,1.633,2.208,2.285,2.338,1.462,2.367,1.45,0.766,1.438,1.288],"paint":[2.46,1.927,1.717,2.321,2.347,1.646,2.4,2.494,2.579,2.942,2.454,2.211,0.991,1.677,2.272,2.348,2.283,1.804,2.212,2.818,1.991,2.801,2.834,2.35,1.69]}}, -{"f":"bobril-v20.6.0-keyed","b":"05_swap1k","v":{"total":[19.536,22.036,20.272,19.127,20.531,19.884,34.845,19.759,19.383,18.778,19.334,20.826,19.539,19.634,35.519],"script":[1.208,2.138,1.678,1.994,1.705,1.914,1.739,1.67,2.442,1.858,1.765,2.718,2.109,1.45,2.565],"paint":[18.224,16.771,16.964,16.83,17.666,17.763,17.752,15.268,16.819,16.812,16.811,17.888,17.314,17.362,16.912]}}, -{"f":"bobril-v20.6.0-keyed","b":"06_remove-one-1k","v":{"total":[14.569,14.136,15.507,17.937,15.195,14.735,17.926,13.922,14.132,14.245,15.37,14.773,14.266,19.142,14.112],"script":[1.085,1.119,0.946,1.142,1.063,1.095,0.975,0.759,1.117,0.841,0.906,0.825,0.835,1.13,0.891],"paint":[13.255,12.626,13.212,13.324,13.678,13.503,13.294,12.832,12.327,13.232,12.786,13.311,12.65,13.288,12.783]}}, -{"f":"bobril-v20.6.0-keyed","b":"07_create10k","v":{"total":[464.429,447.02,464.06,445.899,454.459,456.269,452.411,451.212,459.803,457.779,466.093,454.761,447.397,457.37,461.931],"script":[103.717,110.295,107.035,106.09,104.287,103.285,106.499,109.586,111.283,104.004,112.672,106.335,102.264,110.08,108.141],"paint":[347.698,329.138,351.274,334.826,344.396,350.338,342.11,338.309,343.618,347.788,344.008,345.434,343.012,342.894,348]}}, -{"f":"bobril-v20.6.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[57.054,53.759,58.003,54.943,54.356,56.059,53.694,49.471,53.088,54.221,53.688,56.37,57.024,58.717,53.171],"script":[11.513,10.378,10.023,10.458,10.313,10.34,10.61,10.937,10.47,10.986,10.335,11.584,9.867,10.6,10.57],"paint":[37.241,37.698,37.264,37.984,37.484,37.689,37.273,38.014,36.836,36.94,36.732,39.049,37.558,37.741,37.05]}}, -{"f":"bobril-v20.6.0-keyed","b":"09_clear1k_x8","v":{"total":[14.574,13.941,13.55,12.993,14.321,13.736,12.96,13.712,13.577,14.006,14.201,13.227,14.638,14.102,13.469],"script":[12.274,11.912,11.624,11.531,12.373,11.969,11.156,12.458,11.52,12.096,11.67,11.985,12.694,12.565,12.337],"paint":[1.588,1.227,1.855,1.4,1.875,1.706,1.734,1.185,1.989,1.841,1.299,1.179,1.883,1.479,1.071]}}, -{"f":"bobril-v20.6.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6187896728515625]}}, -{"f":"bobril-v20.6.0-keyed","b":"22_run-memory","v":{"DEFAULT":[3.634884834289551]}}, -{"f":"bobril-v20.6.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.811847686767578]}}, -{"f":"bobril-v20.6.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.605961799621582]}}, -{"f":"bobril-v20.6.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[28.20957660675049]}}, -{"f":"bobril-v20.6.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[48.095703125]}}, -{"f":"bobril-v20.6.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[15.599609375]}}, -{"f":"bobril-v20.6.0-keyed","b":"43_first-paint","v":{"DEFAULT":[80.6]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"01_run1k","v":{"total":[37.898,38.381,37.329,38.373,36.718,38.264,37.339,37.798,38.135,37.299,37.411,37.455,40.797,39.094,37.506],"script":[3.886,3.897,4.061,4.151,3.814,4.185,3.864,3.876,4.164,3.806,3.854,3.813,3.867,4.556,3.987],"paint":[33.584,34.05,32.832,33.77,32.469,33.638,33.035,33.496,33.544,33.061,33.135,33.187,36.435,34.111,33.091]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"02_replace1k","v":{"total":[42.131,43.166,43.564,41.363,42.05,41.976,43.194,40.894,41.882,41.847,42.833,42.001,41.914,41.849,42.72],"script":[6.763,7.012,7.546,6.704,6.885,6.699,6.93,6.702,6.671,6.821,6.986,6.847,6.782,6.858,6.753],"paint":[34.894,35.727,35.587,34.204,34.725,34.835,35.835,33.748,34.768,34.584,35.42,34.714,34.69,34.542,35.529]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"03_update10th1k_x16","v":{"total":[18.618,17.068,17.698,16.415,17.031,17.326,16.738,16.999,17.089,16.5,16.808,19.404,16.568,16.799,18.622],"script":[2.453,1.172,1.568,1.126,1.495,1.964,1.551,1.347,1.361,1.326,1.575,1.449,1.586,1.47,1.266],"paint":[14.679,14.37,14.693,14.064,14.495,14.065,12.954,14.342,14.189,13.686,13.691,15.449,13.339,13.806,15.08]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"04_select1k","v":{"total":[3.953,4.599,4.438,4.166,4.633,4.043,4.217,3.657,4.409,3.834,4.194,4.692,3.825,3.963,3.934,3.808,3.407,4.817,3.838,4.697,4.309,4.091,4.633,4.351,3.944],"script":[1.581,1.596,1.178,1.274,1.656,1.737,1.574,1.316,1.8,1.125,1.332,1.079,1.042,2.017,1.429,1.222,1.481,1.361,0.971,1.359,1.624,1.354,1.898,1.62,1.056],"paint":[1.974,2.871,2.015,1.702,2.843,1.431,0.849,1.062,0.917,1.846,1.854,2.116,2.663,1.823,2.391,2.458,1.352,1.92,2.744,3.206,2.477,2.605,2.584,1.898,2.766]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"05_swap1k","v":{"total":[19.116,19.835,18.854,19.016,19.913,19.676,19.755,20.056,19.793,21.432,19.458,21.085,19.207,21.53,19.682],"script":[1.278,1.396,1.214,1.359,1.085,1.984,1.129,1.042,1.257,1.139,1.614,0.975,1.317,1.453,1.352],"paint":[16.76,17.514,14.767,16.072,16.874,16.134,16.263,17.657,17.209,18.675,16.925,18.81,16.555,17.251,17.284]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"06_remove-one-1k","v":{"total":[15.471,15.808,16.049,15.776,15.416,15.698,15.418,16.301,16.031,15.899,15.535,15.52,15.398,15.992,15.441],"script":[0.69,0.711,0.721,0.709,0.69,1.004,0.698,0.864,0.702,0.671,0.839,0.716,0.675,0.704,0.671],"paint":[13.768,14.277,14.526,14.34,13.709,13.932,14.004,14.327,14.37,14.505,13.974,14.076,13.719,14.552,13.749]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"07_create10k","v":{"total":[399.561,404.473,397.113,398.311,397.92,399.141,396.523,397.924,403.467,398.368,398.233,408.17,404.198,398.161,399.579],"script":[55.656,57.681,56.194,56.094,55.663,56.619,54.473,55.92,55.955,55.354,56.598,57.06,57.392,55.174,56.616],"paint":[337.145,339.417,334.156,335.43,335.515,335.809,335.209,335.281,340.665,336.241,334.79,344.091,340.071,336.345,336.247]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"08_create1k-after1k_x2","v":{"total":[42.785,42.949,44.766,44.348,42.351,43.474,45.507,43.416,43.153,43.042,43.259,42.685,43.127,43.436,43.182],"script":[3.975,4.022,4.15,4.141,3.882,3.951,4.01,3.929,3.985,3.901,4.025,3.973,3.965,4.448,4.054],"paint":[37.887,38.034,39.698,39.281,37.602,38.608,40.57,38.568,38.254,38.225,38.331,37.833,38.243,38.09,38.241]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"09_clear1k_x8","v":{"total":[12.229,12.292,12.132,11.694,12.798,12.702,12.577,12.266,12.807,12.386,12.572,12.262,12.002,12.599,12.444],"script":[10.794,10.536,10.665,10.398,10.968,11.046,11.133,10.443,10.893,10.079,10.225,10.578,10.433,10.393,10.321],"paint":[1.347,1.214,1.375,0.889,1.003,1.002,1.347,1.074,1.179,2.219,1.793,1.598,1.478,1.616,2.018]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.74951171875]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"22_run-memory","v":{"DEFAULT":[2.6602210998535156]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.681023597717285]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0378189086914062]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[18.89780616760254]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[50.0712890625]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"42_size-compressed","v":{"DEFAULT":[13.755859375]}}, -{"f":"cample-v3.2.0-alpha.12-keyed","b":"43_first-paint","v":{"DEFAULT":[82.1]}}, -{"f":"crank-v0.4.1-keyed","b":"01_run1k","v":{"total":[42.816,44.375,43.494,43.486,44.413,43.506,43.403,45.091,44.355,45.502,44.076,43.669,45.048,44.364,45.231],"script":[10.108,10.439,10.318,10.121,10.413,10.139,10.419,11.018,10.594,10.461,10.138,10.185,11.366,11.14,10.317],"paint":[32.241,33.525,32.747,32.945,33.575,32.935,32.546,33.645,33.339,34.405,33.509,33.021,33.236,32.786,34.485]}}, -{"f":"crank-v0.4.1-keyed","b":"02_replace1k","v":{"total":[46.593,46.54,45.47,45.452,47.099,45.691,46.077,47.406,47.778,45.994,46.424,48.05,46.072,47.361,45.905],"script":[12.035,12.182,11.983,11.695,12.49,11.875,11.977,13.116,12.57,11.787,11.825,13.105,11.664,11.938,11.923],"paint":[34.12,33.918,33.06,33.335,34.162,33.394,33.662,33.84,34.766,33.759,34.157,34.503,33.952,34.995,33.563]}}, -{"f":"crank-v0.4.1-keyed","b":"03_update10th1k_x16","v":{"total":[24.072,21.276,22.288,20.887,21.717,21.597,21.872,21.322,21.864,22.449,21.113,23.719,22.32,21.157,21.543],"script":[7.305,6.482,6.441,6.351,6.171,5.772,5.824,6.142,6.007,6.8,5.82,5.923,6.482,5.794,6.248],"paint":[15.211,13.51,14.528,13.492,14.242,14.341,14.607,13.758,14.41,13.534,14.035,15.264,14.295,13.863,14.205]}}, -{"f":"crank-v0.4.1-keyed","b":"04_select1k","v":{"total":[5.943,5.858,5.671,5.788,4.914,5.146,5.293,5.159,5.019,5.907,5.736,4.518,5.384,5.013,5.303,4.542,5.422,5.18,5.002,5.518,5.04,4.516,5.527,4.413,5.157],"script":[2.962,3.221,3.294,2.943,2.471,2.484,2.444,2.152,2.566,2.759,2.541,2.362,3.07,2.263,1.921,2.522,2.788,2.813,2.799,3.057,2.502,2.282,3.062,2.134,2.789],"paint":[1.949,1.701,1.767,1.732,2.325,2.333,1.573,2.887,1.966,3.024,2.109,1.996,1.912,2.341,3.255,1.901,2.506,2.235,1.354,1.663,2.407,2.102,2.339,1.136,2.24]}}, -{"f":"crank-v0.4.1-keyed","b":"05_swap1k","v":{"total":[21.434,21.826,21.07,21.773,21.216,21.336,21.213,23.342,21.114,21.966,20.943,21.508,21.209,21.142,21.807],"script":[2.699,3.644,3.261,3.754,3.124,2.737,2.629,3.86,3.207,3.846,3.235,3.721,3.249,2.75,3.011],"paint":[17.656,16.634,16.076,16.109,16.37,17.055,17.343,18.11,16.094,16.298,16.393,16.764,16.945,16.521,17.753]}}, -{"f":"crank-v0.4.1-keyed","b":"06_remove-one-1k","v":{"total":[16.592,16.723,16.919,17.026,16.547,16.55,17.019,17.411,16.577,16.491,16.619,16.936,16.476,16.573,16.585],"script":[1.402,1.73,1.729,1.781,1.616,1.56,1.397,1.774,1.751,1.416,1.652,1.645,1.517,1.415,1.722],"paint":[14.381,13.932,14.322,14.226,13.969,14.121,14.324,14.902,14.076,14.356,14.213,14.463,14.094,14.143,13.887]}}, -{"f":"crank-v0.4.1-keyed","b":"07_create10k","v":{"total":[457.565,459.881,449.312,452.886,458.396,454.86,451.276,449.09,463.378,457.915,455.142,457.919,462.284,460.285,454.942],"script":[117.616,117.278,115.752,115.611,117.667,116.514,115.3,115.694,117.09,116.814,116.729,118.422,116.693,115.966,116.657],"paint":[333.186,335.902,326.599,330.585,334.067,331.668,329.134,326.542,339.655,334.408,331.699,332.751,338.891,333.791,331.329]}}, -{"f":"crank-v0.4.1-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.734,50.785,50.505,49.794,51.995,51.033,50.732,50.385,51.462,51.01,51.41,51.308,51.238,51.125,51.877],"script":[11.698,11.655,11.807,11.33,11.833,12.022,11.496,11.85,11.741,11.686,11.684,12.163,12.077,11.959,11.639],"paint":[38.138,38.244,37.816,37.567,39.259,38.12,38.348,37.649,38.83,38.439,38.779,38.275,38.284,38.237,39.334]}}, -{"f":"crank-v0.4.1-keyed","b":"09_clear1k_x8","v":{"total":[12.894,12.537,12.125,12.672,12.645,12.143,12.576,12.87,12.228,12.534,12.008,12.314,12.368,12.328,11.991],"script":[11.058,10.698,10.176,10.714,11.002,10.639,10.127,10.389,10.525,10.642,10.587,10.55,10.159,10.909,10.859],"paint":[1.75,1.228,1.161,1.131,1.551,1.419,2.011,2.095,1.613,1.058,1.348,1.687,1.635,1.335,1.05]}}, -{"f":"crank-v0.4.1-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5609369277954102]}}, -{"f":"crank-v0.4.1-keyed","b":"22_run-memory","v":{"DEFAULT":[3.7811594009399414]}}, -{"f":"crank-v0.4.1-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.8536148071289062]}}, -{"f":"crank-v0.4.1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.904754638671875]}}, -{"f":"crank-v0.4.1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[30.553187370300293]}}, -{"f":"crank-v0.4.1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[20.40234375]}}, -{"f":"crank-v0.4.1-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.4453125]}}, -{"f":"crank-v0.4.1-keyed","b":"43_first-paint","v":{"DEFAULT":[67.1]}}, -{"f":"dark-v1.0.2-keyed","b":"01_run1k","v":{"total":[47.094,47.451,46.926,48.201,47.591,48.609,47.383,46.954,47.08,47.477,47.738,47.921,49.101,48.426,47.103],"script":[14.273,14.558,14.037,15.14,13.818,15.198,14.254,14.326,14.27,14.241,14.823,15.067,14.923,15.518,13.989],"paint":[32.372,32.476,32.459,32.64,33.34,32.967,32.707,32.204,32.364,32.798,32.483,32.431,33.755,32.461,32.699]}}, -{"f":"dark-v1.0.2-keyed","b":"02_replace1k","v":{"total":[55.556,55.605,53.783,54.322,55.514,53.877,55.168,55.486,54.411,55.149,55.166,55.875,55.18,54.706,55.087],"script":[19.193,18.926,18.34,18.585,18.522,18.277,18.544,18.594,18.42,18.621,18.509,18.693,18.68,18.28,18.6],"paint":[35.899,36.228,35.007,35.29,36.529,35.156,36.179,36.443,35.543,36.087,36.201,36.735,36.072,35.987,36.047]}}, -{"f":"dark-v1.0.2-keyed","b":"03_update10th1k_x16","v":{"total":[20.073,19.179,18.607,18.718,17.596,18.935,18.206,18.37,18.394,18.106,18.737,18.471,18.432,18.364,19.035],"script":[3.944,3.088,3.21,3.367,2.934,3.322,3.559,3.111,3.362,3.436,3.026,3.405,3.109,3.535,3.388],"paint":[14.81,12.848,13.925,13.464,13.374,13.627,13.052,14.226,13.238,13.003,14.238,12.858,13.922,13.17,14.292]}}, -{"f":"dark-v1.0.2-keyed","b":"04_select1k","v":{"total":[3.974,2.882,3.231,5.632,3.687,3.101,3.126,3.49,2.793,3.207,3.547,4.27,2.945,3.117,3.602,3.719,3.369,3.487,2.914,3.48,3.448,3.21,3.642,2.721,3.816],"script":[1.199,1.363,0.568,1.186,1.176,0.662,0.545,0.833,0.623,1.002,0.913,1.233,1.133,0.92,1.023,0.942,0.938,1.087,0.92,0.885,0.897,1.064,0.929,1.187,0.603],"paint":[1.934,1.415,1.648,1.563,2.404,2.329,2.479,1.446,2.062,2.096,1.638,2.938,1.708,2.099,2.265,2.675,1.498,1.741,1.165,2.096,1.628,1.811,2.42,1.426,2.595]}}, -{"f":"dark-v1.0.2-keyed","b":"05_swap1k","v":{"total":[21.661,21.534,21.56,22.167,21.399,20.898,22.494,21.473,22.465,21.666,22.49,21.209,21.269,21.901,21.053],"script":[2.797,2.505,3.312,3.459,3.114,3.413,3.436,3.025,3.668,2.851,3.738,3.071,2.609,3.153,3.309],"paint":[16.92,17.237,16.553,17.299,17.177,15.631,17.503,16.997,16.814,17.493,16.225,16.352,17.978,17.403,16.35]}}, -{"f":"dark-v1.0.2-keyed","b":"06_remove-one-1k","v":{"total":[16.48,16.494,16.189,16.582,16.288,17.082,16.631,16.561,16.113,16.829,16.244,16.558,16.597,17.317,16.247],"script":[1.42,1.397,1.417,1.392,1.486,1.394,1.413,1.45,1.401,1.38,1.48,1.381,1.791,1.736,1.669],"paint":[14.137,14.38,13.749,14.119,14.027,14.448,14.178,14.38,13.959,14.678,13.725,14.419,14.046,14.398,13.64]}}, -{"f":"dark-v1.0.2-keyed","b":"07_create10k","v":{"total":[494.381,480.254,482.181,488.091,492.687,492.695,487.718,493.023,508.016,496.677,509.879,489.578,492.315,498.323,510.765],"script":[151.474,153.361,149.612,151.425,151.625,148.904,153.664,153.318,155.806,153.145,154.864,154.595,150.506,155.902,155.578],"paint":[335.192,319.765,325.121,329.699,333.921,336.813,327.009,332.792,345.275,336.69,348.113,327.89,334.869,335.504,348.314]}}, -{"f":"dark-v1.0.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[57.56,54.613,54.857,55.984,55.191,55.617,54.028,55.105,56.003,55.591,54.47,56.349,54.514,56.027,54.763],"script":[15.571,15.125,14.621,15.918,15.052,15.204,14.926,15.168,15.145,14.944,14.462,15.189,15.193,15.072,15.389],"paint":[40.587,38.231,38.826,38.775,38.784,39.114,37.741,38.583,39.579,39.463,38.558,40.208,38.073,39.963,38.266]}}, -{"f":"dark-v1.0.2-keyed","b":"09_clear1k_x8","v":{"total":[12.899,13.772,13.938,13.494,12.391,12.792,13.484,13.59,12.608,13.384,12.198,13.42,13.716,12.973,13.234],"script":[10.75,11.35,11.302,11.894,11.025,10.859,11.909,11.508,10.723,11.533,10.644,11.522,11.308,11.323,11.478],"paint":[2.062,2.326,2.507,1.51,1.281,1.587,1.289,1.989,1.787,1.362,1.081,0.922,2.311,1.536,0.787]}}, -{"f":"dark-v1.0.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6416215896606445]}}, -{"f":"dark-v1.0.2-keyed","b":"22_run-memory","v":{"DEFAULT":[4.897149085998535]}}, -{"f":"dark-v1.0.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.838281631469727]}}, -{"f":"dark-v1.0.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.3409490585327148]}}, -{"f":"dark-v1.0.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[38.778456687927246]}}, -{"f":"dark-v1.0.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[35.55859375]}}, -{"f":"dark-v1.0.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[11.4677734375]}}, -{"f":"dark-v1.0.2-keyed","b":"43_first-paint","v":{"DEFAULT":[71.7]}}, -{"f":"dioxus-v0.4.0-keyed","b":"01_run1k","v":{"total":[38.612,38.832,40.286,38.939,38.577,38.629,38.881,39.653,39.763,38.965,38.382,39.151,38.752,38.931,39.155],"script":[5.295,5.387,5.412,5.338,5.218,5.351,5.333,5.464,5.392,5.286,5.52,5.361,5.34,5.3,5.419],"paint":[32.899,33.048,34.47,33.195,32.945,32.879,33.143,33.786,33.973,33.235,32.46,33.399,33.015,33.225,33.339]}}, -{"f":"dioxus-v0.4.0-keyed","b":"02_replace1k","v":{"total":[43.872,42.809,44.04,44.74,43.31,42.632,45.235,43.427,43.267,43.357,43.764,43.259,44.599,42.914,43.216],"script":[9.132,8.539,8.939,9.017,8.46,8.821,8.836,8.534,8.791,8.767,8.822,8.58,9.061,8.585,8.518],"paint":[34.28,33.82,34.639,35.28,34.405,33.364,35.958,34.444,34.041,34.158,34.517,34.262,35.104,33.902,34.265]}}, -{"f":"dioxus-v0.4.0-keyed","b":"03_update10th1k_x16","v":{"total":[16.329,18.113,16.547,16.564,16.692,17.232,16.994,16.401,16.9,17.264,17.398,16.614,16.917,17.252,16.469],"script":[0.959,1.594,1.496,1.505,1.683,1.279,1.734,1.151,1.764,1.317,2.024,1.169,1.89,2.088,1.722],"paint":[13.901,15.026,13.237,14.058,13.622,14.482,13.652,13.444,12.828,15.256,13.428,14.298,14.582,12.62,13.412]}}, -{"f":"dioxus-v0.4.0-keyed","b":"04_select1k","v":{"total":[3.317,2.85,5.909,3.074,5.198,2.895,2.805,3.15,3.162,3.665,3.427,3.801,5.628,2.964,3.522,3.865,2.953,3.415,2.98,2.864,3.466,3.678,3.631,3.27,2.986],"script":[0.825,0.846,1.031,0.89,0.956,0.908,0.965,0.827,0.177,0.915,1.121,0.562,0.562,0.755,1.412,0.184,0.747,0.985,0.184,0.486,1.049,1.253,1.142,0.942,0.344],"paint":[2.396,1.905,1.931,1.465,2.284,1.117,1.748,2.212,1.982,0.839,2.071,1.506,1.147,2.106,1.54,1.64,2.103,1.844,1.617,2.283,1.681,2.325,1.581,1.678,1.748]}}, -{"f":"dioxus-v0.4.0-keyed","b":"05_swap1k","v":{"total":[20.263,19.658,20.421,20.414,19.293,20.403,20.608,20.865,20.513,20.226,19.731,20.916,19.633,19.611,20.21],"script":[1.806,1.732,1.869,2.565,1.893,1.607,2.242,1.9,1.913,1.636,2.011,2.356,1.646,1.618,2.132],"paint":[17.504,16.132,16.661,15.689,15.879,17.34,16.844,17.709,17.542,17.25,16.161,16.484,16.049,16.328,16.136]}}, -{"f":"dioxus-v0.4.0-keyed","b":"06_remove-one-1k","v":{"total":[15.499,16.477,15.927,15.623,15.45,15.407,15.831,15.997,15.742,15.818,15.433,15.793,15.767,15.771,15.428],"script":[0.737,0.741,0.726,0.947,0.737,0.726,1.037,0.729,0.744,0.742,0.733,0.989,0.742,0.738,0.752],"paint":[14.042,14.757,14.418,13.94,13.846,14.005,14.077,14.536,14.058,14.231,13.984,14.096,14.32,14.338,13.682]}}, -{"f":"dioxus-v0.4.0-keyed","b":"07_create10k","v":{"total":[402.324,403.352,400.285,406.022,405.036,402.625,405.062,402.141,400.962,404.824,404.171,399.468,403.584,399.543,397.439],"script":[58.979,60.764,57.682,60.439,60.644,59.454,61.722,58.601,57.714,58.375,62.013,58.513,57.97,59.872,57.399],"paint":[336.616,335.849,336.036,338.947,337.789,336.593,336.768,336.964,336.686,339.732,335.628,334.336,338.304,332.797,333.364]}}, -{"f":"dioxus-v0.4.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[43.186,44.157,44.908,44.769,44.545,46.68,44.488,44.841,44.852,44.703,46.115,45.867,46.009,45.199,46.389],"script":[5.912,6.029,6.053,6.024,6.02,6.117,6.28,6.168,6.242,6.148,6.384,6.317,6.194,6.323,6.326],"paint":[36.4,37.261,37.95,37.82,37.596,39.685,37.349,37.829,37.768,37.653,38.883,38.623,38.989,37.935,39.185]}}, -{"f":"dioxus-v0.4.0-keyed","b":"09_clear1k_x8","v":{"total":[16.288,15.491,15.116,15.258,18.174,15.511,16.074,15.372,16.386,15.111,16.243,16.027,15.719,15.717,16.049],"script":[14.037,13.88,13.795,13.232,16.099,14.42,14.062,13.995,14.071,13.379,14.343,13.844,13.742,13.918,14.124],"paint":[1.376,0.719,0.891,1.955,1.99,0.374,1.813,0.362,2.238,1.652,1.768,1.119,1.895,1.111,1.109]}}, -{"f":"dioxus-v0.4.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.7494726181030273]}}, -{"f":"dioxus-v0.4.0-keyed","b":"22_run-memory","v":{"DEFAULT":[5.58535099029541]}}, -{"f":"dioxus-v0.4.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.498356819152832]}}, -{"f":"dioxus-v0.4.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[6.695009231567383]}}, -{"f":"dioxus-v0.4.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[39.3262939453125]}}, -{"f":"dioxus-v0.4.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[317.310546875]}}, -{"f":"dioxus-v0.4.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[92.9248046875]}}, -{"f":"dioxus-v0.4.0-keyed","b":"43_first-paint","v":{"DEFAULT":[555.5]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"01_run1k","v":{"total":[36.773,36.195,36.376,37.387,37.823,38.062,37.569,36.975,36.091,37.51,37.457,38.267,36.495,36.157,36.549],"script":[3.374,3.391,3.328,3.773,3.225,3.373,3.345,3.759,3.252,3.419,3.68,3.942,3.386,3.428,3.414],"paint":[32.993,32.381,32.629,33.218,34.151,34.289,33.817,32.806,32.38,33.671,33.364,33.883,32.714,32.339,32.701]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"02_replace1k","v":{"total":[42.359,43.34,42.026,41.936,41.473,41.596,41.733,42.955,41.52,41.89,41.723,42.025,41.588,43.57,41.744],"script":[7.136,7.032,7.079,7,6.951,6.689,6.967,7.166,6.897,7.115,6.863,7.055,6.76,7.012,6.869],"paint":[34.8,35.821,34.535,34.509,34.094,34.292,34.325,35.362,34.2,34.355,34.436,34.536,34.372,36.134,34.443]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"03_update10th1k_x16","v":{"total":[16.691,16.979,16.982,17.386,16.917,17.727,17.102,17.202,17.071,16.214,16.917,16.963,16.494,18.217,17.205],"script":[1.831,1.535,0.978,1.992,0.708,2.179,1.83,0.973,1.395,1.222,1.248,1.267,1.132,1.551,1.464],"paint":[12.798,14.341,14.772,14.114,14.305,14.871,13.283,15.536,13.526,13.496,14.445,14.431,13.612,15.629,14.72]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"04_select1k","v":{"total":[2.62,2.547,3.214,3.762,6.413,3.346,2.485,2.934,2.44,2.202,3.717,2.844,2.524,2.651,2.887,2.378,2.657,2.462,2.705,2.673,2.077,2.254,4.211,2.341,2.842],"script":[0.074,0.078,0.709,0.075,0.071,0.818,0.07,0.454,0.611,0.471,0.077,0.07,0.477,0.075,0.1,0.692,0.082,0.492,0.416,0.076,0.078,0.074,1.125,0.08,0.083],"paint":[1.757,1.937,1.521,1.884,2.348,1.624,1.392,2.373,1.735,1.63,1.309,1.779,1.949,2.477,2.678,1.589,2.47,1.865,2.194,0.718,1.115,1.238,1.4,1.481,2.632]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"05_swap1k","v":{"total":[20.656,20.761,19.623,19.533,20.603,20.13,20.074,19.586,20.542,19.895,20.443,19.765,20.145,20.158,19.727],"script":[2.447,1.931,1.519,1.712,2.441,1.805,1.747,1.721,1.501,2.324,2.173,1.64,1.842,1.522,1.391],"paint":[16.935,17.596,16.515,16.772,16.537,16.753,17.288,16.562,17.435,16.449,16.727,16.279,17.606,16.79,17.031]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"06_remove-one-1k","v":{"total":[16.566,16.237,16.045,15.926,15.877,15.8,15.909,15.919,15.863,15.836,16.004,16.028,15.994,16.008,15.621],"script":[0.964,0.981,0.677,0.668,0.657,0.668,0.669,0.67,0.671,0.693,0.666,0.672,0.866,0.686,0.67],"paint":[14.856,14.544,14.643,14.515,14.476,14.352,14.497,14.567,14.47,14.109,14.579,14.583,14.239,14.577,13.422]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"07_create10k","v":{"total":[396.14,392.457,390.427,388.059,390.046,394.289,395.303,392.34,398.161,389.346,388.606,387.062,390.917,389.418,389.461],"script":[46.023,44.576,46.654,46.545,44.611,44.336,46.058,44.721,46.349,44.24,45.708,43.945,46.102,45.073,45.511],"paint":[343.469,341.154,337.147,334.867,338.629,343.239,342.564,340.983,345.147,338.403,336.187,336.478,338.179,337.627,337.312]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"08_create1k-after1k_x2","v":{"total":[43.36,43.243,43.471,43.196,43.665,43.116,43.894,45.701,43.482,46.279,43.745,44.908,44.686,46.294,43.855],"script":[4.889,4.691,4.772,4.785,4.872,4.685,4.765,4.997,4.787,4.899,4.785,5.059,4.964,4.939,4.891],"paint":[37.56,37.647,37.766,37.509,37.885,37.505,38.21,39.772,37.791,40.459,37.895,38.985,38.854,40.492,38.041]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"09_clear1k_x8","v":{"total":[11.506,12.239,12.268,12.349,11.719,11.742,11.991,12.28,11.644,12.239,12.464,12.365,13.006,11.849,13.481],"script":[10.062,10.398,10.128,10.375,10.595,10.341,9.78,10.264,10.255,10.163,10.827,10.425,11.423,9.996,11.387],"paint":[0.355,1.761,2.048,1.883,0.364,0.741,2.078,1.084,1.3,1.983,0.975,1.164,1.471,1.779,1.559]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4795980453491211]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"22_run-memory","v":{"DEFAULT":[1.9876527786254883]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.9520759582519531]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6889019012451172]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[14.830049514770508]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[12.8818359375]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.7802734375]}}, -{"f":"dlightjs-v1.0.0-alpha.36-keyed","b":"43_first-paint","v":{"DEFAULT":[43]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"01_run1k","v":{"total":[37.813,39.445,38.162,37.771,38.005,37.794,37.791,40.194,38.007,37.971,38.36,40.095,40.335,37.856,39.231],"script":[4.262,4.334,4.447,4.168,4.524,4.439,4.527,4.641,4.324,4.28,4.773,4.481,4.464,4.559,4.759],"paint":[33.138,34.666,33.278,33.164,33.035,32.896,32.803,35.107,33.228,33.268,33.176,35.152,35.421,32.843,34.027]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"02_replace1k","v":{"total":[42.904,44.029,44.004,43.528,43.048,44.126,43.409,44.301,43.435,43.226,43.435,43.808,43.242,43.204,43.039],"script":[7.556,7.713,7.69,7.293,7.363,7.581,7.264,7.732,7.489,7.241,7.309,7.48,7.24,7.844,7.388],"paint":[34.902,35.85,35.863,35.755,35.22,36.089,35.711,36.128,35.479,35.518,35.665,35.826,35.527,34.908,35.186]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"03_update10th1k_x16","v":{"total":[17.036,16.602,17.052,18.729,16.765,16.387,18.521,17.518,17.683,16.89,16.572,16.416,17.136,16.408,17.478],"script":[1.225,1.397,0.948,1.526,1.36,1.4,1.331,1.348,2.117,1.023,1.177,1.117,1.007,1.262,1.642],"paint":[14.44,13.672,15.127,15.894,14.051,13.555,15.314,14.772,13.839,14.597,15.064,13.812,14.598,14.433,13.991]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"04_select1k","v":{"total":[2.708,4.404,2.64,3.194,2.471,2.227,2.678,2.494,2.821,3.311,2.95,2.527,3.525,4.379,2.732,3.024,3.221,2.304,3.322,2.998,2.391,2.594,2.769,1.907,2.686],"script":[0.303,0.919,0.392,0.943,0.068,0.086,0.196,0.072,0.085,0.069,0.071,0.069,0.073,1.151,0.077,0.073,0.775,0.071,0.852,0.703,0.067,0.075,0.076,0.328,0.076],"paint":[2.296,1.811,2.151,1.722,2.3,1.352,1.65,0.853,1.746,2.148,2.773,2.361,2.122,1.865,2.545,2.85,1.804,1.246,2.376,2.186,2.236,1.427,2.601,1.372,1.873]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"05_swap1k","v":{"total":[20.895,21.047,21.189,21.187,19.905,20.603,21.113,21.157,21.278,20.73,20.331,22.125,20.898,20.89,20.758],"script":[2.915,2.758,2.945,2.529,2.92,2.501,2.472,3.006,2.512,2.323,2.396,2.717,3.021,2.96,3.143],"paint":[16.971,16.997,16.755,17.497,16.608,16.829,17.321,17.021,17.733,17.116,15.936,18.059,16.699,15.776,16.32]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"06_remove-one-1k","v":{"total":[16.312,16.017,16.429,16.305,16.315,16.302,16.434,15.991,16.011,16.058,16.024,16.906,16.369,16.073,16.315],"script":[0.972,1.094,1.122,0.993,1.036,1.098,0.968,0.994,1.097,0.786,1.123,1.02,1.144,1.107,1.146],"paint":[14.571,14.199,14.339,14.552,14.556,14.193,14.802,14.298,14.249,14.22,14.165,14.811,14.489,13.892,14.246]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"07_create10k","v":{"total":[402.041,402.896,395.827,398.52,397.348,403.019,399.981,398.265,395.723,390.518,395.251,390.996,393.304,395.278,396.072],"script":[50.922,50.729,50.246,51.091,51.264,51.494,50.155,49.141,49.833,49.036,49.655,50.273,49.575,49.758,49.906],"paint":[344.26,345.493,338.871,340.773,339.277,344.17,343.185,342.484,339.163,334.802,338.757,333.925,337.06,338.609,339.538]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"08_create1k-after1k_x2","v":{"total":[45.343,45.161,44.986,45.663,47.203,46.883,47.164,47.125,44.811,44.911,44.727,45.421,47.312,47.604,47.36],"script":[5.808,6.079,5.799,5.738,5.844,5.89,5.545,5.702,5.622,5.808,5.581,5.853,5.574,5.652,5.64],"paint":[38.62,38.192,38.298,39.025,40.476,40.102,40.692,40.526,38.287,38.199,38.288,38.686,40.865,41.111,40.807]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"09_clear1k_x8","v":{"total":[12.496,13.119,12.081,12.436,12.101,12.115,12.016,12.729,12.011,12.665,12.119,12.359,12.107,12.368,11.948],"script":[10.636,10.904,10.207,10.461,10.216,10.737,10.615,10.42,10.439,10.827,10.501,10.54,10.35,10.236,10.133],"paint":[1.011,2.123,1.784,1.891,1.107,1.296,1.315,2.228,1.479,1.743,1.527,1.737,1.669,1.483,1.717]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.49007701873779297]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"22_run-memory","v":{"DEFAULT":[2.2761659622192383]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.3436803817749023]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6319265365600586]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[16.7880802154541]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[13.4677734375]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.08984375]}}, -{"f":"dlightjs-subview-v1.0.0-alpha.36-keyed","b":"43_first-paint","v":{"DEFAULT":[48]}}, -{"f":"dojo-v8.0.0-keyed","b":"01_run1k","v":{"total":[69.307,64.973,60.689,62.999,66.013,64.438,68.027,69.844,70.794,66.748,64.492,62.157,68.498,63.536,65.776],"script":[27.226,29.086,27.928,28.419,28.525,29.333,28.563,29.134,28.614,27.997,29.984,26.79,28.557,28.606,28.661],"paint":[32.821,33.045,32.314,32.299,34.235,34.133,33.054,33.132,32.519,33.135,32.809,34.496,34.405,34.765,33.361]}}, -{"f":"dojo-v8.0.0-keyed","b":"02_replace1k","v":{"total":[79.923,74.176,75.945,75.063,82.569,82.331,79.982,80.751,81.08,75.665,81.069,79.406,76.732,78.736,77.06],"script":[34.187,35.642,34.723,34.333,33.787,34.993,34.21,34.21,36.172,32.803,33.802,35.257,33.474,35.084,33.854],"paint":[37.352,35.566,36.583,35.946,36.74,36.898,36.175,37.058,36.507,36.102,35.716,35.728,36.065,35.345,36.979]}}, -{"f":"dojo-v8.0.0-keyed","b":"03_update10th1k_x16","v":{"total":[40.406,41.426,41.54899999999999,24.707,41.859,25.397,28.085,40.795,27.147,39.944,24.34,25.205,26.128,25.143,24.555],"script":[9.863,10.109,10.487,9.309,10.929,10.545,11.104,10.672,10.596,9.091,9.569,10.553,9.593,10.68,10.129],"paint":[14.507,14.951,14.908,14.826,14.852,13.243,16.847,13.521,15.993,15.402,14.672,14.409,14.35,14.362,13.199]}}, -{"f":"dojo-v8.0.0-keyed","b":"04_select1k","v":{"total":[4.807,2.932,3.423,5.728,3.479,3.58,4.448,3.159,6.275,3.16,2.869,5.941,3.253,3.426,4.256,3.222,3.434,3.883,3.805,3.507,3.23,3.524,3.441,3.397,2.9],"script":[0.873,0.738,0.376,0.71,1.084,0.923,0.257,0.838,0.261,0.921,1.109,1.526,0.638,1.208,1.226,1.241,1.503,1.533,1.597,1.001,1.173,0.265,0.658,0.72,1.385],"paint":[1.907,1.194,1.881,2.001,2.302,1.856,1.697,1.426,2.819,1.809,1.663,1.784,2.518,1.999,2.663,1.88,1.828,2.25,1.473,2.401,1.266,1.639,1.395,2.56,1.417]}}, -{"f":"dojo-v8.0.0-keyed","b":"05_swap1k","v":{"total":[45.743,45.989,45.983,31.666,30.445,32.034,46.024,29.473,29.372,32.064,29.186,28.572,30.293,32.213,32.254],"script":[12.383,13.267,12.061,12.896,11.783,11.505,12.774,12.683,12.44,11.962,12.18,11.922,12.715,12.679,12.404],"paint":[18.213,16.907,17.864,16.211,18.539,17.621,17.202,16.677,16.334,17.275,16.893,16.547,16.042,17.198,17.103]}}, -{"f":"dojo-v8.0.0-keyed","b":"06_remove-one-1k","v":{"total":[22.246,21.738,18.277,23.963,23.283,23.489,15.896,16.002,20.231,18.145,18.014,16.409,21.712,17.817,16.518],"script":[0.255,0.434,0.257,0.483,0.564,0.664,0.496,0.269,0.542,0.713,0.382,0.377,0.52,0.524,0.434],"paint":[14.606,14.789,14.518,14.602,15.477,14.606,14.448,14.139,14.461,14.163,14.293,14.352,14.671,14.423,14.18]}}, -{"f":"dojo-v8.0.0-keyed","b":"07_create10k","v":{"total":[610.991,602.707,601.439,607.795,601.91,602.951,609.671,601.33,606.948,609.617,592.432,590.2,603.816,601.33,613.708],"script":[255.857,252.315,250.718,257.831,252.752,253.53,256.655,253.602,254.501,255.673,245.538,241.411,249.321,250.815,255.998],"paint":[348.746,345.97,347.242,346.307,346.045,346.55,345.629,344.81,349.555,350.814,344.103,346.012,351.667,346.871,351.705]}}, -{"f":"dojo-v8.0.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[75.459,75.512,75.665,76.581,79.48,80.366,75.163,76.822,77.943,75.415,74.62,76.128,78.445,80.077,75.959],"script":[27.147,27.521,28.046,27.831,28.511,28.623,28.379,27.636,28.285,27.558,27.405,28.978,29.164,27.487,27.722],"paint":[41.784,41.722,41.894,43.188,41.704,41.952,41.367,43.081,42.186,42.38,41.816,41.735,41.925,42.224,42.678]}}, -{"f":"dojo-v8.0.0-keyed","b":"09_clear1k_x8","v":{"total":[22.077,22.555,22.893,22.806,22.261,22.071,23.36,23.45,23.03,22.726,23.989,21.43,22.366,23.056,23.455],"script":[20.083,20.633,19.754,21.348,19.634,19.087,19.719,19.836,21.063,20.575,21.419,19.469,19.581,20.212,21.188],"paint":[1.509,1.786,1.887,1.344,1.105,2.866,1.358,3.447,1.844,2.002,1.878,1.108,2.033,1.949,0.986]}}, -{"f":"dojo-v8.0.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6973409652709961]}}, -{"f":"dojo-v8.0.0-keyed","b":"22_run-memory","v":{"DEFAULT":[7.261355400085449]}}, -{"f":"dojo-v8.0.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[7.40902042388916]}}, -{"f":"dojo-v8.0.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.4993352890014648]}}, -{"f":"dojo-v8.0.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[63.720370292663574]}}, -{"f":"dojo-v8.0.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[43.736328125]}}, -{"f":"dojo-v8.0.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[13.517578125]}}, -{"f":"dojo-v8.0.0-keyed","b":"43_first-paint","v":{"DEFAULT":[79.6]}}, -{"f":"dominator-v0.5.0-keyed","b":"01_run1k","v":{"total":[44.038,43.898,43.523,43.184,44.06,44.879,43.439,44.128,45.355,46.393,43.586,43.779,45.649,43.756,44.131],"script":[10.378,10.337,10.457,9.874,10.358,11.148,10.27,10.27,11.195,11.681,10.25,10.364,11.501,10.391,10.444],"paint":[33.23,33.133,32.633,32.893,33.278,33.306,32.751,33.384,33.71,34.277,32.905,32.984,33.735,32.955,33.251]}}, -{"f":"dominator-v0.5.0-keyed","b":"02_replace1k","v":{"total":[49.592,50.879,50.291,50.995,49.814,50.246,49.948,49.851,50.364,49.625,51.635,51.6,50.07,50.18,50.675],"script":[14.775,15.262,14.96,15.33,14.647,14.846,14.866,14.659,14.749,14.771,15.098,15.341,14.705,14.721,15.145],"paint":[34.379,35.177,34.895,35.23,34.733,34.953,34.641,34.767,35.192,34.418,36.079,35.803,34.924,35.031,35.095]}}, -{"f":"dominator-v0.5.0-keyed","b":"03_update10th1k_x16","v":{"total":[16.63,17.81,16.628,16.23,16.892,16.793,17.161,16.531,16.825,16.983,16.58,17.52,17.194,16.055,17.223],"script":[1.497,1.009,1.244,1.229,1.212,1.379,1.551,1.504,0.91,1.552,1.767,1.221,2.054,0.968,1.436],"paint":[13.981,14.986,13.846,13.7,14.329,13.925,14.591,14.217,14.815,14.451,14.471,14.518,14.151,14.42,14.243]}}, -{"f":"dominator-v0.5.0-keyed","b":"04_select1k","v":{"total":[3.346,3.306,3.621,4.825,4.318,3.595,3.559,3.659,4.067,3.735,3.14,4.237,3.565,3.716,3.191,5.991,3.367,3.51,2.825,3.583,3.692,2.822,2.97,3.915,3.219],"script":[0.86,0.878,1.044,1.065,1.486,1.218,1.311,0.993,0.223,1.493,1.016,1.192,1.386,1.393,0.954,1.165,1.056,1.112,0.942,1.344,1.297,0.683,0.797,1.13,0.563],"paint":[1.983,2.317,1.373,1.422,1.884,2.272,2.142,2.563,2.751,1.642,1.633,1.621,1.59,2.223,1.687,1.584,1.785,2.301,1.14,2.141,2.289,1.634,2.065,1.642,1.093]}}, -{"f":"dominator-v0.5.0-keyed","b":"05_swap1k","v":{"total":[19.05,18.575,19.398,18.689,18.568,18.693,19.166,19.237,18.363,17.731,18.701,18.757,18.682,18.745,19.129],"script":[1.036,0.771,0.137,1.308,0.129,0.648,0.775,0.138,0.855,0.134,0.78,0.453,0.14,0.658,0.255],"paint":[16.348,16.522,18.079,16.162,17.437,15.705,17.301,17.719,16.235,16.496,16.172,17.301,15.96,16.508,17.45]}}, -{"f":"dominator-v0.5.0-keyed","b":"06_remove-one-1k","v":{"total":[15.196,14.796,15.163,14.783,14.73,14.893,15.064,14.85,14.893,15.297,15.053,15.161,15.257,14.775,15.024],"script":[0.497,0.472,0.521,0.501,0.35,0.263,0.459,0.411,0.537,0.535,0.367,0.488,0.43,0.493,0.298],"paint":[13.94,13.621,13.876,13.562,13.672,13.825,13.899,13.728,13.613,13.702,13.817,13.632,13.978,13.553,13.929]}}, -{"f":"dominator-v0.5.0-keyed","b":"07_create10k","v":{"total":[464.589,479.505,465.055,471.451,467.752,465.132,467.006,475.631,471.012,470.898,469.264,479.257,472.233,470.972,472.229],"script":[120.714,130.676,121.346,126.548,122.456,123.136,122.062,124.892,125.88,123.359,122.544,130.311,125.655,122.61,128.589],"paint":[336.707,341.399,336.959,337.148,338.139,335.207,337.974,342.8,338.388,340.777,339.926,341.953,339.81,341.608,336.915]}}, -{"f":"dominator-v0.5.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[51.682,51.18,52.11,52.851,52.321,51.949,51.423,50.186,51.64,53.445,52.139,53.872,51.401,50.952,51.484],"script":[10.987,11.054,11.688,11.861,11.825,11.22,10.992,10.998,11.007,11.874,11.009,11.966,11.123,11.122,11.141],"paint":[39.791,39.213,39.535,40.07,39.587,39.805,39.476,38.288,39.733,40.651,40.186,40.914,39.349,38.921,39.426]}}, -{"f":"dominator-v0.5.0-keyed","b":"09_clear1k_x8","v":{"total":[17.659,16.474,17.704,17.04,17.233,16.939,17.59,17.448,17.703,17.608,17.147,16.453,17.202,17.228,17.096],"script":[15.764,15.181,15.616,15.461,15.001,15.055,15.485,15.615,15.316,15.708,15.313,14.869,15.161,15.997,15.277],"paint":[1.811,0.818,1.979,1.344,2.016,1.788,2.004,1.743,1.915,1.793,1.175,1.492,1.185,1.13,1.732]}}, -{"f":"dominator-v0.5.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.6291818618774414]}}, -{"f":"dominator-v0.5.0-keyed","b":"22_run-memory","v":{"DEFAULT":[3.8252220153808594]}}, -{"f":"dominator-v0.5.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.8240785598754883]}}, -{"f":"dominator-v0.5.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.627566337585449]}}, -{"f":"dominator-v0.5.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[23.736724853515625]}}, -{"f":"dominator-v0.5.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[135.361328125]}}, -{"f":"dominator-v0.5.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[40.0673828125]}}, -{"f":"dominator-v0.5.0-keyed","b":"43_first-paint","v":{"DEFAULT":[219.5]}}, -{"f":"doohtml-keyed","b":"01_run1k","v":{"total":[35.12,37.053,35.542,37.112,34.906,35.769,35.349,35.403,35.545,35.967,35.751,36.55,36.993,36.943,36.097],"script":[2.314,2.261,2.313,2.412,2.241,2.229,2.381,2.36,2.216,2.344,2.251,2.367,2.432,2.441,2.253],"paint":[32.399,34.348,32.824,34.304,32.248,33.107,32.563,32.597,32.923,33.182,33.079,33.779,34.118,34.063,33.425]}}, -{"f":"doohtml-keyed","b":"02_replace1k","v":{"total":[39.359,40.889,40.47,38.905,39.774,38.951,40.314,39.048,39.173,40.553,39.243,40.188,41.21,39.578,40.445],"script":[4.799,5.116,5.192,4.783,4.945,4.809,5.079,4.752,4.846,5.026,4.799,4.962,5.19,4.852,5.125],"paint":[34.112,35.322,34.84,33.698,34.407,33.705,34.811,33.858,33.888,35.102,34.022,34.779,35.564,34.25,34.865]}}, -{"f":"doohtml-keyed","b":"03_update10th1k_x16","v":{"total":[17.493,16.82,17.352,16.319,16.403,17.051,16.701,16.525,16.781,17.169,16.075,17.061,16.073,16.333,16.322],"script":[1.39,0.689,0.61,0.886,1.03,1.472,0.957,0.913,1.402,0.989,0.889,1.242,0.223,0.743,0.978],"paint":[14.998,14.444,15.268,14.739,13.271,14.086,14.393,14.914,13.224,15.18,13.873,13.343,14.572,13.793,13.84]}}, -{"f":"doohtml-keyed","b":"04_select1k","v":{"total":[2.794,2.708,2.729,2.468,2.987,2.747,2.75,2.986,2.867,3.112,2.935,3.886,2.531,2.244,3.493,2.751,2.64,2.534,2.516,2.664,3.679,2.479,3.256,3.046,2.845],"script":[0.058,0.058,0.082,0.057,0.057,0.07,0.066,1.041,0.068,0.791,0.527,0.754,0.068,0.059,0.642,0.451,0.058,0.061,0.058,0.3,1.014,0.062,0.065,0.68,0.813],"paint":[2.078,2.526,1.879,1.643,2.813,1.857,2.557,1.838,2.673,1.45,2.133,2.978,1.91,2.064,2.3,2.181,2.471,2.365,2.34,1.906,2.532,1.561,2.718,2.249,1.288]}}, -{"f":"doohtml-keyed","b":"05_swap1k","v":{"total":[18.267,18.357,18.672,18.319,18.795,18.483,19.015,18.533,19.183,18.467,18.635,18.004,17.896,18.131,18.202],"script":[0.081,0.143,0.08,0.07,0.729,0.083,0.078,0.074,0.074,0.078,0.499,0.19,0.076,0.342,0.073],"paint":[16.357,17.257,16.958,16.976,16.287,16.194,17.867,16.494,17.32,16.163,16.785,16.768,16.586,15.645,16.797]}}, -{"f":"doohtml-keyed","b":"06_remove-one-1k","v":{"total":[14.756,15.196,15.241,14.749,15.036,15.093,15.109,15.148,15.24,14.82,15.242,15.127,14.81,15.247,16.338],"script":[0.08,0.385,0.078,0.077,0.076,0.076,0.074,0.158,0.315,0.083,0.082,0.273,0.073,0.081,0.448],"paint":[13.662,14.076,14.133,13.911,14.271,14.297,13.818,14.238,13.839,14.026,14.148,14.105,13.703,14.418,15.148]}}, -{"f":"doohtml-keyed","b":"07_create10k","v":{"total":[368.196,371.699,370.478,371.916,372.376,371.049,371.561,367.48,369.402,373.478,373.339,370.796,372.578,374.391,370.701],"script":[25.639,25.77,24.986,25.969,24.83,24.951,26.138,24.176,23.905,26.479,25.063,24.245,26.229,25.935,25.716],"paint":[335.987,338.739,338.742,339.246,340.934,339.378,338.718,336.677,338.753,340.354,341.573,339.957,339.772,341.85,338.318]}}, -{"f":"doohtml-keyed","b":"08_create1k-after1k_x2","v":{"total":[41.989,41.235,40.576,41.194,41.383,40.381,40.639,40.155,39.747,40.341,41.612,39.729,41.682,39.931,40.948],"script":[2.526,2.256,2.289,2.352,2.509,2.232,2.375,2.259,2.258,2.244,2.418,2.304,2.362,2.283,2.424],"paint":[38.578,38.094,37.404,37.95,38.009,37.287,37.405,37.012,36.631,37.223,38.315,36.59,38.456,36.822,37.675]}}, -{"f":"doohtml-keyed","b":"09_clear1k_x8","v":{"total":[12.621,12.329,13.101,12.056,12.281,12.437,12.502,12.893,13.06,12.609,13.083,12.495,12.651,12.905,12.443],"script":[10.665,10.676,10.985,10.687,10.727,10.444,10.482,10.962,11.002,10.831,11.127,10.712,10.624,10.47,10.756],"paint":[1.306,1.574,2.043,1.284,1.476,1.402,1.938,1.125,1.983,1.701,0.968,1.691,1.252,1.804,1.604]}}, -{"f":"doohtml-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5305919647216797]}}, -{"f":"doohtml-keyed","b":"22_run-memory","v":{"DEFAULT":[1.7125463485717773]}}, -{"f":"doohtml-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.709014892578125]}}, -{"f":"doohtml-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6190519332885742]}}, -{"f":"doohtml-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[12.16050910949707]}}, -{"f":"doohtml-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[16.375]}}, -{"f":"doohtml-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.951171875]}}, -{"f":"doohtml-keyed","b":"43_first-paint","v":{"DEFAULT":[68.9]}}, -{"f":"doohtml-dom-keyed","b":"01_run1k","v":{"total":[34.895,36.776,36.839,34.933,34.905,35.913,35.977,36.26,35.006,34.429,36.168,37.386,35.381,34.828,35.87],"script":[2.36,2.31,2.517,2.248,2.253,2.278,2.248,2.35,2.207,2.283,2.465,2.312,2.272,2.432,2.393],"paint":[32.126,34.048,33.885,32.268,32.261,33.192,33.304,33.504,32.371,31.736,33.275,34.666,32.682,31.994,33.056]}}, -{"f":"doohtml-dom-keyed","b":"02_replace1k","v":{"total":[40.711,40.561,38.984,38.666,39.099,40.304,38.746,40.647,39.175,39.04,39.114,38.565,39.879,38.56,38.641],"script":[5.123,4.902,4.689,4.677,4.699,4.736,4.669,4.901,4.595,4.655,4.618,4.614,4.714,4.812,4.572],"paint":[35.125,35.215,33.87,33.548,33.966,35.089,33.652,35.278,34.116,33.953,34.061,33.55,34.534,33.29,33.64]}}, -{"f":"doohtml-dom-keyed","b":"03_update10th1k_x16","v":{"total":[16.864,15.969,16.546,16.688,15.858,15.952,16.953,16.286,15.917,16.794,16.632,16.922,16.184,15.801,16.65],"script":[1.026,0.837,0.838,0.939,1.059,0.228,0.898,0.535,0.572,1.408,0.92,0.65,0.204,1.08,1.446],"paint":[14.363,13.525,14.224,14.444,13.641,14.262,14.359,14.568,14.057,13.587,14.237,14.915,14.83,12.947,13.592]}}, -{"f":"doohtml-dom-keyed","b":"04_select1k","v":{"total":[3.812,2.536,2.49,2.773,2.635,2.485,1.962,1.819,2.765,2.521,2.911,3.158,2.972,4.305,2.729,2.484,2.622,2.465,4.099,2.721,4.054,2.772,2.282,2.756,2.409],"script":[0.056,0.056,0.884,0.062,0.804,0.057,0.057,0.066,1.057,0.054,0.058,0.058,0.056,1.082,0.785,0.058,0.06,0.058,0.804,0.219,0.941,0.066,0.064,0.064,0.063],"paint":[1.613,2.168,1.076,2.568,1.73,2.33,1.523,1.652,1.621,0.553,2.758,1.671,2.826,1.898,1.147,2.323,2.466,2.302,1.166,1.872,1.636,2.619,1.16,1.528,2.254]}}, -{"f":"doohtml-dom-keyed","b":"05_swap1k","v":{"total":[17.86,18.422,18.154,18.129,18.642,17.905,19.808,17.618,17.794,17.526,17.811,18.3,18.836,17.858,17.789],"script":[0.078,0.653,0.075,0.082,0.917,0.071,0.08,0.084,0.122,0.074,0.072,0.723,0.54,0.083,0.076],"paint":[16.563,16.721,16.771,16.503,16.402,16.448,18.562,15.564,16.308,16.474,16.003,15.91,16.112,16.375,16.567]}}, -{"f":"doohtml-dom-keyed","b":"06_remove-one-1k","v":{"total":[15.302,15.152,14.787,14.691,15.174,14.839,14.514,14.756,15.157,14.705,14.709,14.706,14.866,15.626,15.112],"script":[0.332,0.387,0.083,0.078,0.364,0.08,0.084,0.081,0.085,0.076,0.078,0.081,0.08,0.11,0.083],"paint":[14.198,14.031,13.734,13.61,14.091,13.589,13.7,13.979,14.242,13.867,13.926,13.932,14.059,14.731,13.994]}}, -{"f":"doohtml-dom-keyed","b":"07_create10k","v":{"total":[364.654,375.636,364.747,365.125,365.81,367.181,364.18,366.823,366.004,364.062,367.639,362.941,366.407,370.302,376.114],"script":[25.445,25.518,24.712,23.723,24.242,24.298,24.359,24.7,25.88,24.051,24.243,24.688,25.321,25.626,25.177],"paint":[332.528,343.489,333.4,334.402,334.95,336.321,333.225,335.538,333.424,333.404,336.849,331.673,334.499,338.153,344.391]}}, -{"f":"doohtml-dom-keyed","b":"08_create1k-after1k_x2","v":{"total":[40.163,40.093,40.446,41.194,40.409,39.615,42.537,40.717,40.127,40.378,39.981,40.546,40.215,40.889,40.232],"script":[2.3,2.333,2.303,2.446,2.285,2.264,2.482,2.279,2.284,2.262,2.285,2.306,2.29,2.307,2.287],"paint":[37.03,36.911,37.274,37.908,37.215,36.484,39.193,37.566,36.995,37.261,36.851,37.403,37.089,37.729,37.1]}}, -{"f":"doohtml-dom-keyed","b":"09_clear1k_x8","v":{"total":[11.413,11.648,12.148,12.311,11.677,11.383,11.804,11.895,11.933,11.509,11.744,11.214,11.604,11.18,12.001],"script":[9.524,9.82,9.744,10.628,9.815,9.908,9.727,9.95,10.255,9.478,10.572,9.912,10.137,10.079,10.083],"paint":[1.804,1.005,2.329,1.595,1.773,1.4,2,1.859,1.589,1.945,1.087,1.217,1.365,0.365,1.828]}}, -{"f":"doohtml-dom-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5178089141845703]}}, -{"f":"doohtml-dom-keyed","b":"22_run-memory","v":{"DEFAULT":[1.7073736190795898]}}, -{"f":"doohtml-dom-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.7334585189819336]}}, -{"f":"doohtml-dom-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6012897491455078]}}, -{"f":"doohtml-dom-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[12.15517520904541]}}, -{"f":"doohtml-dom-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[16.2919921875]}}, -{"f":"doohtml-dom-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.943359375]}}, -{"f":"doohtml-dom-keyed","b":"43_first-paint","v":{"DEFAULT":[51.6]}}, -{"f":"doz-v5-preview-keyed","b":"01_run1k","v":{"total":[59.231,60.21,60.878,60.267,59.886,60.717,60.25,61.356,59.778,59.32,59.559,60.686,59.157,60.574,59.79],"script":[25.495,25.827,26.351,26.441,25.877,25.979,25.916,26.123,25.485,25.356,26.059,26.099,25.79,26.372,26.424],"paint":[33.297,33.934,34.069,33.398,33.568,34.281,33.911,34.833,33.873,33.541,33.076,34.149,32.972,33.799,32.919]}}, -{"f":"doz-v5-preview-keyed","b":"02_replace1k","v":{"total":[62.837,63.019,62.627,63.607,62.618,62.497,62.254,63.198,62.207,62.812,62.553,62.006,61.872,62.367,63.366],"script":[27.555,27.578,27.175,27.56,27.154,27.289,27.214,27.784,27.172,27.051,27.317,27.396,26.815,27.596,27.485],"paint":[34.846,34.982,35.025,35.524,35.038,34.774,34.597,34.97,34.608,35.332,34.781,34.163,34.609,34.331,35.435]}}, -{"f":"doz-v5-preview-keyed","b":"03_update10th1k_x16","v":{"total":[29.214,29.034,28.758,27.989,29.276,29.362,29.566,29.458,28.278,28.742,29.915,28.015,28.766,29.663,28.776],"script":[11.845,11.756,12.638,12.042,12.945,11.096,11.657,11.06,10.937,11.49,11.948,12.01,11.121,11.491,12.637],"paint":[16.016,16.314,14.522,13.8,14.254,16.673,16.519,17.193,16.046,15.898,16.467,14.243,15.807,16.774,14.693]}}, -{"f":"doz-v5-preview-keyed","b":"04_select1k","v":{"total":[8.684,9.118,9.285,8.815,9.433,9.149,9.489,8.462,9.144,8.972,9.27,8.401,8.402,9.114,8.086,8.069,9.217,9.476,9.428,8.244,9.323,8.379,8.994,9.405,8.997],"script":[5.825,6.778,5.901,6.14,6.404,5.953,6.763,5.878,6.372,6.319,6.27,6.034,6.141,6.267,6.396,6.333,6.174,6.081,6.666,6.101,6.59,6.204,6.004,6.197,6.215],"paint":[2.274,1.642,1.519,2.455,2.472,2.371,2.14,2.068,1.911,0.958,2.871,1.682,1.593,1.992,1.448,1.134,2.919,2.281,2.017,1.653,1.812,2.046,2.857,2.076,1.891]}}, -{"f":"doz-v5-preview-keyed","b":"05_swap1k","v":{"total":[25.278,25.665,25.639,25.213,24.921,24.344,24.895,25.55,26.943,27.361,25.836,27.205,24.729,26.518,24.741],"script":[6.553,6.705,7.156,6.177,6.227,6.779,5.789,6.211,5.933,6.687,6.896,6.785,6.109,5.952,5.771],"paint":[16.17,17.467,16.429,16.838,17.115,15.841,17.395,17.317,19.914,19.023,17.632,18.9,17.603,18.554,17.562]}}, -{"f":"doz-v5-preview-keyed","b":"06_remove-one-1k","v":{"total":[21.498,20.94,20.723,20.344,20.394,20.468,20.386,20.478,20.868,20.659,21.289,20.656,20.455,20.355,20.484],"script":[5.582,5.642,5.879,5.473,5.549,5.478,5.473,5.555,5.584,5.553,5.863,5.488,5.538,5.484,5.677],"paint":[15.131,14.565,14.44,13.543,13.808,13.838,14.142,14.162,14.54,14.385,14.683,14.466,14.146,13.767,14.082]}}, -{"f":"doz-v5-preview-keyed","b":"07_create10k","v":{"total":[678.997,682.357,677.24,677.763,675.95,680.652,688.777,682.389,682.992,675.773,671.023,675.826,677.317,676.005,676.531],"script":[322.294,323.813,323.301,324.657,324.707,322.446,325.318,322.816,323.166,322.365,322.739,321.872,324.627,322.522,320.892],"paint":[349.961,351.99,347.34,346.538,344.537,351.556,356.78,352.99,353.25,346.798,341.7,347.217,346.093,346.904,349.018]}}, -{"f":"doz-v5-preview-keyed","b":"08_create1k-after1k_x2","v":{"total":[115.526,117.121,118.328,113.979,114.907,115.283,115.472,114.455,113.645,117.913,113.327,114.797,117.512,117.966,117.904],"script":[44.774,46.57,43.589,43.618,44.56,44.675,45.383,44.958,43.597,44.033,43.86,44.129,44.747,45.426,45.456],"paint":[69.839,69.643,73.845,69.474,69.456,69.686,69.143,68.605,69.109,72.968,68.554,69.765,71.877,71.613,71.532]}}, -{"f":"doz-v5-preview-keyed","b":"09_clear1k_x8","v":{"total":[16.44,16.477,17.833,16.72,16.388,16.358,17.504,16.558,15.45,15.667,15.927,16.541,15.935,16.312,15.135],"script":[14.195,14.302,15.539,14.961,14.509,14.022,14.789,14.392,13.878,13.983,14.156,14.607,13.828,14.55,13.68],"paint":[1.804,1.888,2.204,1.67,1.733,1.95,2.114,2.075,1.483,1.21,1.677,1.835,2.009,0.83,1.37]}}, -{"f":"doz-v5-preview-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7342910766601562]}}, -{"f":"doz-v5-preview-keyed","b":"22_run-memory","v":{"DEFAULT":[4.512258529663086]}}, -{"f":"doz-v5-preview-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.242131233215332]}}, -{"f":"doz-v5-preview-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[8.82599925994873]}}, -{"f":"doz-v5-preview-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[35.92591094970703]}}, -{"f":"doz-v5-preview-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[72.984375]}}, -{"f":"doz-v5-preview-keyed","b":"42_size-compressed","v":{"DEFAULT":[19.111328125]}}, -{"f":"doz-v5-preview-keyed","b":"43_first-paint","v":{"DEFAULT":[107.3]}}, -{"f":"ef-js-v0.17.5-keyed","b":"01_run1k","v":{"total":[49.912,48.954,47.968,48.178,49.66,50.111,49.566,48.425,48.91,49.739,50.618,47.956,48.123,49.7,48.546],"script":[14.593,14.67,13.931,14.036,14.443,14.702,14.264,14.416,14.328,14.431,14.822,14.317,14.347,14.325,14.108],"paint":[34.892,33.859,33.592,33.701,34.768,35.007,34.888,33.567,34.15,34.869,35.362,33.216,33.353,34.928,34.026]}}, -{"f":"ef-js-v0.17.5-keyed","b":"02_replace1k","v":{"total":[53.776,53.074,53.932,52.92,54.983,53.821,54.885,52.011,52.109,51.804,53.084,51.335,51.841,53.687,52.621],"script":[16.9,16.179,16.424,16.19,17.48,16.609,17.11,16.287,16.142,16.211,15.91,16.093,15.918,16.776,15.922],"paint":[36.407,36.413,37.044,36.271,37.02,36.756,37.316,35.245,35.506,35.136,36.697,34.799,35.446,36.418,36.173]}}, -{"f":"ef-js-v0.17.5-keyed","b":"03_update10th1k_x16","v":{"total":[15.776,16.036,16.464,16.059,16.263,16.904,16.503,16.118,15.839,16.208,16.561,18.14,15.824,16.238,16.191],"script":[0.69,1.832,1.076,1.022,0.588,1.123,0.6,0.895,1.279,1.283,1.09,0.982,0.237,0.883,0.928],"paint":[13.533,12.018,14.008,13.503,13.983,13.996,14.347,13.399,13.551,13.908,14.084,16.023,14.355,13.872,13.7]}}, -{"f":"ef-js-v0.17.5-keyed","b":"04_select1k","v":{"total":[3.106,2.811,5.924,2.978,2.906,2.332,2.547,2.546,3.033,3.118,3.351,2.853,3.207,2.695,3.306,2.975,4.855,5.889,3.054,2.511,3.661,7.246,2.937,3.049,2.764],"script":[0.105,0.096,0.099,0.612,0.102,0.099,0.097,0.106,0.935,0.924,0.922,0.105,0.453,0.102,0.78,0.586,0.917,0.777,0.873,0.654,0.103,0.731,0.108,1.105,0.106],"paint":[2.89,2.244,2.596,1.679,2.704,2.135,2.352,2.339,1.601,2.095,2.328,2.653,1.645,1.514,2.415,2.289,1.842,1.869,1.436,1.761,1.171,1.305,1.992,1.841,1.012]}}, -{"f":"ef-js-v0.17.5-keyed","b":"05_swap1k","v":{"total":[19.688,18.785,18.968,18.555,19.261,18.531,19.088,19.317,17.9,18.932,18.516,19.397,18.708,18.428,18.875],"script":[0.446,0.657,0.124,1.004,0.133,0.544,1.138,0.124,0.124,0.137,0.129,1.005,0.913,0.554,1.033],"paint":[17.652,16.31,16.342,16.242,18.076,16.129,16.26,17.824,16.335,17.475,17.341,16.956,16.439,16.052,15.598]}}, -{"f":"ef-js-v0.17.5-keyed","b":"06_remove-one-1k","v":{"total":[14.996,14.862,14.743,14.759,15.091,14.858,14.959,14.779,14.655,14.825,14.746,14.854,14.818,15.181,14.764],"script":[0.241,0.468,0.319,0.121,0.302,0.122,0.216,0.127,0.386,0.119,0.114,0.119,0.12,0.46,0.302],"paint":[14.246,13.408,13.664,13.928,13.914,14.044,14.007,13.931,13.244,14,13.569,13.944,13.858,14.001,13.722]}}, -{"f":"ef-js-v0.17.5-keyed","b":"07_create10k","v":{"total":[491.664,492.172,490.862,486.939,490.859,485.672,491.204,490.453,488.744,488.442,487.915,496.682,489.035,492.433,490.642],"script":[145.925,145.23,148.024,145.483,147.613,146.415,145.968,146.584,144.918,147.814,144.806,145.703,147.097,149.791,149.134],"paint":[337.906,340.279,336.189,334.558,336.518,332.471,338.57,337.059,337.164,333.941,336.425,344.306,335.224,335.847,334.859]}}, -{"f":"ef-js-v0.17.5-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.42,51.139,51.61,51.019,52.852,52.975,51.479,52.562,50.42,52.632,51.476,51.053,52.895,51.751,50.828],"script":[11.552,11.735,11.717,11.912,11.855,12.589,11.998,12.119,11.709,12.739,11.812,11.662,12.424,12.167,11.746],"paint":[39.693,38.517,38.994,38.237,40.047,39.476,38.602,39.533,37.833,38.985,38.729,38.433,39.579,38.72,38.192]}}, -{"f":"ef-js-v0.17.5-keyed","b":"09_clear1k_x8","v":{"total":[17.239,15.772,17.551,16.01,17.031,16.594,16.905,16.765,17.438,16.173,17.304,16.886,16.903,17.138,17.458],"script":[15.247,14.278,15.207,14.358,15.033,14.671,14.805,14.881,15.49,14.278,15.125,15.152,14.974,15.286,15.764],"paint":[1.347,1.29,1.317,1.383,1.872,1.8,1.416,1.77,1.233,1.803,1.915,1.604,1.038,1.755,0.838]}}, -{"f":"ef-js-v0.17.5-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5634098052978516]}}, -{"f":"ef-js-v0.17.5-keyed","b":"22_run-memory","v":{"DEFAULT":[4.5638322830200195]}}, -{"f":"ef-js-v0.17.5-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.689360618591309]}}, -{"f":"ef-js-v0.17.5-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9402713775634766]}}, -{"f":"ef-js-v0.17.5-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[38.66111660003662]}}, -{"f":"ef-js-v0.17.5-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[24.693359375]}}, -{"f":"ef-js-v0.17.5-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.1396484375]}}, -{"f":"ef-js-v0.17.5-keyed","b":"43_first-paint","v":{"DEFAULT":[67.2]}}, -{"f":"elm-v0.19.1-3-keyed","b":"01_run1k","v":{"total":[50.55,43.718,52.117,42.488,48.79,46.785,44.075,51.16,43.667,42.486,51.638,42.466,50.603,48.743,44.403],"script":[9.398,9.147,9.83,9.224,9.421,9.212,9.792,9.15,9.383,9.142,9.613,8.885,9.51,9.451,9.104],"paint":[33.574,32.583,33.591,32.833,32.214,33.37,33.494,32.689,32.727,32.906,32.583,33.13,33.597,33.309,34.574]}}, -{"f":"elm-v0.19.1-3-keyed","b":"02_replace1k","v":{"total":[50.322,56.886,57.452,54.957,54.467,54.652,50,54.547,58.153,51.147,59.034,50.437,56.629,59.621,56.928],"script":[11.274,12.12,12.566,11.826,12.433,12.196,10.964,11.444,12.29,11.524,12.265,11.786,11.845,12.918,12.221],"paint":[35.819,36.301,36.017,37.054,36.256,36.177,36.585,35.82,36.016,35.632,36.241,35.937,36.65,36.105,35.421]}}, -{"f":"elm-v0.19.1-3-keyed","b":"03_update10th1k_x16","v":{"total":[43.799,19.306,40.234,22.058,19.714,20.013,19.826,23.525,44.403,44.371,22.132,44.463,20.377,46.377,20.901],"script":[4.826,4.277,2.814,4.818,4.359,3.069,3.227,4.632,4.847,4.168,3.989,3.552,3.628,3.169,3.612],"paint":[13.832,14.26,15.685,15.526,13.757,15.892,13.323,14.507,14.157,13.541,13.697,14.089,13.737,17.211,15.782]}}, -{"f":"elm-v0.19.1-3-keyed","b":"04_select1k","v":{"total":[10.086,5.766,10.392,11.556,7.453,7.867,9.161,10.833,8.852,8.913,9.581,6.125,8.336,5.985,6.912,7.038,9.417,6.886,6.927,4.8,4.823,9.431,10.642,5.9,8.225],"script":[0.752,1.446,1.686,1.433,1.24,1.387,1.144,2.054,2.038,0.707,0.788,1.142,1.876,1.107,1.946,0.375,0.368,1.585,1.548,1.695,1.79,2.071,0.371,1.331,1.469],"paint":[2.619,2.503,1.954,2.286,1.661,2.462,2.35,2.008,1.445,1.709,2.154,2.384,2.357,1.773,2.39,2.715,3.131,3.008,2.201,2.582,1.39,1.118,2.377,2.416,1.656]}}, -{"f":"elm-v0.19.1-3-keyed","b":"05_swap1k","v":{"total":[43.411,20.847,24.663,21.916,21.035,20.366,19.968,41.319,20.651,40.31,22.407,40.321,42.284,42.644,43.538],"script":[1.58,1.863,0.432,0.979,1.731,1.111,1.477,1.374,1.322,1.096,1.243,1.569,2.108,2.33,2.88],"paint":[17.351,17.041,18.516,18.074,16.088,18.282,16.818,17.52,15.834,17.312,19.639,16.715,17.266,17.615,17.893]}}, -{"f":"elm-v0.19.1-3-keyed","b":"06_remove-one-1k","v":{"total":[22.222,23.941,18.519,22.879,23.195,23.818,21.721,16.962,17.262,18.476,20.886,17.699,24.219,22.402,21.125],"script":[0.985,0.767,1.058,0.972,0.73,0.951,0.917,0.736,0.743,1.02,0.835,0.744,0.988,1.055,0.71],"paint":[14.718,15.047,15.093,14.687,15.323,14.988,14.945,14.892,15.113,14.511,14.854,15.204,15.239,14.798,15.085]}}, -{"f":"elm-v0.19.1-3-keyed","b":"07_create10k","v":{"total":[458.229,455.732,458.674,456.721,439.584,454.299,455.947,456.059,452.644,439.539,456.161,455.587,455.285,453.9,456.662],"script":[101.254,100.404,101.959,103.272,100.247,100.589,100.871,99.356,99.6,101.817,100.854,101.557,103.437,101.597,100.443],"paint":[347.657,346.497,347.793,344.647,330.122,345.225,345.531,347.482,344.023,330.113,346.298,344.605,342.457,343.064,344.15]}}, -{"f":"elm-v0.19.1-3-keyed","b":"08_create1k-after1k_x2","v":{"total":[53.139,58.109,53.133,52.625,57.603,52.185,55.087,54.213,53.545,52.749,54.92,52.961,56.765,52.25,52.504],"script":[8.321,8.599,8.298,8.265,8.702,8.12,9.532,8.672,8.364,8.222,8.123,8.074,8.117,7.922,8.218],"paint":[37.708,38.625,38.012,37.896,38.603,37.292,38.779,37.969,38.348,37.874,37.795,38.184,38.034,37.65,37.714]}}, -{"f":"elm-v0.19.1-3-keyed","b":"09_clear1k_x8","v":{"total":[16.658,38.409,13.223,15.03,37.311,14.689,14.51,14.227,13.801,14.807,14.202,15.092,15,14.023,37.126],"script":[12.28,11.448,12.062,10.494,12.346,12.081,11.641,10.659,10.644,11.845,12.273,10.286,11.075,12.121,11.633],"paint":[1.509,2.224,1.037,2.566,1.132,0.76,1.533,1.853,1.022,0.899,1.811,2.472,1.739,1.797,2.115]}}, -{"f":"elm-v0.19.1-3-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5522308349609375]}}, -{"f":"elm-v0.19.1-3-keyed","b":"22_run-memory","v":{"DEFAULT":[3.679945945739746]}}, -{"f":"elm-v0.19.1-3-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.737974166870117]}}, -{"f":"elm-v0.19.1-3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0723180770874023]}}, -{"f":"elm-v0.19.1-3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[29.29666233062744]}}, -{"f":"elm-v0.19.1-3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[22.5205078125]}}, -{"f":"elm-v0.19.1-3-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.1708984375]}}, -{"f":"elm-v0.19.1-3-keyed","b":"43_first-paint","v":{"DEFAULT":[67.9]}}, -{"f":"ember-v5.3.0-keyed","b":"01_run1k","v":{"total":[66.71,69.146,69.164,66.534,66.598,68.621,68.591,69.048,68.004,68.385,66.582,69.331,67.363,67.185,67.425],"script":[32.01,33.279,32.956,31.48,31.561,33.291,32.509,34.001,32.728,32.972,31.869,33.702,31.693,32.254,31.931],"paint":[34.208,35.38,35.669,34.606,34.58,34.845,35.6,34.596,34.751,34.947,34.226,35.163,35.227,34.452,35.022]}}, -{"f":"ember-v5.3.0-keyed","b":"02_replace1k","v":{"total":[84.388,83.094,82.163,81.283,81.6,82.397,83.774,83.817,82.606,83.712,83.251,83.839,82.947,84.149,84.758],"script":[44.427,44.98,44.233,42.627,43.616,44.464,45.342,43.841,44.604,44.997,44.915,45.18,44.661,45.901,44.281],"paint":[39.465,37.589,37.449,38.156,37.492,37.425,37.952,39.475,37.498,38.228,37.853,38.13,37.784,37.727,39.832]}}, -{"f":"ember-v5.3.0-keyed","b":"03_update10th1k_x16","v":{"total":[24.456,24.091,25.104,24.154,25.734,24.264,23.36,23.614,23.469,24.021,24.062,24.584,23.118,23.107,23.247],"script":[8.367,7.821,7.233,7.847,7.531,8.203,7.665,7.562,8.021,7.999,7.58,8.693,7.695,7.379,7.522],"paint":[14.59,13.926,16.725,14.382,16.381,14.448,14.535,14.471,13.936,14.747,15.16,12.707,14.242,14.335,14.094]}}, -{"f":"ember-v5.3.0-keyed","b":"04_select1k","v":{"total":[18.224,18.463,17.119,18.041,19.737,18.623,17.62,18.856,18.047,17.089,17.348,17.499,17.282,17.902,18.211,17.672,17.637,17.995,18.297,18.149,16.719,17.633,20.418,17.971,16.954],"script":[14.601,14.684,13.93,15.041,14.573,15.105,14.516,15.679,14.79,13.903,14.491,13.966,14.355,15.015,14.539,14.413,14.503,14.239,14.578,14.857,14.036,14.224,16.03,15.012,14.502],"paint":[2.469,2.845,2.224,2.369,3.389,2.854,2.121,2.565,1.389,2.537,1.914,2.996,2.255,2.699,3.061,3.081,2.091,3.134,3.535,2.532,1.268,3.236,3.334,1.402,2.279]}}, -{"f":"ember-v5.3.0-keyed","b":"05_swap1k","v":{"total":[30.551,28.709,28.139,29.277,28.855,30.904,29.182,29.258,28.924,29.327,29.202,28.838,28.496,28.474,29.877],"script":[9.095,9.457,9.118,10.21,9.1,9.215,10.093,9.645,8.984,9.707,8.519,9.705,8.854,9.643,10.642],"paint":[19.97,16.557,17.732,16.926,18.762,19.7,17.688,17.799,18.481,17.354,19.616,17.459,18.322,17.451,17.888]}}, -{"f":"ember-v5.3.0-keyed","b":"06_remove-one-1k","v":{"total":[24.692,24.992,24.726,24.465,24.569,24.348,24.498,24.308,25.334,24.314,24.389,24.366,24.391,24.62,24.534],"script":[8.955,9.113,9.226,8.81,8.849,8.928,8.994,8.882,8.902,8.867,8.922,8.565,8.99,8.855,8.813],"paint":[14.954,15.011,14.71,14.84,14.639,14.647,14.683,14.32,15.059,14.141,14.085,14.987,14.32,14.674,14.969]}}, -{"f":"ember-v5.3.0-keyed","b":"07_create10k","v":{"total":[611.034,602.99,598.542,599.946,603.323,611.057,610.88,608.843,616.185,610.655,610.726,614.524,601.713,620.706,606.016],"script":[247.069,238.722,235.028,238.869,242.338,251.736,249.04,248.167,248.235,247.331,249.572,251.064,245.268,248.331,244.793],"paint":[356.843,357.025,355.877,353.849,353.742,352.212,354.763,353.529,360.869,355.78,354.027,356.249,349.321,364.899,354.133]}}, -{"f":"ember-v5.3.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[78.722,79.082,80.242,78.134,80.347,79.419,79.389,80.968,81.282,79.951,79.679,79.148,80.894,79.803,80.679],"script":[37.574,38.027,38.827,37.155,38.986,37.874,37.515,37.92,38.958,38.157,37.531,37.702,38.425,37.917,38.678],"paint":[40.185,40.078,40.457,40.021,40.435,40.581,40.995,42.075,41.361,40.829,41.196,40.505,41.294,40.934,41.067]}}, -{"f":"ember-v5.3.0-keyed","b":"09_clear1k_x8","v":{"total":[20.967,21.922,20.034,21.48,20.639,21.6,21.931,21.004,20.706,20.562,21.108,22.918,20.738,21.628,21.64],"script":[19.369,20.159,18.585,19.349,18.722,19.344,19.325,18.928,18.823,18.344,18.973,20.925,18.557,19.44,19.856],"paint":[1.495,1.662,1.344,1.361,1.131,1.95,1.24,1.365,1.046,2.123,1.233,1.721,1.832,2.073,1.012]}}, -{"f":"ember-v5.3.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[6.789891242980957]}}, -{"f":"ember-v5.3.0-keyed","b":"22_run-memory","v":{"DEFAULT":[12.453709602355957]}}, -{"f":"ember-v5.3.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[12.629490852355957]}}, -{"f":"ember-v5.3.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[8.034618377685547]}}, -{"f":"ember-v5.3.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[58.77493953704834]}}, -{"f":"ember-v5.3.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[433.8076171875]}}, -{"f":"ember-v5.3.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[103.873046875]}}, -{"f":"ember-v5.3.0-keyed","b":"43_first-paint","v":{"DEFAULT":[588.5]}}, -{"f":"fntags-v0.3.3-keyed","b":"01_run1k","v":{"total":[47.883,47.273,47.471,49.074,48.267,49.796,49.405,48.872,47.711,46.752,50.05,48.248,47.922,49.135,47.321],"script":[11.727,11.139,11.057,12.122,11.831,12.716,12.391,12.281,11.299,11.252,12.765,11.754,11.166,12.303,11.093],"paint":[35.703,35.713,35.973,36.547,36.006,36.643,36.544,36.148,35.979,35.069,36.848,36.031,36.316,36.404,35.799]}}, -{"f":"fntags-v0.3.3-keyed","b":"02_replace1k","v":{"total":[54.476,52.684,53.092,53.795,54.029,52.922,54.111,54.346,54.987,54.285,52.737,52.074,53.246,53.864,52.933],"script":[16.598,15.133,15.268,15.507,16.381,15.461,15.578,15.42,15.947,16.392,15.373,15.428,15.56,15.407,15.154],"paint":[37.391,37.088,37.386,37.814,37.179,37.006,38.085,38.475,38.58,37.439,36.917,36.191,37.237,37.986,37.334]}}, -{"f":"fntags-v0.3.3-keyed","b":"03_update10th1k_x16","v":{"total":[17.688,18.355,16.958,16.915,16.963,19.477,17.349,16.601,17.008,17.105,16.924,16.549,16.205,16.545,16.575],"script":[0.925,1.232,0.851,1.236,0.973,0.953,1.118,1.172,0.253,1.038,0.554,1.232,0.26,0.609,1.188],"paint":[15.176,16.055,14.19,14.38,14.312,16.011,14.348,13.676,15.566,14.647,14.697,14.104,14.878,14.38,14.054]}}, -{"f":"fntags-v0.3.3-keyed","b":"04_select1k","v":{"total":[2.386,4.053,2.569,2.195,3.23,2.784,3.647,2.826,2.771,2.81,2.551,3.104,2.584,3.471,2.225,2.233,2.842,2.851,4.937,3.867,4.999,2.443,4.282,2.762,2.506],"script":[0.053,0.055,0.532,0.052,0.758,0.053,0.928,0.051,0.064,0.687,0.051,0.871,0.056,0.826,0.052,0.051,0.056,0.055,1.015,0.051,0.051,0.055,0.056,0.051,0.449],"paint":[2.233,1.41,1.579,1.102,2.376,2.63,2.389,2.68,2.503,1.983,2.397,1.744,2.432,2.043,2.081,1.223,1.772,1.819,1.77,1.433,2.036,2.298,2.021,2.611,1.955]}}, -{"f":"fntags-v0.3.3-keyed","b":"05_swap1k","v":{"total":[20.56,21.199,19.828,20.997,19.857,19.654,20.24,20.301,20.697,20.367,19.512,19.157,20.149,19.939,21.206],"script":[1.007,1.496,0.9,1.498,0.594,0.667,1.089,0.813,0.893,1.095,1.267,1.029,1.543,1.026,1.268],"paint":[18.078,18.588,16.983,18.463,18.466,17.635,16.907,17.633,18.077,17.635,16.792,17.127,16.652,17.851,18.372]}}, -{"f":"fntags-v0.3.3-keyed","b":"06_remove-one-1k","v":{"total":[15.988,16.039,15.96,16.043,16.001,15.891,15.921,16.337,15.666,15.917,16.994,15.937,16.425,15.746,15.993],"script":[0.598,0.609,0.386,0.579,0.598,0.615,0.484,0.612,0.614,0.58,0.636,0.605,0.633,0.456,0.584],"paint":[14.916,14.609,14.837,14.434,14.876,14.75,14.383,14.57,14.329,14.603,15.279,14.044,14.861,14.395,14.647]}}, -{"f":"fntags-v0.3.3-keyed","b":"07_create10k","v":{"total":[481.594,476.456,481.917,482.119,477.012,477.733,471.028,478.382,474.083,477.123,476.86,476.487,482.091,479.024,482.596],"script":[123.935,125.234,124.693,123.206,122.656,125.202,120.377,124.027,124.172,124.872,123.431,125.568,127.708,122.395,128.469],"paint":[350.944,344.355,350.529,352.186,347.565,345.828,343.782,347.529,343.161,345.561,346.657,344.226,347.629,349.508,347.44]}}, -{"f":"fntags-v0.3.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[53.713,54.962,53.591,53.69,54.768,52.81,53.09,54.597,52.989,53.043,52.369,52.131,54.94,53.114,52.906],"script":[10.848,11.634,10.705,10.69,11.378,10.488,11.065,11.587,10.806,10.976,10.421,10.65,11.47,10.541,11.047],"paint":[41.96,42.402,41.961,42.107,42.497,41.431,41.113,42.097,41.256,41.135,41.045,40.584,42.572,41.671,40.947]}}, -{"f":"fntags-v0.3.3-keyed","b":"09_clear1k_x8","v":{"total":[12.065,12.331,12.364,11.815,12.389,12.015,12.949,12.359,11.977,12.37,13.591,11.977,12.53,11.879,11.764],"script":[10.635,10.515,10.605,9.961,10.688,9.687,11.049,10.417,10.561,11.169,10.783,10.374,10.715,10.404,9.912],"paint":[1.342,1.636,0.837,1.762,1.615,1.402,1.59,1.847,1.314,0.374,2.173,1.506,1.713,1.387,1.749]}}, -{"f":"fntags-v0.3.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4886503219604492]}}, -{"f":"fntags-v0.3.3-keyed","b":"22_run-memory","v":{"DEFAULT":[2.937403678894043]}}, -{"f":"fntags-v0.3.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.0795717239379883]}}, -{"f":"fntags-v0.3.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7443532943725586]}}, -{"f":"fntags-v0.3.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[24.145925521850586]}}, -{"f":"fntags-v0.3.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11.2041015625]}}, -{"f":"fntags-v0.3.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.8798828125]}}, -{"f":"fntags-v0.3.3-keyed","b":"43_first-paint","v":{"DEFAULT":[49.1]}}, -{"f":"fre-v2.5.5-keyed","b":"01_run1k","v":{"total":[55.013,53.67,61.833,60.861,53.916,60.372,53.21,54.313,55.139,63.759,56.338,61.826,63.886,65.966,65.968],"script":[16.8,16.914,17.858,17.869,16.932,17.581,17.325,16.648,17.462,18.311,17.72,17.429,17.318,18.85,19.264],"paint":[36.934,36.299,36.801,36.029,36.557,36.155,35.58,36.637,36.653,37.37,37.529,37.55,37.393,37.944,38.019]}}, -{"f":"fre-v2.5.5-keyed","b":"02_replace1k","v":{"total":[61.185,61.547,62.261,62.184,60.844,61.188,62.793,63.819,63.928,63.047,61.719,62.403,62.408,63.961,61.768],"script":[23.504,23.454,22.829,22.748,23.044,22.536,23.119,23.419,24.114,22.282,22.672,22.158,22.674,22.303,22.605],"paint":[37.049,37.464,38.736,38.176,37.205,38.053,39.033,38.891,39.119,39.606,38.414,39.398,38.649,39.128,38.495]}}, -{"f":"fre-v2.5.5-keyed","b":"03_update10th1k_x16","v":{"total":[49.973,50.28,50.436,28.792,48.484,27.395,24.836,28.998,49.118,50.679,28.576,47.929,49.7,50.597,29.549],"script":[11.676,10.038,9.646,9.452,8.67,8.794,9.971,10.822,10.74,11.095,10.465,10.152,10.547,10.564,8.745],"paint":[17.31,16.997,16.244,16.691,16.322,17.082,14.622,17.118,15.726,15.994,16.147,16.638,17.244,17.653,17.297]}}, -{"f":"fre-v2.5.5-keyed","b":"04_select1k","v":{"total":[9.433,10.985,15.231,5.701,5.384,10.515,9.199,9,8.127,13.335,17.654,16.035,9.812,5.926,5.465,5.367,16.605,6.411,9.616,5.272,4.804,9.254,13.678,17.113,13.159],"script":[4.744,3.709,4.023,2.84,2.916,3.423,4.205,4.613,3.059,3.008,5.296,3.162,3.802,2.246,2.816,2.537,5.025,3.668,3.548,2.803,3.078,3.906,3.647,4.419,3.757],"paint":[4.372,2.549,2.894,2.715,2.016,4.453,3.378,3.778,2.997,3.922,4.054,3.619,4.027,2.746,1.824,2.68,4.553,1.873,3.519,2.342,1.592,3.835,4.061,5.069,4.68]}}, -{"f":"fre-v2.5.5-keyed","b":"05_swap1k","v":{"total":[22.731,21.924,48.861,22.675,21.432,23.182,21.87,21.717,23.441,43.465,21.463,21.808,21.732,26.957,23.33],"script":[3.659,4.176,4.151,4.413,3.508,3.209,4.379,3.872,3.614,4.227,4.228,3.471,4.806,4.162,3.214],"paint":[18.934,17.618,19.629,17.642,17.796,17.915,17.376,17.352,18.989,17.42,17.108,18.15,16.813,19.694,17.911]}}, -{"f":"fre-v2.5.5-keyed","b":"06_remove-one-1k","v":{"total":[17.817,17.287,16.884,19.763,20.557,17.3,17.166,17.575,17.696,17.218,19.297,17.214,16.863,17.236,19.879],"script":[1.684,1.593,1.559,1.678,1.472,1.746,1.631,1.666,1.816,1.447,1.552,1.638,1.725,1.399,1.601],"paint":[15.298,13.878,14.61,16.329,16.968,14.548,14.547,14.671,14.946,14.541,15.906,15.07,14.279,14.583,16.242]}}, -{"f":"fre-v2.5.5-keyed","b":"07_create10k","v":{"total":[537.581,532.388,536.663,536.152,537.391,532.663,534.684,534.155,538.312,536.073,531.728,530.268,535.414,536.632,536.267],"script":[166.889,167.398,164.622,164.399,167.397,167.023,169.767,165.676,171.018,171.148,163.914,165.294,167.258,168.744,169.828],"paint":[362.956,358.206,359.311,362.046,361.139,358.238,358.154,358.172,359.086,358.162,360.615,358.342,358.983,361.101,359.738]}}, -{"f":"fre-v2.5.5-keyed","b":"08_create1k-after1k_x2","v":{"total":[82.406,82.287,82.854,62.8,81.391,79.183,82.629,81.712,82.766,61.297,64.092,83.31,61.776,81.856,78.717],"script":[20.671,20.046,20.407,19.851,19.554,19.604,18.835,20.057,19.331,19.514,20.35,19.993,18.873,20.114,19.334],"paint":[43.382,41.591,41.774,42.293,41.667,41.249,43.137,41.725,43.243,41.086,41.798,42.893,41.676,42.96,41.037]}}, -{"f":"fre-v2.5.5-keyed","b":"09_clear1k_x8","v":{"total":[21.42,21.412,18.499,21.48,19.605,18.273,18.705,21.991,18.998,19.033,22.856,21.582,18.552,21.237,21.835],"script":[17.45,17.091,16.32,17.505,17.7,15.961,17.507,18.441,16.49,16.916,18.586,17.185,16.646,17.592,17.863],"paint":[3.384,3.293,1.124,3.736,1.122,2.219,1.1,3.092,1.634,1.336,2.233,3.531,1.811,2.733,3.272]}}, -{"f":"fre-v2.5.5-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5240669250488281]}}, -{"f":"fre-v2.5.5-keyed","b":"22_run-memory","v":{"DEFAULT":[3.82424259185791]}}, -{"f":"fre-v2.5.5-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.440950393676758]}}, -{"f":"fre-v2.5.5-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[15.879773139953613]}}, -{"f":"fre-v2.5.5-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.599735260009766]}}, -{"f":"fre-v2.5.5-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[10.28515625]}}, -{"f":"fre-v2.5.5-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.0029296875]}}, -{"f":"fre-v2.5.5-keyed","b":"43_first-paint","v":{"DEFAULT":[45.5]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"01_run1k","v":{"total":[56.807,44.741,44.911,57.777,59.377,59.27,45.646,58.816,58.198,45.714,44.714,45.538,45.455,57.022,44.737],"script":[11.588,12.422,11.932,11.08,11.923,12.536,12.211,12.298,12.067,11.839,11.766,12.545,11.602,12.014,12.183],"paint":[32.8,32.091,32.737,33.203,33.441,34.326,32.909,33.485,33.406,33.612,32.704,32.754,33.642,32.82,32.316]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"02_replace1k","v":{"total":[52.441,52.738,52.477,52.555,53.131,51.677,54.817,52.608,53.094,52.258,53.591,52.886,53.383,52.656,52.881],"script":[17.261,16.532,17.352,16.703,17.162,17.19,17.401,16.472,17.471,17.59,17.807,16.866,17.357,17.227,16.802],"paint":[34.92,35.972,34.849,35.564,35.72,34.223,36.818,35.869,35.347,34.356,35.507,35.761,35.762,35.183,35.639]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"03_update10th1k_x16","v":{"total":[19.379,18.31,18.651,18.078,18.185,18.831,22.552,19.687,22.034,19.937,21.731,19.165,62.777,58.467,19.31],"script":[4.03,4.061,3.958,4.415,3.787,4.186,4.517,4.575,5.334,4.786,4.351,3.289,3.36,3.597,3.848],"paint":[13.02,13.737,14.579,13.315,14.283,13.97,15.424,13.453,15.683,15.013,16.213,13.662,16.422,14.045,13.4]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"04_select1k","v":{"total":[7.618,8.903,5.906,7.951,4.172,7.674,8.682,6.553,9.846,7.505,5.593,7.272,7.354,7.423,9.786,12.739,8.399,4.731,16.688,4.417,13.435,7.61,6.732,15.594,14.961],"script":[2.568,2.239,1.847,1.955,1.217,2.618,3.656,1.525,2.77,1.917,0.713,3.069,2.462,1.521,2.961,3.304,1.7,1.189,1.978,1.357,2.284,2.24,1.9,2.636,3.075],"paint":[3.695,4.608,2.863,4.821,2.043,2.786,4.112,2.718,4.787,3.497,2.76,4.517,4.372,4.182,4.277,3.973,3.227,2.456,2.678,2.438,4.343,3.612,3.42,3.285,3.704]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"05_swap1k","v":{"total":[61.952,62.231,20.202,62.518,24.548,20.877,66.484,24.943,61.375,66.345,66.884,19.448,67.485,63.253,19.403],"script":[1.709,1.886,2.086,1.72,2.088,1.762,2.198,2.619,2.203,2.111,3.212,1.807,2.629,1.465,1.91],"paint":[17.261,18.12,16.522,16.678,18.261,16.841,18.909,18.993,16.421,18.62,19.215,16.95,19.643,17.365,17.373]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"06_remove-one-1k","v":{"total":[16.258,18.476,16.284,16.056,16.264,16.064,16.132,16.656,16.193,15.988,18.236,18.095,16.09,18.074,15.422],"script":[0.985,0.855,1.016,0.836,0.849,0.807,0.817,1.179,0.86,1.041,1.147,0.849,1.087,0.945,1.111],"paint":[14.217,15.847,14.177,14.269,14.201,14.036,14.382,14.477,14.405,13.905,15.324,15.125,13.687,15.422,13.595]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"07_create10k","v":{"total":[1440.442,1471.929,1420.4,1426.394,455.943,454.885,457.193,1420.856,1433.749,1426.596,1419.812,1411.512,449.99,1432.058,452.94],"script":[119.508,109.344,115.919,113.769,119.324,118.377,118.559,115.97,111.912,113.727,112.906,115.709,114.928,110.786,115.672],"paint":[346.278,349.142,344.203,347.435,321.954,321.929,324.04,343.494,341.048,349.478,347.632,338.177,319.976,341.587,322.92]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"08_create1k-after1k_x2","v":{"total":[54.208,53.708,53.265,53.268,53.308,53.678,51.192,52.486,52.338,52.172,52.079,50.633,51.058,51.637,53.923],"script":[14.455,13.286,13.918,14.722,13.495,13.806,13.435,13.802,14.265,13.974,13.427,13.544,13.446,13.908,13.897],"paint":[39.069,39.161,38.997,38.183,38.862,38.851,37.428,38.311,37.725,37.617,38.301,36.717,36.357,37.399,39.438]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"09_clear1k_x8","v":{"total":[15.102,11.65,15.193,11.863,14.278,11.289,14.438,11.516,11.277,14.807,14.404,14.069,14.198,11.469,14.516],"script":[10.253,10.376,11.303,9.702,10.542,9.592,11.192,10.196,9.641,10.476,10.131,10.183,10.211,10.06,10.529],"paint":[4.608,1.082,3.289,1.752,2.885,1.616,2.572,1.239,1.33,3.452,3.38,2.957,1.5,1.329,2.516]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5705032348632812]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"22_run-memory","v":{"DEFAULT":[5.717648506164551]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.7158098220825195]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0052642822265625]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[49.63257598876953]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[16.884765625]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.1357421875]}}, -{"f":"frei-hooks-v1.1.9-keyed","b":"43_first-paint","v":{"DEFAULT":[49.1]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"01_run1k","v":{"total":[69.388,69.744,71.492,68.89,68.387,70.05,70.768,69.297,72.559,71.269,70.155,68.872,70.542,71.825,72.641],"script":[36.038,36.171,37.711,35.468,35.083,36.21,36.821,35.862,37.759,36.935,36.508,35.608,37.069,38.16,38.016],"paint":[33.184,33.399,33.612,33.263,33.142,33.667,33.786,33.257,34.636,34.176,33.486,33.1,33.304,33.395,34.457]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"02_replace1k","v":{"total":[85.328,84.906,84.623,83.937,82.956,84.372,85.456,84.991,84.571,85.672,85.106,85.391,86.544,86.007,84.013],"script":[48.518,48.074,47.873,47.831,46.687,47.545,49.174,48.325,47.55,48.855,48.433,48.703,48.326,48.492,47.92],"paint":[36.613,36.645,36.579,35.918,36.086,36.654,36.106,36.484,36.839,36.628,36.493,36.501,38.036,37.179,35.906]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"03_update10th1k_x16","v":{"total":[21.093,26.315,21.735,20.783,20.966,21.958,20.351,21.756,21.457,23.678,20.942,20.845,24.072,21.015,20.852],"script":[6.148,7.289,7.342,5.926,6.928,6.819,5.485,7.096,6.834,6.108,5.531,7.028,6.937,7.232,6.914],"paint":[14.829,17.809,14.281,14.732,13.928,14.065,13.944,14.027,14.095,17.041,14.297,13.695,16.722,13.275,13.815]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"04_select1k","v":{"total":[22.221,20.598,22.42,17.732,20.173,20.628,21.53,20.309,20.815,20.769,20.605,18.376,21.711,19.548,20.077,21.522,21.4,17.463,21.547,19.024,20.546,20.278,21.238,21.14,19.868],"script":[16.577,14.461,15.694,15.029,15.161,15.528,16.581,15.316,15.17,15.135,14.723,14.665,15.983,13.3,14.594,15.337,15.906,14.457,15.917,15.296,15.007,15.707,16.147,15.843,14.299],"paint":[3.994,4.031,4.034,2.413,4.499,4.607,3.132,3.875,4.705,3.187,5.187,2.337,3.726,5.34,3.853,4.392,4.086,2.482,3.736,2.476,4.206,3.367,3.509,4.405,5.171]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"05_swap1k","v":{"total":[24.154,28.587,24.085,24.593,25.004,25.321,27.866,23.855,27.009,23.692,29.023,24.023,23.795,24.698,27.288],"script":[6.265,6.931,6.846,6.548,6.851,6.98,6.821,5.988,7.145,6.217,6.955,6.717,6.192,6.141,6.309],"paint":[17.761,20.075,16.751,16.933,17.544,18.199,20.034,17.753,19.239,17.356,20.576,17.127,17.052,17.94,19.198]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"06_remove-one-1k","v":{"total":[23.799,23.464,25.578,24.054,23.854,23.76,24.083,26.425,24.579,23.629,24.189,26.953,23.55,23.332,24.299],"script":[8.352,8.565,8.787,8.759,8.694,8.584,8.675,8.997,9.186,8.754,8.914,9.694,8.781,8.436,8.849],"paint":[14.376,13.873,15.729,14.567,13.876,14.559,14.656,15.521,14.465,13.971,14.558,16.293,14.056,14.183,14.369]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"07_create10k","v":{"total":[618.507,611.162,618.924,624.309,611.819,620.851,623.602,621.635,610.547,622.381,618.728,605.37,621.117,619.046,608.967],"script":[260.03,258.667,266.322,263.239,261.535,263.323,264.047,262.505,260.13,264.965,259.789,260.652,263.771,259.717,260.871],"paint":[355.751,349.662,349.931,358.225,347.235,354.392,356.695,356.137,347.513,354.488,355.955,341.917,354.43,356.5,345.137]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"08_create1k-after1k_x2","v":{"total":[81.083,82.013,80.86,81.824,81.167,80.606,80.12,82.413,81.051,83.324,81.52,81.199,82.531,80.444,79.536],"script":[41.982,42.511,41.582,42.65,41.325,41.794,41.166,42.049,42.551,43.129,42.179,42.147,42.093,41.249,40.382],"paint":[38.792,39.192,38.988,38.876,39.543,38.52,38.644,40.084,38.209,39.905,39.07,38.775,40.144,38.905,38.869]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"09_clear1k_x8","v":{"total":[27.141,28.092,25.263,26.776,28.687,27.572,26.997,27.654,23.819,22.343,26.401,26.24,27.846,27.684,27.621],"script":[22.881,23.353,23.901,22.637,24.831,23.878,23.942,24.547,20.865,20.688,22.254,22.211,24.476,24.144,23.879],"paint":[2.637,3.724,1.29,3.131,3.306,3.488,2.832,2.183,2.888,1.59,2.706,3,2.388,3.32,3.377]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"21_ready-memory","v":{"DEFAULT":[5.218135833740234]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"22_run-memory","v":{"DEFAULT":[11.522627830505371]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"23_update5-memory","v":{"DEFAULT":[11.585281372070312]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[6.664566993713379]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[61.189045906066895]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[111.869140625]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"42_size-compressed","v":{"DEFAULT":[28.9296875]}}, -{"f":"glimmer-2-v2.0.0-beta.21-keyed","b":"43_first-paint","v":{"DEFAULT":[149.9]}}, -{"f":"goui-v0.1.2-keyed","b":"01_run1k","v":{"total":[44.072,44.433,48.214,44.391,46.909,44.155,45.043,46.821,44.429,44.745,46.562,47.197,44.448,47.241,46.334],"script":[11.165,11.539,12.515,11.408,11.544,11.268,11.763,12.575,11.347,11.458,12.774,12.889,11.648,12.185,12.679],"paint":[32.484,32.483,35.242,32.577,34.947,32.463,32.859,33.839,32.675,32.879,33.365,33.887,32.372,34.649,33.249]}}, -{"f":"goui-v0.1.2-keyed","b":"02_replace1k","v":{"total":[58.924,56.569,56.663,59.337,56.423,56.321,56.137,56.793,57.55,55.477,55.135,58.043,55.933,55.166,57.316],"script":[23.206,21.35,21.777,23.723,21.522,21.371,21.617,21.766,22.932,20.792,21.021,23.073,21.399,21.088,22.573],"paint":[35.117,34.79,34.466,35.173,34.464,34.501,34.088,34.544,34.189,34.251,33.675,34.537,34.08,33.664,34.319]}}, -{"f":"goui-v0.1.2-keyed","b":"03_update10th1k_x16","v":{"total":[18.567,18.053,18.712,18.232,17.723,18.005,17.042,18.033,18.371,19.844,18.121,17.729,17.279,18.911,18.229],"script":[2.18,3.046,3.159,2.561,2.949,2.701,2.653,3.258,3.184,2.436,2.521,2.503,2.246,3.119,3.166],"paint":[15.201,12.901,14.048,14.967,13.109,14.173,13.376,12.937,13.68,16.037,14.425,13.963,14.029,13.728,14.081]}}, -{"f":"goui-v0.1.2-keyed","b":"04_select1k","v":{"total":[3.775,4.012,4.026,4.1,3.777,3.963,4.325,3.668,4.243,4.342,3.977,4.048,3.792,3.9,3.763,3.501,4.085,4.461,3.239,4.464,3.969,3.4,3.758,3.871,5.612],"script":[1.365,1.528,1.428,1.072,0.666,1.279,2.06,1.028,1.83,1.681,1.777,1.77,1.308,1.264,1.841,1.579,1.61,1.747,1.027,1.21,1.323,0.65,1.384,1.454,1.685],"paint":[2.287,1.206,2.147,2.032,2.993,2.565,1.061,2.53,1.781,1.561,1.453,2.156,2.357,2.525,1.797,1.472,2.021,1.86,1.405,1.299,1.745,2.547,2.252,1.736,1.784]}}, -{"f":"goui-v0.1.2-keyed","b":"05_swap1k","v":{"total":[19.602,19.909,19.026,19.104,21.903,19.309,19.275,19.57,19.101,19.36,19.342,19.871,20.338,18.851,19.495],"script":[1.823,1.347,1.272,1.189,2.042,1.242,1.195,1.539,2.184,0.654,1.342,2.148,2.079,1.076,1.069],"paint":[16.392,16.997,16.543,16.496,17.22,17.107,16.809,16.716,15.863,17.023,16.408,16.105,16.431,16.425,16.459]}}, -{"f":"goui-v0.1.2-keyed","b":"06_remove-one-1k","v":{"total":[15.686,15.931,15.961,16.189,16.32,15.579,15.411,15.4,15.405,15.545,15.8,15.42,15.423,15.543,15.842],"script":[0.69,0.916,0.691,0.674,0.874,0.728,0.674,0.65,0.653,0.67,0.723,0.683,0.669,0.745,0.676],"paint":[14.489,14.272,14.51,14.732,14.486,13.77,14.011,13.9,13.733,13.819,14.325,14.018,13.696,14.094,14.434]}}, -{"f":"goui-v0.1.2-keyed","b":"07_create10k","v":{"total":[488.323,485.741,487.759,483.003,486.491,487.696,500.386,479.855,485.739,485.947,495.399,489.205,482.945,491.127,484.563],"script":[150.058,149.474,147.148,145.831,151.468,153.341,148.598,146.783,150.016,151.115,151.289,145.432,147.6,148.004,149.261],"paint":[330.532,329.581,333.971,330.445,328.246,327.71,345.147,326.376,329.065,328.142,337.467,337.07,328.648,336.395,328.662]}}, -{"f":"goui-v0.1.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.449,51.916,54.145,52.395,52.807,51.784,52.727,53.095,52.891,51.236,52.626,51.174,52.318,52.201,51.848],"script":[13.409,13.295,13.168,13.591,13.113,13.419,13.292,12.993,13.158,12.863,13.382,12.905,13.389,13.124,13.214],"paint":[38.176,37.761,40.097,37.973,38.746,37.469,38.529,39.144,38.836,37.502,38.393,37.408,38.026,38.211,37.789]}}, -{"f":"goui-v0.1.2-keyed","b":"09_clear1k_x8","v":{"total":[17.925,17.844,18.065,17.782,17.934,17.241,17.685,17.452,17.448,17.698,17.597,17.714,17.195,17.441,17.508],"script":[15.983,16.46,15.837,16.077,15.932,15.381,15.838,15.588,15.61,15.632,16.152,15.854,15.661,15.912,15.86],"paint":[1.852,0.343,0.475,0.367,1.921,1.753,1.753,1.778,0.875,1.077,0.426,1.607,1.443,1.447,1.555]}}, -{"f":"goui-v0.1.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6117849349975586]}}, -{"f":"goui-v0.1.2-keyed","b":"22_run-memory","v":{"DEFAULT":[6.156764984130859]}}, -{"f":"goui-v0.1.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[10.302860260009766]}}, -{"f":"goui-v0.1.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[16.695096969604492]}}, -{"f":"goui-v0.1.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[49.893425941467285]}}, -{"f":"goui-v0.1.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[90.271484375]}}, -{"f":"goui-v0.1.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[30.501953125]}}, -{"f":"goui-v0.1.2-keyed","b":"43_first-paint","v":{"DEFAULT":[149.2]}}, -{"f":"gxt-v0.0.37-keyed","b":"01_run1k","v":{"total":[51.385,51.601,51.123,49.967,51.17,51.316,50.883,50.246,51.837,52.358,52.377,52.565,51.062,50,49.243],"script":[17.358,16.311,16.387,16.361,17.305,16.364,16.592,16.883,16.962,16.501,16.471,16.874,16.269,16.745,16.006],"paint":[33.594,34.875,34.285,33.183,33.429,34.55,33.861,32.929,34.45,35.241,35.463,35.236,34.34,32.821,32.815]}}, -{"f":"gxt-v0.0.37-keyed","b":"02_replace1k","v":{"total":[58.722,57.703,58.158,58.236,58.444,58.16,57.403,56.766,58.013,57.788,58.44,58.542,57.849,57.727,58.903],"script":[20.976,20.393,20.919,20.316,20.696,20.77,20.212,20.202,20.19,20.356,20.497,20.744,20.621,20.124,21.016],"paint":[37.297,36.836,36.808,37.437,37.278,36.936,36.729,36.083,37.283,36.964,37.47,37.324,36.748,37.111,37.405]}}, -{"f":"gxt-v0.0.37-keyed","b":"03_update10th1k_x16","v":{"total":[17.41,18.973,17.529,18.427,17.382,16.901,17.14,17.591,17.611,17.285,17.591,17.377,17.059,17.785,17.625],"script":[1.642,1.816,1.349,2.359,1.794,1.574,1.124,1.85,1.373,1.287,1.621,1.602,1.665,1.575,1.897],"paint":[14.293,15.402,14.58,14.742,14.293,14.052,14.941,14.139,14.747,14.514,14.489,13.892,14.121,15,14.456]}}, -{"f":"gxt-v0.0.37-keyed","b":"04_select1k","v":{"total":[5.296,4.981,4.952,5.423,4.251,4.694,5.087,5.478,5.27,5.192,5.579,5.149,5.361,5.326,4.505,5.411,5.104,4.796,6.378,5.186,4.475,5.298,5.462,5.269,5.001],"script":[2.64,2.411,2.203,2.612,1.975,2.197,2.558,2.057,2.448,2.95,2.556,2.209,2.371,2.58,1.957,3.131,2.655,2.449,3.16,2.837,2.525,2.753,2.151,2.791,2.316],"paint":[2.149,2.451,2.12,2.685,1.16,2.376,2.406,2.54,1.876,2.122,2.892,2.815,1.89,2.617,2.111,2.153,1.839,1.537,3.069,1.877,1.295,0.834,3.182,2.347,2.244]}}, -{"f":"gxt-v0.0.37-keyed","b":"05_swap1k","v":{"total":[19.688,19.861,19.512,19.545,20.258,20.338,20.206,20.237,21.143,20.187,19.935,20.038,20.333,20.483,20.324],"script":[1.55,1.169,1.379,0.628,1.434,1.504,1.754,1.757,1.501,2.139,0.726,1.049,1.785,1.824,0.871],"paint":[16.791,17.079,17.025,17.625,17.306,17.159,16.895,16.468,17.79,16.555,17.827,16.984,17.563,17.524,18.469]}}, -{"f":"gxt-v0.0.37-keyed","b":"06_remove-one-1k","v":{"total":[15.765,15.654,15.704,16.032,16.046,15.81,15.952,15.96,15.808,15.984,15.356,15.846,16.544,15.827,15.775],"script":[0.715,0.788,0.696,0.688,0.709,0.677,0.932,0.705,0.885,0.855,0.672,0.684,0.715,0.822,0.727],"paint":[14.125,13.886,14.321,14.226,14.521,14.413,13.877,14.464,14.198,14.078,13.43,14.437,15.077,14.009,14.057]}}, -{"f":"gxt-v0.0.37-keyed","b":"07_create10k","v":{"total":[505.89,527.949,498.982,499.54,496.439,519,502.515,505.091,503.207,493.874,492.483,490.645,488.684,490.086,495.692],"script":[159.128,160.875,158.064,155.855,155.809,157.899,155.613,159.584,157.383,155.213,154.338,153.196,153.826,153.283,150.63],"paint":[339.753,360.069,334.193,336.987,333.928,354.369,340.254,338.602,338.984,331.912,331.389,330.76,328.112,329.792,338.287]}}, -{"f":"gxt-v0.0.37-keyed","b":"08_create1k-after1k_x2","v":{"total":[55.201,56.266,54.622,55.497,55.009,56.192,56.646,54.305,55.518,57.002,57.045,55.486,56.21,55.778,55.112],"script":[15.078,16.031,15.331,15.086,15.494,16.236,15.417,15.202,15.559,16.201,15.731,15.938,15.721,15.754,15.244],"paint":[39.134,39.305,38.4,39.512,38.626,39.043,40.315,38.218,39.033,39.902,40.394,38.658,39.595,39.032,38.977]}}, -{"f":"gxt-v0.0.37-keyed","b":"09_clear1k_x8","v":{"total":[21.961,23.052,21.873,22.25,21.314,21.63,22.741,22.382,22.257,21.598,23.106,22.447,22.06,21.201,23.031],"script":[20.066,21.164,20.031,20.01,19.298,20.244,21.113,20.623,20.111,19.658,20.636,20.262,20.573,19.935,20.591],"paint":[1.794,1.239,1.355,2.14,1.162,1.286,0.733,1.268,2.048,1.832,2.372,2.086,0.37,1.16,1.439]}}, -{"f":"gxt-v0.0.37-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5059423446655273]}}, -{"f":"gxt-v0.0.37-keyed","b":"22_run-memory","v":{"DEFAULT":[4.318429946899414]}}, -{"f":"gxt-v0.0.37-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.456076622009277]}}, -{"f":"gxt-v0.0.37-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0007925033569336]}}, -{"f":"gxt-v0.0.37-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[35.7171745300293]}}, -{"f":"gxt-v0.0.37-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[12.05859375]}}, -{"f":"gxt-v0.0.37-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.44921875]}}, -{"f":"gxt-v0.0.37-keyed","b":"43_first-paint","v":{"DEFAULT":[48.6]}}, -{"f":"gyron-v0.0.16-keyed","b":"01_run1k","v":{"total":[50.37,50.369,50.618,50.531,49.456,51.107,51.463,49.842,50.822,51.893,50.338,52.816,51.406,52.276,49.569],"script":[15.084,15.17,16.097,15.162,15.184,15.739,15.562,15.068,16.096,16.504,15.182,16.467,15.631,16.881,14.752],"paint":[34.84,34.758,34.071,34.932,33.831,34.916,35.469,34.338,34.278,34.937,34.718,35.894,35.335,34.937,34.383]}}, -{"f":"gyron-v0.0.16-keyed","b":"02_replace1k","v":{"total":[56.832,55.765,55.24,57.958,55.518,56.653,56.583,56.034,56.218,57.327,55.592,57.044,57.308,57.968,56.139],"script":[20.261,19.441,19.413,20.766,19.51,20.242,19.982,19.412,19.481,19.754,19.533,20.271,19.793,20.905,19.881],"paint":[36.092,35.838,35.355,36.751,35.567,35.964,36.15,36.174,36.303,37.057,35.614,36.322,37.063,36.617,35.824]}}, -{"f":"gyron-v0.0.16-keyed","b":"03_update10th1k_x16","v":{"total":[27.99,27.441,26.176,26.162,27.215,25.527,26.294,26.852,26.579,27.34,27.457,26.403,25.066,26.933,27.008],"script":[11.917,10.166,10.475,10.634,11.119,9.632,10.625,10.802,10.738,11.762,10.549,11.111,9.849,10.718,12.264],"paint":[14.706,15.02,14.183,14.019,14.017,14.136,14.191,14.488,14.426,14.254,14.844,13.981,13.69,13.202,13.027]}}, -{"f":"gyron-v0.0.16-keyed","b":"04_select1k","v":{"total":[7.622,9.134,9.219,10.066,8.692,8.613,9.411,8.353,8.99,8.869,8.651,9.034,9.059,8.29,10.263,10.398,9.66,9.009,9.157,8.603,9.278,9.72,8.591,8.455,8.936],"script":[5.042,6.544,5.928,6.517,6.473,5.799,6.207,5.631,6.484,6.436,5.574,6.051,6.096,6.174,6.678,6.808,6.606,7.035,6.25,5.277,6.253,6.689,6.169,5.663,6.333],"paint":[1.511,1.844,2.982,2.901,1.745,1.36,2.496,2.158,1.751,1.093,2.42,1.777,2.412,1.209,3.428,3.406,2.9,1.147,1.971,2.729,2.306,2.871,1.343,1.768,1.599]}}, -{"f":"gyron-v0.0.16-keyed","b":"05_swap1k","v":{"total":[24.314,24.444,24.896,23.969,25.549,23.728,22.909,23.244,24.104,22.96,22.695,23.828,23.353,24.308,23.581],"script":[4.751,6.05,5.355,4.972,5.929,5.512,4.609,5.567,5.256,5.127,4.897,5.668,4.701,6.291,5.791],"paint":[17.975,17.075,18.562,17.965,18.31,16.323,16.572,16.41,17.732,17.101,16.495,15.936,17.106,16.429,16.388]}}, -{"f":"gyron-v0.0.16-keyed","b":"06_remove-one-1k","v":{"total":[20.731,20.524,20.483,20.635,20.314,20.477,20.418,20.486,20.412,20.412,20.956,20.467,21.708,20.902,20.598],"script":[5.626,5.748,5.652,5.528,5.641,5.594,5.577,5.713,5.618,5.652,5.751,5.66,5.708,5.704,5.568],"paint":[14.346,14.006,13.743,14.343,13.95,13.921,14.075,14.004,13.997,14.018,14.424,13.847,14.763,14.401,14.263]}}, -{"f":"gyron-v0.0.16-keyed","b":"07_create10k","v":{"total":[497.37,512.462,496.758,496.321,495.592,513.739,491.221,510.016,497.125,509.476,496.542,498.347,490.386,510.743,489.753],"script":[150.832,152.864,151.53,151.447,149.516,150.801,150.102,149.232,151.954,149.433,151.189,154.356,149.707,153.043,147.465],"paint":[338.721,352.77,337.74,337.331,339.23,356.073,334.398,353.899,338.25,353.123,338.473,337.108,333.861,350.943,335.572]}}, -{"f":"gyron-v0.0.16-keyed","b":"08_create1k-after1k_x2","v":{"total":[58.832,58.874,59.629,59.428,59.509,59.626,58.062,59.44,60.628,59.196,59.529,59.04,58.487,59.651,58.536],"script":[18.389,17.785,18.276,18.251,18.249,17.949,17.621,18.135,18.218,18.507,17.763,18.613,18.36,19.119,17.851],"paint":[39.523,40.157,40.427,40.241,40.227,40.752,39.508,40.409,41.435,39.788,40.805,39.534,39.183,39.626,39.795]}}, -{"f":"gyron-v0.0.16-keyed","b":"09_clear1k_x8","v":{"total":[22.125,22.668,22.021,21.435,22.692,21.375,21.8,21.436,21.7,21.675,22.322,22.136,21.124,20.863,21.963],"script":[19.753,20.345,19.961,19.831,20.344,19.342,19.865,20.307,20.579,19.821,20.279,20.197,19.567,18.986,20.281],"paint":[2.282,2.201,1.56,0.704,2.253,1.949,1.821,0.37,0.371,1.765,1.948,0.931,1.466,0.572,1.576]}}, -{"f":"gyron-v0.0.16-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6217250823974609]}}, -{"f":"gyron-v0.0.16-keyed","b":"22_run-memory","v":{"DEFAULT":[4.078069686889648]}}, -{"f":"gyron-v0.0.16-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.20489501953125]}}, -{"f":"gyron-v0.0.16-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.3353748321533203]}}, -{"f":"gyron-v0.0.16-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.196702003479004]}}, -{"f":"gyron-v0.0.16-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[63.1357421875]}}, -{"f":"gyron-v0.0.16-keyed","b":"42_size-compressed","v":{"DEFAULT":[13.263671875]}}, -{"f":"gyron-v0.0.16-keyed","b":"43_first-paint","v":{"DEFAULT":[102.2]}}, -{"f":"helix-v0.0.10-keyed","b":"01_run1k","v":{"total":[47.294,46.56,45.248,47.639,47.92,45.545,45.367,45.512,47.68,46.051,45.57,46.157,44.827,46.023,46.654],"script":[13.33,12.421,11.899,13.126,13.451,12.193,12.357,12.328,13.274,12.424,12.2,12.458,12.343,12.259,12.85],"paint":[33.537,33.704,32.915,34.096,34.025,32.947,32.582,32.73,34.029,33.206,32.949,33.277,32.068,33.377,33.383]}}, -{"f":"helix-v0.0.10-keyed","b":"02_replace1k","v":{"total":[50.051,50.714,50.554,49.59,50.869,50.503,50.477,50.607,50.068,50.222,50.131,51.166,50.585,51.144,52.434],"script":[15.307,15.34,15.243,15.01,16.006,15.726,15.724,15.297,15.488,15.664,15.794,16.068,15.774,15.625,15.846],"paint":[34.3,34.895,34.881,34.127,34.416,34.338,34.299,34.86,34.152,34.096,33.875,34.626,34.377,35.075,36.096]}}, -{"f":"helix-v0.0.10-keyed","b":"03_update10th1k_x16","v":{"total":[23.48,26.249,24.615,24.597,23.849,23.553,24.131,25.323,24.354,24.244,25.611,25.305,23.696,24.16,23.754],"script":[8.505,8.384,8.429,9.187,7.85,8.394,8.291,9.443,8.146,8.573,8.89,8.77,8.259,7.845,8.307],"paint":[13.052,16.729,14.318,13.421,14.785,13.869,14.22,14.507,14.422,13.592,15.429,14.821,13.891,13.601,13.393]}}, -{"f":"helix-v0.0.10-keyed","b":"04_select1k","v":{"total":[7.56,7.49,7.717,7.198,6.995,7.647,8.615,8.208,7.941,8.03,7.692,7.329,7.335,7.736,7.604,7.693,7.193,7.599,7.451,8.302,7.31,7.28,7.73,7.123,7.458],"script":[4.442,4.981,4.518,4.877,4.795,4.951,5.46,4.896,5.243,5.244,5.194,4.518,5.089,4.697,4.48,5.413,4.563,4.922,5.15,5.606,4.595,4.77,5.101,4.167,4.441],"paint":[2.167,2.37,2.588,1.414,1.61,2.547,2.165,2.799,2.175,2.638,2.348,2.663,1.472,2.893,2.022,1.398,2.493,2.543,1.402,1.723,1.88,2.368,1.541,2.437,1.812]}}, -{"f":"helix-v0.0.10-keyed","b":"05_swap1k","v":{"total":[162.757,172.362,166.55,170.783,168.207,167.604,170.113,169.121,166.362,167.602,164.862,167.616,168.603,167.264,165.634],"script":[24.131,23.937,24.205,24.962,25.225,24.97,26.508,25.419,24.716,26.891,24.184,23.759,24.303,24.735,23.902],"paint":[136.448,146.083,141.178,143.671,141.054,140.392,142.151,141.501,139.229,139.081,138.772,141.723,142.454,139.759,140.559]}}, -{"f":"helix-v0.0.10-keyed","b":"06_remove-one-1k","v":{"total":[17.832,18.067,18.278,17.55,17.797,17.926,17.446,17.942,17.851,18.886,17.862,17.618,17.835,17.982,17.963],"script":[3.136,3.376,3.193,3.069,3.07,3.089,3.067,3.102,3.062,3.307,3.084,2.833,3.084,3.173,3.101],"paint":[13.642,13.986,14.046,13.733,14.001,14.071,13.671,14.097,14.027,14.43,13.721,13.724,14.027,14.087,13.313]}}, -{"f":"helix-v0.0.10-keyed","b":"07_create10k","v":{"total":[616.603,608.681,610.467,612.634,619.855,614.392,614.784,611.028,611.676,614.709,608.116,609.331,607.283,616.606,610.216],"script":[266.617,263.821,260.829,264.622,268.615,267.052,265.955,261.069,259.377,263.835,256.964,260.501,260.484,266.143,263.059],"paint":[343.112,338.07,342.832,340.898,344.523,340.495,342.08,343.252,345.258,344.126,344.28,342.093,340.09,343.708,340.413]}}, -{"f":"helix-v0.0.10-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.048,53.105,51.779,53.179,53.265,52.36,51.653,52.383,51.62,52.256,52.921,53.415,52.209,52.716,53.553],"script":[12.366,12.715,12.583,13.667,13.452,12.821,12.77,12.642,12.645,12.691,12.883,13.35,12.478,13.64,13.111],"paint":[38.773,39.429,38.29,38.59,38.918,38.626,37.997,38.846,38.102,38.68,39.109,39.123,38.796,38.117,39.482]}}, -{"f":"helix-v0.0.10-keyed","b":"09_clear1k_x8","v":{"total":[16.874,16.062,16.393,16.165,16.147,16.868,16.63,16.212,16.423,17.088,16.183,16.931,17.17,16.587,16.006],"script":[15.093,14.732,14.668,13.682,14.477,15.607,14.706,14.36,14.315,15.155,13.833,15.049,15.447,14.312,14.358],"paint":[1.673,0.907,1.636,2.39,0.782,1.085,1.838,1.761,2.016,1.045,2.256,0.573,1.631,1.29,0.738]}}, -{"f":"helix-v0.0.10-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.2800016403198242]}}, -{"f":"helix-v0.0.10-keyed","b":"22_run-memory","v":{"DEFAULT":[4.802334785461426]}}, -{"f":"helix-v0.0.10-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.361103057861328]}}, -{"f":"helix-v0.0.10-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.269955635070801]}}, -{"f":"helix-v0.0.10-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[32.50275802612305]}}, -{"f":"helix-v0.0.10-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[257.91796875]}}, -{"f":"helix-v0.0.10-keyed","b":"42_size-compressed","v":{"DEFAULT":[58.92578125]}}, -{"f":"helix-v0.0.10-keyed","b":"43_first-paint","v":{"DEFAULT":[351.8]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"01_run1k","v":{"total":[56.885,57.755,56.673,57.957,56.877,57.613,57.02,56.919,56.458,56.1,55.717,57.778,57.605,58.747,56.525],"script":[22.069,22.659,21.768,22.654,22.885,22.554,22.906,22.213,21.964,22.741,22.466,22.444,22.74,24.118,21.603],"paint":[34.353,34.631,34.444,34.849,33.507,34.602,33.636,34.235,34.041,32.894,32.78,34.865,34.416,34.164,34.457]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"02_replace1k","v":{"total":[64.265,64.942,63.606,64.473,65.506,64.874,66.059,63.747,63.237,63.984,63.663,64.278,63.14,63.825,64.27],"script":[27.506,28.151,26.764,28.134,27.977,28.614,28.446,26.958,27.726,27.513,27.459,27.897,27.177,27.396,27.697],"paint":[36.292,36.325,36.356,35.89,37.086,35.794,37.165,36.338,35.041,36.025,35.722,35.935,35.501,35.933,36.074]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"03_update10th1k_x16","v":{"total":[17.558,17.951,17.911,16.991,18.37,17.241,17.707,17.562,17.401,17.333,17.128,17.502,18.21,17.177,17.243],"script":[1.912,2.399,2.267,1.384,2.947,2.179,1.874,1.959,2.378,1.663,1.653,2.328,2.664,1.894,1.971],"paint":[13.939,13.871,14.957,14.556,13.501,13.77,14.378,13.603,13.954,14.576,14.273,13.969,14.405,13.888,13.559]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"04_select1k","v":{"total":[3.798,4.483,4.054,4.051,4.271,4.284,4.181,4.345,5.848,4.599,4.778,3.792,4.279,4.079,4.908,4.349,4.062,5.76,4.163,3.672,4.345,4.906,3.799,4.096,3.824],"script":[1.319,1.565,1.783,2.059,1.778,1.773,1.631,1.988,1.824,1.907,1.803,1.337,1.803,1.651,1.072,1.837,1.521,1.93,1.803,1.341,2.145,2.424,1.412,1.257,1.529],"paint":[1.312,2.796,1.548,1.116,1.611,2.404,1.732,2.248,1.837,1.766,1.952,2.339,1.668,2.317,1.814,1.93,2.426,1.947,1.398,1.484,1.514,2.373,2.282,2.731,1.422]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"05_swap1k","v":{"total":[18.889,18.494,18.058,19.173,18.404,18.044,19.364,20.173,18.709,19.07,19.066,18.847,18.669,18.214,18.535],"script":[0.128,0.594,0.238,0.887,0.606,0.278,0.218,0.126,0.751,0.127,0.987,0.557,0.139,0.582,0.129],"paint":[18.002,16.271,16.385,16.968,15.984,15.364,18.082,18.085,16.691,17.014,16.565,17.047,17.429,16.293,16.809]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"06_remove-one-1k","v":{"total":[15.239,15.346,15.516,15.274,15.136,15.425,15.268,15.101,15.015,15.192,15.206,15.116,15.525,15.413,15.156],"script":[0.14,0.393,0.384,0.45,0.122,0.331,0.125,0.282,0.264,0.369,0.124,0.314,0.336,0.127,0.125],"paint":[14.411,14.513,14.348,14.095,14.077,14.142,14.402,13.963,13.796,14.066,14.132,13.899,13.857,14.238,14.257]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"07_create10k","v":{"total":[607.9,608.802,601.576,600.655,602.549,604.44,603.271,605.283,606.348,596.766,599.185,598.518,597.356,598.013,601.927],"script":[240.524,240.68,240.362,240.615,240.407,241.883,236.97,237.722,238.258,234.695,238.042,233.182,234.812,231.937,237.955],"paint":[360.598,361.119,354.293,353.302,355.374,355.734,359.223,360.765,361.228,355.399,354.492,358.762,355.553,359.386,357.294]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"08_create1k-after1k_x2","v":{"total":[68.087,68.883,67.722,67.963,68.517,69.382,69.073,68.867,69.073,68.188,69.191,67.267,70.094,68.167,68.426],"script":[27.824,28.454,27.128,28.144,27.656,28.736,28.298,28.922,27.894,27.652,28.773,27.509,29.556,28.489,27.015],"paint":[39.365,39.526,39.677,38.908,39.839,39.724,39.876,39.043,40.271,39.619,39.499,38.834,39.627,38.77,40.493]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"09_clear1k_x8","v":{"total":[14.805,14.351,13.77,15.755,14.223,13.835,14.298,14.38,13.422,13.643,13.661,13.875,14.252,13.672,13.603],"script":[12.509,12.457,12.035,13.561,12.348,12.021,12.474,12.65,11.504,11.525,11.931,12.398,11.882,11.56,11.227],"paint":[2.178,1.119,0.858,2.071,1.53,1.151,1.738,1.643,1.679,2.031,1.276,1.387,2.28,2.019,2.293]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.511500358581543]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"22_run-memory","v":{"DEFAULT":[4.000864028930664]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.1734819412231445]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.2538127899169922]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.361926078796387]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[14.8046875]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.0556640625]}}, -{"f":"hydro-js-v1.5.14-keyed","b":"43_first-paint","v":{"DEFAULT":[74.3]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"01_run1k","v":{"total":[42.893,46.465,41.165,43.329,51.168,44.184,50.262,48.383,50.161,48.041,49.439,46.121,44.45,48.59,49.6],"script":[8.479,8.887,8.689,9.326,9.304,8.597,9.079,8.682,9.142,9.022,9.758,8.642,8.826,8.313,9.532],"paint":[34.253,32.487,32.316,33.145,33.807,33.365,32.795,33.123,33.962,35.476,32.734,35.25,32.626,33.092,33.216]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"02_replace1k","v":{"total":[53.638,56.583,56.265,57.514,55.493,53.526,58.456,54.541,51.482,52.789,52.366,57.883,56.361,58.056,57.701],"script":[10.677,10.936,10.674,11.748,10.583,11.02,10.776,10.519,10.636,10.618,11.205,11.406,10.719,10.785,11.521],"paint":[36.443,35.303,35.738,37.086,35.512,35.188,36.372,35.82,35.755,34.767,36.797,36.27,35.006,35.672,36.184]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"03_update10th1k_x16","v":{"total":[19.824,17.173,17.015,16.85,16.758,17.148,32.815,33.108999999999995,16.914,33.178,33.248,19.453,33.022999999999996,33.427,33.905],"script":[3.029,2.696,2.952,3.038,2.306,1.822,2.553,2.948,3.318,2.807,3.24,2.192,2.911,3.442,3.279],"paint":[13.64,13.877,12.455,13.704,12.975,14.523,13.609,14.13,13.104,13.366,13.969,13.771,14.081,13.718,14.918]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"04_select1k","v":{"total":[4.017,4.701,5.099,4.052,3.194,4.428,4.202,6.267,3.873,4.335,3.818,7.776,3.632,4.023,3.656,3.59,4.679,5.198,3.755,4.449,5.126,4,3.767,3.672,3.696],"script":[1.745,1.186,1.437,2.192,1.704,1.809,1.075,0.782,1.307,1.936,1.533,1.711,1.281,0.679,1.238,0.996,1.366,1.513,1.317,1.14,1.123,1.328,1.301,1.557,1.114],"paint":[0.947,2.392,2.882,1.693,1.384,2.482,1.183,2.656,1.154,2.274,2.166,2.595,1.227,2.419,1.881,2.477,2.173,1.497,2.252,2.241,1.72,2.565,2.349,2.012,1.199]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"05_swap1k","v":{"total":[20.461,34.101,34.653,34.562,18.583,18.412,34.568,22.692,18.35,21.244,18.642,33.979,19.237,20.13,18.768],"script":[1.076,1.153,1.773,1.599,1.484,1.561,2.141,1.019,1.823,1.194,1.064,1.38,1.211,1.389,1.3],"paint":[16.573,15.567,17.256,16.924,16.994,16.745,16.388,20.985,16.274,17.382,16.98,16.261,17.541,18.542,16.474]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"06_remove-one-1k","v":{"total":[15.767,19.961,20.207,16.135,14.19,19.757,20.516,15.124,15.592,17.281,13.551,14.53,13.804,13.832,19.351],"script":[0.605,0.692,0.713,0.407,0.883,0.686,0.716,0.726,0.713,0.713,0.686,0.522,0.905,0.591,0.716],"paint":[12.744,12.763,12.811,12.464,12.423,12.871,13.159,12.796,12.428,12.721,12.47,13.039,12.775,12.582,12.903]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"07_create10k","v":{"total":[443.092,464.403,449.473,438.575,446.883,445.298,438.95,441.381,447.872,449.661,445.36,451.038,447.031,447.494,464.416],"script":[92.771,98.234,97.475,91.466,91.793,98.809,93.257,97.752,99.388,98.546,94.86,99.402,93.884,93.836,97.014],"paint":[342.862,361.896,343.971,343.252,349.601,342.198,338.875,340.691,346.403,342.768,343.354,343.212,345.682,345.563,361.437]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.541,53.136,55.996,56.419,52.193,52.811,51.643,56.231,58.39,53.399,59.403,54.208,52.667,55.634,56.355],"script":[8.456,8.565,8.482,8.675,8.515,8.945,8.701,8.336,8.569,8.871,9.914,8.373,8.266,9.147,8.371],"paint":[38.23,38.697,38.854,38.1,37.945,37.383,37.226,37.798,38.322,38.755,37.614,38.831,38.783,39.034,38.44]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"09_clear1k_x8","v":{"total":[11.567,12.08,11.466,11.879,10.843,12.06,11.823,12.902,13.745,27.709999999999997,11.392,11.675,11.579,12.605,12.041],"script":[10.011,10.303,9.181,10.39,9.687,10.262,9.105,9.396,9.399,10.385,9.503,9.411,9.505,10.919,9.57],"paint":[1.499,1.719,2.231,1.435,1.1,1.735,1.557,1.882,1.548,1.337,1.83,2.2,2.011,1.609,2.415]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4583148956298828]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"22_run-memory","v":{"DEFAULT":[2.901303291320801]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.054821014404297]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6956262588500977]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[24.214308738708496]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[6.2744140625]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"42_size-compressed","v":{"DEFAULT":[2.5517578125]}}, -{"f":"hyperapp-v2.0.22-keyed","b":"43_first-paint","v":{"DEFAULT":[45.9]}}, -{"f":"imba-v1.5.2-keyed","b":"01_run1k","v":{"total":[49.617,47.558,43.564,52.042,43.28,45.146,49.059,47.357,51.056,50.973,48.854,42.407,51.895,49.209,49.748],"script":[10.172,10.014,10.209,9.955,9.875,10.247,9.813,9.813,10.047,10.104,9.929,9.86,10.136,10.109,10.213],"paint":[32.308,32.694,32.549,32.528,32.575,33.841,31.539,34.646,32.947,33.499,35.045,32.411,35.013,33.238,33.795]}}, -{"f":"imba-v1.5.2-keyed","b":"02_replace1k","v":{"total":[55.774,52.697,51.961,50.437,61.506,56.45,54.081,54.21,51.826,60.821,52.076,57.131,57.246,50.936,54.926],"script":[13.416,13.479,12.783,13.253,13.963,12.938,13.855,13.16,13.049,13.491,13.396,13.386,13.308,12.901,13.069],"paint":[36.512,34.582,36.084,35.736,36.598,34.125,33.892,36.048,34.512,35.5,34.967,34.209,35.641,34.488,34.135]}}, -{"f":"imba-v1.5.2-keyed","b":"03_update10th1k_x16","v":{"total":[32.06100000000001,18.332,32.313,31.128,32.277,32.77,15.943,16.894,16.242,17.437,31.731,16.346,16.416,18.172,16.944],"script":[1.642,1.76,1.916,1.343,1.893,1.936,1.5,0.768,2.385,1.291,1.827,1.929,1.869,1.967,1.541],"paint":[14.729,14.94,14.363,13.754,13.23,14.434,13.403,14.682,13.754,14.323,13.182,14.318,13.59,14.173,14.438]}}, -{"f":"imba-v1.5.2-keyed","b":"04_select1k","v":{"total":[3.556,4.354,4.057,4.185,3.784,3.533,3.545,3.968,4.194,3.92,4.75,3.46,4.278,4.003,3.876,4.778,3.891,3.602,3.991,4.183,4.279,3.8,3.38,3.976,3.992],"script":[1.254,0.931,1.413,1.698,0.695,1.094,0.949,1.236,0.88,1.238,0.725,1.461,1.755,1.745,1.438,0.303,1.411,1.097,0.77,0.544,1.166,0.869,1.085,1.248,1.23],"paint":[2.172,3.292,0.706,1.567,0.92,1.996,1.7,2.493,3.167,1.569,2.75,1.167,1.824,1.374,1.761,2.599,1.833,1.056,2.276,2.449,2.083,2.062,1.786,1.283,2.266]}}, -{"f":"imba-v1.5.2-keyed","b":"05_swap1k","v":{"total":[35.489999999999995,22.628,18.373,34.931,19.384,21.83,19.112,20.156,34.80200000000001,20.78,21.672,21.477,21.336,19.141,19.5],"script":[2.167,1.822,1.741,1.645,0.731,2.104,0.811,1.912,1.004,1.382,1.224,1.288,0.798,1.02,1.318],"paint":[16.554,18.864,16.531,17.395,17.706,16.454,18.2,17.045,16.853,18.476,16.51,17.487,17.685,18.007,16.505]}}, -{"f":"imba-v1.5.2-keyed","b":"06_remove-one-1k","v":{"total":[16.519,17.751,17.241,14.08,17.403,15.653,13.868,14.862,16.035,21.089,18.3,16.723,17.655,18.166,18.595],"script":[0.464,0.734,0.514,0.656,0.341,0.631,0.601,0.32,0.28,0.618,0.464,0.341,0.352,0.633,0.35],"paint":[12.916,13.209,12.869,12.98,13.314,12.697,13.125,13.32,13.216,13.014,12.912,13.282,13.41,12.844,13.208]}}, -{"f":"imba-v1.5.2-keyed","b":"07_create10k","v":{"total":[455.39,461.784,466.649,460.341,442.458,462.07,457.879,459.94,457.528,451.73,467.813,465.926,442.589,469.218,465.796],"script":[103.926,105.755,106.887,105.093,105.69,105.57,107.101,105.038,105.846,106.51,106.572,107.678,105.247,108.214,107.56],"paint":[348.03,350.561,350.245,351.689,334.678,348.541,343.065,352.814,349.544,341.196,358.319,352.504,331.526,354.916,356.105]}}, -{"f":"imba-v1.5.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[97.128,98.281,102.924,97.374,97.84,102.446,101.979,100.19,98.85,105.31,103.86,99.656,98.639,98.393,103.399],"script":[22.149,21.783,22.012,22.04,21.917,22.34,22.482,21.932,22.204,22.443,22.442,22.335,22.322,22.435,22.205],"paint":[69.212,70.286,70.799,69.723,70.217,71.143,71.358,71.889,69.995,72.825,71.04,70.777,70.354,69.816,70.728]}}, -{"f":"imba-v1.5.2-keyed","b":"09_clear1k_x8","v":{"total":[13.634,13.933,13.384,14.941,14.795,12.406,13.555,29.068000000000005,14.798,12.54,12.906,14.293,13.879,15.225,12.697],"script":[10.931,11.255,12.26,11.376,12.389,10.265,12.251,11.992,11.221,10.711,11.209,10.749,11.721,11.453,11.176],"paint":[1.83,2.615,1.068,1.335,2.343,1.301,1.242,1.078,0.998,0.426,0.881,1.308,2.099,1.385,1.465]}}, -{"f":"imba-v1.5.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7603235244750977]}}, -{"f":"imba-v1.5.2-keyed","b":"22_run-memory","v":{"DEFAULT":[3.596135139465332]}}, -{"f":"imba-v1.5.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.667840003967285]}}, -{"f":"imba-v1.5.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0240898132324219]}}, -{"f":"imba-v1.5.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[27.482873916625977]}}, -{"f":"imba-v1.5.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[64.1181640625]}}, -{"f":"imba-v1.5.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[15.0751953125]}}, -{"f":"imba-v1.5.2-keyed","b":"43_first-paint","v":{"DEFAULT":[102.4]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"01_run1k","v":{"total":[43.801,45.308,45.455,44.808,45.525,45.503,46.047,44.525,44.921,44.559,45.59,45.848,46.339,45.487,45.45],"script":[10.748,10.354,10.547,10.669,10.491,11.496,11.782,10.599,10.438,10.428,10.549,11.526,11.946,11.828,10.474],"paint":[32.602,34.468,34.446,33.692,34.563,33.587,33.832,33.493,34.022,33.65,34.591,33.875,33.971,33.211,34.52]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"02_replace1k","v":{"total":[85.291,83.864,86.178,86.124,87.356,84.51,84.852,87.128,84.03,84.03,85.649,86.83,86.376,84.675,84.419],"script":[51.523,49.905,51.878,50.954,51.891,47.881,50.087,52.302,50.015,49.859,50.686,51.671,51.432,48.254,50.16],"paint":[33.308,33.494,33.841,34.703,35.029,36.115,34.334,34.385,33.544,33.734,34.518,34.669,34.485,35.958,33.794]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"03_update10th1k_x16","v":{"total":[26.48,25.411,25.982,26.065,25.636,25.195,26.9,26.344,26.404,26.081,25.591,27.155,25.756,25.048,27.439],"script":[10.102,9.975,10.346,10.217,9.853,10.551,10.45,10.171,10.435,10.548,10.24,11.514,10.424,10.405,9.89],"paint":[14.712,13.938,13.678,14.819,13.821,13.625,15.117,15.079,13.644,14.255,13.868,13.767,14.217,13.935,15.693]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"04_select1k","v":{"total":[10.995,12.351,11.443,11.598,11.858,11.308,11.985,11.688,12.94,12.019,11.444,11.971,11.783,11.417,12.007,12.615,11.171,12.036,11.729,12.054,12.252,12.541,11.402,12.38,11.768],"script":[8.423,9.031,8.173,8.77,8.815,8.455,9.145,8.97,9.294,9.067,8.947,9.533,8.144,9.161,8.875,9.323,8.838,9.399,8.923,9.513,9.458,9.182,9.066,9.795,8.901],"paint":[1.58,2.194,2.013,2.66,2.818,2.694,1.868,2.136,1.994,2.78,1.688,1.641,3.491,1.54,2.228,2.386,1.69,1.598,1.491,1.724,2.633,3.196,1.425,1.625,2.063]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"05_swap1k","v":{"total":[168.042,164.256,164.556,172.922,165.399,161.981,162.914,162.015,160.731,161.517,166.612,161.106,162.714,162.832,162.271],"script":[26.957,23.928,23.268,26.221,23.898,22.787,23.632,23.086,23.744,23.575,24.431,23.395,23.5,22.978,24.205],"paint":[138.793,138.136,139.631,144.624,140.069,137.496,137.683,137.085,135.752,136.584,140.239,136.284,137.586,138.484,136.436]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"06_remove-one-1k","v":{"total":[89.962,86.888,86.493,86.213,88.949,85.057,89.212,88.309,90.227,89.517,90.746,90.329,87.321,87.357,88.033],"script":[16.325,15.488,15.368,15.9,17.113,15.442,17.266,16.249,16.089,15.582,15.847,15.782,15.686,15.558,15.629],"paint":[71.819,70.034,69.751,68.584,70.088,68.488,70.17,70.797,72.298,72.514,72.865,72.975,70.033,70.173,70.833]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"07_create10k","v":{"total":[456.578,462.237,452.158,448.378,457.086,458.531,458.63,449.899,459.866,456.522,454.336,457.866,454.877,463.304,448.634],"script":[113.095,114.245,110.635,110.406,114.578,116.448,114.14,109.785,114.406,112.544,112.634,110.799,110.389,115.794,109.792],"paint":[336.58,341.329,334.816,331.328,335.783,335.446,337.873,333.452,338.837,337.367,334.867,340.446,337.752,340.867,332.098]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.412,51.346,53.222,51.739,50.777,51.23,50.79,51.595,52.853,49.921,50.932,50.824,51.534,50.831,50.025],"script":[12.478,12.277,12.227,12.911,11.845,12.36,12.262,12.546,12.664,12.145,12.051,12.247,12.38,12.196,11.867],"paint":[39.035,38.195,40.189,37.939,38.058,37.992,37.65,38.16,39.302,36.889,37.999,37.532,38.277,37.74,37.283]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"09_clear1k_x8","v":{"total":[14.047,14.648,15.131,15.196,14.747,15.076,14.556,14.552,14.223,14.536,13.754,14.83,14.263,14.42,14.352],"script":[12.951,12.777,12.827,13.415,12.799,12.703,12.565,12.665,12.598,12.225,12.396,13.506,12.373,12.714,12.322],"paint":[0.358,1.775,1.783,1.55,1.168,2.275,1.901,1.801,1.331,2.199,1.27,1.237,1.575,0.829,1.424]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.542607307434082]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"22_run-memory","v":{"DEFAULT":[2.9967823028564453]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.028087615966797]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9632081985473633]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[22.716546058654785]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[12.828125]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.8388671875]}}, -{"f":"incremental-dom-v0.7.0-keyed","b":"43_first-paint","v":{"DEFAULT":[49.7]}}, -{"f":"inferno-v8.2.2-keyed","b":"01_run1k","v":{"total":[38.495,41.317,39.002,39.145,40.746,39.614,39.219,38.547,40.949,39.13,38.376,40.572,41.002,38.932,39.099],"script":[5.394,5.733,5.578,5.435,5.501,5.826,5.761,5.303,5.48,5.462,5.437,5.571,5.486,5.567,5.814],"paint":[32.682,35.141,33.003,33.28,34.822,33.363,33.042,32.815,35.086,33.241,32.524,34.587,35.082,32.968,32.857]}}, -{"f":"inferno-v8.2.2-keyed","b":"02_replace1k","v":{"total":[42.166,42.199,45.657,43.512,41.51,41.911,41.672,44.504,42.916,42.347,41.259,41.506,43.907,43.091,43.273],"script":[7.727,7.883,8.371,8.059,7.823,7.917,8.004,8.068,8.211,8.006,7.788,7.759,7.962,8.122,8.336],"paint":[34.025,33.877,36.853,35.015,33.254,33.562,33.249,36.008,34.224,33.909,33.055,33.326,35.533,34.539,34.492]}}, -{"f":"inferno-v8.2.2-keyed","b":"03_update10th1k_x16","v":{"total":[17.069,17.096,16.992,16.836,16.919,16.619,17.938,16.859,16.306,18.26,16.892,16.652,18.065,16.324,15.92],"script":[1.842,1.045,0.985,1.503,1.783,1.643,1.671,1.729,1.677,1.872,1.581,1.265,1.944,1.638,1.368],"paint":[14.023,15.006,13.688,14.247,14.128,13.417,14.556,13.744,13.305,15.329,13.927,14.359,15.14,13.434,13.272]}}, -{"f":"inferno-v8.2.2-keyed","b":"04_select1k","v":{"total":[2.82,3.92,5.094,3.717,3.385,3.08,3.563,3.596,3.967,3.122,3.012,2.847,3.01,3.168,4.375,3.582,3.565,4.07,3.922,3,3.466,3.047,2.736,2.955,4.3],"script":[0.19,1.178,1.052,1.476,0.951,0.912,0.908,1.06,1.126,1.259,0.181,0.555,0.782,1.048,1.116,0.962,0.808,0.9,0.786,1.05,0.847,0.181,0.793,0.803,1.443],"paint":[0.48,1.823,1.415,1.478,2.329,2.051,1.849,1.126,1.905,1.768,2.719,1.17,2.123,1.473,1.337,2.048,2.64,1.372,2.19,0.969,1.653,2.76,1.26,2.05,2.73]}}, -{"f":"inferno-v8.2.2-keyed","b":"05_swap1k","v":{"total":[19.627,19.657,19.452,19.202,19.871,19.398,19.497,19.724,20.341,19.692,19.324,19.908,19.177,19,18.963],"script":[1.55,1.845,1.252,1.152,1.359,0.657,1.214,1.087,1.447,0.951,1.433,1.481,1.313,1.084,1.254],"paint":[16.702,16.39,16.947,16.898,17.154,16.638,16.257,16.772,17.235,17.397,16.605,16.818,15.722,17.207,16.673]}}, -{"f":"inferno-v8.2.2-keyed","b":"06_remove-one-1k","v":{"total":[15.048,15.149,15.361,15.465,15.372,15.376,14.939,15.258,14.912,15.163,15.55,14.935,14.892,15.354,15.305],"script":[0.292,0.561,0.466,0.56,0.572,0.536,0.473,0.58,0.579,0.569,0.519,0.313,0.561,0.516,0.566],"paint":[13.997,13.868,14.15,13.698,13.886,14.022,13.447,13.924,13.622,13.835,13.768,13.612,13.298,14.114,13.922]}}, -{"f":"inferno-v8.2.2-keyed","b":"07_create10k","v":{"total":[403.584,404.915,404.814,403.947,395.616,406.919,389.885,397.938,391.766,398.445,404.207,395.022,403.216,395.539,394.972],"script":[57.913,59.765,59.392,57.997,56.596,58.457,55.894,56.992,56.96,57.234,56.019,57.025,56.827,56.218,57.653],"paint":[338.443,337.875,338.733,339.307,332.326,341.691,327.331,334.199,327.616,334.37,341.557,331.288,339.679,332.591,330.603]}}, -{"f":"inferno-v8.2.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[43.682,44.351,43.329,43.137,42.359,44.748,43.074,41.96,43.691,43.505,42.96,43.194,43.405,42.876,42.898],"script":[5.676,5.871,5.071,5.125,5.161,5.273,5.083,5.164,5.866,5.861,4.972,5.467,5.646,5.474,5.213],"paint":[37.156,37.609,37.385,37.161,36.347,38.631,37.142,35.952,36.963,36.789,37.095,36.862,36.891,36.558,36.819]}}, -{"f":"inferno-v8.2.2-keyed","b":"09_clear1k_x8","v":{"total":[12.291,12.195,12.387,13.077,12.386,12.496,13.137,12.363,12.266,12.922,13.596,12.35,13.219,12.962,13.113],"script":[10.485,10.985,10.223,10.941,10.486,10.889,10.951,10.742,10.287,10.623,11.894,10.876,10.721,10.761,11.39],"paint":[1.722,0.51,2.078,1.896,1.811,1.521,1.755,1.541,1.889,2.211,1.583,1.255,0.605,2.112,1.635]}}, -{"f":"inferno-v8.2.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.513031005859375]}}, -{"f":"inferno-v8.2.2-keyed","b":"22_run-memory","v":{"DEFAULT":[2.685361862182617]}}, -{"f":"inferno-v8.2.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.7474746704101562]}}, -{"f":"inferno-v8.2.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7252340316772461]}}, -{"f":"inferno-v8.2.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[21.238304138183594]}}, -{"f":"inferno-v8.2.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[27.1552734375]}}, -{"f":"inferno-v8.2.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.9375]}}, -{"f":"inferno-v8.2.2-keyed","b":"43_first-paint","v":{"DEFAULT":[70.3]}}, -{"f":"ivi-v3.0.0-keyed","b":"01_run1k","v":{"total":[36.214,36.049,36.281,35.654,36.007,37.866,36.057,35.647,35.892,35.961,37.211,35.865,36.485,37.761,35.467],"script":[2.96,2.984,3.111,2.892,2.955,3.39,3.278,2.897,2.948,2.982,3.027,2.928,2.953,3.113,2.919],"paint":[32.841,32.65,32.764,32.354,32.644,34.087,32.369,32.321,32.538,32.54,33.755,32.506,33.125,34.231,32.143]}}, -{"f":"ivi-v3.0.0-keyed","b":"02_replace1k","v":{"total":[41.276,41.246,39.412,39.798,39.749,39.866,41.662,40.42,40.798,40.344,41.7,41.248,40.414,40.295,41.778],"script":[5.598,5.443,5.495,5.385,5.408,5.356,5.85,5.573,5.468,5.653,5.571,5.45,5.49,5.577,5.638],"paint":[35.211,35.33,33.447,33.984,33.907,34.064,35.372,34.41,34.916,34.253,35.687,35.339,34.478,34.278,35.697]}}, -{"f":"ivi-v3.0.0-keyed","b":"03_update10th1k_x16","v":{"total":[16.87,16.167,16.864,16.367,15.611,16.609,16.841,15.865,15.759,16.462,17.22,16.381,16.534,16.395,16.277],"script":[1.341,1.693,2.046,1.506,1.065,1.162,1.184,0.969,1.286,1.495,1.055,1.143,1.497,1.399,0.956],"paint":[13.743,12.667,13.457,13.622,13.248,13.889,14.109,13.413,12.673,13.867,14.508,13.071,12.963,12.695,13.788]}}, -{"f":"ivi-v3.0.0-keyed","b":"04_select1k","v":{"total":[4.375,3.219,3.439,2.855,3.448,3.424,3.446,3.678,4.304,3.223,2.889,3.256,3.103,2.704,3.694,6.078,3.469,3.845,3.848,2.606,3.479,3.738,3.177,4.286,4.382],"script":[0.922,0.206,1.495,0.677,0.963,1.138,1.011,1.158,1.232,0.619,0.621,0.999,0.786,0.29,0.959,0.199,1.148,1.094,1.283,0.562,0.98,1.138,0.984,1.264,0.909],"paint":[2.179,2.912,1.38,2.08,2.111,2.172,1.971,2.41,2.948,1.859,1.636,2.154,1.92,2.315,2.621,2.599,2.218,1.842,2.462,1.04,1.891,1.489,2.102,1.56,1.696]}}, -{"f":"ivi-v3.0.0-keyed","b":"05_swap1k","v":{"total":[18.928,18.829,18.699,20.773,18.55,18.954,18.773,19.027,19.678,18.715,18.506,18.161,18.582,18.627,19.113],"script":[1.727,0.641,1.053,1.543,1.581,0.953,1.363,0.914,1.261,0.914,0.931,1.21,0.994,1.072,1.616],"paint":[15.924,16.638,16.038,16.844,15.531,17.013,16.299,15.981,17.188,16.214,16.227,15.649,15.793,16.308,15.663]}}, -{"f":"ivi-v3.0.0-keyed","b":"06_remove-one-1k","v":{"total":[15.286,14.708,14.905,14.742,14.795,14.783,14.867,14.792,14.814,14.781,15.582,14.783,15.167,14.806,14.975],"script":[0.552,0.533,0.554,0.536,0.554,0.54,0.414,0.547,0.478,0.544,0.262,0.495,0.538,0.369,0.365],"paint":[13.987,13.489,13.604,13.164,13.554,13.517,13.174,13.222,13.65,13.538,14.097,13.558,13.899,13.385,13.79]}}, -{"f":"ivi-v3.0.0-keyed","b":"07_create10k","v":{"total":[375.92,383.458,378.903,374.362,373.013,375.772,382.215,382.325,382.554,379.7,379.933,390.015,380.796,377.228,381.393],"script":[39.841,38.812,42.493,39.93,38.409,40.575,39.748,39.52,39.967,40.473,40.806,40.635,40.287,41.586,41.158],"paint":[329.223,337.237,329.404,327.444,327.627,328.332,335.48,335.847,335.793,332.347,332.304,342.595,333.676,328.794,332.163]}}, -{"f":"ivi-v3.0.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[42.973,43.063,44.903,43.833,43.119,43.533,42.717,43.237,42.334,42.983,42.77,43.145,42.456,44.843,43.317],"script":[3.089,3.14,3.269,3.204,3.141,3.142,3.124,3.155,3.196,3.167,3.113,3.178,3.104,3.348,3.123],"paint":[39.034,39.083,40.734,39.774,39.098,39.515,38.7,39.229,38.225,38.932,38.788,39.086,38.484,40.643,39.338]}}, -{"f":"ivi-v3.0.0-keyed","b":"09_clear1k_x8","v":{"total":[12.09,11.661,11.724,11.761,11.523,11.775,12.235,11.383,11.123,11.719,11.302,11.353,11.846,11.995,11.233],"script":[9.605,10.082,9.923,9.554,9.645,9.71,10.07,9.987,9.943,9.872,9.83,9.863,9.991,10.072,9.562],"paint":[2.069,1.482,1.71,2.127,1.322,1.656,1.522,0.387,1.103,1.308,0.437,1.412,1.775,1.255,0.786]}}, -{"f":"ivi-v3.0.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4949522018432617]}}, -{"f":"ivi-v3.0.0-keyed","b":"22_run-memory","v":{"DEFAULT":[2.1086225509643555]}}, -{"f":"ivi-v3.0.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.1437110900878906]}}, -{"f":"ivi-v3.0.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6411457061767578]}}, -{"f":"ivi-v3.0.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[16.309537887573242]}}, -{"f":"ivi-v3.0.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[9.783203125]}}, -{"f":"ivi-v3.0.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.0849609375]}}, -{"f":"ivi-v3.0.0-keyed","b":"43_first-paint","v":{"DEFAULT":[50.5]}}, -{"f":"karyon-v2.0.0-keyed","b":"01_run1k","v":{"total":[51.596,49.947,50.143,49.653,50.19,49.797,49.773,49.447,49.633,49.307,49.291,50.998,50.172,50.36,51.572],"script":[16.193,15.339,15.244,16.101,15.511,15.01,15.891,15.426,15.385,14.975,15.108,15.737,15.771,15.829,16.446],"paint":[34.949,34.184,34.453,33.11,34.24,34.353,33.46,33.559,33.766,33.926,33.74,34.813,33.952,34.105,34.666]}}, -{"f":"karyon-v2.0.0-keyed","b":"02_replace1k","v":{"total":[58.041,57.981,56.685,56.744,57.613,56.261,57.167,56.823,56.906,56.708,57.601,57.115,56.335,56.105,57.475],"script":[21.798,21.203,21.077,20.997,20.82,20.647,21.069,21.221,21.08,21.05,21.581,21.105,20.826,21.077,22.263],"paint":[35.799,36.34,35.17,35.303,36.344,35.165,35.645,35.187,35.377,35.206,35.582,35.574,35.065,34.568,34.775]}}, -{"f":"karyon-v2.0.0-keyed","b":"03_update10th1k_x16","v":{"total":[16.385,16.026,17.446,16.676,16.586,16.27,16.744,16.83,17.291,18.073,16.008,16.802,17.282,17.051,16.658],"script":[1.299,1.204,1.512,0.969,1.026,1.311,1.251,1.131,1.548,2.035,0.647,1.696,2.053,1.494,0.944],"paint":[13.932,13.107,14.107,14.14,14.677,13.493,14.447,14.387,14.079,14.732,13.236,13.464,13.997,14.838,14.136]}}, -{"f":"karyon-v2.0.0-keyed","b":"04_select1k","v":{"total":[3.647,2.425,2.6,3.906,2.937,3.011,5.868,3.003,3.052,3.041,2.547,3.299,4.514,2.873,2.555,2.753,2.78,3.526,2.733,2.6,4.309,3.305,2.487,4.789,2.834],"script":[0.865,0.148,1.081,1.074,0.984,0.714,0.71,0.709,0.142,0.972,0.805,0.968,0.861,0.148,0.151,0.205,0.141,1.281,0.567,0.147,0.636,0.886,0.624,0.142,0.554],"paint":[1.816,1.277,1.417,1.656,1.853,2.191,2.065,2.182,2.809,1.975,1.646,1.45,1.583,2.616,0.464,1.641,1.932,2.14,1.41,2.35,1.945,1.615,1.321,1.583,1.388]}}, -{"f":"karyon-v2.0.0-keyed","b":"05_swap1k","v":{"total":[20.347,20.541,20.3,21.011,20.088,20.241,21.074,20.093,20.978,19.912,21.478,20.246,20.204,20.269,20.513],"script":[2.534,2.346,2.783,3.189,2.545,2.755,2.991,2.325,2.961,2.144,2.605,3.259,2.181,2.574,2.81],"paint":[16.228,16.82,15.746,16.288,16.328,15.42,16.651,16.38,16.299,15.563,16.476,15.454,16.679,16.623,16.072]}}, -{"f":"karyon-v2.0.0-keyed","b":"06_remove-one-1k","v":{"total":[16.818,16.108,16.037,15.818,15.977,16.053,16.036,15.919,16.453,15.529,16.078,15.973,15.938,16.534,15.945],"script":[1.242,1.278,1.255,1.251,1.277,1.252,1.283,1.27,1.3,1.29,1.284,1.243,1.22,1.281,1.25],"paint":[14.849,13.814,14.021,13.842,13.966,14.054,14.021,13.647,14.396,13.53,13.791,13.951,13.977,14.451,13.728]}}, -{"f":"karyon-v2.0.0-keyed","b":"07_create10k","v":{"total":[545.999,539.812,523.393,534.926,546.063,529.081,548.426,528.748,552.817,530.798,541.877,536.68,532.739,546.106,516.706],"script":[175.36,169.776,177.564,175.594,175.881,174.919,175.281,174.155,174.96,174.948,171.476,178.247,176.938,177.554,174.194],"paint":[363.737,363.258,339.052,352.388,363.481,347.415,366.387,347.879,371.013,349.119,363.521,351.596,349.082,361.724,335.538]}}, -{"f":"karyon-v2.0.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[59.245,58.538,58.762,60.739,60.501,59.544,58.744,58.573,61.076,59.754,58.988,61.519,60.791,59.6,58.373],"script":[19.175,18.957,19.011,20.244,18.853,19.347,18.523,18.979,19.451,19.866,18.69,21.309,20.455,18.808,18.61],"paint":[39.158,38.662,38.85,39.575,40.72,39.289,39.299,38.629,40.715,38.955,39.379,39.288,39.393,39.873,38.862]}}, -{"f":"karyon-v2.0.0-keyed","b":"09_clear1k_x8","v":{"total":[25.536,25.783,26.573,24.801,24.207,23.375,25.188,26.089,24.557,26.143,25.551,24.986,25.03,24.437,24.754],"script":[23.433,24.147,24.408,23.443,22.672,21.432,23.288,23.409,23.073,24.336,23.386,22.614,22.962,22.977,23.091],"paint":[1.484,1.529,2.063,0.965,1.439,1.845,1.789,2.575,1.373,0.877,2.043,1.326,1.948,1.354,1.338]}}, -{"f":"karyon-v2.0.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.597412109375]}}, -{"f":"karyon-v2.0.0-keyed","b":"22_run-memory","v":{"DEFAULT":[4.536914825439453]}}, -{"f":"karyon-v2.0.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.6124267578125]}}, -{"f":"karyon-v2.0.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.435086250305176]}}, -{"f":"karyon-v2.0.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[38.897990226745605]}}, -{"f":"karyon-v2.0.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[20.0078125]}}, -{"f":"karyon-v2.0.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.3642578125]}}, -{"f":"karyon-v2.0.0-keyed","b":"43_first-paint","v":{"DEFAULT":[72.8]}}, -{"f":"knockout-v3.5.1-keyed","b":"01_run1k","v":{"total":[73.744,76.903,75.876,76.851,78.324,76.535,80.904,75.669,77.394,76.182,75.728,76.923,74.973,75.982,76.511],"script":[39.147,41.032,40.408,40.806,41.653,41.008,42.223,39.716,40.855,40.253,39.775,41.26,39.63,39.878,40.471],"paint":[34.158,35.391,34.944,35.54,36.196,35.054,38.218,35.48,36.059,35.457,35.478,35.19,34.875,35.633,35.572]}}, -{"f":"knockout-v3.5.1-keyed","b":"02_replace1k","v":{"total":[99.071,98.916,100.864,99.008,98.787,100.065,98.445,99.054,99.105,97.79,101.132,97.672,97.237,101.823,99.657],"script":[62.09,62.053,61.802,62.392,61.828,62.476,61.922,62.025,62.228,60.606,64.198,61.057,60.179,64.593,62.395],"paint":[36.504,36.366,38.567,36.134,36.46,37.097,36.013,36.543,36.38,36.667,36.446,36.117,36.561,36.707,36.774]}}, -{"f":"knockout-v3.5.1-keyed","b":"03_update10th1k_x16","v":{"total":[19.256,19.309,17.36,19.06,18.163,17.861,18.276,17.818,18.042,18.273,17.895,18.489,18.376,18.045,18.444],"script":[2.42,1.908,2.263,2.672,1.674,2.13,2.299,2.232,2.126,2.567,1.531,2.59,2.198,1.913,2.765],"paint":[14.485,15.84,13.632,14.647,15.241,13.518,13.285,14.049,14.643,14.735,15.039,14.373,15.075,14.712,14.076]}}, -{"f":"knockout-v3.5.1-keyed","b":"04_select1k","v":{"total":[16.501,15.622,17.018,14.688,14.449,14.474,14.115,13.621,13.709,13.36,14.578,13.773,14.426,13.365,14.949,14.202,15.8,14.807,14.525,13.349,15.504,15.571,14.173,14.144,14.15],"script":[12.169,11.806,12.7,11.531,11.179,11.348,10.337,10.304,10.103,9.936,11.304,10.194,11.344,10.268,11.18,10.719,12.179,11.108,11.461,9.887,11.94,12.166,10.808,11.212,10.788],"paint":[3.112,3.637,2.882,2.98,1.894,2.506,3.021,3.147,3.025,2.072,2.547,3.064,2.292,2.914,3.56,3.311,2.079,2.587,1.609,2.895,3.387,3.227,2.76,1.004,3.184]}}, -{"f":"knockout-v3.5.1-keyed","b":"05_swap1k","v":{"total":[172.204,172.796,174.059,170.943,173.117,171.89,172.632,174.961,173.654,174.92,172.073,174.295,170.643,170.745,171.763],"script":[24.771,25.325,26.078,25.368,25.962,25.665,25.226,25.99,25.573,27.033,25.78,24.979,25.125,24.546,24.739],"paint":[144.857,145.458,145.402,143.55,145.949,143.903,145.736,147.334,145.458,146.323,144.064,147.053,143.175,144.208,144.476]}}, -{"f":"knockout-v3.5.1-keyed","b":"06_remove-one-1k","v":{"total":[18.02,17.994,17.556,17.296,17.138,17.205,17.194,16.976,17.202,18.921,18.196,18.354,18.522,17.896,17.98],"script":[1.929,1.897,1.59,1.576,1.453,1.687,1.495,1.318,1.398,1.606,1.93,1.944,1.447,1.844,1.896],"paint":[15.286,14.986,15.13,14.621,14.691,14.465,14.68,14.878,15.057,16.049,15.085,15.227,15.974,15.238,15.287]}}, -{"f":"knockout-v3.5.1-keyed","b":"07_create10k","v":{"total":[722.577,717.564,699.524,706.556,705.482,699.469,710.785,701.69,707.812,719.345,710.171,720.534,699.628,723.544,715.466],"script":[338.78,336.336,353.885,357.61,354.274,350.798,356.271,354.133,356.492,339.175,358.254,348.842,351.122,340.926,338.532],"paint":[376.747,374.146,338.702,341.951,344.201,341.765,347.468,340.711,344.448,373.327,344.84,364.701,341.06,375.674,370.096]}}, -{"f":"knockout-v3.5.1-keyed","b":"08_create1k-after1k_x2","v":{"total":[85,84.106,85.59,83.395,83.992,83.899,82.15,83.144,86.303,83.736,83.958,85.344,82.028,82.718,86.216],"script":[42.829,41.876,42.856,41.6,41.809,42.193,39.999,42.31,42.954,42.135,42.245,43.201,41.083,41.159,43.951],"paint":[41.206,41.229,41.76,40.832,41.183,40.724,41.177,39.843,42.194,40.628,40.745,41.163,39.973,40.589,41.309]}}, -{"f":"knockout-v3.5.1-keyed","b":"09_clear1k_x8","v":{"total":[57.034,59.154,67.393,59.346,55.579,57.081,57.814,57.775,55.555,57.447,58.142,55.632,57.454,58.903,67.894],"script":[54.589,56.976,65.229,57.163,53.474,54.909,55.322,55.692,53.295,54.988,56.254,53.642,54.959,56.67,65.706],"paint":[1.35,2.033,1.401,2.048,1.994,1.308,1.096,1.971,1.632,1.939,1.769,1.127,2.358,2.12,2.046]}}, -{"f":"knockout-v3.5.1-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7630558013916016]}}, -{"f":"knockout-v3.5.1-keyed","b":"22_run-memory","v":{"DEFAULT":[12.701495170593262]}}, -{"f":"knockout-v3.5.1-keyed","b":"23_update5-memory","v":{"DEFAULT":[12.777185440063477]}}, -{"f":"knockout-v3.5.1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.3885316848754883]}}, -{"f":"knockout-v3.5.1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[75.43037986755371]}}, -{"f":"knockout-v3.5.1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[70.4404296875]}}, -{"f":"knockout-v3.5.1-keyed","b":"42_size-compressed","v":{"DEFAULT":[22.390625]}}, -{"f":"knockout-v3.5.1-keyed","b":"43_first-paint","v":{"DEFAULT":[109.3]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"01_run1k","v":{"total":[42.539,40.683,41.654,40.543,42.461,40.531,41.489,39.953,40.472,41.022,40.197,40.277,41.089,42.451,41.881],"script":[7.132,7.299,7.537,7.194,7.251,7.168,7.755,7.023,7.16,7.359,7.281,7.015,7.205,7.063,7.252],"paint":[34.971,32.967,33.693,32.898,34.791,32.927,33.323,32.513,32.883,33.233,32.5,32.825,33.475,34.969,34.199]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"02_replace1k","v":{"total":[46.025,45.753,45.253,45.458,45.833,46.26,46.879,46.778,45.774,46.026,45.833,47.565,46.194,48.434,46.184],"script":[11.329,10.994,10.998,10.813,11.082,11.179,11.287,11.402,11.154,10.722,11.043,11.171,11.255,12.3,11.042],"paint":[34.263,34.316,33.827,34.191,34.324,34.637,35.131,34.929,34.171,34.859,34.352,35.944,34.503,35.686,34.705]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"03_update10th1k_x16","v":{"total":[17.824,18.396,18.126,19.32,18.328,17.55,20.749,17.654,17.343,17.255,17.046,18.096,17.944,18.109,18.204],"script":[2.594,2.619,2.542,2.827,2.907,2.751,3.032,2.765,2.799,1.983,2.039,2.717,3.035,2.753,2.461],"paint":[12.735,14.378,14.275,15.276,13.369,12.735,15.27,13.651,13.269,13.685,13.467,14.119,13.772,13.21,14.569]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"04_select1k","v":{"total":[3.362,2.807,4.079,2.909,3.989,2.96,3.338,3.357,3.714,3.568,3.571,4.982,4.254,4.915,3.543,3.117,3.78,3.36,3.476,3.55,3.033,3.216,3.459,4.314,4.855],"script":[1.048,0.627,1.691,0.583,1.566,1.238,0.984,0.718,0.615,1.191,1.017,1.453,0.967,1.242,0.988,0.921,1.176,0.982,0.733,1.356,0.948,1.126,0.788,0.932,0.989],"paint":[1.641,1.334,2.279,1.337,2.318,1.605,1.811,1.644,2.622,2.271,1.499,2.034,2.34,2.167,2.454,1.329,2.497,1.558,2.645,2.094,1.984,1.635,1.613,1.002,1.608]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"05_swap1k","v":{"total":[18.926,20.549,20.144,20.168,19.614,19.609,19.455,19.745,18.976,19.592,19.257,20.114,20.629,19.785,19.974],"script":[1.755,2.349,2.119,1.753,1.584,1.82,0.944,1.666,1.546,1.544,1.752,1.712,1.236,1.455,1.37],"paint":[15.517,17.089,16.437,17.189,17.038,16.75,16.742,16.806,16.215,16.005,14.82,16.141,18.052,16.875,17.258]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"06_remove-one-1k","v":{"total":[15.676,15.389,15.909,15.396,15.743,15.216,15.439,15.376,15.753,16.066,15.372,15.366,15.354,15.559,15.364],"script":[0.637,0.638,0.625,0.612,0.728,0.608,0.612,0.615,0.602,0.599,0.616,0.602,0.602,0.312,0.599],"paint":[14.001,14.024,14.482,14.054,14.283,13.864,14.039,14.018,14.508,14.178,13.762,14.039,14.04,14.529,13.849]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"07_create10k","v":{"total":[406.427,407.831,412.173,417.845,409.184,414.269,404.242,405.324,412.807,406.593,404.058,411.871,403.499,406.621,413.736],"script":[67.841,67.091,66.976,70.974,67.587,67.074,66.156,67.195,71.624,68.048,66.245,71.336,68.634,67.154,66.333],"paint":[331.898,334.08,338.564,340.192,334.976,340.568,331.324,331.473,334.564,331.775,331.234,333.885,328.241,332.805,340.699]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"08_create1k-after1k_x2","v":{"total":[44.929,45.957,47.547,45.957,47.445,46.847,45.931,45.44,45.702,47.342,45.851,45.297,45.199,46.939,45.705],"script":[6.758,7.5,7.115,6.836,7.138,7.191,7.152,7.02,7.106,7.825,7.504,7.043,7.08,6.876,6.976],"paint":[37.322,37.569,39.566,38.274,39.439,38.807,37.914,37.573,37.725,38.552,37.493,37.357,37.26,39.188,37.899]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"09_clear1k_x8","v":{"total":[14.814,14.3,14.359,14.357,14.047,14.768,14.624,15.401,14.479,14.219,14.932,14.701,14.897,15.171,15.227],"script":[12.639,12.468,12.879,13.028,12.657,12.337,12.808,13.765,12.288,13.011,12.871,12.832,12.882,13.468,13.18],"paint":[2.084,1.742,1.299,0.432,0.359,2.341,0.982,1.258,0.784,1.122,1.969,1.784,1.922,0.779,1.943]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6811017990112305]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"22_run-memory","v":{"DEFAULT":[5.073020935058594]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.185676574707031]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0563316345214844]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[29.958685874938965]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[74.767578125]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"42_size-compressed","v":{"DEFAULT":[24.400390625]}}, -{"f":"ko-jsx-v0.16.1-keyed","b":"43_first-paint","v":{"DEFAULT":[118.1]}}, -{"f":"laminar-v16.0.0-keyed","b":"01_run1k","v":{"total":[82.36,81.466,81.656,79.522,85.69,81.416,87.645,80.184,82.203,80.667,80.593,79.313,79.191,82.334,80.565],"script":[46.585,45.83,46.472,43.856,49.899,45.974,51.618,43.547,46.174,45.074,45.355,44.112,44.249,46.833,45.252],"paint":[35.346,35.182,34.762,35.228,35.357,35.002,35.591,36.189,35.556,35.155,34.791,34.77,34.506,35.072,34.846]}}, -{"f":"laminar-v16.0.0-keyed","b":"02_replace1k","v":{"total":[109.187,112.895,108.907,114.025,108.565,110.758,112.405,106.513,108.595,109.476,108.774,106.838,110.647,109.428,110.831],"script":[77.045,77.902,76.042,82.04,76.634,78.474,80.23,75.276,76.656,77.436,77.282,74.962,78.983,78.033,79.466],"paint":[31.662,34.529,32.392,31.514,31.452,31.824,31.703,30.781,31.457,31.566,31.035,31.407,31.202,30.93,30.882]}}, -{"f":"laminar-v16.0.0-keyed","b":"03_update10th1k_x16","v":{"total":[24.546,24.416,24.123,25.198,24.185,24.814,24.513,23.89,24.236,23.968,23.754,23.551,23.859,23.4,23.344],"script":[8.583,7.96,8.033,8.319,8.298,8.421,8.592,8.22,8.217,7.734,7.777,8.051,8.254,8.286,7.752],"paint":[14.007,14.96,14.566,14.782,14.57,13.783,14.627,14.493,14.329,14.646,14.906,13.943,14.319,13.817,14.13]}}, -{"f":"laminar-v16.0.0-keyed","b":"04_select1k","v":{"total":[13.016,11.994,12.115,12.046,12.993,11.92,12.591,11.841,11.473,11.784,12.255,12.711,12.641,11.707,12.721,11.77,11.535,12.432,12.167,12.544,12.032,12.32,12.462,11.771,12.458],"script":[9.869,9.302,9.011,9.278,9.773,9.668,9.113,8.962,8.88,9.428,8.96,9.846,9.381,8.93,9.909,9.639,8.406,9.869,9.149,9.604,9.988,9.381,9.941,9.144,8.973],"paint":[1.964,2.522,2.934,2.09,2.37,1.512,2.353,1.679,1.618,1.158,2.917,2.692,1.983,2.613,1.249,1.967,2.626,1.71,1.825,2.77,1.15,1.832,1.682,2.437,2.734]}}, -{"f":"laminar-v16.0.0-keyed","b":"05_swap1k","v":{"total":[171.132,167.604,165.192,160.1,164.3,165.3,162.559,160.362,161.5,170.35,163.448,165.276,165.472,162.14,168.322],"script":[23.955,22.573,23.593,22.48,22.736,22.751,22.606,22.512,22.512,22.93,22.339,23.176,21.898,22.543,23.639],"paint":[145.349,143.047,139.827,136.228,139.929,140.97,137.988,135.667,137.349,146.003,139.539,139.792,140.937,136.838,142.703]}}, -{"f":"laminar-v16.0.0-keyed","b":"06_remove-one-1k","v":{"total":[19.151,19.203,19.09,18.977,18.88,18.625,18.983,19.003,19.23,18.98,18.862,19.13,18.851,18.992,18.868],"script":[3.812,4.107,3.774,3.733,3.816,3.785,3.802,3.957,3.785,3.717,3.74,3.799,3.727,3.788,3.741],"paint":[14.552,14.035,14.587,14.485,14.194,13.475,14.328,13.977,14.643,14.182,14.398,14.57,14.285,14.151,14.198]}}, -{"f":"laminar-v16.0.0-keyed","b":"07_create10k","v":{"total":[686.317,682.107,675.944,679.921,683.667,683.524,682.439,676.515,692.358,679.994,682.878,679.462,679.824,679.876,683.903],"script":[348.553,349.238,343.09,347.234,345.782,346.229,348.597,345.05,353.701,346.603,348.352,343.749,346.853,343.59,346.891],"paint":[330.109,326.163,326.21,325.988,331.2,330.612,327.171,324.754,331.973,326.756,327.705,329.037,326.097,329.649,330.238]}}, -{"f":"laminar-v16.0.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[83.072,82.53,83.506,80.994,80.746,85.971,81.96,82.191,86.007,88.738,80.784,82.109,89.979,82.842,83.955],"script":[42.738,41.453,42.994,40.651,40.714,45.094,41.261,42.01,45.679,46.83,40.817,41.204,48.802,41.946,41.818],"paint":[39.441,40.186,39.623,39.428,39.116,39.964,39.821,39.26,39.435,41.005,39.068,40.007,40.301,40.002,41.228]}}, -{"f":"laminar-v16.0.0-keyed","b":"09_clear1k_x8","v":{"total":[49.283,50.201,51.331,49.324,52.829,50.391,52.01,50.526,50.727,46.909,51.395,53.378,53.352,53.094,50.231],"script":[46.485,47.306,48.96,47.174,49.843,47.992,49.984,48.518,48.675,44.518,49.459,50.851,50.652,51.038,47.886],"paint":[1.798,2.763,2.225,2.027,2.368,2.271,1.129,1.867,1.017,2.279,1.703,2.394,2.074,1.077,1.19]}}, -{"f":"laminar-v16.0.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[3.2021303176879883]}}, -{"f":"laminar-v16.0.0-keyed","b":"22_run-memory","v":{"DEFAULT":[15.339032173156738]}}, -{"f":"laminar-v16.0.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[15.440950393676758]}}, -{"f":"laminar-v16.0.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.438126564025879]}}, -{"f":"laminar-v16.0.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[115.29500198364258]}}, -{"f":"laminar-v16.0.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[720.439453125]}}, -{"f":"laminar-v16.0.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[80.083984375]}}, -{"f":"laminar-v16.0.0-keyed","b":"43_first-paint","v":{"DEFAULT":[871.3]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"01_run1k","v":{"total":[51.298,49.626,49.739,50.808,53.065,49.418,49.163,49.619,51.034,51.445,52.453,51.665,51.296,51.012,50.584],"script":[17.339,16.524,16.532,16.712,18.573,16.231,16.194,16.457,17.075,17.672,17.99,17.129,17.572,17.399,16.756],"paint":[33.515,32.653,32.761,33.636,34.072,32.753,32.532,32.717,33.504,33.32,34.021,34.069,33.287,33.139,33.311]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"02_replace1k","v":{"total":[57.099,58.032,56.088,55.964,56.036,57.412,56.415,57.155,56.727,56.394,57.522,56.438,55.98,55.87,57.903],"script":[21.159,22.439,21.019,20.97,20.839,21.551,21.283,21.504,21.274,21.574,21.828,21.047,20.85,21.34,21.335],"paint":[35.487,35.144,34.589,34.567,34.719,35.416,34.686,35.159,34.998,34.367,35.232,34.952,34.675,34.07,36.056]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"03_update10th1k_x16","v":{"total":[23.735,22.678,23.155,22.964,24.217,22.459,22.746,22.842,23.242,22.924,23.621,23.575,22.82,23.243,23.176],"script":[7.754,7.366,7.3,6.954,7.499,7.094,6.912,7.039,7.38,7.303,7.835,6.941,7.109,6.986,7.655],"paint":[14.711,13.409,14.801,13.771,14.963,13.465,13.859,13.472,13.633,14.379,15.042,14.155,14.188,14.367,13.926]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"04_select1k","v":{"total":[4.7,5.034,4.954,4.683,4.577,5.22,5.539,5.323,5.093,5.478,4.933,5.583,5.068,4.699,4.786,5.336,5.252,3.904,5.649,5.401,4.968,6.138,4.165,4.787,4.474],"script":[2.35,2.112,2.571,1.804,2.591,1.913,2.516,2.488,2.434,2.483,2.391,2.856,2.039,2.176,1.749,2.266,2.46,2.13,2.834,2.239,2.433,2.503,1.937,2.246,2.132],"paint":[1.16,1.819,2.26,1.921,1.692,2.771,2.893,2.18,1.47,2.499,1.448,1.977,2.878,1.272,2.898,2.124,1.867,0.823,2.689,3.022,2.399,3.134,1.7,0.874,1.162]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"05_swap1k","v":{"total":[170.669,173.639,178.512,171.671,173.375,172.5,172.456,170.29,174.01,172.747,168.861,169.193,173.077,168.908,170.374],"script":[28.635,29.355,29.642,28.951,29.003,27.91,29.667,29.041,28.302,29.351,26.943,27.059,28.577,26.852,27.182],"paint":[139.806,141.528,146.608,141.847,141.533,141.544,141.271,138.92,144.372,141.29,140.473,139.523,142.353,138.926,140.911]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"06_remove-one-1k","v":{"total":[18.199,17.819,17.895,18.085,17.924,17.953,18.509,18.255,17.814,17.813,18.31,18.454,17.88,18.036,18.363],"script":[2.865,2.673,3.025,2.896,2.804,3.319,3.188,3.184,3.009,2.747,3.054,2.615,2.838,3.427,3.055],"paint":[14.232,14.134,13.499,14.214,14.141,13.83,14.278,14.047,14.047,14.335,14.506,14.806,13.842,13.525,14.545]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"07_create10k","v":{"total":[627.143,629.191,622.347,620.76,618.909,624.272,619.199,624.624,623.848,621.774,627.363,618.228,619.033,623.56,622.65],"script":[265.54,267.212,267.461,265.39,267.134,265.292,265.687,269.113,266.68,266.175,266.67,266.625,266.138,266.816,267.563],"paint":[354.805,355.136,348.165,348.694,345.07,352.215,346.817,348.836,350.462,348.904,354.071,344.963,346.166,350.015,348.41]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"08_create1k-after1k_x2","v":{"total":[56.837,55.817,56.778,57.029,58.347,54.687,55.108,55.538,54.314,55.431,56.081,55.405,55.512,55.861,56.659],"script":[16.802,16.18,16.776,17.632,18.294,16.098,16.055,16.15,15.983,16.125,16.29,16.331,16.55,16.644,16.974],"paint":[39.135,38.73,38.886,38.477,39.155,37.655,38.136,38.449,37.425,38.391,38.864,38.146,38.043,38.316,38.805]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"09_clear1k_x8","v":{"total":[15.948,16.529,16.73,15.992,15.891,16.082,15.654,15.672,16.645,15.904,16.496,16.095,16.899,16.127,15.846],"script":[13.881,14.041,14.536,13.682,14.638,14.456,13.776,14.004,15.18,14.059,14.598,13.848,14.466,14.478,13.919],"paint":[1.397,1.645,1.855,1.931,1.148,0.724,1.086,0.728,1.37,1.754,0.958,1.705,2.335,1.145,1.837]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.0399351119995117]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"22_run-memory","v":{"DEFAULT":[5.83453369140625]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.324572563171387]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.666542053222656]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[43.76746368408203]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[157.1220703125]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"42_size-compressed","v":{"DEFAULT":[45.2001953125]}}, -{"f":"legend-state-v18.2.0 + 2.1.1-keyed","b":"43_first-paint","v":{"DEFAULT":[235.3]}}, -{"f":"leptos-v0.6.3-keyed","b":"01_run1k","v":{"total":[46.649,47.122,48.309,47.374,46.362,48.326,47.351,45.203,47.491,45.403,44.643,45.824,48.474,47.395,46.913],"script":[12.449,12.514,12.513,12.072,11.913,12.464,11.555,11.411,11.842,12.025,11.673,11.597,11.971,11.785,12.024],"paint":[33.776,34.191,35.362,34.87,34.035,35.434,35.375,33.369,35.224,32.898,32.563,33.809,36.064,35.138,34.457]}}, -{"f":"leptos-v0.6.3-keyed","b":"02_replace1k","v":{"total":[52.623,53.968,51.618,52.94,51.967,52.433,51.437,52.202,52.253,51.25,51.612,51.568,53.067,50.959,53.514],"script":[16.243,17.207,15.713,16.651,16.184,16.624,15.906,16.428,16.859,15.911,15.824,16.116,15.939,15.781,16.637],"paint":[35.918,36.3,35.381,35.833,35.304,35.35,35.077,35.314,34.931,34.896,35.326,35.005,36.579,34.719,36.406]}}, -{"f":"leptos-v0.6.3-keyed","b":"03_update10th1k_x16","v":{"total":[17.456,16.819,19.712,17.484,16.668,17.258,17.018,17.152,16.289,16.753,18.048,17.96,17.506,18.083,17.108],"script":[2.488,1.839,2.3,2.665,1.366,1.902,1.828,1.587,2.011,1.916,2.571,1.935,2.665,2.271,1.505],"paint":[12.755,13.379,15.722,13.724,13.707,12.303,13.373,14.179,13.302,13.734,13.356,14.587,12.91,14.218,13.37]}}, -{"f":"leptos-v0.6.3-keyed","b":"04_select1k","v":{"total":[2.658,3.253,3.139,3.117,2.663,3.405,2.461,4.638,2.999,3.048,3.753,2.528,4.286,3.496,2.801,3.022,3.065,3.134,3.7,3.339,2.716,4.052,3.403,2.768,3.02],"script":[0.967,1.114,0.87,0.135,0.923,0.977,0.509,1.143,0.508,0.133,1.057,0.145,0.656,1.007,0.151,0.535,0.982,0.143,0.792,0.706,0.621,1.097,1.009,0.595,0.261],"paint":[1.218,1.186,1.919,2.88,1.634,2.331,1.845,1.731,2.395,1.813,1.864,2.283,1.896,2.389,1.495,1.637,1.781,2.807,1.861,1.088,1.559,1.642,1.822,1.585,2.49]}}, -{"f":"leptos-v0.6.3-keyed","b":"05_swap1k","v":{"total":[18.401,18.621,18.967,19.25,19.002,18.92,20.543,18.525,18.536,19.572,18.734,18.813,20.001,18.284,18.854],"script":[0.557,0.175,0.65,1.117,0.603,0.917,0.931,0.605,0.178,0.625,0.884,0.816,0.605,0.292,0.605],"paint":[16.565,17.739,17.293,16.989,16.122,16.63,18.029,16.177,16.716,17.347,16.089,16.463,18.355,15.373,16.498]}}, -{"f":"leptos-v0.6.3-keyed","b":"06_remove-one-1k","v":{"total":[16.394,15.139,15.422,14.85,14.972,14.93,15.318,14.898,14.895,15.114,14.834,15.287,15.428,16.606,15.301],"script":[0.536,0.433,0.529,0.531,0.477,0.535,0.531,0.532,0.526,0.419,0.528,0.558,0.528,0.6,0.532],"paint":[14.77,13.642,13.812,13.594,13.7,13.535,13.889,13.644,13.606,13.973,13.612,13.998,14.134,14.995,13.981]}}, -{"f":"leptos-v0.6.3-keyed","b":"07_create10k","v":{"total":[459.92,460.062,456.079,459.349,457.976,456.613,463.447,458.08,457.943,470.409,459.671,463.709,462.925,464.405,455.86],"script":[119.278,120.908,121.684,121.891,121.524,118.431,124.063,121.547,123.075,129.723,121.154,125.209,122.72,123.841,117.736],"paint":[333.759,332.479,327.641,330.668,329.61,331.419,332.41,329.712,327.935,333.927,331.623,331.761,333.282,333.753,331.491]}}, -{"f":"leptos-v0.6.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[51.268,49.401,49.664,52.155,49.971,48.891,50.456,49.5,49.314,49.24,49.75,52.035,48.79,49.049,49.972],"script":[11.151,10.26,10.128,10.664,10.609,10.203,11.284,10.936,10.295,10.184,10.561,10.594,10.199,10.398,10.333],"paint":[39.216,38.239,38.557,40.596,38.451,37.784,38.279,37.655,38.133,38.129,38.308,40.542,37.714,37.777,38.744]}}, -{"f":"leptos-v0.6.3-keyed","b":"09_clear1k_x8","v":{"total":[15.751,15.43,15.578,15.347,15.637,15.551,16.137,15.376,15.967,16.072,16.453,16.008,15.753,15.991,15.728],"script":[13.85,13.527,13.902,13.717,14.056,13.849,13.762,13.694,13.977,14.346,14.398,14.232,13.863,14.181,13.619],"paint":[1.064,1.097,0.812,1.344,1.057,1.298,2.277,0.744,1.901,0.807,1.707,1.681,1.799,1.036,2.03]}}, -{"f":"leptos-v0.6.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.6563262939453125]}}, -{"f":"leptos-v0.6.3-keyed","b":"22_run-memory","v":{"DEFAULT":[5.384317398071289]}}, -{"f":"leptos-v0.6.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.334349632263184]}}, -{"f":"leptos-v0.6.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[5.4902544021606445]}}, -{"f":"leptos-v0.6.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[39.50578498840332]}}, -{"f":"leptos-v0.6.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[204.1279296875]}}, -{"f":"leptos-v0.6.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[60.767578125]}}, -{"f":"leptos-v0.6.3-keyed","b":"43_first-paint","v":{"DEFAULT":[338.2]}}, -{"f":"lit-v3.0.0-keyed","b":"01_run1k","v":{"total":[40.426,40.602,41.043,40.125,41.645,40.506,40.466,41.277,40.685,40.312,40.294,40.361,40.327,40.617,41.141],"script":[6.725,6.852,6.927,6.887,7.621,6.925,6.911,6.971,6.891,6.81,6.889,7.019,6.86,7.002,7.03],"paint":[33.288,33.322,33.683,32.835,33.623,33.15,33.094,33.89,33.369,33.079,32.993,32.946,33.036,33.197,33.725]}}, -{"f":"lit-v3.0.0-keyed","b":"02_replace1k","v":{"total":[46.28,47.499,45.453,44.779,44.758,44.777,44.306,46.566,46.482,44.4,44.455,46.119,46.121,45.153,45.754],"script":[10.252,11.23,10.348,10.104,10.223,10.046,10.082,10.796,10.773,10.116,10.168,10.221,10.451,10.035,10.366],"paint":[35.595,35.832,34.648,34.227,34.071,34.302,33.79,35.359,35.297,33.841,33.85,35.453,35.204,34.682,34.923]}}, -{"f":"lit-v3.0.0-keyed","b":"03_update10th1k_x16","v":{"total":[18.735,17.284,17.111,17.552,19.4,17.414,17.802,17.276,19.405,18.979,18.823,18.863,18.317,17.747,18.3],"script":[3.089,2.205,2.255,2.377,3.283,1.566,2.471,2.02,3.744,3.373,3.097,2.836,3.335,2.475,2.44],"paint":[14.075,13.787,12.702,13.814,14.73,13.221,13.97,13.852,14.643,14.309,14.096,13.991,13.528,13.629,14.292]}}, -{"f":"lit-v3.0.0-keyed","b":"04_select1k","v":{"total":[5.442,5.41,5.255,4.77,4.514,5.273,5.178,6.255,4.456,4.965,4.27,5.73,5.009,4.713,5.267,4.011,4.833,5.416,4.683,5.839,5.376,4.944,5.075,4.769,5.347],"script":[2.6,2.435,2.391,1.819,2.294,2.426,2.016,2.299,2.453,1.991,1.764,2.976,2.391,2.265,2.115,1.979,2.211,2.802,2.177,3.147,2.406,2.209,2.369,1.862,2.748],"paint":[1.777,0.908,1.861,1.778,2.081,1.666,2.141,2.006,1.864,2.345,1.911,2.482,1.786,1.62,2.139,1.16,2.089,1.981,1.887,1.522,1.842,2.603,2.559,2.789,2.086]}}, -{"f":"lit-v3.0.0-keyed","b":"05_swap1k","v":{"total":[20.992,21.418,21.179,21.346,20.677,20.852,20.895,21.442,22.053,22.151,20.66,21.191,20.764,20.378,21.553],"script":[2.265,2.469,2.873,2.522,2.567,1.698,2.413,2.453,3.41,1.949,2.138,2.302,2.28,2.048,2.392],"paint":[16.876,17.835,17.138,17.329,16.715,17.873,17.258,17.704,16.094,17.899,17.822,17.332,17.171,17.039,18.788]}}, -{"f":"lit-v3.0.0-keyed","b":"06_remove-one-1k","v":{"total":[16.44,16.111,16.153,16.558,16.533,16.784,16.306,16.418,16.663,16.597,16.394,16.539,16.718,17.039,17.193],"script":[1.243,1.167,1.055,1.135,1.194,1.35,1.275,0.978,1.232,1.538,1.164,1.216,1.372,1.636,1.672],"paint":[14.437,13.898,14.338,14.671,14.306,14.372,14.196,14.609,14.179,14.305,14.492,14.097,14.297,14.573,14.73]}}, -{"f":"lit-v3.0.0-keyed","b":"07_create10k","v":{"total":[432.286,432.183,431.25,435.282,430.033,429.228,433.269,433.112,433.28,433.158,433.071,441.215,435.112,425.945,432.154],"script":[84.573,83.194,82.789,84.134,81.147,83.665,83.126,82.726,83.841,82.747,84.584,85.02,84.102,81.582,83.804],"paint":[340.889,342.212,341.74,344.404,342.155,338.852,343.442,343.637,342.776,343.657,341.832,349.096,344.228,337.743,341.734]}}, -{"f":"lit-v3.0.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[47.208,46.798,45.434,45.681,44.595,45.43,46.08,45.731,45.738,46.666,45.916,47.019,45.717,46.235,44.986],"script":[6.66,6.607,6.28,6.271,6.186,6.267,6.61,6.193,6.332,6.684,6.352,6.411,6.297,6.332,6.389],"paint":[39.642,39.314,38.277,38.53,37.525,38.283,38.617,38.62,38.532,39.056,38.613,39.726,38.541,39.023,37.743]}}, -{"f":"lit-v3.0.0-keyed","b":"09_clear1k_x8","v":{"total":[15.869,15.692,14.808,14.865,16.434,15.932,15.589,16.261,15.047,15.176,16.425,15.726,15.969,15.908,14.525],"script":[13.753,13.962,13.139,13.472,14.54,13.771,13.398,14.343,13.047,13.288,14.322,14.23,13.67,14.058,12.908],"paint":[1.533,1.047,1.575,0.931,1.685,2.076,2.097,1.825,1.516,1.126,2.022,1.406,2.212,1.764,1.522]}}, -{"f":"lit-v3.0.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5730094909667969]}}, -{"f":"lit-v3.0.0-keyed","b":"22_run-memory","v":{"DEFAULT":[2.7417068481445312]}}, -{"f":"lit-v3.0.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.764331817626953]}}, -{"f":"lit-v3.0.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7276058197021484]}}, -{"f":"lit-v3.0.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[21.420924186706543]}}, -{"f":"lit-v3.0.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[22.115234375]}}, -{"f":"lit-v3.0.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[7.30859375]}}, -{"f":"lit-v3.0.0-keyed","b":"43_first-paint","v":{"DEFAULT":[76]}}, -{"f":"lit-html-v3.0.0-keyed","b":"01_run1k","v":{"total":[40.946,39.144,39.072,40.569,40.387,40.408,39.541,38.819,39.634,40.173,39.871,40.181,40.318,39.132,39.363],"script":[6.724,5.878,5.877,6.78,5.964,6.602,6.446,6.025,5.923,5.905,6.665,6.193,6.497,5.856,5.87],"paint":[33.792,32.839,32.785,33.361,34.02,33.393,32.685,32.343,33.28,33.832,32.792,33.561,33.359,32.859,33.093]}}, -{"f":"lit-html-v3.0.0-keyed","b":"02_replace1k","v":{"total":[43.466,42.916,42.954,43.482,43.753,43.805,44.675,43.692,43.602,43.848,43.767,44.16,45.227,43.83,43.933],"script":[8.817,9.138,8.831,8.738,8.917,9.101,9.172,9.047,9.017,8.865,9.102,9.067,9.254,9.011,9.07],"paint":[34.215,33.32,33.682,34.304,34.387,34.251,35.047,34.177,34.158,34.521,34.239,34.641,35.517,34.394,34.406]}}, -{"f":"lit-html-v3.0.0-keyed","b":"03_update10th1k_x16","v":{"total":[17.542,16.76,17.635,17.709,16.179,17.06,18.284,16.341,17.398,16.907,16.997,16.837,17.59,16.799,16.172],"script":[1.488,1.334,2.04,2.382,1.656,1.889,1.628,1.562,1.913,1.759,1.973,1.38,1.139,1.787,0.94],"paint":[14.98,13.96,13.731,13.759,13.115,13.412,14.909,12.725,13.958,13.273,13.72,13.565,14.997,13.243,14.113]}}, -{"f":"lit-html-v3.0.0-keyed","b":"04_select1k","v":{"total":[4.557,6.102,4.243,4.739,4.282,4.048,5.44,4.165,4.699,4.087,4.48,4.191,4.177,4.38,4.208,4.753,3.649,4.247,3.608,3.95,4.606,5.312,4.632,3.991,4.987],"script":[1.968,1.533,1.363,2.141,1.373,0.689,1.238,1.22,1.014,1.527,1.072,1.032,1.768,1.616,1.641,1.653,1.451,1.706,1.056,1.347,1.533,1.482,1.479,1.425,1.963],"paint":[1.768,2.628,2.178,1.979,2.793,3.236,3.005,2.834,2.981,2.433,3.252,3.041,2.294,2.656,2.435,2.972,1.282,1.638,1.281,2.478,2.555,1.846,3.023,1.536,2.827]}}, -{"f":"lit-html-v3.0.0-keyed","b":"05_swap1k","v":{"total":[20.562,19.201,20.878,19.385,20.508,19.934,20.164,20.247,20.26,20.5,20.12,19.445,20.223,21.386,20.489],"script":[1.924,1.441,1.034,1.283,2,1.572,2.003,1.393,1.845,1.322,1.166,1.339,0.949,1.815,1.251],"paint":[17.17,16.757,18.701,16.519,17.184,17.013,17.114,16.636,17.165,17.91,17.645,16.677,17.924,17.521,16.934]}}, -{"f":"lit-html-v3.0.0-keyed","b":"06_remove-one-1k","v":{"total":[16.066,16.121,15.972,16.011,16.149,15.439,15.755,15.987,16.151,15.916,16.315,16.054,16.257,15.628,16.106],"script":[0.829,1.095,0.744,1.093,0.716,0.668,0.705,0.771,0.813,0.754,0.716,0.928,1.03,0.703,1.08],"paint":[14.472,14.289,13.844,14.063,14.62,13.747,14.215,14.464,14.351,14.129,14.8,14.336,14.489,14.177,14.042]}}, -{"f":"lit-html-v3.0.0-keyed","b":"07_create10k","v":{"total":[421.437,415.176,415.755,414.066,417.634,411.999,417.421,420.012,414.991,414.529,416.312,413.125,416.722,412.828,418.009],"script":[71.815,69.39,72.156,69.145,72.33,72.974,73.64,71.969,72.095,68.572,70.723,69.921,70.657,72.091,72.646],"paint":[342.894,338.485,336.581,337.844,338.506,331.94,336.794,340.665,336.141,339.184,338.755,335.936,338.913,333.963,338.59]}}, -{"f":"lit-html-v3.0.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[43.809,44.974,44.325,44.68,43.305,45.578,43.655,45.152,43.027,43.14,43.878,42.632,44.324,43.185,43.478],"script":[5.331,5.533,5.511,5.376,5.351,5.576,5.389,6.365,5.257,5.3,5.325,5.189,5.334,5.326,5.374],"paint":[37.605,38.573,37.926,38.42,37.067,39.132,37.275,37.893,36.91,36.971,37.556,36.572,38.007,37.004,37.222]}}, -{"f":"lit-html-v3.0.0-keyed","b":"09_clear1k_x8","v":{"total":[15.66,15.153,15.517,15.817,15.68,15.634,14.809,16.322,16.008,15.544,15.853,15.602,15.336,15.192,15.94],"script":[14.314,13.496,13.606,14.024,13.252,14.168,13.269,14.049,14.243,13.496,13.751,13.609,13.021,13.264,14.11],"paint":[1.255,1.564,1.568,1.574,2.183,1.39,1.42,2.187,1.679,1.349,1.819,1.113,1.291,1.627,1.739]}}, -{"f":"lit-html-v3.0.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5190582275390625]}}, -{"f":"lit-html-v3.0.0-keyed","b":"22_run-memory","v":{"DEFAULT":[2.5169973373413086]}}, -{"f":"lit-html-v3.0.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.563631057739258]}}, -{"f":"lit-html-v3.0.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.696533203125]}}, -{"f":"lit-html-v3.0.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[19.710187911987305]}}, -{"f":"lit-html-v3.0.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[12.1044921875]}}, -{"f":"lit-html-v3.0.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.51171875]}}, -{"f":"lit-html-v3.0.0-keyed","b":"43_first-paint","v":{"DEFAULT":[50.4]}}, -{"f":"lui-v1.2.3-keyed","b":"01_run1k","v":{"total":[42.341,43.739,41.957,42.405,42.789,41.46,41.697,41.506,42.638,43.896,42.365,42.409,43.923,42.382,42.342],"script":[7.909,8.653,8.354,8.271,8.393,7.909,8.248,7.965,7.99,8.844,8.169,8.397,8.886,8.005,7.879],"paint":[34,34.664,33.171,33.716,33.969,33.128,33.025,33.131,34.209,34.648,33.774,33.578,34.6,33.926,34.006]}}, -{"f":"lui-v1.2.3-keyed","b":"02_replace1k","v":{"total":[48.108,48.06,46.738,46.762,47.535,49.354,46.81,47.583,46.572,48.57,47.356,47.486,46.516,46.562,47.833],"script":[11.937,11.376,11.183,11.397,11.498,12.073,11.325,11.869,11.363,11.25,11.648,11.464,11.385,11.37,11.453],"paint":[35.72,36.248,35.115,34.895,35.571,36.798,34.998,35.25,34.732,36.763,35.217,35.579,34.658,34.728,35.927]}}, -{"f":"lui-v1.2.3-keyed","b":"03_update10th1k_x16","v":{"total":[18.151,17.797,20.393,18.817,17.87,18.403,18.485,18.579,18.102,18.097,17.938,17.933,17.95,18.031,18.147],"script":[2.679,2.812,2.924,2.568,2.606,2.441,2.707,2.419,2.28,2.475,1.991,2.439,2.141,2.648,2.682],"paint":[14.179,13.377,14.337,15.013,13.278,14.614,13.977,15.232,14.387,14.548,14.096,14.38,14.198,14.645,14.184]}}, -{"f":"lui-v1.2.3-keyed","b":"04_select1k","v":{"total":[8.048,8.306,8.651,6.945,7.649,7.712,7.605,8.117,7.338,6.478,7.654,7.052,8.264,7.252,6.45,7.591,7.325,7.476,7.818,7.519,7.239,7.661,8.078,6.882,7.578],"script":[4.817,4.83,5.875,4.457,5.443,4.68,4.706,5.839,4.696,3.984,5.085,4.516,4.758,4.795,4.436,4.569,4.519,4.192,4.813,4.745,4.449,4.929,5.4,4.172,4.997],"paint":[2.254,2.485,2.294,1.177,1.248,2.881,2.331,1.499,2.493,2.349,2.413,1.533,2.586,1.67,1.144,2.857,2.657,2.261,1.846,1.743,2.639,2.584,1.872,2.238,1.485]}}, -{"f":"lui-v1.2.3-keyed","b":"05_swap1k","v":{"total":[158.242,157.697,156.528,158.795,156.417,155.387,156.829,162.074,156.872,154.857,157.59,160.2,156.057,159.897,157.13],"script":[14.46,15.174,14.113,15.122,15.283,14.26,15.976,15.422,14.432,14.542,13.825,14.711,14.498,15.069,14.406],"paint":[142.08,140.505,140.915,141.152,140.007,139.265,139.007,144.803,140.021,139.162,142.423,143.493,140.173,142.817,141.423]}}, -{"f":"lui-v1.2.3-keyed","b":"06_remove-one-1k","v":{"total":[15.402,15.168,15.584,15.415,15.117,15.822,15.408,15.384,15.383,14.981,15.411,15.271,15.45,15.24,15.451],"script":[0.504,0.518,0.354,0.519,0.418,0.543,0.532,0.2,0.529,0.22,0.513,0.549,0.513,0.518,0.519],"paint":[14.134,13.944,14.349,13.844,13.967,14.508,14.137,14.497,13.84,13.991,13.835,14.008,14.154,13.974,13.907]}}, -{"f":"lui-v1.2.3-keyed","b":"07_create10k","v":{"total":[438.917,441.604,438.623,435.952,435.733,441.033,431.794,440.437,441.648,438.138,439.669,440.794,439.596,432.275,436.538],"script":[99.564,100.547,100.608,95.583,98.762,100.537,95.996,101.425,96.756,100.588,100.306,101.153,99.361,96.352,98.945],"paint":[332.639,333.972,331.347,333.689,330.248,333.877,329.187,332.224,338.244,330.874,332.541,332.981,333.259,329.26,330.928]}}, -{"f":"lui-v1.2.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.409,48.752,48.46,48.516,48.087,47.911,49.539,47.931,47.679,49.085,48.474,48.043,49.277,48.896,48.011],"script":[8.103,7.86,7.995,7.902,7.675,7.942,8.175,7.871,7.934,7.988,7.866,7.849,7.949,8.241,7.892],"paint":[40.407,40.027,39.583,39.742,39.526,39.067,40.432,39.11,38.878,40.188,39.72,39.302,40.44,39.761,39.172]}}, -{"f":"lui-v1.2.3-keyed","b":"09_clear1k_x8","v":{"total":[14.294,15.116,14.925,16.18,14.673,14.306,15.062,14.795,14.66,14.128,14.734,14.947,14.774,15.334,14.537],"script":[12.691,13.1,13.405,13.266,12.93,12.771,13.356,12.905,12.567,12.475,12.645,13.447,13.364,13.114,12.63],"paint":[1.507,1.208,1.425,2.091,1.635,1.446,0.757,1.207,1.993,1.566,1.167,1.413,1.322,1.722,1.598]}}, -{"f":"lui-v1.2.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5030393600463867]}}, -{"f":"lui-v1.2.3-keyed","b":"22_run-memory","v":{"DEFAULT":[3.951007843017578]}}, -{"f":"lui-v1.2.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.965277671813965]}}, -{"f":"lui-v1.2.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7747592926025391]}}, -{"f":"lui-v1.2.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[33.99680233001709]}}, -{"f":"lui-v1.2.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[10.8994140625]}}, -{"f":"lui-v1.2.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.484375]}}, -{"f":"lui-v1.2.3-keyed","b":"43_first-paint","v":{"DEFAULT":[51]}}, -{"f":"lwc-v3.0.1-keyed","b":"01_run1k","v":{"total":[44.673,42.959,44.338,43.497,43.491,43.474,44.173,42.676,43.065,42.595,42.475,42.835,44.724,44.641,43.851],"script":[9.702,9.187,9.876,9.356,9.052,9.046,9.808,8.887,9.388,8.863,8.964,8.862,9.975,10.102,9.711],"paint":[34.515,33.319,34.044,33.717,33.993,33.997,33.948,33.358,33.216,33.319,33.081,33.546,34.297,34.113,33.721]}}, -{"f":"lwc-v3.0.1-keyed","b":"02_replace1k","v":{"total":[52.182,50.046,50.209,49.642,50.932,51.695,50.063,50.782,50.108,50.85,50.842,50.284,50.521,50.891,50.983],"script":[15.003,13.533,13.644,13.504,13.946,15.155,13.589,13.761,13.801,13.899,13.942,13.443,13.445,13.926,14.57],"paint":[36.716,36.064,36.089,35.674,36.508,36.095,36.008,36.528,35.835,36.473,36.418,36.363,36.608,36.492,35.947]}}, -{"f":"lwc-v3.0.1-keyed","b":"03_update10th1k_x16","v":{"total":[28.079,26.36,25.488,26.269,28.239,26.276,27.436,27.076,29.471,25.451,27.12,25.404,26.624,27.267,26.148],"script":[10.026,9.881,10.095,10.972,11.2,10.284,11.456,10.747,11.746,9.18,10.73,10.032,10.014,11.017,10.32],"paint":[16.573,14.989,13.635,13.889,15.487,14.104,14.367,14.461,16.354,14.316,15.274,13.731,15.625,14.683,14.351]}}, -{"f":"lwc-v3.0.1-keyed","b":"04_select1k","v":{"total":[12.613,12.2,12.241,11.632,13.265,11.59,12.112,12.136,11.011,12.074,11.992,12.909,13.935,11.698,11.966,13.408,12.004,12.157,12.037,11.913,11.577,12.866,11.557,12.942,11.82],"script":[9.365,8.973,9.636,9.127,10.111,8.187,8.996,9.284,7.847,9.292,9.156,9.407,10.948,8.746,9.421,10.262,9.241,9.064,9.146,8.865,8.533,9.183,8.993,10.311,8.673],"paint":[2.144,3.056,1.507,2.334,1.896,1.131,2.952,2.527,2.476,2.625,2.667,3.33,2.147,2.362,1.724,2.37,1.699,1.687,2.58,2.222,2.535,3.513,1.541,0.564,2.49]}}, -{"f":"lwc-v3.0.1-keyed","b":"05_swap1k","v":{"total":[28.407,28.925,28.896,27.928,30.742,28.379,28.173,29.033,29.846,28.31,27.895,27.17,28.037,27.241,28.434],"script":[9.152,9.763,9.655,8.913,10.031,8.062,9.255,9.729,9.62,9.647,9.423,8.425,8.975,8.813,9.473],"paint":[17.864,17.806,17.142,17.889,19.176,19.328,17.36,17.657,18.912,17.09,17.727,16.972,17.315,15.906,17.665]}}, -{"f":"lwc-v3.0.1-keyed","b":"06_remove-one-1k","v":{"total":[21.005,20.622,20.868,20.918,20.983,20.531,20.337,20.707,22.029,20.361,20.886,20.933,20.808,21.666,21.587],"script":[5.106,5.174,5.492,5.564,5.476,5.246,5.067,5.618,5.766,5.081,5.609,5.532,5.317,5.361,5.476],"paint":[14.836,14.651,14.559,14.005,14.722,14.522,14.192,14.023,15.069,14.222,14.546,14.637,14.521,15.093,14.876]}}, -{"f":"lwc-v3.0.1-keyed","b":"07_create10k","v":{"total":[448.959,447.94,454.884,449.932,451.404,451.75,452.088,452.722,444.942,452.816,441.04,452.136,446.274,450.719,451.483],"script":[100.131,100.487,101.815,101.581,100.426,103.625,98.771,103.418,98.215,102.152,95.715,101.905,98.634,101.689,101.623],"paint":[342.132,340.756,346.459,341.586,344.343,341.519,346.55,342.67,339.901,344,338.298,343.615,340.881,342.422,343.1]}}, -{"f":"lwc-v3.0.1-keyed","b":"08_create1k-after1k_x2","v":{"total":[54.152,57.099,53.502,55.287,54.625,55.543,53.736,53.476,54.642,53.621,53.659,54.337,55.022,54.449,56.395],"script":[14.244,14.432,13.53,13.863,13.162,13.857,13.879,13.838,13.833,13.482,13.605,13.766,14.133,13.454,14.167],"paint":[38.983,41.763,39.093,40.487,40.579,40.755,38.956,38.757,39.926,39.24,39.154,39.67,39.97,40.092,41.286]}}, -{"f":"lwc-v3.0.1-keyed","b":"09_clear1k_x8","v":{"total":[15.146,16.987,15.692,16.663,15.336,16.211,15.643,16.31,15.727,15.87,16.559,15.425,15.06,16.461,15.723],"script":[13.037,14.64,13.404,14.994,13.186,14.508,13.526,14.26,13.927,14.093,14.949,13.74,12.946,14.05,13.632],"paint":[2.012,1.881,1.991,0.919,2.054,1.585,1.372,1.028,0.839,1.669,1.516,1.6,2.032,1.524,1.421]}}, -{"f":"lwc-v3.0.1-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7222814559936523]}}, -{"f":"lwc-v3.0.1-keyed","b":"22_run-memory","v":{"DEFAULT":[3.6365346908569336]}}, -{"f":"lwc-v3.0.1-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.6771488189697266]}}, -{"f":"lwc-v3.0.1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.3440933227539062]}}, -{"f":"lwc-v3.0.1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[27.156203269958496]}}, -{"f":"lwc-v3.0.1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[52.6787109375]}}, -{"f":"lwc-v3.0.1-keyed","b":"42_size-compressed","v":{"DEFAULT":[15.970703125]}}, -{"f":"lwc-v3.0.1-keyed","b":"43_first-paint","v":{"DEFAULT":[94.5]}}, -{"f":"malina-v0.7.3-keyed","b":"01_run1k","v":{"total":[37.208,35.816,35.974,36.815,35.802,36.31,35.915,36.104,35.993,36.779,36.04,36.694,36.743,36.546,36.435],"script":[3.425,3.415,3.407,3.477,3.345,3.428,3.445,3.476,3.347,3.466,3.374,3.638,3.509,3.383,3.414],"paint":[33.314,31.977,32.145,32.913,32.017,32.458,32.039,32.202,32.225,32.909,32.23,32.637,32.808,32.737,32.586]}}, -{"f":"malina-v0.7.3-keyed","b":"02_replace1k","v":{"total":[42.754,40.032,40.078,41.104,41.542,42.877,39.983,41.036,39.686,39.926,41.609,40.023,40.002,40.19,40.113],"script":[5.651,5.542,5.708,5.662,5.893,5.688,5.598,5.647,5.673,5.523,6.057,5.672,5.912,5.648,5.625],"paint":[36.679,34.048,33.936,35.007,35.191,36.74,33.947,34.934,33.561,33.947,35.134,33.921,33.685,34.113,34.034]}}, -{"f":"malina-v0.7.3-keyed","b":"03_update10th1k_x16","v":{"total":[17.539,16.579,16.752,16.957,17.099,16.613,16.387,16.362,19.025,16.177,16.535,16.368,16.644,17.797,16.914],"script":[1.801,1.512,1.442,1.679,1.039,0.627,1.486,1.766,1.548,1.362,1.528,1.132,1.703,1.472,1.648],"paint":[14.406,13.735,13.579,14.224,14.349,14.655,13.916,13.009,15.94,13.459,13.592,13.613,13.686,15.027,14.225]}}, -{"f":"malina-v0.7.3-keyed","b":"04_select1k","v":{"total":[3.249,3.364,4.626,3.32,2.745,3.589,3.163,2.485,3.352,2.891,4.106,3.018,2.801,3.619,3.401,5.159,3.516,3.392,3.657,2.361,2.888,3.019,3.617,3.682,3.159],"script":[0.184,1.179,0.919,0.97,0.632,0.894,0.926,0.657,0.848,0.893,0.743,0.916,1.083,1.117,0.671,0.822,0.901,1.211,1.118,0.819,0.614,1.364,1.475,1.212,0.451],"paint":[1.947,1.446,1.782,2.244,1.425,2.228,1.37,1.728,1.628,1.897,1.645,1.999,1.616,1.46,2.151,1.734,2.514,1.378,2.429,1.433,1.422,1.125,1.606,2.37,1.548]}}, -{"f":"malina-v0.7.3-keyed","b":"05_swap1k","v":{"total":[18.984,19.211,20.306,21.333,19.832,19.958,18.704,19.116,19.137,19.685,19.105,19.877,19.659,19.858,19.108],"script":[1.153,1.47,1.875,1.581,1.17,1.183,0.658,0.986,1.251,1.241,1.051,1.215,1.507,1.725,1.411],"paint":[16.605,15.999,16.828,17.97,17.075,17.42,16.22,16.786,16.384,16.788,16.721,17.02,16.632,16.346,16.326]}}, -{"f":"malina-v0.7.3-keyed","b":"06_remove-one-1k","v":{"total":[15.441,16.23,15.495,15.753,15.405,15.93,15.108,15.445,15.19,15.97,15.435,15.423,15.374,15.393,15.327],"script":[0.697,0.982,0.71,0.73,0.707,0.698,0.697,0.699,0.711,0.879,0.681,0.715,0.708,0.689,0.672],"paint":[13.722,14.444,13.923,14.083,13.99,14.471,13.731,13.957,13.742,14.371,14.236,13.99,14.226,13.559,13.917]}}, -{"f":"malina-v0.7.3-keyed","b":"07_create10k","v":{"total":[380.314,383.702,380.705,384.314,385.745,383.111,384.08,385.802,388.834,382.438,387.084,385.158,383.91,386.216,385.926],"script":[42.498,43.379,43.228,43.59,44.011,43.777,43.302,44.01,43.77,41.567,43.573,43.833,43.586,44.254,44.513],"paint":[331.144,333.564,330.752,333.793,335.044,332.34,334.122,335.116,338.403,334.225,336.807,334.696,333.701,335.349,334.501]}}, -{"f":"malina-v0.7.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[43.868,43.574,44.189,45.484,43.533,45.044,45.48,43.691,44.962,45.445,43.735,44.183,45.32,43.924,45.23],"script":[4.463,4.494,4.338,4.871,4.621,4.879,4.594,4.416,4.51,4.986,4.367,4.489,4.925,4.277,4.933],"paint":[38.537,38.174,39.072,39.632,38.053,39.289,40.015,38.403,39.547,39.521,38.494,38.814,39.545,38.775,39.354]}}, -{"f":"malina-v0.7.3-keyed","b":"09_clear1k_x8","v":{"total":[11.699,11.979,12.186,11.846,11.96,11.638,11.72,11.852,11.967,11.711,12.396,11.315,11.995,11.169,12.578],"script":[10.193,10.221,10.429,10.223,10.189,10.203,10.065,9.767,9.817,10.124,10.43,10.155,10.285,10.1,10.641],"paint":[1.006,1.672,1.662,1.543,1.682,0.449,1.57,1.991,1.482,1.503,1.235,0.441,1.63,0.349,1.822]}}, -{"f":"malina-v0.7.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.46031665802001953]}}, -{"f":"malina-v0.7.3-keyed","b":"22_run-memory","v":{"DEFAULT":[2.469243049621582]}}, -{"f":"malina-v0.7.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.606635093688965]}}, -{"f":"malina-v0.7.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.717900276184082]}}, -{"f":"malina-v0.7.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[18.93618869781494]}}, -{"f":"malina-v0.7.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[7.3349609375]}}, -{"f":"malina-v0.7.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[2.9990234375]}}, -{"f":"malina-v0.7.3-keyed","b":"43_first-paint","v":{"DEFAULT":[42.7]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"01_run1k","v":{"total":[43.522,41.952,41.62,42.289,42.302,42.701,41.587,41.392,42.487,43.365,42.588,41.781,43.125,41.673,41.625],"script":[9.21,9.147,9.11,8.936,9.274,9.48,8.496,8.638,8.822,9.147,8.939,9.17,9.06,8.88,9.125],"paint":[33.863,32.379,32.083,32.914,32.572,32.796,32.676,32.318,33.248,33.799,33.241,32.192,33.666,32.354,32.068]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"02_replace1k","v":{"total":[48.977,48.315,48.856,50.043,48.929,47.343,49.164,48.007,48.089,48.24,48.333,48.386,47.901,48.244,47.86],"script":[13.183,13.189,13.398,13.03,13.794,12.816,13.214,13.219,13.3,13.2,13.275,13.252,12.766,12.986,12.888],"paint":[35.326,34.651,34.998,36.561,34.645,34.077,35.499,34.336,34.331,34.592,34.558,34.678,34.699,34.813,34.533]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"03_update10th1k_x16","v":{"total":[22.663,22.374,22.299,23.194,22.046,22.167,22.074,21.821,21.877,22.327,22.352,21.746,22.128,22.294,24.013],"script":[6.93,6.285,6.755,7.695,6.561,6.201,6.362,6.697,6.536,6.731,6.756,6.635,6.47,6.898,7.148],"paint":[14.392,13.977,13.734,13.45,14.23,14.202,14.689,13.831,13.979,14.329,14.637,12.387,14.171,13.935,15.864]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"04_select1k","v":{"total":[3.257,5.674,3.253,3.555,3.419,2.95,2.934,2.931,3.298,2.749,3.45,2.82,3.739,3.174,3.393,3.068,3.312,3.543,5.005,3.228,3.371,3.357,3.355,4.396,3.226],"script":[1.057,0.944,0.954,1.278,1.199,0.249,1.328,0.777,1.461,0.235,1.55,0.654,1.221,1.17,0.904,0.289,0.914,1.229,0.85,1.249,1.137,1.177,0.608,1.07,0.244],"paint":[2.078,2.753,1.544,1.796,1.561,2.408,1.512,1.411,1.081,2.134,1.804,2.068,1.132,1.434,2.387,2.673,1.957,2.222,1.885,1.117,2.105,0.969,2.646,1.094,2.896]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"05_swap1k","v":{"total":[19.088,18.772,19.449,18.517,19.204,18.577,19.963,19.5,19.044,19.135,20.416,19.049,18.982,19.71,18.367],"script":[1.392,0.798,0.945,0.905,0.175,0.182,0.671,1.035,0.182,0.185,0.628,0.59,0.18,0.671,0.522],"paint":[16.112,16.682,17.054,16.348,17.818,17.053,17.633,17.303,17.603,17.382,17.854,17.215,17.192,16.96,16.414]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"06_remove-one-1k","v":{"total":[15.446,15.49,15.34,16.16,15.936,14.765,15.912,16.086,15.129,14.894,16.094,15.891,15.221,15.524,15.864],"script":[0.413,0.574,0.559,0.361,0.56,0.515,0.54,0.572,0.533,0.546,0.416,0.466,0.499,0.274,0.553],"paint":[13.979,14.152,14.02,15.028,14.288,13.569,14.299,14.563,13.891,13.595,14.937,14.686,13.992,14.518,14.609]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"07_create10k","v":{"total":[423.194,419.269,417.379,422.508,420.058,417.11,420.223,425.167,426.573,416.336,417.862,413.313,420.024,423.132,424.473],"script":[76.589,76.62,75.066,76.896,78.468,76.879,77.11,77.79,78.73,76.985,75.852,74.185,77.692,78.58,78.764],"paint":[339.953,335.784,335.608,338.803,334.135,333.456,336.08,340.43,340.979,332.695,334.994,332.466,335.467,337.856,339.005]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[45.322,46.381,45.477,47.051,47.552,48.45,46.514,46.43,47.473,47.303,47.074,47.838,45.623,47.329,46.884],"script":[7.651,7.699,7.523,8.16,7.96,7.893,7.681,7.941,8.299,8.546,8.115,8.591,7.547,7.761,7.798],"paint":[36.827,37.568,37.017,37.913,38.711,39.637,37.933,37.597,38.064,37.837,38.087,38.254,37.095,38.699,38.074]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"09_clear1k_x8","v":{"total":[19.434,18.446,18.72,19.214,18.559,19.135,19.557,18.892,18.109,18.443,18.5,18.364,18.511,18.524,19.322],"script":[17.455,16.528,16.461,17.367,16.865,17.153,17.592,16.906,16.601,16.848,16.953,16.517,16.39,16.443,16.944],"paint":[1.285,1.81,1.844,1.575,1.587,1.871,1.839,1.686,1.407,0.998,0.938,1.009,1.253,1.982,2.28]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6997709274291992]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"22_run-memory","v":{"DEFAULT":[2.760957717895508]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.9598140716552734]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.1118240356445312]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[16.958622932434082]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[66.451171875]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[18.2177734375]}}, -{"f":"marionette-v5.0.0-alpha.2-keyed","b":"43_first-paint","v":{"DEFAULT":[109.8]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"01_run1k","v":{"total":[53.964,51.296,51.347,52.273,49.94,51.37,52.909,51.653,51.776,49.82,51.441,51.179,51.08,51.846,51.038],"script":[17.593,16.336,16.766,17.6,15.928,16.815,16.343,17.079,17.126,15.901,16.393,17.306,16.183,16.738,16.516],"paint":[35.948,34.529,34.153,34.254,33.583,34.149,36.136,34.149,34.226,33.495,34.638,33.431,34.483,34.678,34.117]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"02_replace1k","v":{"total":[57.682,57.444,57.877,57.177,58.381,57.396,57.457,57.448,57,57.384,55.683,57.496,58.312,56.351,58.501],"script":[20.984,20.737,20.772,20.555,21.697,20.467,20.714,20.805,20.485,20.314,19.687,21.235,20.769,20.013,20.716],"paint":[36.248,36.281,36.658,36.166,36.227,36.48,36.304,36.207,36.089,36.61,35.547,35.825,37.069,35.906,37.294]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"03_update10th1k_x16","v":{"total":[18.73,17.816,17.54,18.184,17.318,17.475,18.572,18.6,18.555,18.052,18.326,17.431,18.426,17.539,17.851],"script":[2.488,2.25,2.423,2.692,2.408,1.627,1.799,2.164,2.401,2.523,1.978,1.958,2.216,2.248,2.349],"paint":[13.364,13.614,12.761,14.366,13.419,14.718,14.998,15.391,13.838,13.627,14.634,13.272,14.618,13.489,14.181]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"04_select1k","v":{"total":[2.475,3.378,3.956,2.767,2.971,2.692,2.234,2.872,4.662,5.789,2.744,4.248,2.551,2.981,4.032,2.961,2.869,2.654,2.883,4.128,4.788,4.007,2.841,4.166,4.766],"script":[0.555,1.091,1.119,0.815,0.896,0.84,0.568,0.907,1.13,1.159,0.863,1.233,0.167,0.503,0.678,0.156,0.914,0.962,0.511,1.092,0.189,1.123,0.713,0.81,1.306],"paint":[1.814,2.191,1.79,1.062,1.978,1.404,0.993,1.136,1.615,1.379,1.051,2.532,2.284,2.371,2.018,2.71,1.119,1.181,2.278,1.666,2.672,1.605,2.03,1.086,2.115]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"05_swap1k","v":{"total":[19.118,19.599,19.056,18.779,19.101,20.837,18.798,18.673,19.413,19.119,18.86,19.175,18.364,18.372,18.499],"script":[0.91,1.181,0.632,0.195,0.549,1.634,0.76,0.753,0.197,0.688,0.914,0.945,0.839,0.973,0.756],"paint":[16.273,16.302,16.853,17.615,17.512,17.294,16.825,16.585,16.753,17.09,15.478,16.166,16.366,16.113,16.509]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"06_remove-one-1k","v":{"total":[15.423,15.062,15.263,14.906,15.68,15.726,14.901,14.948,14.957,15.361,15.211,15.654,14.853,14.865,15.065],"script":[0.594,0.392,0.593,0.506,0.61,0.619,0.478,0.296,0.621,0.578,0.599,0.589,0.591,0.427,0.595],"paint":[14.073,13.963,14.224,13.699,14.338,14.414,13.686,13.884,13.587,14.111,13.944,14.38,13.514,13.676,13.712]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"07_create10k","v":{"total":[499.817,503.092,496.739,510.27,515.096,498.016,499.398,499.051,497.17,507.326,498.851,501.774,492.648,506.119,495.918],"script":[166.3,168.878,164.961,166.01,167.528,167.154,167.006,167.416,165.313,166.438,165.46,166.192,160.527,167.675,164.388],"paint":[326.581,327.577,325.146,337.639,340.979,324.274,325.479,324.821,325.075,334.095,326.804,328.958,325.558,331.889,324.879]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[58.367,58.011,59.645,59.337,58.772,59.713,58.505,58.728,58.332,59.158,61.214,59.597,58.115,57.601,58.269],"script":[17.434,17.092,17.766,17.45,16.759,18.037,17.163,17.656,16.813,17.533,17.38,18.12,17.338,16.748,16.976],"paint":[40.032,40.021,40.978,40.979,41.121,40.768,40.443,40.146,40.619,40.724,42.906,40.572,39.869,39.964,40.393]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"09_clear1k_x8","v":{"total":[20.126,18.665,18.533,18.748,18.06,20.426,20.224,18.984,21.696,18.32,19.573,19.548,20.622,19.804,19.82],"script":[18.15,16.395,16.637,16.647,16.931,18.491,17.549,16.751,19.286,16.613,17.64,17.903,18.509,17.886,18.094],"paint":[1.198,2.155,1.731,2.005,0.397,1.146,2.395,1.631,1.313,0.761,1.806,0.877,1.986,1.228,1.057]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7765426635742188]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"22_run-memory","v":{"DEFAULT":[3.075503349304199]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.2363929748535156]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.3459358215332031]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[20.13265895843506]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[83.9931640625]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[22.3720703125]}}, -{"f":"marionette-backbone-v5.0.0-alpha.2-keyed","b":"43_first-paint","v":{"DEFAULT":[128]}}, -{"f":"marko-v5.31.12-keyed","b":"01_run1k","v":{"total":[54.978,52.97,52.077,51.057,50.911,51.275,51.107,52.058,52.73,52.22,52.431,53.855,52.433,52.11,52.684],"script":[21.048,18.573,18.555,17.415,18.504,18.616,17.803,18.658,18.349,18.466,18.774,20.463,18.277,18.52,18.487],"paint":[33.716,34.188,33.327,33.453,32.203,32.468,33.109,33.175,34.186,33.546,33.457,33.188,33.954,33.389,33.979]}}, -{"f":"marko-v5.31.12-keyed","b":"02_replace1k","v":{"total":[59.335,61.283,60.34,61.414,61.417,60.83,59.343,61.84,59.192,60.324,62.42,61.91,61.853,63.216,60.122],"script":[24.687,27.01,26.126,26.006,26.074,25.623,24.568,26.302,23.904,25.157,27.768,25.687,26.386,27.824,24.533],"paint":[34.455,34.08,33.99,35.193,35.145,34.983,34.559,35.334,35.08,34.93,34.425,36.029,35.259,35.191,35.394]}}, -{"f":"marko-v5.31.12-keyed","b":"03_update10th1k_x16","v":{"total":[23.286,26.507,68.445,25.891,26.429,23.317,22.679,22.357,23.583,26.518,23.693,69.561,23.452,70.955,69.464],"script":[8.524,9.685,7.72,9.543,9.541,9.654,8.489,8.693,8.084,9.452,7.891,9.026,8.954,9.344,9],"paint":[14.63,16.205,16.777,15.857,15.428,13.531,12.874,13.53,15.36,16.783,14.512,16.2,14.358,17.881,17.015]}}, -{"f":"marko-v5.31.12-keyed","b":"04_select1k","v":{"total":[17.18,9.181,13.651,9.23,11.279,18.649,17.006,8.514,9.427,9.302,8.391,12.396,8.588,8.981,14.737,8.975,9.328,14.198,11.461,15.593,10.996,13.036,14.348,9.014,17.2],"script":[7.126,6.412,7.291,6.315,6.545,6.658,7.115,5.649,6.541,6.278,6.12,6.33,6.27,5.612,6.015,5.706,5.88,6.469,5.995,7.945,6.107,7.743,7.884,5.735,8.328],"paint":[3.889,2.592,2.689,2.74,2.706,4.529,2.852,1.302,1.757,2.854,1.701,4.006,1.395,2.868,2.348,2.429,2.251,1.664,4.724,5.073,3.034,4.349,3.838,3.102,4.801]}}, -{"f":"marko-v5.31.12-keyed","b":"05_swap1k","v":{"total":[159.159,156.615,157.554,160.659,157.62,160.498,160.706,158.134,164.549,158.495,160.211,162.147,161.794,164.512,158.011],"script":[22.57,20.976,20.38,21.541,21.577,22.331,20.814,21.052,22.126,21.555,22.274,21.242,21.694,22.157,20.226],"paint":[136.396,135.472,136.997,137.986,135.867,136.814,139.349,134.743,141.446,136.783,136.665,140.253,139.683,141.724,136.177]}}, -{"f":"marko-v5.31.12-keyed","b":"06_remove-one-1k","v":{"total":[18.496,18.591,18.176,17.988,18.299,18.41,19.628,17.804,17.973,19.158,18.377,18.026,18.511,18.088,18.358],"script":[3.027,2.867,2.692,3.164,3.322,3.377,3.089,2.752,3.066,2.922,3.47,2.819,3.009,2.808,2.999],"paint":[14.388,14.19,14.199,14.087,14.437,14.414,15.38,14.078,14.06,14.955,14.171,13.83,14.227,13.774,14.377]}}, -{"f":"marko-v5.31.12-keyed","b":"07_create10k","v":{"total":[541.333,531.776,549.158,541.614,527.64,542.021,545.453,537.61,533.453,532.231,528.234,531.433,541.304,544.723,548.657],"script":[177.299,179.988,173.445,174.026,179.882,176.758,177.389,174.054,182.8,184.012,178.865,181.936,176.764,182.193,185.051],"paint":[361.739,349.548,373.533,365.309,345.516,363.035,365.843,361.238,348.472,345.896,347.084,347.339,362.334,360.256,361.38]}}, -{"f":"marko-v5.31.12-keyed","b":"08_create1k-after1k_x2","v":{"total":[60.89,62.663,60.774,63.871,62.04,61.315,60.452,62.501,60.068,61.881,60.906,60.628,60.522,59.579,62.856],"script":[21.773,23.304,21.678,23.36,22.289,21.973,21.99,23.295,21.856,23.054,22.087,21.723,21.363,21.013,21.92],"paint":[38.779,39.029,38.773,40.179,39.447,39.027,38.173,38.902,37.862,38.508,38.511,38.6,38.815,38.26,40.605]}}, -{"f":"marko-v5.31.12-keyed","b":"09_clear1k_x8","v":{"total":[25.966,21.38,26.267,25.69,27.474,22.481,26.884,27.982,26.5,26.344,26.429,23.39,25.431,26.597,21.048],"script":[22.35,19.4,21.946,22.062,22.234,20.089,22.757,23.899,23.204,22.203,22.607,21.705,23.203,21.471,19.708],"paint":[2.634,1.181,2.526,3.049,3.537,2.307,3.847,3.127,2.947,3.272,2.227,1.604,2.114,3.096,1.248]}}, -{"f":"marko-v5.31.12-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6847267150878906]}}, -{"f":"marko-v5.31.12-keyed","b":"22_run-memory","v":{"DEFAULT":[4.302304267883301]}}, -{"f":"marko-v5.31.12-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.446647644042969]}}, -{"f":"marko-v5.31.12-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.2719316482543945]}}, -{"f":"marko-v5.31.12-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[34.430649757385254]}}, -{"f":"marko-v5.31.12-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[46.4521484375]}}, -{"f":"marko-v5.31.12-keyed","b":"42_size-compressed","v":{"DEFAULT":[16.1103515625]}}, -{"f":"marko-v5.31.12-keyed","b":"43_first-paint","v":{"DEFAULT":[80.2]}}, -{"f":"maverick-v0.23.1-keyed","b":"01_run1k","v":{"total":[37.572,36.638,37.187,37.798,36.746,36.984,38.805,37.4,36.879,37.162,36.083,37.12,39.424,37.235,37.13],"script":[4.01,3.8,3.795,4.184,3.706,3.854,4.08,3.971,3.884,3.846,3.83,3.889,4.125,3.828,4.071],"paint":[33.158,32.424,32.921,33.222,32.622,32.723,34.297,33.018,32.599,32.905,31.822,32.791,34.884,33.007,32.646]}}, -{"f":"maverick-v0.23.1-keyed","b":"02_replace1k","v":{"total":[41.939,41.53,41.026,42.058,41.545,42.438,40.857,41.041,41.546,43.279,42.432,42.865,42.277,42.224,41.735],"script":[7.122,6.746,6.889,6.835,6.827,7.461,6.846,6.843,7.002,7.405,6.989,6.99,7.619,7.583,7.034],"paint":[34.368,34.35,33.719,34.778,34.287,34.557,33.576,33.759,34.081,35.428,35.007,35.425,34.241,34.212,34.255]}}, -{"f":"maverick-v0.23.1-keyed","b":"03_update10th1k_x16","v":{"total":[16.758,15.949,16.214,16.919,17.062,16.388,16.481,16.069,16.17,17.336,16.506,16.846,16.79,16.155,16.267],"script":[1.152,0.985,0.6,1.944,1.753,1.034,1.441,1.231,0.974,0.941,1.896,1.2,1.224,1.227,1.063],"paint":[14.494,13.863,14.078,13.694,14.606,13.102,14.05,13.066,14.099,14.545,12.812,14.215,14.033,13.344,13.212]}}, -{"f":"maverick-v0.23.1-keyed","b":"04_select1k","v":{"total":[3.69,3.004,2.872,2.367,4.098,2.76,4.455,3.918,2.303,3.504,2.692,3.332,2.808,3.125,2.847,3.01,3.604,5.664,3.777,2.429,2.829,2.815,3.087,3.072,2.306],"script":[0.123,0.122,0.119,0.122,0.691,0.534,0.13,0.113,0.115,1.062,0.118,0.805,0.969,0.948,0.116,0.122,0.134,0.53,0.916,0.484,0.113,0.113,1.212,0.121,0.772],"paint":[2.998,2.188,2.059,1.223,2.206,1.372,2.677,1.8,1.112,1.099,2.156,2.423,1.738,2.076,2.627,2.76,2.481,1.73,1.111,1.151,1.604,1.728,1.775,1.725,1.439]}}, -{"f":"maverick-v0.23.1-keyed","b":"05_swap1k","v":{"total":[19.43,19.986,19.741,19.768,19.655,19.984,19.573,20.155,19.705,19.861,21.05,20.816,19.994,20.911,20.349],"script":[1.722,1.753,1.841,1.592,1.724,1.598,1.752,1.709,1.901,2.391,1.989,1.992,1.368,1.577,1.597],"paint":[16.219,17.21,16.152,16.266,16.759,16.728,16.751,16.051,16.464,15.944,16.965,17.534,17.657,17.613,17.675]}}, -{"f":"maverick-v0.23.1-keyed","b":"06_remove-one-1k","v":{"total":[15.71,16.251,16.199,16.132,15.449,15.463,15.529,15.639,15.337,15.581,15.501,15.899,15.508,15.383,16.015],"script":[0.863,0.846,0.748,0.743,0.732,0.718,0.727,0.905,0.858,0.744,0.693,0.961,0.745,0.91,0.995],"paint":[14.135,14.512,14.33,14.918,14.018,13.998,13.783,13.858,13.727,13.95,14.073,14.192,13.737,13.733,14.344]}}, -{"f":"maverick-v0.23.1-keyed","b":"07_create10k","v":{"total":[396.044,389.436,395.271,393.472,385.941,391.688,391.031,388.545,388.714,385.251,393.556,388.65,383.507,386.134,391.567],"script":[47.697,45.448,48.228,47.932,47.248,48.572,48.67,47.618,46.926,47.07,49.365,47.414,47.08,48.385,48.975],"paint":[341.7,336.843,340.375,338.771,331.978,336.488,335.703,333.61,335.132,331.461,337.528,334.488,329.031,331.182,335.927]}}, -{"f":"maverick-v0.23.1-keyed","b":"08_create1k-after1k_x2","v":{"total":[43.586,42.305,41.212,41.219,41.678,42.136,42.15,43.316,42.525,42.453,41.421,42.667,41.672,41.361,41.956],"script":[3.646,3.354,3.425,3.403,3.382,3.681,3.803,3.554,3.788,3.835,3.401,3.629,3.497,3.493,3.444],"paint":[39.038,38.037,36.938,36.929,37.396,37.559,37.485,38.848,37.881,37.752,37.143,38.154,37.27,37.001,37.585]}}, -{"f":"maverick-v0.23.1-keyed","b":"09_clear1k_x8","v":{"total":[14.015,13.47,14.245,12.898,13.624,14.024,13.222,13.197,13.161,13.627,13.316,13.574,13.416,13.596,13.377],"script":[11.977,11.51,11.481,11.787,12.356,11.821,11.657,10.852,11.783,11.55,11.647,11.97,11.943,11.679,11.741],"paint":[1.543,1.174,2.656,0.364,0.579,2.106,1.483,2.253,1.291,1.977,1.319,0.825,1.389,1.821,1.545]}}, -{"f":"maverick-v0.23.1-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.47789478302001953]}}, -{"f":"maverick-v0.23.1-keyed","b":"22_run-memory","v":{"DEFAULT":[2.379179000854492]}}, -{"f":"maverick-v0.23.1-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.428013801574707]}}, -{"f":"maverick-v0.23.1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6549797058105469]}}, -{"f":"maverick-v0.23.1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[18.719630241394043]}}, -{"f":"maverick-v0.23.1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11.873046875]}}, -{"f":"maverick-v0.23.1-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.736328125]}}, -{"f":"maverick-v0.23.1-keyed","b":"43_first-paint","v":{"DEFAULT":[57.8]}}, -{"f":"metron-v0.0.2-keyed","b":"01_run1k","v":{"total":[40.911,43.729,42.435,43.06,43.683,43.154,42.543,44.254,43.853,44.136,43.264,42.679,42.739,43.467,42.541],"script":[7.887,8.57,8.312,8.091,8.366,8.471,7.968,8.751,8.147,8.249,8.251,8.122,8.225,8.565,8.458],"paint":[32.59,34.704,33.684,34.529,34.875,34.243,34.112,35.068,35.265,35.42,34.586,34.113,34.066,34.491,33.657]}}, -{"f":"metron-v0.0.2-keyed","b":"02_replace1k","v":{"total":[46.572,46.062,46.999,47.498,46.672,46.485,46.408,46.275,46.026,45.523,46.492,46.354,47.321,47.008,46.901],"script":[10.656,10.08,10.423,10.144,10.262,10.004,9.859,9.693,9.982,9.643,9.842,10.13,10.09,10.241,10.029],"paint":[35.418,35.519,36.124,36.894,35.939,35.998,36.106,36.143,35.576,35.404,36.166,35.742,36.734,36.261,36.35]}}, -{"f":"metron-v0.0.2-keyed","b":"03_update10th1k_x16","v":{"total":[16.291,16.846,16.344,16.377,16.973,16.661,16.556,16.622,16.497,16.21,16.427,16.144,16.005,16.499,18.155],"script":[0.938,1.561,1.003,1.027,0.979,1.203,1.07,0.579,0.585,0.554,0.84,0.221,0.92,1.183,0.723],"paint":[13.78,13.391,13.853,13.762,13.904,13.843,14.137,14.485,14.308,14.292,14.132,14.741,12.562,13.923,15.867]}}, -{"f":"metron-v0.0.2-keyed","b":"04_select1k","v":{"total":[2.838,1.812,2.829,2.776,3.444,3.466,2.368,4.821,2.732,1.956,2.229,2.779,2.343,2.353,2.239,2.221,2.698,3.292,2.875,2.604,3.045,2.71,2.758,5.091,2.211],"script":[0.411,0.115,0.072,0.073,0.937,0.071,0.068,0.705,0.066,0.063,0.066,0.798,0.065,0.064,0.068,0.065,0.069,0.589,0.314,0.067,0.627,0.755,0.068,0.086,0.694],"paint":[2.324,1.607,1.669,1.753,1.753,1.466,2.166,1.796,2.437,1.793,2.07,1.885,1.401,2.192,1.918,2.058,2.055,2.596,2.043,2.441,2.32,1.856,2.59,2.767,1.425]}}, -{"f":"metron-v0.0.2-keyed","b":"05_swap1k","v":{"total":[19.062,19.072,19.567,20.082,19.48,19.361,19.077,18.907,18.942,19.111,19.222,18.201,19.021,19.769,19.002],"script":[0.107,0.685,0.687,0.788,0.597,0.105,0.114,0.112,0.299,0.107,0.436,0.101,0.103,1.042,0.103],"paint":[17.227,16.842,17.38,17.795,17.954,18.097,17.628,17.036,17.947,17.998,17.401,17.108,17.557,17.629,17.23]}}, -{"f":"metron-v0.0.2-keyed","b":"06_remove-one-1k","v":{"total":[15.316,15.356,14.983,15.175,15.172,15.31,15.228,15.297,14.888,14.915,14.886,14.936,15.274,15.045,14.982],"script":[0.121,0.092,0.104,0.095,0.098,0.119,0.327,0.245,0.102,0.087,0.092,0.092,0.4,0.092,0.155],"paint":[14.412,14.488,13.83,14.411,14.342,14.465,13.891,14.129,13.725,13.817,13.904,13.79,13.856,13.868,13.791]}}, -{"f":"metron-v0.0.2-keyed","b":"07_create10k","v":{"total":[444.73,444.322,441.561,442.193,443.18,441.038,443.241,441.172,443.518,442.873,443.317,440.007,443.162,441.605,442.974],"script":[95.272,95.143,94.272,97.66,95.707,95.121,96.251,95.377,94.686,96.816,96.203,94.047,94.012,94.951,94.835],"paint":[342.521,342.375,340.447,337.288,340.604,338.888,340.194,338.428,341.911,339.066,340.096,339.153,342.355,339.555,341.38]}}, -{"f":"metron-v0.0.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[48.677,46.984,46.914,47.544,46.42,46.058,47.524,46.337,46.08,48.139,46.854,47.473,47.447,47.636,46.298],"script":[7.615,6.623,6.709,6.645,6.687,6.671,7.019,6.804,6.656,6.965,6.892,6.67,6.747,6.533,7.191],"paint":[40.15,39.467,39.302,40.014,38.773,38.455,39.527,38.587,38.553,40.186,39.059,39.901,39.798,40.075,38.16]}}, -{"f":"metron-v0.0.2-keyed","b":"09_clear1k_x8","v":{"total":[12.529,12.407,12.61,12.276,12.801,12.555,12.62,12.408,13.533,12.784,12.275,12.923,12.736,12.669,11.821],"script":[10.796,10.522,10.736,10.478,10.658,10.4,10.667,10.258,10.42,10.2,10.106,10.853,10.625,11.039,10.731],"paint":[1.645,0.95,1.702,1.713,1.918,2.064,1.852,2.041,2.97,2.156,2.083,1.24,1.243,1.535,0.364]}}, -{"f":"metron-v0.0.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5316371917724609]}}, -{"f":"metron-v0.0.2-keyed","b":"22_run-memory","v":{"DEFAULT":[3.3683433532714844]}}, -{"f":"metron-v0.0.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.407984733581543]}}, -{"f":"metron-v0.0.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7325992584228516]}}, -{"f":"metron-v0.0.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[29.033967971801758]}}, -{"f":"metron-v0.0.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[18.8974609375]}}, -{"f":"metron-v0.0.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.0048828125]}}, -{"f":"metron-v0.0.2-keyed","b":"43_first-paint","v":{"DEFAULT":[78.3]}}, -{"f":"michijs-v1.1.7-keyed","b":"01_run1k","v":{"total":[46.354,44.132,43.162,44.982,43.796,44.038,44.225,45.126,44.798,44.769,44.946,44.623,44.124,45.046,45.068],"script":[10.945,10.434,10.969,10.643,10.767,11.207,10.396,10.544,10.918,10.554,10.96,10.568,10.609,10.425,11.154],"paint":[34.919,33.249,31.807,33.902,32.6,32.388,33.409,34.152,33.486,33.79,33.558,33.613,33.085,34.167,33.511]}}, -{"f":"michijs-v1.1.7-keyed","b":"02_replace1k","v":{"total":[49.706,48.644,49.281,48.391,49.022,49.256,49.137,49.137,48.999,49.688,49.408,48.037,49.019,49.001,48.735],"script":[13.299,13.114,13.013,13.027,13.38,13.188,12.976,13.026,13.208,13.397,13.125,12.74,13.012,12.954,13.781],"paint":[35.954,35.067,35.837,34.89,35.167,35.594,35.701,35.672,35.308,35.844,35.83,34.853,35.533,35.568,34.498]}}, -{"f":"michijs-v1.1.7-keyed","b":"03_update10th1k_x16","v":{"total":[19.885,22.164,19.971,19.875,19.053,20.35,19.694,20.549,19.686,20.487,19.613,20.1,20.043,19.331,19.694],"script":[4.535,5.474,4.423,5.139,4.865,4.647,4.491,4.962,4.574,4.91,4.562,5.04,4.449,4.581,4.602],"paint":[13.888,14.849,14.006,13.745,12.682,14.761,13.598,14.63,12.102,14.336,13.547,14.002,14.638,13.3,13.329]}}, -{"f":"michijs-v1.1.7-keyed","b":"04_select1k","v":{"total":[3.462,3.529,3.684,3.075,2.645,2.925,4.683,5.553,3.645,3.456,3.938,3.682,2.866,2.351,2.798,3.344,3.174,4.028,2.91,3.659,4.756,3.772,6.079,3.102,3.697],"script":[1.186,1.224,1.213,0.508,0.18,0.651,0.902,0.774,1.105,1.412,0.193,0.599,0.664,0.904,0.855,1.086,1.156,0.177,0.892,0.899,0.186,0.664,1.229,0.182,1.371],"paint":[1.773,2.205,2.287,2.458,1.679,2.184,2.461,1.716,2.438,1.122,0.812,2.211,0.832,0.803,1.837,0.597,1.924,1.987,1.914,2.65,2.284,1.661,1.457,2.179,2.234]}}, -{"f":"michijs-v1.1.7-keyed","b":"05_swap1k","v":{"total":[18.491,18.61,19.146,18.99,18.749,19.209,18.68,18.97,18.904,19.502,19.606,18.934,18.273,17.79,19.056],"script":[0.486,0.837,1.103,0.796,0.169,0.547,0.519,0.164,0.272,0.181,1.044,0.926,0.508,0.537,0.836],"paint":[15.976,16.535,16.671,16.594,17.576,17.354,17.137,16.53,17.35,16.85,16.564,16.781,16.355,16.211,16.906]}}, -{"f":"michijs-v1.1.7-keyed","b":"06_remove-one-1k","v":{"total":[15.059,15.129,14.96,14.789,15.118,14.788,14.758,15.104,14.79,15.075,15.199,14.77,14.781,15.06,15.037],"script":[0.124,0.387,0.293,0.114,0.394,0.117,0.429,0.282,0.401,0.332,0.434,0.116,0.119,0.448,0.435],"paint":[14.077,13.999,13.778,13.911,14.012,13.961,13.532,13.879,13.622,14.087,14.034,13.928,13.647,13.841,13.881]}}, -{"f":"michijs-v1.1.7-keyed","b":"07_create10k","v":{"total":[454.454,467.835,465.684,463.675,467.361,464.367,457.578,470.891,460.802,458.241,464.458,463.409,464.801,467.91,465.916],"script":[118.966,127.665,128.393,120.148,126.037,122.401,120.351,127.537,124.489,122.846,127.159,122.901,123.798,125.964,125.639],"paint":[328.623,333.243,330.413,336.646,334.545,335.241,330.553,336.173,329.585,328.815,330.454,333.701,334.289,335.154,333.433]}}, -{"f":"michijs-v1.1.7-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.479,53.188,51.908,50.654,51.106,50.573,50.868,50.291,52.746,52.801,53.187,52.764,51.036,52.042,52.298],"script":[10.745,11.141,11.736,11.113,11.72,11.029,10.951,10.837,11.126,11.512,11.214,11.132,11.254,11.633,11.007],"paint":[38.837,41.08,39.211,38.522,38.472,38.604,39.014,38.505,40.709,40.321,41.004,40.712,38.885,39.522,40.407]}}, -{"f":"michijs-v1.1.7-keyed","b":"09_clear1k_x8","v":{"total":[12.249,12.113,13.146,13,12.703,12.143,12.802,12.209,12.059,11.938,12.28,13.033,12.116,12.033,13.079],"script":[10.332,10.584,11.889,11.079,10.49,10.434,10.921,10.355,10.636,10.421,10.603,11.296,10.362,10.599,10.689],"paint":[1.189,1.446,1.169,1.828,2.127,1.62,1.059,1.772,0.351,1.433,1.586,1.234,1.664,0.382,2.305]}}, -{"f":"michijs-v1.1.7-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5808467864990234]}}, -{"f":"michijs-v1.1.7-keyed","b":"22_run-memory","v":{"DEFAULT":[2.434617042541504]}}, -{"f":"michijs-v1.1.7-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.565178871154785]}}, -{"f":"michijs-v1.1.7-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9432525634765625]}}, -{"f":"michijs-v1.1.7-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[17.779791831970215]}}, -{"f":"michijs-v1.1.7-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[44.4755859375]}}, -{"f":"michijs-v1.1.7-keyed","b":"42_size-compressed","v":{"DEFAULT":[10.43359375]}}, -{"f":"michijs-v1.1.7-keyed","b":"43_first-paint","v":{"DEFAULT":[77.3]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"01_run1k","v":{"total":[47.003,48.349,46.688,46.459,46.794,46.024,46.443,46.173,48.173,48.81,48.24,47.584,46.271,47.992,47.364],"script":[13.14,14.12,13.572,13.229,13.136,12.927,13.178,13.241,14.999,14.585,14.417,13.983,14.047,13.968,14.018],"paint":[33.447,33.805,32.703,32.797,33.236,32.679,32.843,32.519,32.746,33.789,33.391,33.193,31.833,33.605,32.915]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"02_replace1k","v":{"total":[70.581,69.625,69.702,71.745,70.975,68.918,68.155,70.128,69.507,69.452,67.901,70.387,68.533,67.628,68.077],"script":[33.452,33.272,32.928,33.146,33.889,32.445,31.418,33.279,32.589,32.576,31.365,33.193,31.91,31.34,31.751],"paint":[36.652,35.876,36.336,38.124,36.62,36.018,36.267,36.381,36.367,36.411,36.071,36.725,36.153,35.824,35.856]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"03_update10th1k_x16","v":{"total":[54.516,54.568,52.543,51.333,53.611,53.936,51.544,52.312,52.103,55.792,55.307,56.667,50.772,54.114,52.926],"script":[38.237,38.275,36.762,35.719,37.763,37.501,35.397,35.723,35.716,39.224,39.192,39.638,35.043,37.935,36.649],"paint":[14.74,14.91,13.728,13.744,14.305,15.134,14.018,15.527,14.215,15.239,14.168,15.689,14.177,13.77,13.137]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"04_select1k","v":{"total":[37.576,36.516,40.204,39.94,38.852,38.448,35.812,36.427,38.334,37.938,38.368,38.83,39.739,36.562,36.22,39.688,38.217,37.883,38.068,38.859,37.748,38.139,39.675,40.595,36.892],"script":[33.986,33.064,36.555,37.205,36.058,35.018,32.675,33.064,35.238,34.659,34.809,35.36,36.205,33.836,33.297,36.219,35.507,34.716,34.819,35.261,34.553,34.476,36.238,36.627,33.404],"paint":[3.39,3.016,2.941,1.978,1.875,2.59,2.232,2.808,2.312,2.071,3.174,2.908,2.798,2.524,2.739,3.275,1.671,1.936,1.675,2.465,1.836,2.148,2.816,2.038,2.431]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"05_swap1k","v":{"total":[56.475,54.136,56.717,55.976,53.922,54.951,54.843,52.302,54.07,53.69,55.244,54.273,53.171,56.405,55.238],"script":[36.618,35.422,37.186,37.302,35.129,35.935,35.725,32.617,34.208,34.425,35.702,35.249,34.278,36.632,35.836],"paint":[17.674,16.615,17.955,16.317,17.732,17.925,17.984,18.399,18.286,17.789,18.081,18.146,17.546,17.923,17.641]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"06_remove-one-1k","v":{"total":[124.79,123.307,125.272,124.653,125.76,125.995,125.221,124.692,123.229,123.621,125.082,125.13,125.979,126.593,126.712],"script":[54.689,52.241,52.779,53.832,54.003,55.236,54.691,53.736,52.986,51.673,54.354,53.287,55.682,55.414,55.394],"paint":[68.385,70.152,71.289,69.598,70.833,69.655,69.347,69.733,69.252,71.053,69.554,70.309,69.046,69.974,70.063]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"07_create10k","v":{"total":[471.614,474.382,475.991,475.727,478.731,471.266,471.87,471.778,477.49,475.059,471.092,475.076,475.796,477.172,472.4],"script":[136.539,136.478,136.869,137.186,137.147,135.731,132.86,135.92,137.34,136.121,135.564,137.634,137.598,136.677,135.773],"paint":[328.407,331.042,332.255,331.798,334.567,328.93,332.346,329.123,333.405,332.234,328.778,330.504,331.396,333.588,329.885]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"08_create1k-after1k_x2","v":{"total":[66.36,67.043,65.565,64.932,66.385,65.864,66.914,65.934,66.01,67.355,67.017,67.186,65.781,65.748,67.326],"script":[25.962,27.04,26.187,25.633,26.368,26.248,26.813,26.275,26.336,26.417,26.677,26.426,25.98,26.163,26.925],"paint":[39.499,39.105,38.511,38.46,39.141,38.733,39.232,38.811,38.806,40.036,39.46,39.93,38.91,38.719,39.479]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"09_clear1k_x8","v":{"total":[11.912,11.99,12.362,12.206,12.325,11.925,12.268,12.186,12.639,11.987,11.956,12.523,11.978,12.262,12.64],"script":[10.372,10.076,10.554,10.049,10.437,9.884,10.386,10.344,11.02,10.46,10.217,10.387,10.554,10.351,10.672],"paint":[0.975,1.832,1.011,1.02,1.788,1.959,1.13,1.761,1.5,1.438,1.663,2.049,1.341,1.755,0.988]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.584132194519043]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"22_run-memory","v":{"DEFAULT":[2.791830062866211]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.0349607467651367]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9466943740844727]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[20.814523696899414]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[43.16796875]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"42_size-compressed","v":{"DEFAULT":[10.20703125]}}, -{"f":"michijs-map-v1.1.7-keyed","b":"43_first-paint","v":{"DEFAULT":[79.4]}}, -{"f":"mikado-v0.8.327-keyed","b":"01_run1k","v":{"total":[35.67,34.781,35.05,35.709,35.635,34.533,35.184,35.439,35.804,34.921,37.138,34.659,35.241,34.959,35.932],"script":[2.556,2.486,2.433,2.615,2.445,2.543,2.483,2.451,2.529,2.696,2.609,2.576,2.479,2.472,2.676],"paint":[32.731,31.903,32.204,32.688,32.753,31.591,32.279,32.59,32.874,31.819,34.098,31.684,32.355,32.08,32.847]}}, -{"f":"mikado-v0.8.327-keyed","b":"02_replace1k","v":{"total":[38.926,39.383,39.164,39.063,39.085,40.247,38.449,38.958,40.061,38.798,38.477,40.234,38.713,38.194,38.238],"script":[4.76,4.947,4.785,4.743,4.917,4.853,4.493,4.868,4.829,4.809,4.761,4.828,4.79,5.058,4.691],"paint":[33.717,34.007,33.956,33.87,33.74,34.938,33.553,33.665,34.651,33.561,33.29,34.968,33.501,32.719,33.109]}}, -{"f":"mikado-v0.8.327-keyed","b":"03_update10th1k_x16","v":{"total":[15.155,15.952,16.13,15.264,16.551,15.654,16.378,15.736,14.974,15.09,15.083,15.846,16.249,15.265,15.572],"script":[0.796,0.308,0.134,0.116,0.916,0.555,0.146,0.137,0.49,0.125,0.766,0.559,0.14,0.515,0.125],"paint":[12.835,14.642,14.525,13.804,13.807,12.826,14.374,13.655,13.512,13.918,12.968,12.968,14.396,13.24,14.531]}}, -{"f":"mikado-v0.8.327-keyed","b":"04_select1k","v":{"total":[2.736,2.85,1.889,2.322,7.115,4.899,2.626,3.301,3.15,2.347,2.579,3.624,2.153,2.469,3.978,1.944,5.012,2.734,2.47,3.171,2.343,3.421,2.687,2.546,2.738],"script":[0.425,0.078,0.403,0.08,0.422,0.318,0.19,1.036,0.084,0.383,0.079,0.083,0.322,0.082,0.807,0.077,0.791,0.756,0.283,0.076,0.084,0.077,0.766,0.819,0.657],"paint":[2.208,2.684,1.384,2.145,1.935,2.207,1.706,2.17,1.959,1.862,1.048,1.551,1.728,1.631,1.122,1.104,1.523,1.877,2.079,1.959,2.159,2.227,1.827,1.052,1.58]}}, -{"f":"mikado-v0.8.327-keyed","b":"05_swap1k","v":{"total":[19.42,18.691,18.913,18.847,18.328,19,18.585,19.67,18.468,18.944,18.38,18.286,19.293,19.941,18.726],"script":[0.19,0.859,0.683,0.176,0.171,0.17,0.159,0.848,0.156,0.884,0.659,0.492,0.872,0.172,0.799],"paint":[17.535,16.349,16.505,16.438,16.64,17.343,16.889,17.329,16.808,16.759,16.183,16.269,16.111,17.37,16.086]}}, -{"f":"mikado-v0.8.327-keyed","b":"06_remove-one-1k","v":{"total":[14.719,14.828,14.876,15.287,14.664,15.365,15.192,15.931,14.758,14.707,14.563,14.468,14.736,14.884,15.153],"script":[0.267,0.173,0.085,0.089,0.089,0.235,0.401,0.349,0.089,0.217,0.082,0.183,0.224,0.086,0.392],"paint":[13.716,13.916,14.055,14.423,13.821,14.025,14.431,14.844,13.937,13.69,13.552,13.52,13.566,14.03,14.079]}}, -{"f":"mikado-v0.8.327-keyed","b":"07_create10k","v":{"total":[372.039,366.412,367.586,369.581,369.26,367.406,367.475,368.191,367.924,368.807,366.032,370.235,370.334,367.983,368.598],"script":[29.199,27.981,28.107,28.7,29.66,29.719,28.098,28.143,28.779,29.283,28.573,29.201,30.826,27.647,29.254],"paint":[335.917,331.802,332.866,334.252,332.945,331.062,332.753,333.013,332.549,332.934,330.831,334.403,332.955,333.747,332.733]}}, -{"f":"mikado-v0.8.327-keyed","b":"08_create1k-after1k_x2","v":{"total":[40.15,39.608,40.899,40.1,39.698,39.9,40.201,39.692,39.955,39.848,40.843,39.786,40.845,39.919,41.096],"script":[2.467,2.45,2.469,2.43,2.476,2.372,2.446,2.441,2.434,2.432,2.469,2.534,2.429,2.403,2.51],"paint":[36.829,36.325,37.5,36.841,36.393,36.689,36.862,36.431,36.698,36.46,37.528,36.412,37.565,36.676,37.769]}}, -{"f":"mikado-v0.8.327-keyed","b":"09_clear1k_x8","v":{"total":[12.496,13.816,12.026,11.468,12.786,12.117,11.828,12.129,12.481,12.243,12.224,12.29,11.747,12.549,11.483],"script":[10.302,11.387,10.106,10.172,10.902,10.457,9.858,9.696,10.958,10.569,10.374,10.085,9.888,10.428,9.576],"paint":[2.089,1.846,1.238,0.86,0.929,1.569,1.878,2.008,1.43,1.594,1.774,1.219,1.766,1.393,1.821]}}, -{"f":"mikado-v0.8.327-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5085182189941406]}}, -{"f":"mikado-v0.8.327-keyed","b":"22_run-memory","v":{"DEFAULT":[1.8374452590942383]}}, -{"f":"mikado-v0.8.327-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.8739261627197266]}}, -{"f":"mikado-v0.8.327-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6622495651245117]}}, -{"f":"mikado-v0.8.327-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[13.405378341674805]}}, -{"f":"mikado-v0.8.327-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11.8828125]}}, -{"f":"mikado-v0.8.327-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.685546875]}}, -{"f":"mikado-v0.8.327-keyed","b":"43_first-paint","v":{"DEFAULT":[53]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"01_run1k","v":{"total":[36.118,36.934,37.727,36.894,36.651,36.153,36.699,37.467,37.996,38.1,37.509,37.448,36.743,37.959,36.795],"script":[3.734,3.774,3.745,3.785,3.715,3.678,3.815,4.266,3.746,4.303,3.686,3.763,3.731,4.269,3.748],"paint":[31.998,32.718,33.582,32.723,32.534,32.048,32.49,32.797,33.861,33.371,33.438,33.288,32.612,33.289,32.655]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"02_replace1k","v":{"total":[41.446,42.633,40.788,40.107,40.747,41.272,41.065,40.63,41.027,41.406,41.438,40.319,41.545,41.985,40.864],"script":[6.359,6.153,6.163,6.004,6.285,6.373,6.222,6.121,6.252,6.094,6.415,6.131,6.34,6.338,6.305],"paint":[34.656,36.031,34.208,33.697,34.055,34.482,34.423,34.055,34.331,34.879,34.604,33.767,34.763,35.156,34.128]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"03_update10th1k_x16","v":{"total":[16.732,15.866,16.397,15.85,16.098,16.333,15.856,16.27,15.607,15.874,15.635,16.521,16.317,15.548,15.889],"script":[0.977,0.894,0.872,0.727,0.202,0.936,1.101,0.804,1.131,0.8,0.805,1.368,1.283,0.17,0.656],"paint":[15.016,13.961,14.555,13.689,15.161,14.309,12.912,14.439,13.286,14.06,13.001,13.592,13.724,13.826,14.551]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"04_select1k","v":{"total":[2.056,3.07,4.274,2.564,3.121,2.516,2.211,2.192,3.316,2.083,6.611,3.259,2.973,2.782,4.107,2.352,2.475,2.486,3.052,1.937,2.983,2.847,2.387,5.51,5.274],"script":[0.066,0.072,0.68,0.072,0.916,0.07,0.346,0.079,0.954,0.277,0.07,1.008,0.871,0.073,0.07,0.071,0.07,0.068,0.066,0.39,0.072,0.069,0.07,0.165,0.075],"paint":[1.895,2.891,1.271,2.391,1.518,1.664,1.369,1.437,1.81,1.341,1.656,2.163,2.01,1.929,1.635,2.168,2.309,1.86,1.966,1.455,2.814,2.124,1.124,1.673,2.248]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"05_swap1k","v":{"total":[18.136,18.164,18.394,19.19,17.952,18.854,18.444,17.374,18.325,18.604,18.816,18.461,18.461,19.404,18.137],"script":[0.13,0.476,0.556,0.84,0.589,0.799,0.511,0.124,0.14,0.911,0.65,0.134,0.491,0.146,0.754],"paint":[17.001,15.627,16.241,16.82,14.648,16.909,16.75,15.964,17.035,16.435,16.464,17.094,16.576,16.486,15.672]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"06_remove-one-1k","v":{"total":[14.796,14.888,15.237,15.066,14.735,14.781,14.702,14.954,14.901,15.408,15.644,14.762,14.824,14.818,14.95],"script":[0.123,0.268,0.125,0.442,0.13,0.128,0.125,0.242,0.253,0.441,0.343,0.128,0.125,0.277,0.123],"paint":[13.951,13.744,14.393,13.947,13.908,13.936,13.36,13.915,13.928,14.109,14.138,13.892,13.916,13.84,13.763]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"07_create10k","v":{"total":[371.181,372.486,378.193,372.077,369.998,373.661,375.218,371.542,372.412,377.629,373.702,374.663,369.794,373.219,377.291],"script":[42.435,42.848,42.074,43.905,43.521,43.434,44.055,43.789,43.473,45.089,43.538,44.923,44.074,43.385,43.599],"paint":[321.922,323.086,329.43,321.592,319.932,323.677,324.556,321.028,322.166,326.061,323.613,323.204,319.214,323.292,327.142]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"08_create1k-after1k_x2","v":{"total":[44.432,44.608,45.38,41.795,44.532,44.676,44.715,44.457,44.514,42.832,41.405,43.348,44.562,44.145,42.854],"script":[4.43,4.214,4.284,4.185,4.372,4.394,4.323,4.324,4.367,4.453,4.316,4.488,4.314,4.24,4.402],"paint":[39.107,39.528,40.007,36.765,39.315,39.429,39.549,39.29,39.304,37.553,36.259,38.002,39.409,39.08,37.618]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"09_clear1k_x8","v":{"total":[12.338,12.451,12.102,11.937,12.172,12.521,12.567,11.631,12.194,12.15,12.685,12.036,11.857,12.762,12.4],"script":[10.737,10.172,10.629,10.525,10.623,10.903,10.361,10.512,10.45,9.966,11.076,10.02,10.413,10.447,10.813],"paint":[0.374,1.798,1.381,1.319,1.467,1.538,2.113,1.03,1.663,2.098,1.523,1.931,1.352,2.232,1.507]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5209808349609375]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"22_run-memory","v":{"DEFAULT":[2.2961721420288086]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.429020881652832]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.8481531143188477]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[16.78713607788086]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[14.8486328125]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.53125]}}, -{"f":"mikado-proxy-v0.8.327-keyed","b":"43_first-paint","v":{"DEFAULT":[49.6]}}, -{"f":"million-v2.3.3-keyed","b":"01_run1k","v":{"total":[35.247,35.739,35.392,35.315,36.188,37.364,34.841,35.629,35.043,35.719,36.45,35.542,35.426,35.008,35.374],"script":[2.668,2.685,2.657,3.079,2.968,3.046,2.669,3.071,2.629,2.634,3.009,2.726,2.691,2.649,2.706],"paint":[32.175,32.651,32.323,31.823,32.795,33.887,31.782,32.14,32.003,32.685,32.951,32.379,32.31,31.955,32.266]}}, -{"f":"million-v2.3.3-keyed","b":"02_replace1k","v":{"total":[39.71,38.355,38.369,38.5,38.304,38.585,38.386,40.835,38.649,38.677,38.388,40.732,38.478,38.305,40.151],"script":[4.932,4.728,4.74,4.726,4.7,4.745,4.732,4.727,4.744,4.707,4.7,4.79,4.74,4.76,5.04],"paint":[34.322,33.194,33.189,33.358,33.188,33.42,33.212,35.652,33.486,33.519,33.257,35.53,33.321,33.077,34.677]}}, -{"f":"million-v2.3.3-keyed","b":"03_update10th1k_x16","v":{"total":[16.227,15.49,16.928,17.153,17.436,16.158,16.158,15.959,16.255,16.833,16.995,15.915,16.465,16.051,16.341],"script":[1.227,0.937,0.943,1.547,2.102,1.039,1.487,0.952,1.469,1.739,1.832,1.022,1.709,0.973,0.994],"paint":[13.858,13.286,14.053,14.471,13.975,13.97,13.601,14.037,13.011,13.897,14.189,13.621,12.699,13.493,14.365]}}, -{"f":"million-v2.3.3-keyed","b":"04_select1k","v":{"total":[3.544,2.852,3.565,3.147,2.771,3.079,3.252,3.092,3.401,3.845,3.501,3.24,5.545,3.619,6.476,3.102,3.251,3.313,4.258,4.145,3.467,4.701,3.125,2.863,2.83],"script":[0.779,0.184,1.115,0.674,0.53,0.844,0.954,0.963,0.621,1.004,1.3,0.9,0.865,1.44,1.032,1.466,0.667,0.924,0.846,0.895,0.64,0.574,1.038,1.193,1.328],"paint":[2.665,1.835,1.208,2.375,1.274,2.113,1.563,2.027,2.682,1.393,1.504,1.633,1.566,1.529,1.82,1.135,2.481,2.279,2.363,1.564,2.487,2.114,1.71,1.576,1.4]}}, -{"f":"million-v2.3.3-keyed","b":"05_swap1k","v":{"total":[19.321,18.647,18.848,18.705,19.219,18.814,18.7,18.752,18.599,18.845,21.353,18.784,18.259,18.784,18.643],"script":[1.059,0.581,1.469,1.11,0.941,1.019,0.947,1.228,1.197,1.558,1.099,1.018,1.006,0.931,1.163],"paint":[16.863,16.706,15.877,16.383,16.809,16.342,15.566,15.961,15.523,16.087,18.658,16.749,15.993,16.384,16.041]}}, -{"f":"million-v2.3.3-keyed","b":"06_remove-one-1k","v":{"total":[14.757,14.722,14.768,14.682,14.322,14.543,14.682,14.56,14.826,14.757,14.738,15.429,15.195,14.812,14.551],"script":[0.092,0.096,0.246,0.083,0.087,0.085,0.088,0.308,0.094,0.093,0.255,0.092,0.091,0.196,0.097],"paint":[13.866,14.247,13.792,13.916,13.503,13.759,13.876,13.297,14.064,13.764,13.669,14.532,13.897,13.853,13.723]}}, -{"f":"million-v2.3.3-keyed","b":"07_create10k","v":{"total":[371.995,372.1,372.603,374.705,370.985,371.725,375.615,374.355,373.375,376.547,368.815,369.424,371.809,374.999,373.424],"script":[32.487,32.932,33.461,34.632,33.507,33.75,34.057,34.036,32.703,33.133,32.938,32.539,32.407,32.65,33.036],"paint":[332.822,332.554,332.54,333.478,330.81,331.368,334.928,333.626,334.064,336.811,329.172,330.02,332.682,335.688,333.618]}}, -{"f":"million-v2.3.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[41.74,41.863,41.594,40.185,39.911,40.352,48.817,41.818,40.226,41.574,40.458,41.425,40.144,41.671,41.321],"script":[3.096,3.109,3.155,3.052,3.061,3.048,3.141,3.069,3.041,3.118,3.067,3.256,3.046,3.221,3.052],"paint":[37.752,37.779,37.592,36.292,36.021,36.483,44.607,37.897,36.358,37.635,36.561,37.349,36.244,37.592,37.413]}}, -{"f":"million-v2.3.3-keyed","b":"09_clear1k_x8","v":{"total":[11.198,11.205,11.95,11.935,12.216,11.676,11.353,11.897,11.594,12.004,11.27,12.111,11.695,12.021,11.223],"script":[9.752,9.737,10.03,9.478,11.118,10.24,9.301,10.174,9.424,10.146,10.025,10.472,9.976,9.963,10.084],"paint":[1.367,1.382,1.029,1.577,0.377,1.355,1.969,1.253,2.077,1.775,1.173,1.555,1.003,1.974,1.044]}}, -{"f":"million-v2.3.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.46856021881103516]}}, -{"f":"million-v2.3.3-keyed","b":"22_run-memory","v":{"DEFAULT":[2.0948219299316406]}}, -{"f":"million-v2.3.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.1259965896606445]}}, -{"f":"million-v2.3.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7822771072387695]}}, -{"f":"million-v2.3.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[15.446820259094238]}}, -{"f":"million-v2.3.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[9.466796875]}}, -{"f":"million-v2.3.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.517578125]}}, -{"f":"million-v2.3.3-keyed","b":"43_first-paint","v":{"DEFAULT":[47.5]}}, -{"f":"mimbl-v0.10.4-keyed","b":"01_run1k","v":{"total":[47.396,46.52,47.375,48.386,46.839,47.365,46.671,48.447,48.549,47.563,47.796,48.754,49.303,47.293,47.877],"script":[13.322,13.176,13.863,13.638,12.893,13.302,13.407,13.311,14.799,14.452,13.424,14.407,14.536,13.673,13.71],"paint":[33.64,32.927,33.099,34.345,33.53,33.661,32.847,34.715,33.314,32.709,33.952,33.937,34.357,33.206,33.755]}}, -{"f":"mimbl-v0.10.4-keyed","b":"02_replace1k","v":{"total":[50.146,49.82,49.911,49.883,49.894,49.467,49.744,49.769,48.274,49.495,50.968,49.885,50.257,50.391,51.206],"script":[14.557,14.273,14.08,14.357,14.333,13.853,14.234,14.251,13.77,13.706,14.172,14.228,14.296,14.165,15.19],"paint":[35.16,35.123,35.37,35.1,35.16,35.178,35.072,35.068,34.09,35.357,36.329,35.216,35.519,35.804,35.573]}}, -{"f":"mimbl-v0.10.4-keyed","b":"03_update10th1k_x16","v":{"total":[15.988,15.075,15.314,16.276,15.878,15.899,16.538,15.807,15.937,15.673,15.733,15.88,15.818,15.506,16.6],"script":[1,0.577,0.95,1.252,0.891,0.937,1.158,0.606,1.045,0.882,0.881,0.611,1.028,0.921,1.218],"paint":[13.116,12.989,12.829,13.265,13.374,13.254,13.564,13.86,13.549,13.078,13.873,13.549,12.942,12.89,14.128]}}, -{"f":"mimbl-v0.10.4-keyed","b":"04_select1k","v":{"total":[2.897,2.548,3.522,2.629,3.192,3.208,3.868,2.95,2.768,3.078,2.448,3.429,2.836,3.148,2.592,3.377,2.586,2.837,2.978,2.759,3.553,2.573,2.91,2.853,2.831],"script":[0.131,0.541,1.061,1.066,0.129,0.131,0.993,0.977,0.814,1.102,0.547,1.094,0.136,1.013,0.135,0.965,1.059,0.852,0.122,0.586,0.132,0.676,0.981,0.498,0.841],"paint":[1.92,1.89,1.428,1.47,2.965,1.699,1.433,1.875,1.853,1.871,1.796,2.22,2.598,1.648,2.354,1.528,1.432,1.886,1.919,2.071,2.743,1.786,1.83,2.242,1.892]}}, -{"f":"mimbl-v0.10.4-keyed","b":"05_swap1k","v":{"total":[18.56,18.766,18.218,18.128,18.317,18.083,18.613,18.453,18.434,18.551,17.775,19.4,18.66,18.393,18.362],"script":[0.177,0.169,0.691,0.608,0.295,0.31,0.664,0.934,0.652,0.656,0.158,0.699,0.323,0.85,0.167],"paint":[17.246,15.869,16.208,16.691,16.354,16.583,15.948,15.942,16.152,16.136,16.103,17.555,17.276,16.461,16.027]}}, -{"f":"mimbl-v0.10.4-keyed","b":"06_remove-one-1k","v":{"total":[15.369,14.761,15.317,15.179,14.892,14.986,14.873,15.165,16.091,14.825,15.199,15.762,15.451,15.624,14.766],"script":[0.491,0.437,0.412,0.175,0.167,0.348,0.176,0.467,0.509,0.414,0.172,0.507,0.375,0.343,0.311],"paint":[13.872,13.274,14.138,14.257,13.738,13.91,13.682,13.37,14.313,13.704,14.291,14.364,14.376,14.541,13.491]}}, -{"f":"mimbl-v0.10.4-keyed","b":"07_create10k","v":{"total":[461.65,470.811,459.528,456.729,464.181,461.631,470.9,461.449,461.824,460.591,455.476,457.901,457.18,472.519,457.465],"script":[121.602,122.196,120.94,119.709,122.08,119.963,121.076,119.846,121.348,120.798,119.409,120.179,118.309,119.201,118.396],"paint":[333.059,341.699,331.922,330.056,335.314,334.935,343.043,334.889,333.294,332.99,329.333,331.216,332.105,346.464,332.374]}}, -{"f":"mimbl-v0.10.4-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.905,53.554,51.112,51.162,50.23,51.766,50.212,51.452,51.29,53.201,50.681,50.997,51.412,51.211,50.896],"script":[11.601,12.746,11.412,11.406,11.058,11.708,11.63,11.819,11.589,12.739,11.387,11.665,11.514,11.525,11.666],"paint":[38.417,39.899,38.795,38.864,38.278,39.128,37.675,38.727,38.826,39.549,38.415,38.422,39.008,38.79,38.366]}}, -{"f":"mimbl-v0.10.4-keyed","b":"09_clear1k_x8","v":{"total":[12.983,12.971,13.254,13.126,13.532,13.254,13.156,13.222,13.202,13.191,13.706,14.002,12.924,13.012,13.568],"script":[11.525,11.554,10.821,10.929,11.343,11.58,11.813,11.48,11.716,11.32,11.342,12.058,11.622,11.535,11.285],"paint":[0.373,0.411,2.336,2.099,1.861,1.585,1.261,1.065,1.389,1.69,1.818,1.419,1.209,1.389,2.186]}}, -{"f":"mimbl-v0.10.4-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6542510986328125]}}, -{"f":"mimbl-v0.10.4-keyed","b":"22_run-memory","v":{"DEFAULT":[3.931391716003418]}}, -{"f":"mimbl-v0.10.4-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.9631032943725586]}}, -{"f":"mimbl-v0.10.4-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0493955612182617]}}, -{"f":"mimbl-v0.10.4-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.372708320617676]}}, -{"f":"mimbl-v0.10.4-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[51.07421875]}}, -{"f":"mimbl-v0.10.4-keyed","b":"42_size-compressed","v":{"DEFAULT":[15.107421875]}}, -{"f":"mimbl-v0.10.4-keyed","b":"43_first-paint","v":{"DEFAULT":[91.1]}}, -{"f":"miso-v1.4.0-keyed","b":"01_run1k","v":{"total":[60.727,60.496,60.732,58.257,58.723,60.996,59.611,60.586,59.803,59.199,60.265,58.79,60.11,58.644,60.041],"script":[25.861,27.164,26.194,25.161,25.711,26.751,26.116,26.374,25.825,25.476,26.565,24.83,25.862,24.893,26.535],"paint":[34.669,33.152,34.353,32.916,32.833,34.059,33.326,34.03,33.807,33.551,33.507,33.781,34.072,33.568,33.332]}}, -{"f":"miso-v1.4.0-keyed","b":"02_replace1k","v":{"total":[76.678,77.029,77.154,76.673,76.613,76.742,75.7,75.522,77.831,77.272,78.161,77.715,77.431,78.052,76.759],"script":[41.627,42.357,41.464,42.178,41.263,41.471,40.68,40.931,42.95,42.371,42.443,42.027,41.825,42.455,41.548],"paint":[34.856,34.492,35.376,34.321,35.164,35.093,34.841,34.419,34.7,34.732,35.532,35.517,35.433,35.43,35.028]}}, -{"f":"miso-v1.4.0-keyed","b":"03_update10th1k_x16","v":{"total":[63.858,63.193,61.614,61.177,65.872,66.522,63.802,60.953,61.668,65.894,63.518,60.137,59.972,62.174,63.036],"script":[48.085,45.077,47.099,45.876,49.504,49.028,45.874,45.161,46.954,48.431,45.994,45.496,45.172,44.993,45.156],"paint":[15.629,15.893,13.979,14.857,14.827,15.553,17.117,14.505,13.682,16.662,15.905,13.625,14.021,14.459,16.312]}}, -{"f":"miso-v1.4.0-keyed","b":"04_select1k","v":{"total":[43.453,47.531,47.738,46.274,45.996,45.063,46.707,48.365,47.119,46.76,42.49,47.122,45.237,42.925,50.622,46.048,47.375,47.017,42.525,48.298,43.84,46.438,50.683,46.913,46.983],"script":[38.293,41.547,42.026,41.507,39.891,39.087,40.837,41.836,41.232,39.139,38.083,40.937,39.688,38.095,44.551,38.428,40.659,40.344,38.801,41.004,39.805,40.177,43.614,40.972,40.097],"paint":[2.817,4.707,3.916,4.183,3.577,4.005,4.596,4.198,4.427,4.864,2.681,3.815,3.476,3.345,4.324,3.834,4.235,3.76,2.752,3.716,3.369,3.246,4.327,5.486,4.09]}}, -{"f":"miso-v1.4.0-keyed","b":"05_swap1k","v":{"total":[55.703,56.203,58.285,60.525,62.657,56.819,57.005,55.397,55.575,57.459,58.663,56.758,57.637,55.362,57.447],"script":[37.536,38.086,39.896,41.776,42.801,36.938,39.111,36.68,37.538,38.875,39.885,38.291,38.927,37.599,38.297],"paint":[18.011,17.311,18.225,18.604,17.984,18.815,17.741,17.61,17.893,17.235,18.359,17.706,17.037,16.786,18.124]}}, -{"f":"miso-v1.4.0-keyed","b":"06_remove-one-1k","v":{"total":[41.365,38.067,44.201,39.451,39.288,38.412,39.087,40.286,46.707,44.251,45.728,42.717,40.168,46.591,44.524],"script":[20.635,19.545,21.308,19.326,20.271,19.405,19.343,20.167,19.527,20.588,19.954,18.646,19.844,19.876,19.951],"paint":[15.44,15.257,16.887,15.347,16.301,14.993,15.427,15.654,15.499,17.061,15.491,15.406,15.799,15.961,17.511]}}, -{"f":"miso-v1.4.0-keyed","b":"07_create10k","v":{"total":[589.277,590.097,595.569,588.995,577.96,580.51,588.502,586.132,577.708,584.089,588.103,598.691,590.694,593.457,588.102],"script":[242.427,245.91,239.217,244.431,235.097,240.376,242.532,240.893,237.269,238.796,243.144,242.237,241.804,240.768,243.141],"paint":[344.688,342.08,354.264,342.441,340.681,338.041,343.836,343.038,338.304,343.176,342.833,354.369,346.755,350.531,342.831]}}, -{"f":"miso-v1.4.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[75.816,76.168,75.694,76.258,76.257,77.192,76.783,75.535,77.598,76.928,76.285,76.945,75.447,76.976,74.564],"script":[34.534,35.457,34.883,36.175,35.134,37.348,35.459,35.292,36.755,35.947,35.418,36.214,35.191,35.491,34.344],"paint":[40.989,39.919,40.524,39.789,40.472,39.545,41.033,39.943,40.557,40.388,40.315,40.435,39.778,41.173,39.926]}}, -{"f":"miso-v1.4.0-keyed","b":"09_clear1k_x8","v":{"total":[31.346,57.186,56.6,31.28,34.436,55.475,58.177,30.185,34.836,30.811,57.602,30.158,33.936,35.907,29.183],"script":[29.468,29.299,27.887,29.292,29.85,27.664,28.557,28.618,32.987,28.448,30.388,28.996,28.073,30.94,27.478],"paint":[1.455,3.507,2.836,1.879,3.128,3.269,3.258,1.466,1.369,1.625,2.732,1.08,2.355,3.565,1.628]}}, -{"f":"miso-v1.4.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[2.749173164367676]}}, -{"f":"miso-v1.4.0-keyed","b":"22_run-memory","v":{"DEFAULT":[8.448274612426758]}}, -{"f":"miso-v1.4.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.792001724243164]}}, -{"f":"miso-v1.4.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[8.573907852172852]}}, -{"f":"miso-v1.4.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[49.43765068054199]}}, -{"f":"miso-v1.4.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[442.8408203125]}}, -{"f":"miso-v1.4.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[90.6025390625]}}, -{"f":"miso-v1.4.0-keyed","b":"43_first-paint","v":{"DEFAULT":[661.5]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"01_run1k","v":{"total":[40.356,40.762,40.366,40.593,41.136,40.595,40.749,40.999,41.75,40.955,40.107,41.85,40.625,42.04,40.762],"script":[7.622,8.144,7.413,7.709,7.701,7.426,7.639,7.525,8.178,7.842,7.41,8.191,7.658,8.469,7.981],"paint":[32.339,32.221,32.545,32.467,32.831,32.765,32.696,33.086,33.164,32.7,32.284,33.227,32.529,33.167,32.374]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"02_replace1k","v":{"total":[50.359,48.134,48.348,48.64,48.713,48.473,48.999,49.036,48.15,49.666,47.907,48.361,47.758,48.847,48.865],"script":[15.179,14.34,14.209,14.639,14.608,14.502,14.203,14.324,14.162,14.881,14.217,14.44,14.2,14.84,15.163],"paint":[34.753,33.367,33.723,33.582,33.683,33.556,34.37,34.247,33.564,34.349,33.266,33.448,33.143,33.604,33.3]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"03_update10th1k_x16","v":{"total":[31.602,31.979,31.318,30.696,29.653,31.971,30.409,30.735,31.75,29.743,30.404,31.497,29.142,29.633,31.192],"script":[11.404,10.079,10.407,10.196,9.75,10.228,10.633,10.889,10.471,10.258,10.059,10.781,10.13,9.579,10.535],"paint":[18.896,20.014,19.182,18.628,18.244,19.539,18.096,18.742,19.361,17.447,18.674,19.002,17.695,18.884,19.351]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"04_select1k","v":{"total":[13.354,13.593,13.945,14.225,14.101,13.768,13.998,13.059,14.064,13.475,13.91,13.985,14.199,13.314,13.812,13.537,14.214,13.792,13.5,14.199,13.256,14.216,13.331,13.537,13.543],"script":[6.691,7.235,7.206,7.653,7.7,7.465,7.481,7.154,7.166,7.887,7.331,7.206,7.742,6.855,7.437,7.192,7.964,7.542,7.595,7.625,6.926,8.055,6.721,7.066,7.613],"paint":[5.43,6.22,6.561,6.426,5.53,5.812,5.613,5.273,5.904,5.433,5.927,6.198,6.136,6.295,5.301,6.178,6.1,5.955,5.256,5.379,5.235,4.829,5.39,6.302,5.769]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"05_swap1k","v":{"total":[26.59,27.26,25.492,25.857,25.496,25.397,26.999,26.145,25.711,28.81,25.23,25.287,26.376,31.134,25.107],"script":[7.78,7.066,7.376,7.447,6.77,6.778,7.277,7.391,7.348,7.457,6.585,6.824,6.838,7.136,6.771],"paint":[17.311,17.655,16.157,16.616,16.09,16.975,18.445,17.03,16.48,19.301,17.215,16.822,17.975,20.777,16.744]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"06_remove-one-1k","v":{"total":[19.205,20.213,20.705,19.984,19.613,19.485,19.024,20.279,21.021,19.535,19.261,19.327,19.421,21.341,19.239],"script":[3.87,4.319,4.372,4.291,4.053,4.252,4.14,4.277,4.909,4.265,4.156,3.991,4.095,5.038,3.921],"paint":[13.889,15.101,15.575,14.901,14.667,14.304,14.14,14.47,15.021,14.53,14.362,14.444,14.401,15.247,14.571]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"07_create10k","v":{"total":[423.978,419.91,424.656,422.502,421.267,422.318,426.637,425.252,424.03,420.921,422.956,423.784,421.014,422.288,427.104],"script":[86.951,80.231,91.282,81.255,81.299,81.052,91.577,82.266,82.279,82.552,81.092,81.919,81.125,80.415,93.892],"paint":[330.484,333.177,326.824,334.686,333.641,334.828,328.525,336.14,334.862,331.773,335.311,334.506,333.406,335.281,326.679]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.916,51.148,49.369,50.618,49.664,50.163,50.447,51.287,50.904,51.248,52.611,50.411,50.864,51.084,51.008],"script":[11.15,11.291,11.029,11.436,10.991,11.253,11.019,11.546,11.405,11.561,11.525,11.26,11.257,11.497,11.239],"paint":[38.866,38.979,37.48,38.307,37.806,38.025,38.552,38.861,38.64,38.836,40.18,38.258,38.756,38.738,38.909]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"09_clear1k_x8","v":{"total":[18.525,19.032,18.711,18.332,18.089,18.612,19.737,19.067,17.694,19.222,17.672,18.483,18.941,18.486,19.29],"script":[16.844,16.863,17.569,16.782,16.198,17.249,17.751,17.391,15.547,17.324,15.33,17.522,16.753,16.997,17.362],"paint":[1.583,1.717,1.055,0.331,1.795,1.282,1.902,1.587,1.15,1.059,2.143,0.339,2.098,1.396,1.841]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4845848083496094]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"22_run-memory","v":{"DEFAULT":[3.2996416091918945]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.3216657638549805]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7298898696899414]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[27.54134178161621]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[23.736328125]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.32421875]}}, -{"f":"misojs-v1.1.0.0-keyed","b":"43_first-paint","v":{"DEFAULT":[74.2]}}, -{"f":"mithril-v2.2.2-keyed","b":"01_run1k","v":{"total":[47.634,42.793,45.824,47.971,42.647,48.969,42.282,41.431,51.063,46.072,46.854,48.095,49.33,43.545,49.489],"script":[9.17,8.409,8.602,8.57,9.247,8.58,9.031,8.464,9.065,9.236,8.566,8.348,8.356,8.539,8.576],"paint":[34.788,34.253,32.58,32.436,33.264,32.936,33.117,32.734,34.363,33.875,32.432,32.452,32.658,32.302,32.756]}}, -{"f":"mithril-v2.2.2-keyed","b":"02_replace1k","v":{"total":[50.988,54.014,54.043,49.114,52.177,53.897,46.431,52.378,52.205,51.091,52.617,53.378,48.334,52.338,55.097],"script":[12.027,12.013,12.062,11.945,11.954,12.238,11.819,12.353,11.786,11.843,12.248,12.151,11.641,11.675,12.093],"paint":[34.199,34.61,34.769,34.612,34.297,35.076,34.472,34.974,34.094,34.73,33.836,36.306,34.687,36.524,35.591]}}, -{"f":"mithril-v2.2.2-keyed","b":"03_update10th1k_x16","v":{"total":[26.675,43.446,26.941,42.516000000000005,43.613,43.268,42.719,43.983000000000004,28.69,29.229,44.485,43.984,28.535,42.56,43.03999999999999],"script":[12.134,12.87,10.265,12.213,13.282,12.182,12.045,12.661,11.977,12.12,13.732,13.415,12.435,12.558,12.84],"paint":[14.437,14.537,15.428,14.259,13.969,15.017,13.891,16.011,15.337,15.663,14.778,13.341,15.055,13.96,14.159]}}, -{"f":"mithril-v2.2.2-keyed","b":"04_select1k","v":{"total":[15.891,13.581,13.979,14.656,14.528,16.255,17.546,13.023,13.025,14.043,12.692,16.567,15.036,15.826,16.072,14.808,13.113,13.682,13.786,12.907,13.21,13.861,12.959,16.417,12.888],"script":[10.052,10.448,11.177,10.488,9.998,10.915,11.118,10.977,9.818,10.752,9.651,10.435,11.385,10.346,10.973,11.852,10.503,10.569,11.215,9.449,10.176,9.825,9.809,11.45,10.089],"paint":[2.409,2.47,2.656,2.356,2.583,2.339,2.922,1.193,3.052,2.722,2.271,1.797,3.464,2.981,1.469,2.07,1.583,2.974,2.42,2.641,2.286,2.265,2.628,3.436,2.657]}}, -{"f":"mithril-v2.2.2-keyed","b":"05_swap1k","v":{"total":[45.558,44.036,42.81699999999999,29.004,29.118,29.809,30.74,44.342,29.882,45.339,31.113,27.334,27.824,28.669,44.434],"script":[10.905,10.709,10.015,11.134,12.427,10.439,11.548,11.335,11.74,11.709,11.175,9.096,9.87,10.384,10.812],"paint":[18.245,17.278,17.314,17.763,16.574,17.852,18.311,16.962,18.027,17.584,17.722,17.05,17.134,17.122,17.583]}}, -{"f":"mithril-v2.2.2-keyed","b":"06_remove-one-1k","v":{"total":[19.233,21.681,26.031,19.07,21.642,23.232,25.366,19.805,19.036,26.455,20.33,24.023,24.503,24.845,19.044],"script":[5.796,5.516,5.482,5.663,5.697,5.499,5.66,6.098,5.218,5.749,5.901,5.784,5.595,5.157,5.637],"paint":[12.886,12.936,13.278,13.279,12.993,13.297,12.99,13.57,13.235,13.017,13.173,13.754,13.961,12.912,13.277]}}, -{"f":"mithril-v2.2.2-keyed","b":"07_create10k","v":{"total":[432.078,435.419,452.887,439.009,435.599,432.803,432.592,429.483,435.698,430.839,436.861,437.713,436.278,431.583,431.954],"script":[100.779,103.427,102.123,101.944,100.451,101.361,100.521,100.936,103.083,101.381,101.273,103.204,101.014,101.214,100.73],"paint":[327.329,329.709,344.253,329.164,327.159,329.433,326.012,326.378,325.945,326.208,327.574,330.496,328.94,326.7,323.637]}}, -{"f":"mithril-v2.2.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[56.035,56.442,56.897,59.482,55.894,56.624,56.518,56.307,56.575,59.263,56.638,55.774,56.557,59.893,62.223],"script":[12.013,12.186,12.404,12.134,11.988,12.531,11.844,11.751,12.081,12.149,11.897,12.341,12.058,12.406,12.439],"paint":[38.209,37.755,37.9,37.825,37.901,37.614,38.157,37.763,37.591,37.645,38.208,37.488,37.988,38.27,38.263]}}, -{"f":"mithril-v2.2.2-keyed","b":"09_clear1k_x8","v":{"total":[15.747,16.083,16.167,17.676,31.147000000000002,15.715,32.686,16.462,32.021,16.908,32.338,18.603,16.441,32.605999999999995,14.417],"script":[14.969,14.403,14.605,15.404,13.463,14.73,14.921,14.197,15.03,14.489,14.782,14.103,14.238,15.308,13.002],"paint":[0.724,1.626,1.506,1.148,1.701,0.932,1.229,2.206,1.751,1.447,1.564,1.836,1.521,0.836,1.029]}}, -{"f":"mithril-v2.2.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5743188858032227]}}, -{"f":"mithril-v2.2.2-keyed","b":"22_run-memory","v":{"DEFAULT":[4.0134172439575195]}}, -{"f":"mithril-v2.2.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.446412086486816]}}, -{"f":"mithril-v2.2.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9963178634643555]}}, -{"f":"mithril-v2.2.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[32.59645462036133]}}, -{"f":"mithril-v2.2.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[37.951171875]}}, -{"f":"mithril-v2.2.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[11.7041015625]}}, -{"f":"mithril-v2.2.2-keyed","b":"43_first-paint","v":{"DEFAULT":[79.9]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"01_run1k","v":{"total":[41.781,40.526,40.669,40.635,40.956,40.936,40.73,40.652,39.911,41.695,41.421,40.347,40.658,41.447,41.034],"script":[7.947,7.795,8.071,7.835,8.09,7.805,7.984,7.973,7.718,8.078,7.972,7.694,7.923,8.379,7.955],"paint":[33.413,32.323,32.175,32.383,32.455,32.695,32.333,32.272,31.78,33.207,33.001,32.245,32.312,32.643,32.648]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"02_replace1k","v":{"total":[44.977,45.078,44.613,45.252,44.253,44.975,44.205,44.248,44.025,44.212,44.231,45.449,44.665,44.125,44.603],"script":[10.169,10.378,9.99,10.636,9.866,10.061,9.911,9.692,9.656,9.677,9.807,10.647,9.848,9.703,9.899],"paint":[34.341,34.256,34.206,34.18,33.944,34.474,33.86,34.126,33.936,34.125,34.007,34.383,34.38,33.998,34.277]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"03_update10th1k_x16","v":{"total":[17.332,17.344,17.372,17.651,17.442,16.712,16.929,17.457,16.979,16.856,17.433,17.755,18.157,17.199,17.067],"script":[2.271,2.193,2.704,2.433,1.841,1.687,1.732,1.899,2.127,2.145,2.387,1.985,2.579,1.588,2.394],"paint":[13.793,13.241,13.364,14.213,13.784,13.18,13.311,13.719,13.624,13.97,13.821,14.165,14.449,14.862,13.398]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"04_select1k","v":{"total":[3.399,2.809,3.476,2.995,3.472,3.294,3.455,3.014,3.784,2.947,4.931,3.264,3.633,2.95,3.145,3.029,3.071,3.179,2.37,2.925,3.447,3.467,3.447,5.336,3.067],"script":[0.885,0.917,0.926,0.625,1.136,0.933,1.121,0.546,1.135,0.898,1.274,0.574,0.892,0.317,0.92,0.925,0.936,0.928,0.669,0.187,1.114,0.902,0.729,0.63,0.193],"paint":[2.416,1.381,2.275,1.379,2.24,0.904,1.318,1.565,1.35,1.259,1.623,2.583,2.622,2.358,1.426,1.359,1.464,1.599,1.16,2.245,2.236,2.467,1.566,1.778,2.771]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"05_swap1k","v":{"total":[19.674,20.095,19.752,19.587,20.293,19.548,20.23,20.044,19.684,19.252,20.746,18.988,19.664,19.282,19.55],"script":[1.846,2.084,2.441,1.437,2.162,1.822,2.549,1.967,2.259,1.832,2.015,2.107,2.112,1.632,1.937],"paint":[16.489,17.209,16.268,17.219,15.991,16.356,16.982,15.984,16.398,16.028,16.977,15.378,16.294,16.683,16.286]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"06_remove-one-1k","v":{"total":[15.642,16.293,15.969,15.334,15.439,15.883,16.568,15.477,15.709,15.37,15.876,15.704,15.345,15.964,15.962],"script":[0.901,0.776,0.761,0.761,0.751,0.973,0.951,0.728,0.727,0.749,0.719,0.948,0.758,0.946,0.952],"paint":[13.801,14.284,14.258,13.885,13.945,14.482,14.841,14.076,14.207,13.911,14.419,13.926,13.883,14.163,14.101]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"07_create10k","v":{"total":[429.274,422.082,420.231,420.667,424.566,425.84,416.727,425.105,421.407,421.376,419.273,424.472,422.037,424.011,424.615],"script":[84.903,86.23,84.974,86.618,89.437,88.889,86.244,88.764,86.049,84.259,85.824,89.865,87.42,85.846,85.466],"paint":[337.66,329.161,327.951,327.372,328.272,330.287,323.779,329.707,328.685,330.313,326.796,327.618,327.929,331.424,331.422]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[46.341,44.593,45.721,44.748,46.425,44.113,44.356,44.593,44.741,44.427,44.065,46.167,44.931,45.363,46.201],"script":[6.503,6.55,6.829,6.349,6.517,6.341,6.38,6.459,6.5,6.311,6.403,6.587,6.611,6.78,6.733],"paint":[38.958,37.185,38.045,37.532,39.032,36.925,37.114,37.274,37.387,37.25,36.767,38.702,37.463,37.732,38.583]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"09_clear1k_x8","v":{"total":[14.052,14.193,13.658,14.623,13.791,14.641,14.515,14.231,15.269,14.549,14.443,13.628,14.608,14.391,14.272],"script":[11.855,12.193,12.261,12.525,12.36,12.559,12.407,12.698,13.355,12.378,12.218,12.327,12.501,12.653,12.29],"paint":[1.833,1.913,1.012,2.006,1.334,1.18,2.007,1.209,0.935,1.061,1.595,0.862,2.014,1.236,0.992]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.859283447265625]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"22_run-memory","v":{"DEFAULT":[3.890012741088867]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.9146556854248047]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.2735843658447266]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[29.740550994873047]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[56.2529296875]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[15.5126953125]}}, -{"f":"mobx-jsx-v0.14.0-keyed","b":"43_first-paint","v":{"DEFAULT":[101.7]}}, -{"f":"mogwai-v0.6.5-keyed","b":"01_run1k","v":{"total":[39.757,39.711,40.704,38.908,38.719,37.903,40.648,38.572,41.552,38.377,40.011,39.619,39.907,40.462,40.198],"script":[6.752,6.711,6.918,6.501,6.59,6.279,7.017,6.417,7.028,6.634,6.818,6.732,6.761,6.784,6.813],"paint":[32.578,32.562,33.352,31.956,31.698,31.229,33.176,31.765,34.044,31.317,32.746,32.48,32.705,33.241,32.969]}}, -{"f":"mogwai-v0.6.5-keyed","b":"02_replace1k","v":{"total":[44.82,45.92,44.843,45.375,45.015,44.995,44.998,46.028,46.783,45.068,45.851,44.794,44.449,44.936,44.688],"script":[9.858,10.243,9.995,9.915,9.916,9.82,9.854,10.092,10.804,9.7,9.814,9.879,9.746,9.846,9.878],"paint":[34.503,35.16,34.404,35.002,34.636,34.733,34.706,35.401,35.527,34.948,35.596,34.448,34.272,34.571,34.352]}}, -{"f":"mogwai-v0.6.5-keyed","b":"03_update10th1k_x16","v":{"total":[18.365,16.526,16.316,17.132,17.117,16.414,16.818,16.795,16.69,16.485,16.775,16.928,17.094,16.663,16.862],"script":[1.693,1.166,1.434,1.736,1.244,1.302,1.767,0.956,1.471,1.704,1.739,1.408,1.549,1.286,1.165],"paint":[14.531,13.639,13.542,14.68,15.217,13.482,13.591,13.665,14.217,13.243,13.523,14.81,14.155,14.114,14.65]}}, -{"f":"mogwai-v0.6.5-keyed","b":"04_select1k","v":{"total":[3.489,3.28,3.895,3.045,3.404,4.274,3.72,2.739,2.973,2.831,3.395,2.924,2.698,3.397,3.182,3.698,2.973,3.705,2.619,3.521,3.833,3.202,3.447,4.396,3.031],"script":[1.267,0.986,0.859,0.204,1.072,1.12,1.026,0.903,0.909,0.881,1.14,0.909,0.188,0.962,0.748,1.143,1.002,1.175,0.729,1.01,1.314,1.022,1.174,0.938,1.089],"paint":[1.217,1.654,2.522,1.708,2.226,1.986,1.384,1.101,1.942,0.998,2.149,1.245,1.967,2.318,2.319,1.489,1.274,2.425,1.776,2.399,1.885,1.714,2.165,2.045,1.83]}}, -{"f":"mogwai-v0.6.5-keyed","b":"05_swap1k","v":{"total":[20.321,19.614,19.865,21.536,19.272,21.63,19.754,19.848,19.068,19.646,21.014,19.216,19.884,20.889,19.55],"script":[1.796,1.203,1.542,2.094,1.584,2.073,1.526,1.699,1.413,1.74,2.179,1.285,1.321,2.07,1.488],"paint":[17.073,17.696,16.852,17.87,16.506,18.213,16.832,16.563,16.518,16.616,16.963,16.921,17.567,17.334,16.724]}}, -{"f":"mogwai-v0.6.5-keyed","b":"06_remove-one-1k","v":{"total":[15.454,15.989,15.977,15.4,15.396,15.504,15.474,15.784,15.565,15.438,15.732,15.509,15.909,15.506,15.525],"script":[0.649,0.663,0.663,0.665,0.637,0.651,0.665,0.63,0.743,0.648,0.654,0.64,0.696,0.677,0.683],"paint":[14.086,14.544,14.56,13.737,13.745,13.69,14.079,14.439,13.928,14.065,14.291,13.516,14.463,13.758,14.077]}}, -{"f":"mogwai-v0.6.5-keyed","b":"07_create10k","v":{"total":[629.517,632.227,627.527,626.01,635.503,628.09,635.251,634.821,625.692,624.382,631.961,630.308,634.001,626.205,635.905],"script":[270.279,274.632,267.984,269.686,273.419,269.467,276.058,273.57,269.88,267.729,271.987,271.074,273.879,267.905,278.842],"paint":[352.39,350.844,352.79,349.734,355.392,351.854,352.517,354.634,349.066,350.002,352.569,352.56,353.422,351.424,350.252]}}, -{"f":"mogwai-v0.6.5-keyed","b":"08_create1k-after1k_x2","v":{"total":[76.132,76.444,76.303,76.152,75.927,76.369,75.188,76.161,75.685,76.405,76.661,77.001,76.258,76.668,75.814],"script":[35.825,35.972,34.574,35.467,35.232,35.625,34.845,35.059,35.326,35.242,35.98,36.328,35.781,36.01,35.332],"paint":[39.404,39.548,40.73,39.78,39.785,39.835,39.458,40.21,39.456,40.232,39.755,39.76,39.569,39.724,39.584]}}, -{"f":"mogwai-v0.6.5-keyed","b":"09_clear1k_x8","v":{"total":[19.676,18.254,18.286,20.208,19.72,18.805,18.268,18.534,19.002,17.961,18.304,19.843,19.728,18.443,18.309],"script":[17.444,16.4,16.298,18.351,17.319,17.335,16.449,16.576,17.249,16.767,16.52,18.284,17.767,16.606,16.45],"paint":[2.091,1.044,1.9,1.217,0.805,1.38,0.936,0.821,1.468,1.103,1.173,1.461,1.055,1.737,1.037]}}, -{"f":"mogwai-v0.6.5-keyed","b":"21_ready-memory","v":{"DEFAULT":[2.71176815032959]}}, -{"f":"mogwai-v0.6.5-keyed","b":"22_run-memory","v":{"DEFAULT":[9.673126220703125]}}, -{"f":"mogwai-v0.6.5-keyed","b":"23_update5-memory","v":{"DEFAULT":[9.806138038635254]}}, -{"f":"mogwai-v0.6.5-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[10.340605735778809]}}, -{"f":"mogwai-v0.6.5-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[72.76816654205322]}}, -{"f":"mogwai-v0.6.5-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[232.2216796875]}}, -{"f":"mogwai-v0.6.5-keyed","b":"42_size-compressed","v":{"DEFAULT":[66.2548828125]}}, -{"f":"mogwai-v0.6.5-keyed","b":"43_first-paint","v":{"DEFAULT":[388.4]}}, -{"f":"openui5-v1.120.0-keyed","b":"01_run1k","v":{"total":[41.101,41.141,42.142,41.837,42.352,40.339,42.669,40.93,40.205,41.725,42.536,40.469,42.982,43.87,42.144],"script":[8.107,8.134,9.045,8.467,9.01,8.011,8.346,8.129,8.211,9.018,9.027,8.113,9.366,8.028,8.243],"paint":[32.836,32.859,32.92,33.107,33.174,32.186,33.118,32.663,31.818,32.547,33.329,32.185,33.389,35.071,33.113]}}, -{"f":"openui5-v1.120.0-keyed","b":"02_replace1k","v":{"total":[48.72,48.198,48.053,50.956,48.738,49.906,50.178,50.907,50.802,50.374,50.842,50.383,50.043,50.219,49.452],"script":[23.083,22.758,22.617,24.08,22.801,23.667,23.225,24.209,23.661,23.964,24.177,24.015,23.469,24.171,22.715],"paint":[34.246,34.001,33.946,35.728,34.515,34.918,35.907,35.657,35.722,35.115,35.412,34.983,35.412,34.759,35.368]}}, -{"f":"openui5-v1.120.0-keyed","b":"03_update10th1k_x16","v":{"total":[47.121,47.105,51.014,50.38,49.647,48.265,51.668,47.634,47.621,47.443,51.459,47.843,46.076,49.506,47.224],"script":[33.194,32.825,33.685,33.141,31.54,33.511,34.047,32.769,33.067,32.444,33.814,32.966,32.217,32.569,33.443],"paint":[13.815,14.142,16.921,15.324,15.213,14.09,15.344,13.943,13.63,14.13,15.851,14.764,13.085,16.691,13.646]}}, -{"f":"openui5-v1.120.0-keyed","b":"04_select1k","v":{"total":[39.183,38.866,40.401,38.63,38.796,39.49,38.197,39.796,39.84,37.434,38.898,38.133,40.08,38.611,39.367,38.689,37.549,38.878,38.29,39.229,39.914,37.807,37.853,38.782,39.275],"script":[33.437,32.683,34.324,32.862,33.32,33.504,32.074,33.189,34.062,33.043,32.829,33.233,34.71,32.958,33.354,32.29,33.073,33.538,31.834,33.459,33.636,33.095,31.816,32.055,33.008],"paint":[4.722,3.746,5.286,4.262,4.583,3.987,4.144,3.871,3.029,4.026,4.915,3.825,3.891,4.066,4.169,3.519,3.634,3.41,3.657,3.297,4.199,3.291,4.766,3.952,2.223]}}, -{"f":"openui5-v1.120.0-keyed","b":"05_swap1k","v":{"total":[191.292,191.484,192.055,194.206,186.438,194.622,189.431,189.675,192.24,189.986,188.285,188.373,190.49,186.634,189.543],"script":[48.451,48.548,49.233,51.111,46.335,51.715,49.132,48.745,49.279,49.362,49.184,50.769,47.671,47.714,50.439],"paint":[142.485,142.753,141.088,142.789,139.55,142.567,140.101,139.257,141.567,140.442,138.816,136.264,142.267,137.97,136.848]}}, -{"f":"openui5-v1.120.0-keyed","b":"06_remove-one-1k","v":{"total":[94.448,96.298,93.666,96.538,95.909,91.565,97.817,98.343,95.563,97.997,98.182,93.447,96.212,101.017,95.938],"script":[23.817,24.636,23.412,24.822,24.082,23.292,25.615,27.004,23.921,24.329,25.476,23.657,24.218,26.093,24.398],"paint":[69.133,69.555,68.983,70.68,70.255,66.765,69.985,69.505,69.839,71.595,71.067,68.743,70.005,72.756,70.667]}}, -{"f":"openui5-v1.120.0-keyed","b":"07_create10k","v":{"total":[424.513,426.149,423.182,432.811,424.994,420.893,424.223,424.927,423.534,420.898,424.695,420.711,418.578,421.645,427.26],"script":[92.793,90.017,90.108,89.559,88.528,87.634,90.587,91.685,89.07,89.432,89.916,89.303,89.429,90.005,90.333],"paint":[329.473,333.89,330.893,340.88,334.385,331.118,331.485,331.136,332.272,329.395,332.543,329.216,326.948,329.494,334.729]}}, -{"f":"openui5-v1.120.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[55.757,56.155,54.772,55.243,55.303,55.669,54.204,55.266,56.451,55.365,55.578,55.926,54.172,55.007,54.538],"script":[17.105,16.924,16.359,17.051,16.897,17.317,16.658,17.052,17.467,16.681,17.606,17.128,16.563,17.231,16.526],"paint":[38.394,38.948,38.147,37.93,38.138,38.07,37.281,37.95,38.704,38.406,37.701,38.526,37.332,37.511,37.728]}}, -{"f":"openui5-v1.120.0-keyed","b":"09_clear1k_x8","v":{"total":[26.113,26.127,24.629,23.811,26.226,24.889,25.742,25.095,25.503,24.979,25.604,24.485,25.809,26.184,22.022],"script":[21.947,22.322,21.738,20.093,22.421,21.735,21.326,21.258,21.675,19.992,20.952,20.976,22.286,22.482,20.824],"paint":[3.143,2.527,1.715,1.655,2.857,2.926,3.271,1.631,2.916,2.724,2.785,3.283,1.735,2.363,1.119]}}, -{"f":"openui5-v1.120.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[3.442418098449707]}}, -{"f":"openui5-v1.120.0-keyed","b":"22_run-memory","v":{"DEFAULT":[4.975330352783203]}}, -{"f":"openui5-v1.120.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.029790878295898]}}, -{"f":"openui5-v1.120.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.923105239868164]}}, -{"f":"openui5-v1.120.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[16.360066413879395]}}, -{"f":"openui5-v1.120.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[885.857421875]}}, -{"f":"openui5-v1.120.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[211.6611328125]}}, -{"f":"openui5-v1.120.0-keyed","b":"43_first-paint","v":{"DEFAULT":[154.4]}}, -{"f":"owl-v2.2.6-keyed","b":"01_run1k","v":{"total":[39.647,40.684,39.481,42.935,44.136,46.562,40.784,41.624,40.958,40.596,39.736,44.6,40.982,44.424,40.194],"script":[6.442,6.957,6.145,7.195,6.348,6.522,6.874,7.233,6.961,6.787,6.276,7.307,6.842,7.518,6.396],"paint":[32.693,33.252,33.171,33.028,33.029,33.619,33.447,33.495,33.835,33.64,32.771,33.682,33.67,33.172,32.567]}}, -{"f":"owl-v2.2.6-keyed","b":"02_replace1k","v":{"total":[46.83,52.53,46.413,53.81,45.191,52.641,43.733,48.574,44.309,50.798,45.793,49.148,44.661,47.13,55.508],"script":[9.349,9.493,9.731,9.296,9.862,9.2,9.233,9.114,9.296,9.297,9.629,8.982,9.774,10.501,10.229],"paint":[35.186,35.668,34.828,35.441,34.858,35.411,34.342,33.762,34.509,33.916,34.304,34.108,34.725,34.919,36.255]}}, -{"f":"owl-v2.2.6-keyed","b":"03_update10th1k_x16","v":{"total":[25.464,24.802,25.462,25.21,25.052,26.482,23.724,24.407,25.243,24.228,24.36,23.794,24.711,24.717,25.677],"script":[10.491,9.824,10.459,10.262,10.67,10.574,8.818,9.236,10.694,9.99,9.127,10.116,10.618,9.838,10.644],"paint":[14.855,14.866,14.248,13.174,13.513,15.675,14.795,14.674,14.423,14.118,14.508,13.573,11.605,13.977,14.901]}}, -{"f":"owl-v2.2.6-keyed","b":"04_select1k","v":{"total":[10.218,9.622,9.845,10.07,10.398,10.006,11.618,10.441,9.912,9.9,9.497,12.746,10.261,12.039,10.551,10.276,9.929,10.53,10.558,10.097,9.737,10.464,9.902,12.462,10.214],"script":[7.588,7.446,7.676,7.271,7.415,7.791,8.946,7.096,6.791,6.918,6.741,10.46,6.623,9.443,8.002,7.66,8.019,7.608,8.735,7.575,6.965,7.626,7.39,9.88,7.687],"paint":[1.614,2.025,2.025,1.428,2.523,2.071,1.776,2.261,2.979,1.692,1.651,1.973,1.966,1.516,2,1.667,1.771,1.605,1.676,1.936,1.755,2.578,1.72,1.753,2.381]}}, -{"f":"owl-v2.2.6-keyed","b":"05_swap1k","v":{"total":[25.597,24.646,24.42,26.05,27.41,23.221,28.956,27.444,26.018,25.218,25.315,25.426,25.258,26.577,24.434],"script":[8.007,7.01,7.327,6.764,9.635,6.756,9.55,8.765,7.754,5.986,7.278,7.409,6.755,8.93,6.841],"paint":[16.549,16.867,15.443,17.048,17.629,15.772,18.537,17.73,17.49,17.639,17.45,17.25,17.882,17.07,17.469]}}, -{"f":"owl-v2.2.6-keyed","b":"06_remove-one-1k","v":{"total":[20.551,19.357,19.829,19.553,20.211,19.678,20.191,19.561,20.231,19.657,20.346,20.89,19.72,20.279,20.708],"script":[7.096,5.779,6.462,6.081,6.829,6.501,6.72,6.551,6.667,6.573,6.337,6.334,6.654,6.706,6.978],"paint":[12.976,13.13,13.214,13.341,13.226,13.039,13.283,12.602,12.776,12.908,13.469,13.443,12.631,12.933,12.976]}}, -{"f":"owl-v2.2.6-keyed","b":"07_create10k","v":{"total":[422.867,418.818,421.809,432.591,421.112,423.697,420.132,423.238,427.39,420.707,420.001,419.902,423.803,424.012,420.003],"script":[81.229,75.482,77.423,80.647,76.692,80.215,76.248,79.121,80.485,77.105,75.759,77.052,77.31,80.652,74.504],"paint":[339.466,341.213,342.262,349.857,342.334,341.385,341.814,341.979,344.732,341.467,342.099,340.739,344.399,341.279,343.407]}}, -{"f":"owl-v2.2.6-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.332,56.205,48.888,55.006,49.28,48.247,49.479,48.237,55.112,55.596,55.932,54.494,49.682,54.202,54.296],"script":[10.213,10.189,10.25,10.057,10.347,10.019,9.762,9.981,10.268,10.545,10.606,9.894,11.168,10.065,9.832],"paint":[38.314,39.07,38.327,38.759,38.634,37.898,39.396,37.985,38.824,39.126,38.749,38.348,38.247,38.139,38.273]}}, -{"f":"owl-v2.2.6-keyed","b":"09_clear1k_x8","v":{"total":[13.376,13.866,13.942,13.473,13.571,14.042,13.626,12.991,13.255,13.797,14.461,13.977,12.952,13.507,13.696],"script":[11.906,11.961,12.304,11.843,10.837,11.927,11.716,10.668,11.461,12.286,12.136,11.885,12.141,12.133,12.128],"paint":[1.41,1.846,1.576,1.572,2.677,1.962,1.845,1.342,1.731,1.434,1.925,1.302,0.409,1.313,1.516]}}, -{"f":"owl-v2.2.6-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.8110694885253906]}}, -{"f":"owl-v2.2.6-keyed","b":"22_run-memory","v":{"DEFAULT":[3.388789176940918]}}, -{"f":"owl-v2.2.6-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.335638999938965]}}, -{"f":"owl-v2.2.6-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.3706750869750977]}}, -{"f":"owl-v2.2.6-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[23.904423713684082]}}, -{"f":"owl-v2.2.6-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[78.703125]}}, -{"f":"owl-v2.2.6-keyed","b":"42_size-compressed","v":{"DEFAULT":[22.3466796875]}}, -{"f":"owl-v2.2.6-keyed","b":"43_first-paint","v":{"DEFAULT":[124.1]}}, -{"f":"plaited-v5.3.0-keyed","b":"01_run1k","v":{"total":[40.211,41.824,40.25,44.073,41.28,40.92,40.933,40.181,40.813,41.827,40.532,40.224,40.809,42.731,41.495],"script":[7.092,7.87,7.165,7.746,7.259,7.32,7.856,7.144,7.83,7.923,7.845,7.377,7.809,7.921,7.942],"paint":[32.679,33.524,32.655,35.861,33.576,33.157,32.63,32.581,32.552,33.463,32.256,32.404,32.567,34.381,33.105]}}, -{"f":"plaited-v5.3.0-keyed","b":"02_replace1k","v":{"total":[44.976,44.881,44.127,47.815,47.009,44.46,45.121,46.061,44.975,45.905,45.517,46.195,44.381,44.819,46.682],"script":[10.153,10.064,10.032,10.354,11.496,10.024,10.31,11.236,10.203,10.286,11.253,10.687,10.206,10.313,11.285],"paint":[34.367,34.366,33.653,36.995,35.083,33.972,34.351,34.378,34.319,35.195,33.823,35.072,33.702,34.069,34.942]}}, -{"f":"plaited-v5.3.0-keyed","b":"03_update10th1k_x16","v":{"total":[19.64,19.178,19.507,21.133,21.046,19.77,19.857,19.693,19.447,21.473,20.308,20.203,20.983,19.318,19.513],"script":[1.623,1.345,1.923,2.856,2.157,2.34,1.478,1.913,1.981,2.447,1.86,1.583,1.632,2.093,1.993],"paint":[16.175,16.37,13.997,17.085,17.387,16.443,17.396,15.57,16.45,17.134,16.825,15.938,17.556,16.005,14.834]}}, -{"f":"plaited-v5.3.0-keyed","b":"04_select1k","v":{"total":[2.634,3.686,3.408,3.127,6.188,3.378,3.352,3.059,4.044,3.162,3.499,3.415,3.228,2.692,5.929,2.887,4.55,3.606,3.353,3.33,4.818,2.846,3.735,3.983,3.848],"script":[0.245,1.231,0.912,1.092,0.955,1.183,1.168,0.711,1.195,0.945,1.12,1.177,1.243,0.997,0.977,1.05,1.102,0.9,0.942,0.613,1.296,0.807,1.125,0.934,0.228],"paint":[2.29,1.785,1.592,1.775,1.572,1.093,0.712,2.244,1.545,0.606,1.505,2.139,1.138,1.012,1.61,1.746,1.386,2.609,2.316,1.833,2.537,1.942,0.868,2.79,2.497]}}, -{"f":"plaited-v5.3.0-keyed","b":"05_swap1k","v":{"total":[19.318,20.182,19.654,19.906,20.322,19.205,19.311,21.201,19.756,20.178,19.065,20.145,19.909,19.374,20.314],"script":[1.784,2.007,1.781,1.757,1.443,1.066,1.52,2.241,1.539,1.725,1.047,1.541,1.25,1.561,0.899],"paint":[16.259,16.792,16.268,16.545,17.497,16.301,16.59,17.642,17.201,17.79,16.432,17.616,15.672,16.42,18.095]}}, -{"f":"plaited-v5.3.0-keyed","b":"06_remove-one-1k","v":{"total":[15.376,15.336,15.047,15.5,15.317,15.328,15.658,15.88,14.874,14.976,15.825,14.897,15.213,14.798,15.264],"script":[0.448,0.459,0.295,0.21,0.342,0.3,0.522,0.477,0.164,0.274,0.479,0.162,0.162,0.352,0.376],"paint":[13.985,13.901,13.924,14.71,14.249,14.41,14.46,14.732,13.995,14.016,14.912,14.048,14.303,13.766,14.189]}}, -{"f":"plaited-v5.3.0-keyed","b":"07_create10k","v":{"total":[433.926,429.587,424.964,425.369,426.959,426.123,423.77,432.145,422.794,417.981,427.002,424.52,420.645,426.585,424.653],"script":[89.854,86.775,84.601,84.444,85.801,83.361,84.671,90.492,83.599,82.708,85.983,85.102,82.176,88.018,87.624],"paint":[337.405,336.2,333.77,334.291,334.539,336.051,332.47,334.923,332.527,328.846,334.456,332.775,331.908,331.942,330.364]}}, -{"f":"plaited-v5.3.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[44.913,45.221,46.875,46.37,46.037,46.168,46.596,45.251,45.322,46.736,45.305,46.813,45.721,45.808,45.109],"script":[6.986,7.034,6.905,7.614,7.639,7.899,7.661,7.038,6.989,7.679,7.176,7.593,7.067,7.183,7.175],"paint":[37,37.302,39.072,37.795,37.503,37.343,38.005,37.291,37.413,38.175,37.2,38.265,37.691,37.685,37.081]}}, -{"f":"plaited-v5.3.0-keyed","b":"09_clear1k_x8","v":{"total":[13.562,13.189,13.927,13.285,13.777,13.453,13.168,13.661,14.134,13.509,13.555,13.498,13.963,13.553,13.495],"script":[11.148,11.682,11.525,11.876,11.602,10.968,11.366,11.914,12.163,11.921,11.611,11.704,11.306,11.667,11.879],"paint":[2.335,1.422,2.32,1.328,2.095,2.142,1.723,1.665,1.452,1.502,1.85,1.708,2.556,0.618,1.529]}}, -{"f":"plaited-v5.3.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5135564804077148]}}, -{"f":"plaited-v5.3.0-keyed","b":"22_run-memory","v":{"DEFAULT":[2.0155887603759766]}}, -{"f":"plaited-v5.3.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.196892738342285]}}, -{"f":"plaited-v5.3.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9635915756225586]}}, -{"f":"plaited-v5.3.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[13.527645111083984]}}, -{"f":"plaited-v5.3.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[13.2890625]}}, -{"f":"plaited-v5.3.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.1806640625]}}, -{"f":"plaited-v5.3.0-keyed","b":"43_first-paint","v":{"DEFAULT":[53.2]}}, -{"f":"pota-v0.9.98-keyed","b":"01_run1k","v":{"total":[48.465,49.053,50.127,50.224,49.549,48.442,49.6,48.408,49.253,47.754,49.58,48.284,48.04,49.03,49.564],"script":[14.492,14.664,15.3,15.791,14.864,14.966,14.949,14.864,15.164,14.588,15.535,15.085,14.913,14.684,15.28],"paint":[33.525,33.943,34.347,33.97,34.222,33.026,34.187,33.091,33.652,32.695,33.6,32.741,32.674,33.878,33.813]}}, -{"f":"pota-v0.9.98-keyed","b":"02_replace1k","v":{"total":[56.872,56.89,57.154,57.744,58.099,58.021,57.24,57.17,58.937,57.805,57.576,57.16,57.251,57.298,57.528],"script":[20.456,20.787,21.302,21.251,21.611,21.207,21.267,20.984,20.938,21.478,21.121,21.294,21.289,21.318,21.454],"paint":[35.94,35.649,35.408,36.044,36.019,36.37,35.512,35.705,37.533,35.864,35.991,35.376,35.509,35.504,35.628]}}, -{"f":"pota-v0.9.98-keyed","b":"03_update10th1k_x16","v":{"total":[17.456,16.515,18.746,17.815,17.619,17.827,17.958,17.272,19.29,18.189,18.093,17.847,17.608,17.427,17.524],"script":[1.68,1.046,2.324,1.216,0.983,1.002,1.662,1.134,1.865,1.746,1.49,1.779,1.354,1.455,1.488],"paint":[14.39,14.412,14.974,14.528,14.92,14.862,15.153,14.238,16.701,14.53,15.271,14.633,14.855,15.627,14.709]}}, -{"f":"pota-v0.9.98-keyed","b":"04_select1k","v":{"total":[3.649,2.655,2.672,3.037,3.199,2.526,6.833,2.463,2.56,3.017,2.693,2.783,3.196,4.426,5.723,4.476,3.423,4.233,2.867,2.583,4.072,3.739,2.552,2.597,2.888],"script":[0.892,0.083,0.077,0.614,0.078,0.087,1.04,0.079,0.077,0.536,0.085,0.082,0.871,0.08,0.076,0.086,0.081,0.08,0.983,0.077,1.01,0.082,0.087,0.075,0.078],"paint":[2.657,1.512,1.652,2.327,1.885,2.005,1.435,1.567,2.381,1.832,2.511,2.595,1.738,1.836,2.522,1.866,1.582,1.052,1.781,1.644,1.746,2.561,2.362,2.428,2.712]}}, -{"f":"pota-v0.9.98-keyed","b":"05_swap1k","v":{"total":[20.224,20.885,21.201,20.442,21.035,20.043,21.994,19.944,19.834,20.131,21.071,20.831,20.459,20.197,20.38],"script":[1.789,2.26,2.441,1.998,1.993,2.2,2.134,2.018,1.856,2.106,2.116,1.819,1.937,1.861,2.439],"paint":[16.823,16.476,16.958,17.799,17.944,16.816,18.312,16.598,16.573,16.65,16.728,17.558,16.81,16.728,16.797]}}, -{"f":"pota-v0.9.98-keyed","b":"06_remove-one-1k","v":{"total":[16.056,15.881,16.084,16.181,16.348,16.916,15.528,16.542,16.017,16.011,16.126,15.967,15.766,16.002,16.558],"script":[1.121,0.902,1.037,0.809,0.939,1.15,0.737,0.764,0.734,1.073,0.706,0.717,1.001,0.948,0.762],"paint":[14.17,14.235,14.483,14.337,14.507,14.68,14.039,14.507,14.246,13.884,14.734,14.241,14.015,14.291,15.03]}}, -{"f":"pota-v0.9.98-keyed","b":"07_create10k","v":{"total":[519.414,494.642,515.05,492.072,495.498,512.528,496.678,517.028,519.672,505.789,500.699,509.33,494.992,512.088,492.745],"script":[153.468,151.828,153.822,151.311,153.557,155.666,154.222,154.653,156.398,150.041,153.866,150.399,155.183,153.338,153.556],"paint":[358.178,336.015,354.275,333.711,335.197,349.966,335.359,355.452,356.619,348.944,340.078,352.146,333.084,351.992,332.489]}}, -{"f":"pota-v0.9.98-keyed","b":"08_create1k-after1k_x2","v":{"total":[56.479,55.832,56.838,56.374,54.504,51.731,55.946,55.192,54.47,54.725,55.164,56.141,56.69,55.62,55.616],"script":[15.837,15.552,16.424,15.314,15.015,14.564,15.539,15.384,15.762,14.975,15.297,15.075,16.797,15.641,16.382],"paint":[39.65,39.328,39.471,40.053,38.532,36.296,39.451,38.915,37.765,38.863,38.959,40.109,38.985,39.077,38.342]}}, -{"f":"pota-v0.9.98-keyed","b":"09_clear1k_x8","v":{"total":[26.329,24.84,26.123,26.691,25.538,26.407,27.476,26.052,27.055,25.869,25.567,24.357,25.552,26.335,27.211],"script":[23.745,23.545,24.117,25.287,24.298,24.532,25.581,23.101,25.955,23.715,24.175,22.652,24.063,24.811,25.213],"paint":[2.476,1.2,1.749,1.291,0.494,1.175,1.054,2.849,0.353,1.531,1.289,1.009,1.385,1.131,1.886]}}, -{"f":"pota-v0.9.98-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5481672286987305]}}, -{"f":"pota-v0.9.98-keyed","b":"22_run-memory","v":{"DEFAULT":[3.824146270751953]}}, -{"f":"pota-v0.9.98-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.9619321823120117]}}, -{"f":"pota-v0.9.98-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9521722793579102]}}, -{"f":"pota-v0.9.98-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[32.003286361694336]}}, -{"f":"pota-v0.9.98-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[15.58203125]}}, -{"f":"pota-v0.9.98-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.81640625]}}, -{"f":"pota-v0.9.98-keyed","b":"43_first-paint","v":{"DEFAULT":[55.6]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"01_run1k","v":{"total":[47.723,46.716,46.759,46.083,45.881,46.439,47.304,43.954,47.211,46.056,46.231,46.35,45.697,46.144,45.612],"script":[11.928,11.162,11.303,10.848,10.801,11.027,11.643,10.573,11.824,10.575,10.804,11.1,10.63,11.1,10.431],"paint":[35.332,35.099,35.013,34.787,34.624,34.965,35.208,32.947,34.955,35.027,34.989,34.778,34.62,34.623,34.723]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"02_replace1k","v":{"total":[52.606,53.306,53.344,53.49,53.53,53.755,53.301,53.479,53.633,52.533,53.305,52.944,52.797,53.393,53.09],"script":[15.461,15.451,15.702,15.934,16.095,15.848,15.979,15.821,15.875,15.682,15.834,15.675,15.79,15.735,15.595],"paint":[36.663,37.37,37.175,37.097,37.005,37.433,36.896,37.183,37.305,36.378,37.038,36.856,36.553,37.228,37.028]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"03_update10th1k_x16","v":{"total":[20.337,19.799,20.081,19.147,19.395,22.454,20.213,19.508,20.109,20.067,19.306,19.952,19.484,19.678,19.629],"script":[3.586,3.607,3.435,3.217,3.569,3.351,2.79,2.903,3.264,3.203,3.261,3.436,3.467,3.235,2.623],"paint":[15.221,14.245,15.337,14.671,14.158,17.55,16.183,14.93,15.813,14.69,15.015,14.277,14.795,15.008,15.716]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"04_select1k","v":{"total":[5.092,4.641,5.044,4.287,5.022,4.782,4.991,4.665,6.108,5.194,4.5,5.888,5.368,4.931,4.558,4.497,5.252,6.453,5.457,5.352,4.676,4.563,5.314,5.464,4.844],"script":[2.597,2.197,2.262,1.71,2.74,2.195,1.713,2.011,1.454,1.864,1.885,1.747,3.046,1.621,1.617,1.958,2.232,2.781,2.124,2.484,2.642,2.351,1.739,2.348,2.491],"paint":[1.17,1.821,2.539,2.427,1.059,1.592,2.159,2.158,1.702,3.19,1.514,3.171,0.963,3.172,2.791,1.704,1.822,3.054,3.178,2.625,1.171,2.059,3.442,1.559,2.206]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"05_swap1k","v":{"total":[159.786,163.215,160.967,166.84,158.757,163.545,162.271,160.635,163.791,161.777,160.895,159.6,163.443,161.331,157.581],"script":[17.385,15.322,16.82,17.525,16.642,18.529,17.233,16.526,17.134,16.564,15.701,16.235,17.377,15.996,16.283],"paint":[139.835,145.832,143.025,147.097,140.25,143.613,143.638,142.162,144.562,143.313,143.027,141.407,144.69,143.861,139.883]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"06_remove-one-1k","v":{"total":[16.226,16.214,16.187,16.825,16.185,16.759,16.843,16.125,17.692,16.395,16.572,16.666,16.376,16.803,16.714],"script":[1.197,1.071,1.117,1.125,1.086,1.235,1.256,1.08,1.163,1.017,1.048,1.246,0.967,1.246,1.233],"paint":[14.034,14.393,14.258,14.842,14.266,14.751,15.007,14.285,15.722,14.683,14.283,14.393,14.315,14.563,14.772]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"07_create10k","v":{"total":[458.303,454.318,451.333,455.584,454.383,455.596,454.839,457.269,453.851,449.742,459.386,454.806,457.388,455.432,455.417],"script":[110.28,110.978,109.775,114.533,111.873,110.187,111.712,111.289,112.551,112.035,110.808,110.556,110.278,114.262,111.194],"paint":[341.291,336.641,334.534,334.264,335.739,338.69,336.393,339.254,334.424,330.609,341.771,337.589,340.417,334.216,337.565]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.682,51.637,51.883,51.04,51.529,51.424,51.71,51.567,51.881,51.104,50.568,50.259,50.978,50.711,50.342],"script":[12.363,11.71,11.486,11.386,11.478,11.342,11.68,11.718,11.347,11.717,11.546,11.503,10.939,11.563,11.094],"paint":[39.46,39.043,39.49,38.768,39.184,39.192,39.166,38.99,39.608,38.536,38.171,37.885,39.134,38.284,38.365]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"09_clear1k_x8","v":{"total":[15.856,17.19,16.255,17.816,18.431,19.702,16.934,16.305,17.044,16.056,17.412,16.949,17.436,16.387,17.273],"script":[13.999,15.318,14.097,15.656,16.107,17.405,15.724,14.037,15.526,14.555,15.309,15.023,15.263,14.065,15.485],"paint":[1.746,1.78,2.05,2.069,1.938,2.207,1.127,2.008,1.433,1.413,1.998,1.096,1.826,1.797,0.956]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5350208282470703]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"22_run-memory","v":{"DEFAULT":[4.213216781616211]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.252847671508789]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.8135986328125]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[36.28910827636719]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[16.880859375]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.8271484375]}}, -{"f":"preact-classes-v10.19.3-keyed","b":"43_first-paint","v":{"DEFAULT":[72.1]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"01_run1k","v":{"total":[45.404,44.913,44.078,45.517,45.265,45.774,45.163,45.602,45.935,44.919,45.679,45.055,44.37,44.536,45.654],"script":[10.525,10.455,10.297,10.331,10.218,11.509,10.361,10.378,10.513,10.268,10.25,11.184,10.622,10.49,10.525],"paint":[34.45,34.02,33.365,34.724,34.619,33.835,34.385,34.759,34.99,34.215,34.986,33.446,33.329,33.636,34.742]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"02_replace1k","v":{"total":[53.507,53.549,54.256,53.638,52.871,52.695,52.077,53.746,52.977,53.434,52.75,53.063,52.643,52.721,53.432],"script":[17.023,17.118,17.097,16.907,16.681,17.183,16.764,17.274,16.928,17.194,16.879,16.92,16.631,16.854,16.905],"paint":[36.036,35.994,36.679,36.301,35.745,35.073,34.892,36.036,35.605,35.792,35.438,35.72,35.545,35.435,36.072]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"03_update10th1k_x16","v":{"total":[30.086,30.925,31.482,31.749,31.159,32.67,30.131,31.993,30.233,32.5,30.054,32.286,31.689,31.576,30.034],"script":[14.754,15.288,14.876,16.586,15.339,16.113,14.519,14.086,15.036,15.074,14.445,15.182,15.508,15.316,14.149],"paint":[13.555,14.142,14.406,13.632,14.383,15.237,14.501,15.518,13.238,16.208,14.399,15.469,14.625,14.731,14.261]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"04_select1k","v":{"total":[16.527,16.059,16.723,16.871,17.53,16.656,15.784,15.235,16.795,15.844,16.562,16.228,15.559,15.676,15.317,16.568,16.118,17.408,15.85,16.358,15.583,15.732,15.367,15.61,15.965],"script":[12.515,12.945,13.495,13.185,13.901,13.357,12.356,12.129,14.315,13.064,13.101,13.428,12.764,13.137,12.469,13.417,12.387,13.822,12.966,12.981,12.67,13.133,12.981,13.035,12.975],"paint":[2.898,2.824,3.02,3.489,2.392,3.131,3.219,2.152,1.499,1.638,2.8,1.838,1.572,1.698,2.164,2.983,2.618,2.601,2.537,2.771,2.717,1.491,2.22,1.917,2.362]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"05_swap1k","v":{"total":[32.223,31.359,29.986,31.116,31.266,31.017,31.558,31.259,33.914,31.989,32.276,31.737,33.275,31.551,31.917],"script":[12.464,12.52,11.772,12.218,11.988,11.594,13.466,12.244,13.25,13.653,14.07,12.78,13.511,12.884,13.159],"paint":[18.545,17.838,16.969,17.552,16.93,17.631,17.016,17.21,19.159,17.263,15.758,17.327,18.684,17.702,17.45]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"06_remove-one-1k","v":{"total":[21.883,22.246,21.827,22.127,22.253,22.321,21.677,21.865,22.242,22.199,21.721,22.168,22.419,23.245,21.62],"script":[6.531,6.914,6.675,6.843,7.022,6.751,6.796,6.859,6.86,6.876,6.399,6.874,6.778,6.781,6.667],"paint":[14.373,14.207,14.36,14.484,14.181,14.648,14.162,14.209,14.295,14.175,14.038,14.506,14.686,15.692,13.938]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"07_create10k","v":{"total":[451.102,452.318,452.721,452.232,456.505,456.017,455.549,464.031,449.544,448.051,450.151,451.345,452.541,450.992,452.288],"script":[113.711,113.149,112.984,116.289,117.526,116.338,113.36,111.18,113.842,110.736,109.565,107.972,114.057,114.296,111.724],"paint":[330.602,331.971,332.918,329.3,332.311,332.967,335.277,346.16,329.009,330.583,333.878,336.43,331.744,330.031,333.739]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[54.657,53.807,54.486,54.433,53.607,54.491,54.767,53.173,54.365,54.523,54.37,54.202,55.463,53.874,54.722],"script":[13.864,13.834,13.953,13.608,13.836,13.776,14.246,13.731,14.111,13.765,13.986,13.975,13.763,13.848,13.917],"paint":[39.896,39.093,39.631,39.914,38.896,39.809,39.635,38.536,39.359,39.849,39.469,39.345,40.801,39.105,39.904]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"09_clear1k_x8","v":{"total":[15.419,15.478,14.42,20.181,16.154,15.88,14.898,15.565,15.583,17.695,15.876,15.977,15.991,15.743,14.819],"script":[13.839,12.932,13.007,18.382,14.275,13.99,13.24,13.294,14.269,15.862,14.458,14.182,13.46,14.043,12.781],"paint":[1.106,1.735,1.312,1.683,1.058,1.32,1.565,2.118,1.226,1.742,1.332,1.685,2.44,0.777,1.162]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5328912734985352]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"22_run-memory","v":{"DEFAULT":[3.859455108642578]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.8814401626586914]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7076320648193359]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[32.82853031158447]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[14.18359375]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.5458984375]}}, -{"f":"preact-hooks-v10.19.3-keyed","b":"43_first-paint","v":{"DEFAULT":[55.7]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"01_run1k","v":{"total":[48.925,49.257,49.022,47.185,48.954,47.693,49.371,47.743,47.96,45.931,48.504,47.884,48.711,47.452,48.346],"script":[13.982,14.135,13.899,13.175,13.628,12.958,13.691,13.468,13.52,13.173,13.497,13.74,13.645,13.496,13.713],"paint":[34.488,34.693,34.688,33.586,34.9,34.304,35.26,33.846,34.007,32.326,34.581,33.692,34.637,33.536,34.222]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"02_replace1k","v":{"total":[53.661,53.339,54.167,54.26,53.693,54.609,55.156,53.347,53.158,55.802,54.143,53.932,54.834,54.802,54.516],"script":[18.122,17.797,18.279,17.937,18.027,18.115,18.21,17.516,17.734,18.249,18.008,17.744,18.269,17.899,17.302],"paint":[35.065,35.094,35.433,35.804,35.204,36.058,36.497,35.393,34.909,37.009,35.632,35.751,36.068,36.46,36.76]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"03_update10th1k_x16","v":{"total":[16.252,16.765,18.555,17.124,17.902,17.235,16.355,16.916,17.588,18.575,17.657,17.809,16.694,16.798,17.985],"script":[1.177,1.4,0.909,1.548,0.967,1.434,1.188,1.377,1.535,1.259,1.347,1.535,1.322,1.225,1.217],"paint":[13.13,12.791,16.023,14.133,15.13,14.342,13.824,14.155,14.012,15.774,14.756,14.885,14.181,14.52,15.425]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"04_select1k","v":{"total":[18.104,17.976,18.412,17.522,17.039,19.116,17.306,18.389,17.597,18.05,17.158,16.815,18.291,16.72,17.416,18.611,17.376,18.033,18.299,17.299,18.343,17.197,19.193,18.244,18.348],"script":[15.233,14.61,14.785,15.278,13.975,15.567,14.188,15.587,14.476,15.211,14.436,14.379,15.052,14.157,14.741,15.246,14.263,15.529,14.869,14.645,15.492,14.321,16.281,14.534,14.845],"paint":[2.042,2.291,3.003,2.066,2.094,2.854,2.275,1.858,2.539,1.865,2.114,1.952,2.559,1.918,1.605,2.71,2.403,2.336,3.262,0.946,1.961,2.706,1.519,3.106,2.585]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"05_swap1k","v":{"total":[33.431,35.081,33.956,33.984,35.431,34.822,32.978,34.286,35.561,34.051,35.658,34.117,33.578,34.954,33.691],"script":[14.814,15.996,15.235,13.735,16.548,14.618,13.734,14.649,15.258,15.372,15.004,15.416,14.847,14.24,14.681],"paint":[16.966,18.032,17.471,19.112,16.983,18.494,16.918,18.572,18.584,16.898,18.186,17.526,17.34,19.377,17.575]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"06_remove-one-1k","v":{"total":[22.79,22.691,22.761,23.563,23.676,22.336,23.066,22.91,23.783,22.845,22.916,22.761,22.828,23.55,23.384],"script":[7.537,7.504,7.505,7.975,7.426,7.34,7.619,7.627,8.384,7.632,7.972,7.871,7.925,8.311,8.12],"paint":[14.373,14.14,14.515,14.751,15.274,14.226,14.377,14.509,14.363,14.171,14.194,13.788,14.15,14.488,13.874]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"07_create10k","v":{"total":[460.981,463.876,465.758,465.257,462.054,463.861,457.033,472.274,456.111,457.466,470.102,462.214,468.384,469.298,462.381],"script":[121.851,121.018,121.092,119.246,115.76,118.882,117.343,121.529,115.239,112.955,121.032,119.662,121.795,121.132,119.404],"paint":[332.357,335.995,337.96,339.251,339.494,338.134,333.222,343.827,334.036,337.751,342.082,335.887,339.818,341.442,336.29]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[56.853,57.399,56.918,56.614,57.596,57.586,60.585,57.17,57.533,57.388,57.912,58.311,56.919,56.639,57.313],"script":[16.476,16.874,16.174,16.495,16.614,16.382,17.44,16.484,16.533,16.738,16.688,17.209,16.775,16.776,16.615],"paint":[39.455,39.668,39.814,39.23,40.048,40.319,42.22,39.763,40.029,39.768,40.295,40.174,39.216,38.975,39.788]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"09_clear1k_x8","v":{"total":[19.476,19.541,19.286,18.629,18.906,19.261,19.27,20.761,19.426,19.956,20.816,18.097,19.263,16.453,20.202],"script":[17.688,17.769,17.723,17.131,17.101,17.79,17.375,18.97,17.455,17.544,18.499,15.379,17.519,14.843,18.446],"paint":[1.685,1.403,1.47,0.388,1.501,1.377,1.44,1.689,1.818,1.376,1.582,1.851,0.803,1.498,1.645]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5656442642211914]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"22_run-memory","v":{"DEFAULT":[4.119643211364746]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.25888729095459]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7759189605712891]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[34.85250282287598]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[19.9599609375]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[7.2998046875]}}, -{"f":"preact-signals-v10.19.3 + 1.2.2-keyed","b":"43_first-paint","v":{"DEFAULT":[80.4]}}, -{"f":"qwik-v1.3.0-keyed","b":"01_run1k","v":{"total":[54.126,55.105,53.53,53.486,54.297,53.29,54.117,56.473,53.959,53.288,56.068,55.236,54.067,56.113,56.991],"script":[20.24,20.85,19.555,19.702,19.557,18.949,20.179,21.991,19.613,19.296,20.724,20.724,19.973,20.981,21.046],"paint":[33.722,34.112,33.818,33.634,34.6,34.198,33.791,34.326,34.203,33.837,35.194,34.352,33.952,34.983,35.797]}}, -{"f":"qwik-v1.3.0-keyed","b":"02_replace1k","v":{"total":[64.47,64.787,64.038,64.68,64.8,65.709,65.199,64.947,64.258,65.291,65.315,65.573,64.425,64.384,64.224],"script":[28.078,28.833,27.798,28.224,28.495,29.453,28.898,28.502,28.18,29.03,28.625,29.386,28.321,27.669,28.11],"paint":[36.217,35.781,36.057,36.285,36.127,36.076,36.128,36.268,35.9,36.093,36.512,36.006,35.943,36.542,35.934]}}, -{"f":"qwik-v1.3.0-keyed","b":"03_update10th1k_x16","v":{"total":[17.435,17.486,18.062,21.279,20.987,18.244,21.601,55.904,54.161,17.57,18.459,17.929,51.263,17.567,51.534],"script":[4.121,3.296,4.416,4.704,4.364,4.037,3.818,4.665,3.628,4.043,2.805,4.083,4.251,3.922,2.912],"paint":[13.2,13.622,12.862,14.112,16.129,13.782,16.229,14.547,14.427,13.42,12.237,13.735,12.902,13.291,14.786]}}, -{"f":"qwik-v1.3.0-keyed","b":"04_select1k","v":{"total":[8.985,16.221,7.256,4.192,3.546,13.345,12.971,9.995,8.778,10.553,5.897,5.616,8.74,7.003,10.112,11.003,9.014,8.624,12.655,5.657,3.823,9.712,5.32,9.25,10.421],"script":[2.369,2.652,2.393,1.19,1.591,3.208,2.758,2.11,1.82,2.992,1.821,1.425,2.431,2.815,3.212,3.362,2.274,1.761,1.374,1.311,1.66,2.592,2.242,2.707,3.129],"paint":[4.029,3.221,4.07,1.573,1.217,5.514,3.684,4.04,3.936,3.75,3.313,3.306,3.66,4.476,3.852,2.946,3.077,2.952,3.809,2.403,2.038,2.332,3.68,4.297,4.368]}}, -{"f":"qwik-v1.3.0-keyed","b":"05_swap1k","v":{"total":[24.638,24.628,24.093,24.564,23.794,24.673,24.866,24.956,62.682,24.182,26.175,23.425,61.51,24.209,23.715],"script":[7.84,7.164,6.689,8.065,7.447,7.448,7.763,7.614,7.524,7.81,8.851,7.406,7.232,7.727,7.583],"paint":[16.687,17.331,17.286,16.034,15.106,16.262,16.988,16.584,18.653,14.892,17.199,15.9,18.591,16.37,16.024]}}, -{"f":"qwik-v1.3.0-keyed","b":"06_remove-one-1k","v":{"total":[18.543,19.421,19.182,18.508,20.305,21.543,19.583,21.8,19.675,19.602,20.141,19.18,19.139,19.157,19.506],"script":[4.231,4.384,4.401,4.39,4.654,4.565,4.316,4.572,4.384,4.377,4.291,4.287,4.374,4.354,4.62],"paint":[13.477,13.983,13.397,13.415,13.9,15.248,13.476,14.749,13.803,13.548,14.087,14.037,13.336,13.068,13.984]}}, -{"f":"qwik-v1.3.0-keyed","b":"07_create10k","v":{"total":[545.781,543.271,540.742,545.971,543.863,553.363,544.012,546.329,548.303,552.98,540.37,543.265,538.398,538.832,540.701],"script":[201.097,200.339,198.444,200.78,201.422,209.709,203.14,201.44,205.009,205.11,199.066,199.903,196.461,198.087,199.438],"paint":[340.566,338.901,338.2,340.997,338.475,339.563,336.87,340.914,339.175,343.763,337.317,339.228,337.793,336.503,337.212]}}, -{"f":"qwik-v1.3.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[65.581,65.593,65.12,65.8,65.957,65.26,65.984,65.746,66.623,65.772,66.986,66.342,64.752,66.722,67.117],"script":[25.135,24.886,24.744,24.779,25.03,24.659,25.373,24.915,25.62,24.893,25.745,25.825,24.492,25.651,25.54],"paint":[39.546,39.777,39.446,40.049,39.963,39.646,39.655,39.918,39.994,39.899,40.259,39.62,39.347,40.115,40.596]}}, -{"f":"qwik-v1.3.0-keyed","b":"09_clear1k_x8","v":{"total":[26.296,25.694,21.846,22.742,26.59,29.463,25.804,25.708,24.324,25.249,22.155,21.813,27.834,22.277,24.404],"script":[19.674,22.184,19.838,20.267,22.561,20.87,22.226,22.228,19.932,21.021,20.311,20.105,21.448,20.15,21.051],"paint":[4.917,2.891,1.456,1.953,3.156,8.357,2.307,3.265,3.17,2.933,1.259,1.636,5.039,2.052,2.743]}}, -{"f":"qwik-v1.3.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.44002628326416016]}}, -{"f":"qwik-v1.3.0-keyed","b":"22_run-memory","v":{"DEFAULT":[8.420008659362793]}}, -{"f":"qwik-v1.3.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.594295501708984]}}, -{"f":"qwik-v1.3.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[7.347883224487305]}}, -{"f":"qwik-v1.3.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[71.96929550170898]}}, -{"f":"qwik-v1.3.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[59.6630859375]}}, -{"f":"qwik-v1.3.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[22.1943359375]}}, -{"f":"qwik-v1.3.0-keyed","b":"43_first-paint","v":{"DEFAULT":[46.3]}}, -{"f":"ractive-v1.3.6-keyed","b":"01_run1k","v":{"total":[58.978,58.936,60.319,60.083,60.615,59.725,59.657,61.131,59.151,58.85,58.856,59.691,59.917,60.248,61.216],"script":[25.362,25.864,26.682,26.959,25.203,25.655,26.19,25.681,26.263,24.701,25.118,26.396,26.17,26.083,25.792],"paint":[33.161,32.624,33.195,32.697,34.972,33.6,32.992,35,32.445,33.693,33.26,32.868,33.315,33.7,34.967]}}, -{"f":"ractive-v1.3.6-keyed","b":"02_replace1k","v":{"total":[66.544,68.277,67.37,67.381,67.187,65.525,67.196,66.744,68.744,67.782,70.039,69.479,66.663,65.736,66.637],"script":[30.54,32.125,31.499,31.745,31.542,29.902,31.589,31.245,32.565,32.083,34.798,33.436,31.051,31.087,31.308],"paint":[35.565,35.653,35.418,35.194,35.201,35.184,35.111,35.046,35.718,35.265,34.809,35.59,35.173,34.202,34.873]}}, -{"f":"ractive-v1.3.6-keyed","b":"03_update10th1k_x16","v":{"total":[19.668,19.23,18.74,18.902,19.82,20.468,18.793,18.711,19.243,18.577,20.633,19.582,19.608,19.231,19.711],"script":[3.842,3.644,3.572,3.397,4.183,3.896,4.026,3.655,3.713,3.114,3.69,3.778,3.723,3.644,4.035],"paint":[14.159,14.356,13.603,14.247,14.515,14.75,13.416,12.971,14.122,13.949,15.391,13.855,13.829,13.68,14.397]}}, -{"f":"ractive-v1.3.6-keyed","b":"04_select1k","v":{"total":[7.651,7.437,8.22,7.888,9.255,9.411,7.679,8.334,7.594,8.656,8.54,7.567,8.064,8.413,8.472,8.225,8.283,9.098,7.583,8.792,7.488,7.585,8.427,7.412,8.33],"script":[5.031,4.823,5.202,5.447,6.443,6.111,5.497,5.805,5.568,5.83,3.237,4.834,5.356,5.257,5.765,5.446,6.231,6.553,4.579,6.29,5.617,4.782,5.366,5.427,5.471],"paint":[1.56,1.681,2.887,2.292,1.515,3.128,1.513,1.594,1.16,1.976,1.629,2.39,2.353,2.491,2.036,1.763,1.191,1.598,2.87,1.539,1.58,1.907,2.919,1.121,2.256]}}, -{"f":"ractive-v1.3.6-keyed","b":"05_swap1k","v":{"total":[171.921,169.967,167.308,168.244,174.572,169.061,170.1,166.866,172.292,169.862,168.351,169.12,168.904,171.58,166.42],"script":[27.711,24.919,24.2,27.16,27.065,27.793,28.134,27.309,28.145,24.343,28.387,23.651,27.952,27.802,26.574],"paint":[141.673,144.327,141.939,139.187,144.724,140.045,140.508,138.409,142.449,143.429,137.623,144.113,138.915,141.861,137.798]}}, -{"f":"ractive-v1.3.6-keyed","b":"06_remove-one-1k","v":{"total":[20.348,20.835,20.225,21.099,20.554,21.791,21.21,21.313,20.3,20.346,21.141,20.141,20.324,20.405,20.235],"script":[5.395,5.117,5.023,5.747,5.276,5.812,5.616,5.192,5.272,5.032,5.724,5.015,5,5.513,4.79],"paint":[13.937,14.923,14.482,14.242,14.285,15.132,14.759,14.726,14.337,14.327,14.045,14.382,14.59,14.119,14.428]}}, -{"f":"ractive-v1.3.6-keyed","b":"07_create10k","v":{"total":[578.607,577.073,574.463,578.774,571.09,583.845,583.652,580.956,573.049,575.737,578.013,578.859,578.294,578.056,575.202],"script":[221.353,219.958,220.385,219.581,220.135,223.233,221.507,222.042,220.726,220.623,221.079,218.239,223.094,222.334,222.097],"paint":[350.504,350.579,347.393,352.218,344.358,353.887,355.583,352.104,345.507,348.364,350.126,353.777,348.448,349.006,346.492]}}, -{"f":"ractive-v1.3.6-keyed","b":"08_create1k-after1k_x2","v":{"total":[63.239,62.439,62.662,61.014,60.819,63.171,62.53,62.85,63.309,63.66,62.687,62.746,63.074,61.794,62.497],"script":[23.133,22.656,22.698,22.112,21.547,22.905,22.549,22.147,23.453,24.098,22.964,23.059,22.673,22.28,22.903],"paint":[39.228,38.893,39.103,37.998,38.38,39.374,39.152,39.809,38.965,38.684,38.818,38.77,39.484,38.628,38.712]}}, -{"f":"ractive-v1.3.6-keyed","b":"09_clear1k_x8","v":{"total":[31.476,29.51,30.173,31.142,30.788,29.532,30.687,30.152,32.726,29.793,30.774,31.998,31.085,31.238,30.697],"script":[29.487,27.931,28.889,28.683,28.923,27.656,28.958,28.276,30.151,28.082,29.099,29.903,28.354,28.896,28.191],"paint":[1.877,1.243,0.537,2.338,1.758,1.772,1.627,1.367,2.078,1.616,1.576,1.93,1.218,1.503,2.396]}}, -{"f":"ractive-v1.3.6-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.1126575469970703]}}, -{"f":"ractive-v1.3.6-keyed","b":"22_run-memory","v":{"DEFAULT":[8.731622695922852]}}, -{"f":"ractive-v1.3.6-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.912185668945312]}}, -{"f":"ractive-v1.3.6-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.5127601623535156]}}, -{"f":"ractive-v1.3.6-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[73.05740547180176]}}, -{"f":"ractive-v1.3.6-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[224.140625]}}, -{"f":"ractive-v1.3.6-keyed","b":"42_size-compressed","v":{"DEFAULT":[58.7353515625]}}, -{"f":"ractive-v1.3.6-keyed","b":"43_first-paint","v":{"DEFAULT":[314.4]}}, -{"f":"rax-v0.6.7-keyed","b":"01_run1k","v":{"total":[45.039,46.402,45.923,45.957,46.431,47.556,47.148,46.746,48.295,47.449,46.633,47.621,46.904,47.763,48.692],"script":[12.371,13.004,12.515,12.139,12.529,13.505,13.38,12.685,13.964,13.449,12.862,13.338,13.292,13.469,14],"paint":[32.26,32.977,32.998,33.405,33.484,33.637,33.333,33.639,33.891,33.595,33.348,33.852,33.191,33.912,34.26]}}, -{"f":"rax-v0.6.7-keyed","b":"02_replace1k","v":{"total":[54.732,56.387,54.409,55.581,54.892,55.174,55.022,55.207,55.549,55.261,54.985,55.191,55.964,54.034,54.218],"script":[18.02,18.911,17.905,18.093,18.126,18.388,18.216,18.234,18.624,18.384,18.336,18.21,18.61,18.28,17.752],"paint":[36.243,37.023,36.027,37.004,36.3,36.325,36.318,36.522,36.458,36.409,36.184,36.51,36.86,35.286,35.961]}}, -{"f":"rax-v0.6.7-keyed","b":"03_update10th1k_x16","v":{"total":[25.708,26.629,26.052,25.601,26.275,25.607,25.109,26.378,26.914,26.306,25.659,26.03,25.403,25.372,25.951],"script":[9.745,10.268,10.038,9.642,10.011,9.355,9.112,10.7,9.887,10.102,9.377,9.963,10.06,9.577,9.596],"paint":[14.884,14.777,14.59,13.774,15.027,14.422,13.856,14.01,15.11,14.301,14.62,14.088,13.941,13.986,14.711]}}, -{"f":"rax-v0.6.7-keyed","b":"04_select1k","v":{"total":[8.551,8.488,8.925,8.679,8.921,9.724,8.265,8.775,8.908,8.728,9.094,9.037,8.946,8.322,9.565,8.954,8.652,8.648,8.579,9.35,9.041,9.966,9.307,9.189,8.555],"script":[5.909,6.06,5.833,5.891,6.443,6.28,6.018,5.736,6.16,6.357,5.815,6.775,6.299,5.464,6.086,6.419,6.456,5.694,5.775,6.63,6.418,6.439,6.658,6.104,5.563],"paint":[1.429,2.067,2.394,1.673,1.988,2.299,1.042,2.544,1.825,1.231,2.198,1.475,2.476,1.792,3.296,1.691,2.045,1.861,2.298,1.977,1.641,2.551,1.651,2.924,1.872]}}, -{"f":"rax-v0.6.7-keyed","b":"05_swap1k","v":{"total":[166.442,165.955,162.086,159.779,165.459,160.11,158.41,156.561,158.107,156.789,160.214,160.826,154.68,160.56,161.377],"script":[20.959,20.057,20.399,19.959,19.245,19.626,20.728,18.987,20.185,20.021,19.621,21.145,19.257,20.528,19.858],"paint":[142.922,143.664,138.987,137.75,144.352,138.596,135.299,136.018,135.927,134.9,138.169,138.526,133.975,138.097,139.741]}}, -{"f":"rax-v0.6.7-keyed","b":"06_remove-one-1k","v":{"total":[18.652,18.36,17.817,17.441,17.929,17.846,17.455,18.244,18.458,17.871,17.853,17.852,17.604,17.776,17.874],"script":[3.086,3.172,2.981,2.956,2.959,3.056,2.776,3.086,3.089,3.083,2.871,3.049,2.877,3.029,2.914],"paint":[14.727,14.26,13.507,13.682,14.099,13.728,14.013,13.511,14.436,13.992,14.244,13.753,13.808,13.731,14.228]}}, -{"f":"rax-v0.6.7-keyed","b":"07_create10k","v":{"total":[508.3,505.225,513.663,506.268,501.621,503.468,503.519,503.367,499.826,499.998,506.732,506.709,505.595,506.695,507.947],"script":[169.851,164.867,166.872,167.263,165.385,168.594,166.802,165.717,167.324,164.658,170.912,171.053,172.825,174.619,172.112],"paint":[330.876,333.563,340.059,332.267,329.422,328.055,329.827,330.97,325.748,328.74,329.09,329.006,326.046,325.227,328.931]}}, -{"f":"rax-v0.6.7-keyed","b":"08_create1k-after1k_x2","v":{"total":[54.287,53.783,53.817,52.988,53.671,53.435,53.564,54.781,53.651,52.521,53.453,53.429,52.579,53.426,54.274],"script":[14.258,14.525,14.091,14.485,14.566,14.048,14.803,14.212,14.929,13.667,13.851,14.28,14.584,14.419,14.154],"paint":[39.043,38.371,38.835,37.605,38.179,38.494,37.881,39.654,37.839,37.924,38.729,38.198,37.091,37.938,39.229]}}, -{"f":"rax-v0.6.7-keyed","b":"09_clear1k_x8","v":{"total":[23.83,23.607,23.472,25.036,23.77,23.2,24.947,23.487,23.987,23.392,24.073,24.037,23.122,24.172,24.2],"script":[21.519,21.416,21.733,23.079,21.242,21.482,23.236,21.282,22.223,21.827,21.775,22.072,20.941,22.529,22.193],"paint":[2.194,2.082,1.64,0.975,1.309,1.628,0.779,2.112,0.805,0.816,1.349,1.851,1.896,1.544,1.901]}}, -{"f":"rax-v0.6.7-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6979312896728516]}}, -{"f":"rax-v0.6.7-keyed","b":"22_run-memory","v":{"DEFAULT":[4.464216232299805]}}, -{"f":"rax-v0.6.7-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.588055610656738]}}, -{"f":"rax-v0.6.7-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.092071533203125]}}, -{"f":"rax-v0.6.7-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[35.9394474029541]}}, -{"f":"rax-v0.6.7-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[64.025390625]}}, -{"f":"rax-v0.6.7-keyed","b":"42_size-compressed","v":{"DEFAULT":[12.8125]}}, -{"f":"rax-v0.6.7-keyed","b":"43_first-paint","v":{"DEFAULT":[109.7]}}, -{"f":"react-classes-v18.2.0-keyed","b":"01_run1k","v":{"total":[47.25,46.207,46.217,45.077,48.708,46.865,46.504,45.904,46.155,46.962,45.434,46.149,46.97,46.107,46.189],"script":[12.53,12.486,12.922,12.664,14.381,12.619,12.119,12.292,13.309,13.467,12.344,12.561,12.797,12.999,12.674],"paint":[34.292,33.22,32.88,31.978,33.904,33.822,33.896,33.153,32.423,33.053,32.69,33.173,33.747,32.722,33.122]}}, -{"f":"react-classes-v18.2.0-keyed","b":"02_replace1k","v":{"total":[52.138,50.227,50.807,51.631,50.754,51.603,51.301,51.559,50.409,50.672,50.766,51.861,52.298,50.75,50.863],"script":[15.657,15.654,15.755,16.458,15.354,15.252,15.638,16.67,15.109,15.403,14.778,15.195,16.534,15.988,15.515],"paint":[36.031,34.11,34.611,34.736,34.959,35.9,35.215,34.464,34.872,34.825,35.508,36.201,35.337,34.313,34.915]}}, -{"f":"react-classes-v18.2.0-keyed","b":"03_update10th1k_x16","v":{"total":[21.274,21.298,20.488,21.778,22.04,22.426,21.42,21.419,21.249,21.748,21.627,21.356,21.613,20.719,21.743],"script":[4.902,5.386,5.36,5.402,5.997,5.597,5.348,4.929,5.447,5.922,5.473,5.109,5.402,4.553,5.18],"paint":[15.054,14.247,13.56,15.356,14.657,14.947,14.647,13.985,13.818,14.364,14.714,13.551,14.893,14.846,14.062]}}, -{"f":"react-classes-v18.2.0-keyed","b":"04_select1k","v":{"total":[5.472,5.338,5.02,4.529,5.303,5.462,5.503,5.325,5.058,5.15,4.993,5.168,4.393,5.539,4.397,4.647,4.941,4.688,5.114,4.143,5.368,4.602,4.995,5.224,5.746],"script":[1.756,1.792,2.46,2.021,1.859,2.278,2.256,2.233,2.51,2.228,2.427,2.205,2.118,2.847,1.62,2.389,1.947,2.195,2.48,1.645,2.508,2.108,2.489,2.375,2.772],"paint":[3.543,3.402,2.404,1.868,3.286,2.91,2.598,2.946,1.573,2.764,1.986,1.794,2.041,1.506,2.677,1.689,2.891,2.38,1.625,1.97,1.966,2.349,1.731,1.687,2.07]}}, -{"f":"react-classes-v18.2.0-keyed","b":"05_swap1k","v":{"total":[163.517,166.54,163.678,162.34,176.203,164.046,166.196,168.874,166.948,158.221,163.882,164.892,162.742,170.941,164.726],"script":[22.74,23.512,21.867,22.183,26.205,23.374,22.802,24.155,22.946,21.474,21.895,22.344,22.203,21.805,24.001],"paint":[138.43,141.847,140.143,137.678,147.701,138.92,141,142.497,141.86,134.619,140.239,140.729,138.018,148.155,138.479]}}, -{"f":"react-classes-v18.2.0-keyed","b":"06_remove-one-1k","v":{"total":[16.478,16.613,16.631,16.937,16.321,16.671,17.511,16.709,16.994,16.6,16.647,16.608,16.465,16.6,16.721],"script":[1.411,1.864,1.396,1.704,1.568,1.47,1.439,2.097,2.074,1.344,1.595,1.857,1.35,1.581,1.614],"paint":[14.132,13.84,14.465,14.11,14.197,14.079,14.694,13.512,13.538,14.513,14.149,13.665,14.435,14.257,14.147]}}, -{"f":"react-classes-v18.2.0-keyed","b":"07_create10k","v":{"total":[604.174,602.282,608.651,612.663,606.132,591.195,611.422,613.726,609.165,607.946,607.124,612.31,611.294,608.015,601.239],"script":[252.625,249.246,254.533,255.338,254.292,252.086,253.44,249.549,253.012,255.092,251.355,255.93,255.877,249.15,249.095],"paint":[344.842,346.361,347.441,350.599,345.114,332.394,351.264,357.482,349.363,346.215,349.064,349.643,348.763,352.175,345.379]}}, -{"f":"react-classes-v18.2.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.876,50.563,50.124,51.154,49.819,50.819,50.549,52.545,52.708,51.667,52.618,52.241,51.046,50.918,51.095],"script":[12.64,12.824,12.42,12.954,12.422,12.96,12.324,13.354,12.833,13.135,12.875,12.4,12.684,12.35,13.328],"paint":[37.321,36.872,36.782,37.305,36.526,36.999,37.346,38.265,38.985,37.653,38.857,38.94,37.47,37.7,36.905]}}, -{"f":"react-classes-v18.2.0-keyed","b":"09_clear1k_x8","v":{"total":[15.938,16.065,16.64,16.942,15.792,16.147,16.172,16.635,15.729,16.037,15.492,16.47,16.567,16.454,15.426],"script":[14.273,14.388,14.485,15.039,13.767,14.221,14.376,14.84,14.191,14.407,13.345,14.583,14.924,14.624,13.484],"paint":[1.566,0.765,2.06,1.813,1.023,1.836,1.706,1.701,0.794,1.481,1.42,1.801,1.549,1.742,1.075]}}, -{"f":"react-classes-v18.2.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.9828319549560547]}}, -{"f":"react-classes-v18.2.0-keyed","b":"22_run-memory","v":{"DEFAULT":[4.446006774902344]}}, -{"f":"react-classes-v18.2.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.002538681030273]}}, -{"f":"react-classes-v18.2.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.9137592315673828]}}, -{"f":"react-classes-v18.2.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[32.24549961090088]}}, -{"f":"react-classes-v18.2.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[142.765625]}}, -{"f":"react-classes-v18.2.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[40.30859375]}}, -{"f":"react-classes-v18.2.0-keyed","b":"43_first-paint","v":{"DEFAULT":[211.4]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"01_run1k","v":{"total":[50.522,50.898,49.066,50.526,49.779,49.853,50.434,50.122,50.275,50.684,49.121,49.155,49.687,49.022,49.517],"script":[16.316,16.254,15.466,15.381,15.925,15.834,15.836,15.947,16.028,16.107,15.655,15.705,15.695,15.495,15.794],"paint":[33.771,34.18,33.166,34.699,33.412,33.581,34.163,33.715,33.789,34.118,33.032,32.999,33.563,33.055,33.263]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"02_replace1k","v":{"total":[57.889,59.459,57.793,58.894,57.915,58.617,57.701,57.281,58.563,58.168,58.038,58.262,57.717,58.543,57.466],"script":[21.818,21.63,21.354,21.884,21.713,22.335,21.707,21.409,22.183,21.867,21.788,21.751,21.348,22.12,21.868],"paint":[35.618,37.369,35.761,36.531,35.763,35.818,35.332,35.397,35.921,35.712,35.791,36.069,35.914,35.722,34.918]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"03_update10th1k_x16","v":{"total":[23.433,21.46,21.816,22.641,21.748,22.464,21.998,21.58,21.635,23.987,22.309,22.276,22.288,21.669,21.412],"script":[6.882,6.071,5.873,6.222,6.041,6.783,6.255,6.194,5.876,7.166,6.473,6.375,6.129,6.193,6.469],"paint":[15.005,14.082,13.779,14.842,13.739,14.4,14.429,13.953,14.133,15.23,14.078,14.389,14.931,13.815,13.389]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"04_select1k","v":{"total":[6.357,7.052,6.764,6.232,7.309,6.931,7.368,6.128,5.773,6.545,6.886,5.891,7.159,6.307,5.928,6.044,5.969,5.726,6.615,6.767,6.537,6.655,6.246,5.918,6.965],"script":[3.253,3.224,3.738,3.446,4.121,3.692,3.725,3.111,2.945,3.938,3.939,3.349,4.061,4.017,3.029,3.73,3.665,3.592,3.716,3.478,4.141,3.108,3.926,3.507,3.81],"paint":[2.251,2.995,2.878,1.933,3.018,2.117,3.299,2.868,2.685,1.667,2.69,1.958,2.325,1.384,2.788,1.724,1.299,1.273,2.354,3.137,1.533,3.395,1.428,2.302,3.002]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"05_swap1k","v":{"total":[168.22,164.143,166.527,162.349,165.415,167.007,166.226,170.328,167.3,162.733,164.057,162.113,163.236,168.31,161.927],"script":[25.602,24.143,24.55,24.399,23.02,25.715,25.24,27.353,24.092,21.87,24.879,22.595,21.931,25.218,23.453],"paint":[141.195,138.036,140.223,135.624,139.689,139.339,138.455,140.272,141.251,139.368,137.448,137.636,139.673,140.093,137.037]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"06_remove-one-1k","v":{"total":[16.664,17.238,16.76,16.661,16.697,17.097,18.358,16.96,17.102,16.701,17.144,17.286,17.166,17.227,16.842],"script":[2.229,2.172,2.028,2.181,2.228,2.305,2.146,1.949,1.83,1.981,2.035,1.916,1.873,1.903,1.934],"paint":[13.896,14.066,13.649,13.399,13.679,13.973,15.159,14.163,14.57,13.715,14.471,14.282,14.534,14.496,13.839]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"07_create10k","v":{"total":[639.42,639.716,638.98,641.245,640.537,640.707,640.793,646.569,641.548,643.455,634.619,639.904,643.276,636.022,643.448],"script":[283.096,282.277,282.736,281.815,283.631,283.662,285.61,285.186,284.168,283.933,281.941,283.715,284.119,282.12,283.065],"paint":[349.467,350.711,349.066,352.673,350.221,350.383,348.326,354.639,350.686,352.411,345.896,349.506,352.442,347.277,353.648]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[57.166,55.546,55.729,55.89,55.658,55.697,55.216,54.611,55.693,55.872,57.147,55.795,55.775,58.173,55.636],"script":[16.654,16.392,15.925,16.059,15.88,15.872,16.377,16.021,16.563,16.207,16.387,16.69,16.624,17.31,15.962],"paint":[39.68,38.115,38.884,38.973,38.713,38.98,37.763,37.707,37.987,38.611,39.523,37.987,38.06,39.717,38.8]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"09_clear1k_x8","v":{"total":[31.331,33.158,30.544,33.524,27.693,31.995,32.195,32.146,31.58,34.317,35.213,29.888,34.342,34.12,30.676],"script":[28.889,31.911,28.768,31.625,25.955,29.988,29.788,29.974,29.631,32.206,32.722,27.944,32.429,32.34,28.184],"paint":[2.3,1.146,1.666,1.791,0.867,1.897,1.977,2.05,1.841,1.925,2.324,1.844,1.798,0.868,2.371]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.0933589935302734]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"22_run-memory","v":{"DEFAULT":[6.80912971496582]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[7.349949836730957]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.055185317993164]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[54.09977436065674]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[168.4365234375]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[45.5029296875]}}, -{"f":"react-diagon-v18.2.0 + 0.14.3-keyed","b":"43_first-paint","v":{"DEFAULT":[247.4]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"01_run1k","v":{"total":[50.5,50.52,49.18,51.307,51.023,49.807,51.645,49.266,50.696,50.734,52.236,49.454,50.965,51.037,51.314],"script":[16.521,16.626,16.172,16.817,16.306,16.617,17.055,15.874,16.525,16.754,16.981,15.728,15.839,16.962,16.408],"paint":[33.556,33.475,32.589,34.044,34.295,32.771,33.911,32.968,33.749,33.551,34.811,33.289,34.709,33.664,34.478]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"02_replace1k","v":{"total":[61.428,61.591,63.377,60.082,62.53,61.205,61.809,62.505,60.579,60.404,61.197,59.927,60.512,61.689,60.274],"script":[25.788,26.016,25.78,24.809,25.381,24.909,24.96,25.122,24.765,25.24,25.125,24.111,24.293,24.88,25.459],"paint":[35.115,34.876,37.105,34.827,36.705,35.863,36.39,36.925,35.365,34.728,35.618,35.368,35.765,36.35,34.38]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"03_update10th1k_x16","v":{"total":[64.972,66.767,65.63,66.453,65.861,66.235,68.088,65.619,68.403,66.125,65.192,66.388,65.867,67.652,65.877],"script":[48.319,50.465,48.931,49.836,48.546,49.562,51.955,49.442,52.217,49.46,48.993,49.628,50.12,51.762,50.118],"paint":[15.173,15.17,14.049,14.983,15.131,15.142,14.692,14.952,14.356,14.541,14.856,14.806,12.823,14.07,14.394]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"04_select1k","v":{"total":[5.851,4.687,5.589,4.948,4.618,5.468,5.073,5.356,5.169,5.825,5.393,6.067,4.071,4.674,4.318,3.968,4.716,4.379,4.953,4.41,5.103,4.514,5.244,4.775,4.692],"script":[3.051,1.884,2.196,2.376,1.982,2.384,2.206,2.418,2.111,3.029,2.802,3.234,1.617,1.832,1.973,1.472,1.897,1.838,1.74,1.526,2.149,1.912,2.889,2.222,2.159],"paint":[1.933,1.683,2.328,0.626,1.596,2.555,1.941,2.559,2.906,1.786,2.456,1.914,2.35,1.976,2.231,2.387,2.711,1.513,2.66,1.804,1.868,2.449,1.49,1.999,1.205]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"05_swap1k","v":{"total":[211.8,211.795,208.655,211.716,210.396,213.441,208.921,212.622,209.872,210.29,215.435,213.266,210.209,215.069,217.925],"script":[69.812,73.056,67.444,69.56,70.154,71.59,68.449,71.597,69.135,69.676,71.378,73.281,69.373,71.273,71.953],"paint":[138.518,136.812,139.465,140.029,138.13,140.262,139.324,139.239,138.886,139.343,142.407,138.045,139.088,141.451,143.805]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"06_remove-one-1k","v":{"total":[38.451,37.477,37.843,37.667,41.279,39.413,39.56,38.896,40.652,39.449,39.718,40.382,39.482,40.653,40.03],"script":[22.455,22.338,22.211,22.449,24.563,23.849,23.096,23.631,24.764,24.032,24.19,23.807,23.642,25.076,24.644],"paint":[15.182,14.314,14.783,14.345,15.421,14.743,15.693,14.468,14.837,14.623,14.699,15.331,15.053,14.72,14.271]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"07_create10k","v":{"total":[625.412,623.897,623.279,625.589,623.224,627.404,619.959,624.683,621.949,630.092,624.015,620.807,619.524,624.388,620.127],"script":[267.14,268.667,268.17,267.762,263.714,267.393,264.441,269.614,268.415,270.427,266.527,266.927,267.013,267.561,266.46],"paint":[351.029,348.433,348.377,351.051,352.78,353.167,348.848,348.413,346.85,352.904,350.707,347.275,345.763,350.091,346.873]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[68.961,68.197,67.991,66.917,69.055,67.567,67.275,68.817,68.052,67.518,69.231,67.16,67.692,69.046,67.983],"script":[27.592,27.184,27.313,26.926,27.117,27.036,26.85,27.861,27.519,27.04,26.943,26.86,26.497,27.679,27.256],"paint":[40.453,40.127,39.772,39.114,41.048,39.653,39.537,40.062,39.631,39.572,41.347,39.37,40.299,40.459,39.833]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"09_clear1k_x8","v":{"total":[31.324,32.245,30.79,31.839,30.551,31.947,31.693,31.086,30.528,30.966,31.42,32.767,30.729,31.343,31.838],"script":[29.742,30.081,29,29.741,28.346,29.513,29.699,28.762,28.606,29.661,29.401,30.632,28.572,29.032,29.692],"paint":[1.034,2.037,0.89,1.794,1.722,2.317,1.888,2.219,1.433,0.846,1.224,1.568,2.026,2.182,1.505]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.0809307098388672]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"22_run-memory","v":{"DEFAULT":[5.885591506958008]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.649999618530273]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.9976491928100586]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[44.36443901062012]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[175.203125]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[48.84375]}}, -{"f":"react-focal-v18.2.0 + 0.9.0-keyed","b":"43_first-paint","v":{"DEFAULT":[261.3]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"01_run1k","v":{"total":[46.367,45.57,46.277,45.856,45.767,45.767,45.195,44.58,45.812,46.745,46.716,45.72,45.936,45.569,46.525],"script":[12.601,11.905,12.073,12.396,11.519,11.831,11.974,11.785,11.804,12.756,12.622,12.621,12.344,11.832,12.531],"paint":[33.349,33.249,33.782,33.038,33.826,33.513,32.821,32.391,33.611,33.565,33.596,32.668,33.191,33.308,33.582]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"02_replace1k","v":{"total":[53.647,54.943,54.523,54.845,54.012,54.159,55.132,54.819,55.4,54.462,54.58,55.157,55.502,54.169,55.631],"script":[17.945,18.421,18.035,17.851,18.251,17.914,19.012,18.692,18.788,18.985,18.632,18.695,19.499,18.603,19.167],"paint":[35.243,36.062,36.044,36.531,35.301,35.755,35.642,35.642,36.161,35.027,35.473,36.018,35.545,35.119,35.973]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"03_update10th1k_x16","v":{"total":[20.752,20.765,21.132,21.401,20.417,21.359,22.119,20.284,20.429,20.62,21.88,20.47,20.36,21.294,21.297],"script":[4.181,4.755,4.738,5.741,4.884,4.462,5.14,4.48,5.062,4.243,5.116,4.859,4.77,4.983,4.927],"paint":[14.803,14.73,13.858,14.038,14.231,15.734,15.272,14.125,14.085,14.506,15.295,14.626,14.996,14.313,14.643]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"04_select1k","v":{"total":[4.864,6.09,5.53,5.393,4.923,5.476,5.672,5.417,4.82,5.037,5.644,4.86,4.823,5.117,4.515,5.473,5.875,5.342,5.491,4.876,5.049,4.404,5.119,5.071,5.106],"script":[1.936,2.972,2.107,2.88,2.109,2.794,2.731,2.141,2.48,2.389,2.104,2.429,2.721,2.132,2.017,2.785,2.4,2.723,2.768,1.977,2.427,1.499,2.377,2.47,2.166],"paint":[1.999,2.152,2.623,2.014,2.698,2.528,1.787,2.615,1.532,1.794,3.193,1.627,1.971,2.637,2.027,1.83,3.297,1.45,1.9,2.751,2.511,2.805,2.08,1.713,1.79]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"05_swap1k","v":{"total":[167.54,167.294,166.966,164.893,162.554,161.005,167.174,167.78,166.262,164.217,169.335,162.507,166.682,164.297,164.987],"script":[24.594,23.619,24.43,25.255,24.27,22.68,24.237,23.439,23.173,23.657,23.232,23.066,24.277,24.504,24.104],"paint":[139.874,141.862,139.899,137.67,135.891,136.004,140.974,141.985,141.419,138.653,144.07,137.104,141.131,137.896,138.799]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"06_remove-one-1k","v":{"total":[16.646,17.025,16.892,17.863,16.659,17.112,17.846,16.733,16.725,17.586,17.229,16.78,17.159,16.968,16.796],"script":[1.757,1.627,1.548,2.062,1.422,1.994,1.815,1.76,1.453,1.577,1.767,1.593,1.783,1.678,1.787],"paint":[14.166,14.473,14.504,15.024,14.195,14.582,15.277,13.617,13.947,15.238,14.403,13.971,14.621,14.035,14.236]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"07_create10k","v":{"total":[599.892,606.806,609.48,599.32,599.805,611.254,610.531,592.18,602.657,608.289,608.219,608.499,598.481,610.171,594.276],"script":[248.958,252.754,249.371,249.448,244.406,255.755,250.966,247.461,248.589,251.099,251.695,255.119,242.969,253.991,248.53],"paint":[343.974,347.178,353.394,343.195,348.689,348.805,352.909,338.018,347.397,350.506,349.833,346.668,348.722,349.391,339.065]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.7,49.711,52.289,49.863,51.624,51.451,50.731,48.716,48.652,48.113,52.211,48.742,49.265,51.33,51.598],"script":[11.831,10.921,12.554,11.617,12.657,13.155,12.806,11.544,11.487,11.439,11.879,11.748,11.748,11.775,12.172],"paint":[37.908,37.919,38.829,37.317,38.052,37.454,37.003,36.282,36.293,35.784,39.376,36.112,36.637,38.651,38.52]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"09_clear1k_x8","v":{"total":[27.725,24.528,24.268,25.399,25.415,26.236,24.996,25.622,24.855,25.815,24.63,24.535,26.409,24.262,26.346],"script":[24.842,22.316,22.027,23.399,23.753,23.834,23.377,23.343,23.03,23.954,22.536,22.487,24.224,22.618,24.073],"paint":[2.179,2.089,1.847,1.689,1.562,2.294,1.502,2.171,0.976,1.767,1.999,0.952,2.083,1.548,1.335]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.9816980361938477]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"22_run-memory","v":{"DEFAULT":[4.423439025878906]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.998004913330078]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.8923816680908203]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[32.33227252960205]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[142.2705078125]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[40.0517578125]}}, -{"f":"react-hooks-v18.2.0-keyed","b":"43_first-paint","v":{"DEFAULT":[215.6]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"01_run1k","v":{"total":[53.835,52.743,45.735,52.638,52.911,53.62,46.491,53.372,52.668,45.485,46.746,53.185,49.413,53.114,47.028],"script":[13.165,12.699,12.522,12.486,12.799,12.53,12.659,13.033,12.879,12.511,12.465,12.532,12.592,12.556,13.213],"paint":[33.968,34.2,32.855,33.883,34.124,35.001,33.439,34.312,33.939,32.611,33.92,34.483,35.961,34.214,32.99]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"02_replace1k","v":{"total":[53.084,53.687,53.838,57.998,54.126,59.571,56.032,54.691,57.196,58.514,58.605,54.206,58.954,57.339,53.605],"script":[17.651,17.466,17.513,20.767,17.47,20.014,17.412,17.881,20.151,20.799,19.629,17.731,21.37,20.98,17.244],"paint":[34.946,35.679,35.778,36.551,36.181,38.099,37.285,36.182,36.395,36.314,37.535,36.138,36.963,35.729,35.851]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"03_update10th1k_x16","v":{"total":[46.439,24.133,20.897,46.336,24.48,21.268,26.135,23.642,20.324,21.674,22.623,24.916,19.93,23.972,21.14],"script":[6.684,6.112,6.085,6.127,6.507,6.46,6.485,5.971,5.746,6.489,7.6,5.438,5.429,5.715,6.712],"paint":[17.012,17.538,14.575,16.676,16.82,14.681,15.798,16.682,14.448,14.757,14.7,16.992,13.165,16.614,14.151]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"04_select1k","v":{"total":[12.482,9.071,8.901,7.987,8.143,14.469,13.982,13.76,15.095,11.194,9.364,14.571,14.98,10.038,10.405,15.019,14.039,10.024,8.497,13.765,12.93,14.776,15.109,11.049,10.862],"script":[4.408,3.551,3.681,3.097,2.664,5.267,5.204,3.574,3.544,5.387,4.531,3.81,3.278,4.256,3.448,5.462,4.726,4.616,4.134,3.829,3.011,2.733,3.5,5.068,3.631],"paint":[4.122,3.561,3.339,3.913,3.468,4.008,4.57,3.291,3.52,3.837,3.09,3.73,3.868,4.207,3.659,4.054,3.307,3.63,3.902,3.701,3.739,4.482,4.342,4.63,2.374]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"05_swap1k","v":{"total":[171.38,168.035,169.54,166.465,165.707,172.018,165.902,165.447,169.929,167.917,169.872,165.185,161.863,170.475,167.634],"script":[27.521,24.871,26.044,24.41,22.981,26.854,24.167,25.252,23.788,24.15,24.422,24.61,25.04,27.593,25.784],"paint":[142.647,142.022,141.424,141.85,142.487,144.592,138.636,140.025,144.596,142.11,144.522,139.32,135.898,141.99,141.142]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"06_remove-one-1k","v":{"total":[19.153,17.756,17.283,17.228,17.165,18.095,17.206,19.15,17.102,19.015,17.115,17.408,16.841,20.386,17.361],"script":[2.297,2.009,2.223,1.57,1.558,1.946,2.219,2.136,2.153,2.213,1.872,2.087,1.584,2.359,1.855],"paint":[15.016,14.458,13.78,14.194,14.114,14.186,14.303,14.963,13.922,15.294,13.996,14.39,14.013,15.769,13.92]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"07_create10k","v":{"total":[590.128,587.339,588.028,587.635,593.031,596.426,582.688,584.272,569.299,596.812,584.76,578.254,600.121,575.324,594.629],"script":[231.9,233.771,232.088,233.137,232.682,237.941,233.565,229.068,231.636,234.225,235.037,235.193,236.35,232.491,236.471],"paint":[349.068,345.396,343.986,346.94,349.362,349.246,341.581,344.067,327.901,352.749,341.374,335.808,355.517,332.178,353.586]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[56.318,53.304,73.606,72.088,72.12,69.916,70.547,71.922,70.769,52.351,54.887,52.931,54.651,54.032,69.332],"script":[13.833,13.208,13.908,13.9,13.943,12.9,12.853,13.134,13.156,12.869,13.672,13,12.987,13.266,13.109],"paint":[40.998,39.494,40.449,40.057,38.579,39.494,39.263,40.083,39.571,39.062,39.703,39.389,40.341,39.441,38.26]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"09_clear1k_x8","v":{"total":[19.603,19.558,20.086,20.209,21.451,19.887,15.966,20.602,19.159,16.666,20.141,20.348,19.893,20.47,19.314],"script":[15.571,15.462,15.778,15.71,17.38,15.788,13.511,15.973,15.101,15.014,15.234,15.795,15.399,16.388,15.545],"paint":[3.84,3.509,3.107,3.083,3.066,3.115,2.352,3.822,3.47,1.506,2.693,3.38,4.195,2.971,2.943]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.9850492477416992]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"22_run-memory","v":{"DEFAULT":[4.462224006652832]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.05589485168457]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.8766345977783203]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[32.37122058868408]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[142.45703125]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[40.14453125]}}, -{"f":"react-hooks-use-transition-v18.2.0-keyed","b":"43_first-paint","v":{"DEFAULT":[216.2]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"01_run1k","v":{"total":[50.922,51.109,49.404,48.901,50.01,49.79,48.088,50.04,50.391,47.142,50.202,46.711,51.242,49.03,49.426],"script":[15.695,16.472,15.405,15.204,15.552,15.42,15.008,16.1,16.19,14.992,15.71,15.041,15.86,15.562,15.33],"paint":[34.695,34.214,33.554,33.282,34.037,33.936,32.661,33.468,33.751,31.732,34.04,31.252,34.928,33.057,33.654]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"02_replace1k","v":{"total":[54.37,53.993,53.625,55.466,53.168,54.131,53.626,53.484,53.162,53.659,53.736,53.665,54.182,53.813,53.993],"script":[17.87,17.857,18.124,18.17,18.1,18.158,18.095,17.366,17.956,18.232,18.144,18.227,18.544,18.227,17.572],"paint":[36.066,35.666,35.051,36.828,34.604,35.542,35.055,35.672,34.762,34.983,35.157,34.978,35.204,35.141,35.952]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"03_update10th1k_x16","v":{"total":[21.355,20.777,20.412,21.798,20.294,20.582,21.914,20.223,20.728,20.75,20.549,20.519,21.415,21.944,20.669],"script":[5.366,4.505,4.768,4.464,4.613,5.075,6.236,4.68,4.772,4.454,5.074,4.585,5.211,5.657,5.28],"paint":[14.107,14.854,14.303,14.286,13.87,14.516,14.135,13.801,14.311,14.551,13.631,14.943,15.19,15.515,14.269]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"04_select1k","v":{"total":[4.392,3.589,4.024,3.693,3.038,3.505,3.191,3.786,3.678,3.714,3.714,4.04,4.041,3.87,4.612,4.371,3.708,3.638,3.728,4.007,3.645,4.127,3.13,3.352,3.531],"script":[2.476,1.316,0.987,0.914,0.284,1.269,1,1.03,1.434,1.617,1.171,0.929,0.975,1.321,1.264,1.737,0.986,1.076,1.006,1.071,1.278,1.264,0.624,0.937,1.581],"paint":[1.743,2.158,2.327,2.436,2.648,1.497,2.092,2.221,1.377,1.97,1.734,2.978,2.332,2.428,2.811,1.128,2.581,1.547,2.582,2.245,1.765,2.729,1.398,2.28,1.822]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"05_swap1k","v":{"total":[165.245,167.414,166.726,166.905,165.511,165.944,168.182,167.645,168.206,166.092,166.969,164.883,165.159,165.129,171.679],"script":[23.298,23.788,22.941,23.138,22.235,22.944,24.05,22.521,24,23.512,23.277,22.856,22.562,23.698,22.413],"paint":[139.798,141.859,141.274,142.292,141.064,141.386,141.385,142.992,142.559,140.278,141.529,139.962,140.599,140.128,147.298]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"06_remove-one-1k","v":{"total":[16.526,16.09,16.1,16.435,16.534,15.942,16.699,15.974,16.49,16.542,16.03,16.062,15.987,16.01,16.362],"script":[1.249,1.201,1.065,1.233,1.239,1.235,1.115,1.578,1.257,1.281,0.972,0.958,1.245,1.423,1.06],"paint":[14.545,14.115,14.126,14.114,14.556,13.929,13.91,13.638,14.442,14.05,13.743,14.369,13.716,13.839,14.551]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"07_create10k","v":{"total":[625.35,622.833,625.373,625.399,623.277,619.822,622.253,618.209,622.634,621.71,621.25,614.925,618.32,616.969,618.238],"script":[269.154,267,269.909,269.03,266.453,268.009,268.41,265.286,268.077,266.877,263.541,263.049,265.604,264.648,268.119],"paint":[349.312,349.113,348.701,349.611,350.129,344.989,347.113,346.155,347.837,348.056,350.509,345.182,345.99,345.656,343.474]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[58.224,56.241,55.986,55.916,56.345,56.519,55.969,56.304,56.349,56.913,55.009,57.56,56.752,58.161,55.307],"script":[15.564,16.054,15.879,15.986,16.117,16.483,15.862,16.499,15.952,16.045,15.659,16.406,16.013,16.302,15.363],"paint":[41.625,39.312,39.187,39.006,39.321,39.156,39.041,38.916,39.476,39.97,38.452,40.238,39.856,40.79,39.046]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"09_clear1k_x8","v":{"total":[17.102,15.956,15.728,15.311,15.2,15.102,15.633,16.977,15.819,16.252,16.687,15.486,16.155,14.824,15.486],"script":[14.195,14.252,13.748,13.88,13.401,13.527,13.457,14.836,13.127,14.132,14.708,13.55,14.059,12.92,13.34],"paint":[2.772,1.318,1.157,0.376,1.109,1.457,2.067,2.049,1.805,2.021,1.731,1.595,2,1.539,1.159]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.9822511672973633]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"22_run-memory","v":{"DEFAULT":[6.212015151977539]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.593527793884277]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.0958242416381836]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[47.55936145782471]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[136.7998046875]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[39.5966796875]}}, -{"f":"react-jotai-v17.0.1 + 1.7.2-keyed","b":"43_first-paint","v":{"DEFAULT":[212.4]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"01_run1k","v":{"total":[48.901,50.024,48.603,49.308,49.496,48.518,48.109,48.834,49.358,50.388,50.553,50.047,48.171,50.421,48.218],"script":[15.032,15.719,14.915,15.625,16.075,15.322,14.636,14.8,15.206,16.027,16.086,15.705,14.694,15.316,14.451],"paint":[33.43,33.877,33.24,33.266,32.983,32.751,33.056,33.625,33.731,33.938,34.003,33.914,33.05,34.682,33.349]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"02_replace1k","v":{"total":[56.906,55.659,55.978,55.276,56.005,55.89,55.608,55.022,55.105,56.572,57.938,56.323,56.34,56.267,55.988],"script":[19.407,20.196,19.998,19.326,20.209,20.044,19.717,20.087,19.422,20.219,21.555,19.197,19.831,20.298,19.591],"paint":[36.353,35.013,35.37,35.313,35.335,35.373,35.22,34.273,34.994,35.918,35.909,36.597,35.911,35.516,35.714]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"03_update10th1k_x16","v":{"total":[22.239,21.734,20.62,22.21,21.202,22.365,22.234,21.09,22.066,21.445,22.197,20.842,21.037,21.007,20.765],"script":[6.163,4.91,5.017,5.298,5.267,5.485,5.551,5.155,5.342,5.132,5.761,4.623,5.567,5.09,5.283],"paint":[14.141,14.824,14.275,15.33,14.669,13.98,15.004,14.482,14.59,15.577,14.758,15.438,13.365,14.59,13.977]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"04_select1k","v":{"total":[5.657,6.54,6.055,6.822,5.837,5.785,5.263,5.517,6.057,5.873,6.808,6.439,6.114,6.479,5.752,6.161,6.255,6.447,5.766,5.601,6.046,5.937,6.451,5.937,5.948],"script":[3.107,3.294,3.743,3.444,3.408,2.658,3.026,2.84,3.481,2.788,3.868,3.325,3.082,3.349,3.851,3.02,2.962,3.387,3.512,3.368,3.026,3.4,3.73,2.877,3.191],"paint":[2.408,2.118,2.176,2.725,2.119,2.99,1.943,2.546,2.147,2.949,1.152,2.862,2.165,3,1.184,3.003,2.692,1.777,0.885,2.112,1.933,2.406,1.692,2.92,2.361]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"05_swap1k","v":{"total":[165.545,165.171,163.975,167.725,164.902,166.848,162.889,167.714,162.56,163.859,164.266,167.081,166.483,165.839,169.024],"script":[25.922,24.173,24.466,23.182,24.237,22.126,23.425,24.269,23.649,23.663,23,24.098,23.256,25.41,23.419],"paint":[138.346,139.906,137.89,142.721,138.777,143.235,138.099,141.514,137.646,138.271,138.594,140.725,140.982,138.007,143.698]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"06_remove-one-1k","v":{"total":[16.653,17.335,16.592,17.25,17.158,16.686,17.809,16.214,16.662,16.912,16.526,17.433,16.52,16.686,16.712],"script":[1.709,1.73,1.358,1.418,1.305,1.371,1.46,1.644,1.679,1.423,1.395,1.36,1.576,1.6,1.327],"paint":[14.042,14.622,14.444,15.036,15.098,14.531,15.281,14.149,13.864,14.117,14.069,15.066,14.157,14.299,14.656]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"07_create10k","v":{"total":[643.511,641.384,633.691,636.722,639.314,644.369,634.959,638.916,641.522,633.377,631.02,635.496,633.727,631.572,632.747],"script":[283.546,285.892,281.612,281.475,281.268,286.621,282.365,285.637,285.735,281.9,278.807,281.662,281.008,279.018,279.972],"paint":[353.09,348.549,345.297,348.541,351.122,351.044,345.822,346.478,349.034,344.692,345.484,347.115,346.027,345.91,346.062]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"08_create1k-after1k_x2","v":{"total":[54.3,53.988,54.181,54.374,54.627,55.095,55.241,54.164,55.767,56.561,54.61,54.349,55.459,56.059,53.736],"script":[15.16,15.427,15.48,14.916,15.404,15.637,16.013,15.098,15.822,16.224,14.847,15.243,15.441,15.624,14.542],"paint":[37.709,37.267,37.818,38.587,38.353,38.242,38.347,37.868,38.813,38.967,38.86,38.063,39.113,39.517,37.8]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"09_clear1k_x8","v":{"total":[17.319,16.851,17.236,16.418,18.088,14.948,15.792,16.385,16.566,16.645,15.101,14.99,16.43,16.868,15.988],"script":[15.391,15.159,14.669,15.149,15.323,13.007,14.129,14.201,14.657,14.252,12.354,12.968,13.867,14.933,13.608],"paint":[1.838,0.79,2.468,1.173,1.721,1.144,0.776,2.074,1.813,1.373,1.724,1.506,1.815,1.188,1.04]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.328953742980957]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"22_run-memory","v":{"DEFAULT":[7.123894691467285]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"23_update5-memory","v":{"DEFAULT":[7.707677841186523]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.6571340560913086]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[55.36130619049072]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[213.1044921875]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"42_size-compressed","v":{"DEFAULT":[49.2158203125]}}, -{"f":"react-mlyn-v0.5.16-keyed","b":"43_first-paint","v":{"DEFAULT":[290.4]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"01_run1k","v":{"total":[51.687,51.189,51.409,52.048,51.018,50.266,51.265,50.94,52.201,51.051,50.738,50.008,51.754,51.462,50.968],"script":[17.113,16.874,17.203,17.894,17.079,17.221,16.96,17.422,17.7,17.058,17.233,16.108,17.624,17.271,17.182],"paint":[34.127,33.892,33.781,33.719,33.507,32.62,33.879,33.078,34.045,33.569,33.076,33.474,33.682,33.759,33.367]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"02_replace1k","v":{"total":[60.494,60.409,59.246,59.32,59.173,59.351,60.088,59.446,58.402,60.516,59.729,59.325,58.861,59.586,58.834],"script":[23.52,23.641,23.041,23.888,22.75,23.396,23.254,23.818,23.051,23.323,23.809,23.536,22.984,23.469,23.309],"paint":[36.471,36.311,35.76,35.001,35.949,35.498,36.37,35.192,34.921,36.747,35.483,35.355,35.439,35.679,35.103]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"03_update10th1k_x16","v":{"total":[22.977,21.213,21.966,22.029,22.277,22.113,21.722,21.89,21.072,21.478,21.9,23.275,22.05,22.615,21.623],"script":[6.419,5.718,6.172,6.483,6.79,5.91,6.061,5.47,5.632,5.999,6.185,6.367,6.182,5.722,5.386],"paint":[14.858,13.467,14.631,13.931,14.482,15.161,14.22,14.935,13.255,14.013,13.853,15.271,14.682,15.639,14.678]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"04_select1k","v":{"total":[5.233,6.293,6.32,6.735,5.857,5.522,5.775,6.361,6.855,5.312,6.336,6.209,5.678,5.921,5.178,5.698,5.181,6.524,6.198,5.901,5.355,5.325,5.427,6.02,5.705],"script":[3.049,3.369,3.329,3.873,3.43,2.871,3.13,2.855,3.103,2.247,3.527,3.046,3.217,3.423,2.763,2.752,2.736,3.411,3.445,3.343,2.812,2.527,2.901,2.847,2.901],"paint":[2.045,2.006,2.054,2.713,2.301,1.415,1.699,3.363,3.097,2.926,1.885,2.19,1.722,2.361,1.953,2.805,2.333,2.969,2.219,1.579,2.402,2.697,1.98,3.025,2.658]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"05_swap1k","v":{"total":[180.229,177.321,164.569,159.079,169.072,168.891,170.035,165.631,167.295,169.772,175.207,171.686,164.532,166.542,169.981],"script":[27.544,26.881,22.247,21.582,22.944,23.053,23.421,24.386,24.29,27.916,27.869,26.189,23.087,23.781,23.552],"paint":[149.79,147.782,140.48,135.893,144.262,144.491,145.506,138.874,141.14,139.377,145.762,143.939,139.788,141.25,144.551]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"06_remove-one-1k","v":{"total":[17.236,16.7,17.203,17.744,16.888,17.077,17.047,17.133,16.782,17.16,16.377,16.612,16.741,16.774,16.913],"script":[1.944,1.511,1.878,1.876,1.669,1.435,1.791,1.622,1.802,1.44,1.689,2.008,1.452,1.838,1.647],"paint":[14.522,14.144,14.281,15.04,14.213,14.923,14.521,14.639,14.215,14.915,13.831,13.861,14.212,14.091,14.506]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"07_create10k","v":{"total":[634.563,623.98,622.099,627.395,627.647,620.256,623.681,622.961,622.637,622.063,626.068,625.345,627.944,628.97,627.212],"script":[273.665,269.771,270.235,275.557,275.478,267.986,271.96,271.337,270.35,271.168,273.86,273.291,274.151,272.094,269.473],"paint":[354.134,347.397,345.243,344.822,345.475,345.58,345.057,344.96,345.584,344.205,345.413,345.315,346.791,350.139,351.005]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[56.092,57.61,55.036,56.369,56.522,56.356,56.492,56.278,56.19,57.515,56.728,55.972,56.228,56.483,55.529],"script":[16.602,16.024,15.99,16.272,16.93,16.143,15.776,16.107,15.864,16.31,16.311,15.741,16.022,16.126,15.726],"paint":[38.547,40.768,38.196,39.19,38.722,39.336,39.843,39.288,39.375,40.33,39.543,39.342,39.308,39.479,38.926]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"09_clear1k_x8","v":{"total":[30.127,29.484,28.279,28.659,26.965,29.682,28.461,28.296,28.866,30.007,29.481,29.776,29.252,29.459,29.292],"script":[28.242,27.554,25.819,26.825,24.123,27.26,26.591,26.059,26.992,27.632,27.558,27.619,27.593,27.471,27.769],"paint":[1.793,1.807,2.361,1.737,2.705,2.329,1.072,1.539,1.776,1.747,0.475,1.526,0.791,1.136,1.426]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.4197187423706055]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"22_run-memory","v":{"DEFAULT":[6.1031389236450195]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.66383171081543]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.9176483154296875]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[44.684475898742676]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[197.009765625]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[53.451171875]}}, -{"f":"react-mobX-v18.2.0 + 6.9.0-keyed","b":"43_first-paint","v":{"DEFAULT":[287.7]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"01_run1k","v":{"total":[45.633,45.255,46.835,46.62,45.151,46.665,46.662,46.462,45.043,44.74,46.191,46.291,45.332,47.263,47.108],"script":[12.099,11.978,13.002,12.329,11.692,12.762,12.979,12.674,12.367,12.353,13.305,11.791,12.223,13.073,13.766],"paint":[33.124,32.852,33.395,33.836,33.048,33.477,33.253,33.355,32.261,31.978,32.471,34.069,32.667,33.764,32.892]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"02_replace1k","v":{"total":[55.254,55.758,55.982,55.811,55.576,54.295,56.066,54.498,55.229,56.573,56.428,55.793,56.204,55.459,55.58],"script":[18.502,19.699,19.231,19.354,19.341,18.636,19.556,18.231,18.467,19.728,20.213,20.008,19.686,19.549,18.686],"paint":[36.26,35.595,36.289,35.994,35.765,35.197,36.027,35.79,36.256,36.384,35.741,35.332,36.05,35.445,36.407]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"03_update10th1k_x16","v":{"total":[20.842,21.711,21.651,19.993,20.155,22.677,20.919,21.363,21.043,21.686,20.699,21.755,21.145,20.811,20.886],"script":[5.553,5.673,5.643,4.776,4.549,5.919,4.605,5.583,5.63,5.449,5.237,5.763,5.698,5.4,5.093],"paint":[14.266,14.954,14.111,13.994,13.734,15.273,15.285,14.446,14.082,15.279,13.417,14.61,14.114,14.411,14.533]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"04_select1k","v":{"total":[5.054,5.178,5.909,5.656,5.66,6.166,5.468,5.412,5.525,5.378,5.512,4.762,5.698,6.106,6.031,5.026,5.072,6.002,5.345,5.741,6.206,5.347,5.456,4.959,5.69],"script":[2.198,2.721,2.207,3.015,2.328,2.572,2.611,2.608,2.289,2.517,2.93,2.255,2.798,1.998,2.93,2.44,2.477,2.587,2.041,2.826,3.145,2.733,2.968,1.875,3.097],"paint":[2.26,2.333,3.549,2.46,3.171,3.434,1.812,2.152,2.691,2.39,2.441,2.378,2.761,3.958,2.464,2.3,2.448,2.859,1.98,2.079,2.073,1.583,1.716,2.675,2.445]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"05_swap1k","v":{"total":[168.593,169.833,169.605,167.169,166.327,163.745,170.774,163.367,169.382,165.238,163.85,166.001,169.524,167.817,166.613],"script":[26.272,26.787,26.241,24.962,22.881,24.96,23.935,24.198,25.045,23.139,25.76,23.832,24.022,24.884,24.649],"paint":[140.481,141.567,141.764,140.203,141.875,136.237,145.747,137.307,142.602,140.202,136.213,140.007,142.153,141.389,140.468]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"06_remove-one-1k","v":{"total":[16.915,16.776,17.995,16.961,17.899,17.313,18.267,16.837,17.171,16.521,16.754,17.846,17.332,16.684,16.782],"script":[1.534,1.789,1.727,1.59,1.72,1.57,2.178,1.593,1.962,1.642,1.456,1.865,1.826,1.856,1.612],"paint":[14.278,14.023,14.826,14.556,15.399,14.671,15.244,14.238,13.807,13.98,14.32,15.188,14.687,13.794,14.353]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"07_create10k","v":{"total":[617.014,620.078,613.467,613.463,611.213,612.417,609.519,608.153,614.835,613.089,616.616,614.319,614.456,610.425,611.39],"script":[255.727,253.61,254.273,253.654,256.052,252.536,253.155,252.813,254.568,254.618,254.401,254.863,254.654,252.215,253.079],"paint":[353.789,359.702,352.352,353.101,348.507,353.201,349.644,348.632,353.523,351.609,355.519,352.79,352.962,351.412,351.634]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"08_create1k-after1k_x2","v":{"total":[51.866,50.436,52.064,50.483,51.948,50.098,51.563,49.877,51.773,51.372,50.112,49.375,50.413,51.506,50.648],"script":[12.912,12.086,12.396,11.957,12.912,11.976,13.387,11.756,13.167,12.637,11.822,11.811,12.194,12.57,12.551],"paint":[38.046,37.476,38.771,37.649,38.106,37.237,37.329,37.217,37.679,37.858,37.405,36.647,37.366,38.101,37.236]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"09_clear1k_x8","v":{"total":[27.034,27.649,26.865,25.206,27.023,24.628,25.996,25.837,25.895,26.915,26.109,25.796,25.935,24.708,26.178],"script":[25.057,25.864,24.504,23.02,25.433,22.771,24.063,23.649,24.058,24.322,23.807,23.607,24,23.269,23.769],"paint":[1.851,0.818,1.277,2.081,1.473,1.752,1.817,2.046,1.74,2.145,2.201,1.384,1.842,0.404,1.853]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.4298133850097656]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"22_run-memory","v":{"DEFAULT":[5.27639102935791]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.879349708557129]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.4657669067382812]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[36.46569538116455]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[218.060546875]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"42_size-compressed","v":{"DEFAULT":[59.6748046875]}}, -{"f":"react-recoil-v18.2.0 + 0.7.7-keyed","b":"43_first-paint","v":{"DEFAULT":[325.7]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"01_run1k","v":{"total":[53.373,51.516,51.298,51.17,52.168,52.093,53.875,52.458,53.547,52.319,52.043,52.765,51.851,52.303,53.387],"script":[18.531,18.093,18.041,17.975,18.06,18.242,19.242,18.721,18.914,18.047,17.872,18.533,17.852,18.595,19.072],"paint":[34.399,32.959,32.831,32.762,33.661,33.395,34.187,33.293,34.103,33.814,33.714,33.78,33.543,33.257,33.863]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"02_replace1k","v":{"total":[62.394,63.826,64.596,62.195,61.451,63.423,64.242,62.563,62.694,62.146,61.727,62.763,61.998,61.647,62.779],"script":[26.147,27.47,26.826,26.433,25.442,27.025,27.511,26.581,26.574,26.092,25.878,26.509,26.147,25.742,26.541],"paint":[35.804,35.753,37.273,35.293,35.572,35.933,36.231,35.529,35.535,35.596,35.396,35.774,35.393,35.308,35.787]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"03_update10th1k_x16","v":{"total":[27.158,24.073,26.107,25.337,27.333,26.792,25.493,25.963,26.104,28.255,26.775,27.154,26.604,25.129,26.428],"script":[10.688,8.463,9.549,9.285,9.849,10.418,10.187,10.088,9.574,10.052,10.972,10.207,9.311,8.615,11.004],"paint":[13.278,14.593,14.267,14.267,15.433,14.454,14.19,14.338,15.298,14.851,14.41,16.014,15.185,15.78,13.731]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"04_select1k","v":{"total":[6.337,5.859,6.436,7.442,6.94,7.138,6.211,6.241,5.929,6.551,6.238,6.891,6.944,6.378,6.133,6.293,5.709,7.398,7.07,6.619,5.876,6.35,5.989,6.294,6.554],"script":[3.192,3.434,3.426,4.362,3.541,3.717,3.099,3.654,3.441,3.733,3.468,4.211,3.47,3.08,3.623,3.617,3.457,4.568,4.024,3.788,3.413,3.312,3.359,3.769,3.75],"paint":[2.991,1.282,1.898,2.921,2.498,2.162,2.961,1.491,1.65,1.792,2.159,1.82,2.507,2.796,2.359,1.746,1.466,2.034,2.08,1.959,1.657,2.387,2.041,1.436,2.661]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"05_swap1k","v":{"total":[167.374,171.391,168.578,164.259,165.703,165.278,169.221,167.357,171.471,167.586,166.068,168.138,167.639,168.566,169.568],"script":[28.038,25.398,26.004,26.404,25.457,26.315,25.466,26.861,28.324,27.198,25.228,26.934,26.712,26.293,28.324],"paint":[137.394,143.883,140.766,135.589,138.377,137.309,142.022,138.995,140.98,139.104,138.902,139.06,138.832,140.353,139.113]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"06_remove-one-1k","v":{"total":[31.267,33.305,32.157,31.754,31.054,32.601,30.829,30.669,30.438,30.799,31.042,31.243,31.01,30.368,30.856],"script":[14.952,16.162,16.227,15.447,15.36,16.193,13.83,14.666,14.712,14.111,14.195,15.413,15.189,13.853,15.002],"paint":[15.378,15.553,14.806,15.411,14.444,15.365,15.709,15.076,14.929,15.699,15.991,15.012,15.04,15.395,15.037]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"07_create10k","v":{"total":[671.626,667.349,670.534,676.974,664.048,678.74,667.806,669.764,673.589,667.366,669.909,674.006,671.697,670.795,668.632],"script":[312.228,312.851,313.787,314.279,311.419,313.851,310.376,313.42,312.313,313.382,312.38,315.676,316.119,314.368,313.602],"paint":[352.512,347.58,350.095,355.867,345.836,358.32,350.465,349.159,354.521,347.193,350.742,351.574,348.892,349.711,348.185]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"08_create1k-after1k_x2","v":{"total":[57.74,58.144,57.21,57.435,57.114,60.661,58.813,57.477,57.189,57.174,57.243,56.829,59.744,57.07,57.448],"script":[17.876,17.824,17.509,17.629,17.145,18.278,17.712,17.584,17.01,17.202,17.518,17.089,18.854,16.924,17.394],"paint":[38.957,39.424,38.825,38.92,39.073,41.459,40.034,38.965,39.285,39.078,38.837,38.875,40.003,39.25,39.184]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"09_clear1k_x8","v":{"total":[33.456,33.728,29.36,30.702,30.837,33.606,33.048,31.939,31.957,29.931,33.246,33.43,30.053,33.082,33.801],"script":[31.365,32.152,27.702,28.329,28.835,30.779,31.32,29.705,29.8,28.004,31.362,31.29,27.751,30.66,31.808],"paint":[1.964,1.263,1.539,2.264,1.132,2.075,1.269,1.591,1.519,1.213,1.396,1.738,1.522,1.39,1.887]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.123021125793457]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"22_run-memory","v":{"DEFAULT":[8.370290756225586]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"23_update5-memory","v":{"DEFAULT":[9.093189239501953]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.0304813385009766]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[68.41138362884521]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[158.1181640625]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"42_size-compressed","v":{"DEFAULT":[44.3681640625]}}, -{"f":"react-redux-v18.2.0 + 8.0.5-keyed","b":"43_first-paint","v":{"DEFAULT":[235.6]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"01_run1k","v":{"total":[47.482,48.553,47.178,48.467,47.482,48.151,46.56,49.135,48.48,48.838,48.443,48.083,48.31,47.544,48.406],"script":[13.502,14.59,13.617,14.433,13.626,14.23,13.553,14.735,14.547,14.491,13.8,14.021,14.462,13.672,14.461],"paint":[33.537,33.48,33.103,33.603,33.425,33.476,32.564,33.966,33.498,33.917,34.166,33.618,33.402,33.431,33.512]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"02_replace1k","v":{"total":[57.09,55.877,56.857,56.632,55.777,56.575,56.122,56.723,56.061,56.003,57.109,56.177,57.016,56.788,56.368],"script":[20.36,20.188,20.445,20.299,20.371,20.61,20.402,21.03,20.544,20.012,20.954,20.272,20.617,21.02,20.188],"paint":[36.293,35.242,35.838,35.277,34.859,35.52,35.141,35.15,34.985,35.415,35.71,35.337,35.947,35.107,35.326]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"03_update10th1k_x16","v":{"total":[21.854,22.853,24.394,22.158,22.458,23.331,22.398,23.86,22.838,22.489,22.547,21.142,21.396,21.691,25.204],"script":[6.138,7.039,7.014,5.964,6.681,6.779,6.773,7.023,6.711,6.534,6.334,4.861,5.934,6.384,8.22],"paint":[13.692,14.646,15.549,15.013,15.064,15.081,14.312,15.256,15.12,14.402,13.801,15.408,13.91,13.732,15.864]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"04_select1k","v":{"total":[6.292,5.615,6.067,5.885,5.835,5.318,7.065,5.019,5.411,5.936,5.133,6.251,6.027,6.542,5.502,5.801,6.06,6.237,5.357,5.706,6.54,5.266,7.146,5.123,6.022],"script":[3.033,2.826,3.08,2.884,3.51,2.695,3.423,2.303,2.709,2.885,2.418,3.503,3.163,3.339,2.406,3.023,3.31,3.364,2.824,2.718,2.933,2.994,3.642,2.293,2.749],"paint":[2.027,2.159,2.839,2.371,2.215,2.478,3.019,2.603,2.105,2.535,2.601,2.105,2.102,2.071,2.937,2.221,1.89,2.053,2.425,1.799,3.456,1.78,2.362,1.461,2.063]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"05_swap1k","v":{"total":[164.73,162.191,169.126,163.316,163.98,165.752,170.11,165.045,166.428,165.994,165.738,167.231,163.81,167.066,166.283],"script":[24.891,23.533,21.734,24.326,23.462,24.674,23.98,23.181,25.135,23.019,24.343,24.481,24.042,23.478,21.887],"paint":[138.418,136.957,145.334,137.177,138.577,139.127,144.183,140.731,138.75,140.835,138.358,140.611,137.824,140.149,141.801]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"06_remove-one-1k","v":{"total":[16.609,16.931,16.941,17.251,17.189,17.244,17.047,16.672,16.796,16.966,17.116,17.221,17.35,17.079,17.37],"script":[2.171,1.642,1.693,1.753,1.891,2.026,1.912,1.761,1.909,1.905,1.902,1.507,1.96,1.495,1.917],"paint":[13.671,14.536,14.466,14.33,14.566,14.272,14.549,14.17,13.808,14.303,14.512,14.639,13.702,14.589,14.543]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"07_create10k","v":{"total":[625.736,617.172,615.288,617.622,614.787,618.329,618.061,619.436,621.562,618.329,618.191,629.328,619.034,618.225,618.067],"script":[263.822,258.198,260.047,257.688,258.738,260.687,260.356,261.449,262.174,257.75,259.182,261.84,259.806,261.454,259.997],"paint":[355.013,352.262,348.559,353.182,349.327,350.933,350.99,351.273,352.551,353.858,352.073,360.49,352.408,350,351.432]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"08_create1k-after1k_x2","v":{"total":[55.02,53.667,54.341,54.943,53.226,54.517,53.988,52.977,55.312,53.643,53.45,54.842,54.456,53.182,53.394],"script":[14.586,13.988,15.124,14.516,13.787,14.295,14.199,14.159,14.628,13.852,14.403,14.527,14.601,13.797,14.233],"paint":[39.494,38.753,38.361,39.427,38.525,39.135,38.872,37.907,39.786,38.903,38.153,39.409,38.967,38.459,38.241]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"09_clear1k_x8","v":{"total":[24.933,24.526,25.05,25.429,26.637,25.575,25.632,26.106,25.426,24.873,26.089,25.308,25.674,25.521,25.05],"script":[23.114,23.149,23.176,23.411,24.708,23.908,23.268,23.659,23.542,23.321,23.937,23.22,23.233,23.228,23.229],"paint":[1.72,1.286,1.77,1.925,1.832,1.565,2.271,2.331,1.784,0.985,2.061,1.979,2.301,1.766,1.729]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.040593147277832]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"22_run-memory","v":{"DEFAULT":[5.5970563888549805]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.123587608337402]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.9319686889648438]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[42.528398513793945]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[149.681640625]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"42_size-compressed","v":{"DEFAULT":[41.822265625]}}, -{"f":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","b":"43_first-paint","v":{"DEFAULT":[220.7]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"01_run1k","v":{"total":[51.146,48.749,48.844,49.688,49.472,49.256,49.289,48.764,49.633,49.472,51.061,49.694,49.72,49.24,49.831],"script":[16.425,15.322,15.389,15.889,15.54,15.378,15.477,15.697,16.203,15.673,17.032,15.485,15.702,15.446,15.469],"paint":[34.276,33.034,33.042,33.386,33.521,33.46,33.401,32.642,33,33.384,33.605,33.776,33.6,33.378,33.922]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"02_replace1k","v":{"total":[58.426,59.243,58.113,57.667,56.952,57.215,57.335,57.226,57.113,57.336,56.867,57.565,58.039,56.849,57.278],"script":[21.232,21.553,21.745,21.799,21.078,21.784,21.975,21.671,21.324,21.715,21.798,21.672,21.833,21.067,21.794],"paint":[36.758,36.966,35.865,35.307,35.405,34.991,34.785,35.103,35.186,35.078,34.521,35.135,35.751,35.171,34.19]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"03_update10th1k_x16","v":{"total":[25.692,25.368,24.399,25.574,25.684,25.331,25.343,26.158,25.235,26.395,25.363,25.14,25.704,25.134,24.283],"script":[9.59,9.187,8.468,8.969,8.933,8.767,9.271,9.808,9.407,8.948,8.926,8.659,9.573,9.411,8.26],"paint":[14.153,14.355,14.829,14.729,15.115,14.644,14.164,15.313,14.79,16.363,15.439,15.307,15.033,13.911,14.55]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"04_select1k","v":{"total":[5.913,5.953,5.388,6.316,6.149,6.348,5.935,6.047,6.563,6.224,5.982,5.821,6.604,6.553,5.901,5.535,5.925,5.604,6.217,5.589,5.251,5.275,5.926,6.435,6.183],"script":[2.807,2.753,3.013,3.281,3.418,2.755,2.709,3.529,3.401,2.92,3.057,3.073,3.289,3.654,3.301,2.401,2.22,3.284,3.602,2.547,2.752,2.294,3.11,2.695,3.44],"paint":[2.932,2.812,1.436,2.124,2.117,3.44,2.511,2.363,3.005,3.188,2.792,1.487,3.158,2.668,1.735,2.302,3.208,0.691,1.524,2.434,2.383,1.787,2.327,3.581,2.606]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"05_swap1k","v":{"total":[167.332,173.388,171.543,163.09,166.28,164.333,163.926,162.569,165.507,162.852,168.458,164.157,164.156,167.929,166.506],"script":[25.817,26.905,25.557,24.144,24.107,24.132,24.305,24.163,25.222,23.445,26,24.797,25.686,25.841,24.556],"paint":[139.351,143.78,143.912,136.635,140.74,138.319,137.259,136.229,137.217,137.734,140.861,138.155,137.106,139.183,140.104]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"06_remove-one-1k","v":{"total":[18.778,17.972,18.108,17.916,17.876,17.927,17.987,17.93,18.291,18.003,17.727,17.913,17.782,17.553,17.941],"script":[3.033,2.733,2.995,2.792,2.677,2.717,3.351,2.824,2.804,2.754,2.665,2.72,2.836,2.675,2.912],"paint":[14.889,13.829,13.756,14.152,14.426,14.284,13.824,14.173,14.287,14.484,14.089,14.107,14.238,14.118,14.305]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"07_create10k","v":{"total":[632.895,626.829,625.976,631.832,627.178,632.558,628.595,626.103,624.669,632.052,633.075,625.13,629.12,625.813,623.226],"script":[270.24,272.838,265.72,271.671,268.596,268.845,269.397,267.107,268.202,270.193,275.233,266.713,272.182,269.905,266.676],"paint":[355.814,347.289,353.421,353.448,351.904,356.98,352.506,352.347,349.798,355.176,351.129,351.766,350.303,349.127,349.714]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"08_create1k-after1k_x2","v":{"total":[57.912,58.377,61.033,58.432,57.136,56.968,57.802,56.597,57.444,56.466,56.614,57.291,56.783,59.064,56.665],"script":[17.305,17.306,17.85,17.417,16.904,17.051,17.339,16.736,17.439,16.806,16.218,17.067,16.42,17.563,16.419],"paint":[39.718,40.02,42.053,40.102,39.335,39.038,39.597,38.992,39.112,38.755,39.528,39.316,39.483,40.593,39.35]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"09_clear1k_x8","v":{"total":[26.811,26.257,26.729,27.764,28.033,25.784,26.421,25.731,26.685,27.357,25.952,27.465,25.496,29.01,26.121],"script":[24.474,23.979,24.423,25.356,25.808,24.214,24.008,24.146,24.213,24.798,24.362,25.597,23.888,26.988,23.496],"paint":[1.642,1.38,2.2,2.295,1.569,1.474,1.907,1.48,2.369,2.442,1.475,1.195,0.922,1.728,1.915]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.215799331665039]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"22_run-memory","v":{"DEFAULT":[6.044154167175293]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.615869522094727]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.4200658798217773]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[44.59421730041504]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[210.0068359375]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"42_size-compressed","v":{"DEFAULT":[55.9921875]}}, -{"f":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","b":"43_first-paint","v":{"DEFAULT":[320.1]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"01_run1k","v":{"total":[52.169,52.426,53.316,52.939,52.328,52.836,52.02,53.711,53.951,51.829,52.399,51.267,51.189,52.348,51.209],"script":[18.502,18.124,19.198,18.672,18.078,19.181,18.029,18.53,19.02,18.32,17.96,17.957,17.83,18.349,17.827],"paint":[33.184,33.848,33.664,33.812,33.796,33.2,33.544,34.726,34.467,33.064,33.977,32.872,32.941,33.541,32.949]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"02_replace1k","v":{"total":[61.614,61.436,61.5,63.902,61.519,63.426,62.335,62.421,63.217,62.482,62.618,63.837,62.457,62.189,62.802],"script":[26.059,25.807,25.946,26.678,25.699,26.108,26.151,26.263,26.096,26.537,26.37,26.22,26.772,26.087,26.52],"paint":[35.094,35.061,35.017,36.77,35.262,36.861,35.735,35.707,36.476,35.342,35.669,37.132,35.096,35.566,35.792]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"03_update10th1k_x16","v":{"total":[25.713,26.22,27,26.221,25.381,26.262,26.006,26.46,25.399,26.933,25.742,25.871,26.313,26.132,27.936],"script":[9.419,10.201,10.213,10.402,9.617,10.011,9.953,10.688,9.002,10.283,9.912,9.416,10.143,9.631,9.497],"paint":[14.066,14.422,15.618,14.669,14.391,14.153,14.406,14.776,14.755,14.983,14.453,14.103,14.611,15.008,16.899]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"04_select1k","v":{"total":[6.919,6.155,6.664,6.115,6.069,6.311,6.213,6.268,6.576,6.75,6.703,6.303,6.316,5.457,6.822,6.297,5.931,6.33,6.589,6.529,6.649,6.629,5.912,6.907,6.408],"script":[4.001,3.264,3.31,3.524,3.737,3.811,3.706,2.876,3.469,4.469,3.454,3.776,3.783,2.898,3.738,3.912,3.736,3.934,3.816,3.386,3.098,3.778,3.576,3.606,3.828],"paint":[2.324,2.11,2.807,1.439,1.5,2.35,1.511,3.24,2.262,1.431,3.087,1.644,1.913,1.62,2.52,2.258,2.031,1.095,2.2,2.782,2.957,1.867,1.697,2.189,1.619]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"05_swap1k","v":{"total":[170.519,172.045,168.593,173.591,170.081,169.088,170.87,168.254,165.489,170.035,165.32,171.212,166.343,168.846,167.034],"script":[26.972,28.928,27.03,27.874,27.086,27.884,27.973,26.64,25.357,27.645,24.703,27.653,26.543,28.073,26.339],"paint":[141.886,141.343,139.997,143.972,140.954,139.699,141.44,139.601,137.331,140.207,139.249,141.433,137.435,138.82,137.261]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"06_remove-one-1k","v":{"total":[31.615,32.162,30.189,31.032,30.873,31.12,32.151,30.595,30.812,30.814,30.858,31.32,31.2,31.571,30.541],"script":[15.611,15.538,14.1,15.097,14.516,14.207,16.257,14.581,15.176,14.88,15.099,15.456,15.573,15.986,14.922],"paint":[15.004,15.626,15.184,14.937,15.251,16.091,14.754,15.2,14.528,14.903,14.647,15.106,14.508,14.695,14.735]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"07_create10k","v":{"total":[669.872,668.858,668.332,669.513,665.175,667.559,663.866,663.147,663.271,666.417,663.692,659.019,662.177,662.537,661.936],"script":[311.285,310.153,313.159,313.238,311.74,310.734,311.6,308.614,309.058,312.274,311.158,306.164,309.009,310.77,309.023],"paint":[351.774,351.899,348.348,349.444,346.675,350.1,345.548,347.451,347.506,347.416,345.867,346.139,346.456,345.026,346.209]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[58.518,57.296,59.109,57.865,57.554,56.829,56.712,57.427,58.108,57.755,57.743,57.426,56.088,57.617,56.217],"script":[18.063,17.26,17.823,18.017,17.517,17.243,17.377,17.736,17.447,17.137,17.682,17.182,17.147,17.637,17.121],"paint":[39.528,39.096,40.079,38.957,39.156,38.705,38.455,38.804,39.76,39.722,39.168,39.37,38.053,39.049,38.203]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"09_clear1k_x8","v":{"total":[32.574,31.756,29.375,33.29,29.685,31.757,34.871,31.724,32.521,34.155,27.539,32.946,33.662,29.499,33.632],"script":[31.165,29.656,27.144,31.869,27.226,29.5,32.104,30.094,30.904,31.479,25.629,30.883,31.65,27.172,31.545],"paint":[1.284,1.968,1.61,1.315,0.924,2.142,2.619,1.386,0.943,2.559,1.057,1.556,1.893,1.423,1.566]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.1622428894042969]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"22_run-memory","v":{"DEFAULT":[8.348502159118652]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[9.164243698120117]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.0858001708984375]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[68.09882640838623]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[165.7568359375]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[46.119140625]}}, -{"f":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","b":"43_first-paint","v":{"DEFAULT":[247.2]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"01_run1k","v":{"total":[46.186,45.278,46.006,46.078,45.357,44.895,46.998,45.375,45.662,46.056,45.094,45.434,46.212,46.464,47.643],"script":[12.067,12.19,12.571,12.554,11.894,11.931,12.501,12.045,12.802,12.259,12.166,11.892,12.426,12.038,12.787],"paint":[33.693,32.663,33.022,33.115,33.026,32.537,34.051,32.906,32.439,33.34,32.496,33.102,33.359,34.021,34.381]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"02_replace1k","v":{"total":[53.92,54.165,55.31,54.852,53.61,53.065,53.602,53.794,54.641,55.472,53.824,55.174,53.761,54.374,55.096],"script":[17.506,17.685,18.782,18.395,17.539,17.28,17.871,18.133,18.426,19.016,17.586,18.478,17.897,18.002,18.419],"paint":[35.983,36.041,36.098,35.992,35.623,35.343,35.279,35.217,35.765,36.016,35.79,36.269,35.394,35.916,36.197]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"03_update10th1k_x16","v":{"total":[21.908,20.46,20.608,21.148,21.09,21.162,22.274,21.952,21.454,20.49,20.275,20.646,20.783,21.749,22.563],"script":[4.96,4.452,4.928,5.488,5.34,4.813,5.367,4.882,5.386,4.725,5.055,4.984,4.993,5.438,5.935],"paint":[15.104,14.034,14.245,14.251,14.391,14.998,14.962,15.653,14.53,14.444,13.415,13.753,14.224,15.027,14.842]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"04_select1k","v":{"total":[4.983,5.013,4.948,4.522,5.504,4.988,5.639,5.038,4.876,4.496,5.067,4.931,5.637,4.692,5.024,4.546,5.158,4.445,6.473,4.775,4.984,5.487,5.571,6.717,5],"script":[2.48,3.109,2.477,2.385,2.783,2.027,2.032,2.499,2.68,2.25,2.363,2.119,2.298,2.175,2.467,1.524,3.084,2.208,2.813,2.214,2.477,2.71,2.727,3.034,2.551],"paint":[1.683,1.136,1.953,2.032,2.592,1.455,3.462,1.606,1.874,1.339,1.991,1.686,2.459,2.398,1.658,2.917,1.193,1.369,3.475,2.43,2.4,2.129,2.472,2.956,2.343]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"05_swap1k","v":{"total":[166.271,175.977,163.971,169.319,168.999,163.049,168.194,166.549,168.713,163.818,168.704,168.276,165.09,167.167,167.339],"script":[23.425,25.296,20.839,22.68,21.606,21.54,23.846,21.6,23.541,21.49,23.93,22.559,21.767,22.91,23.258],"paint":[140.827,148.354,141.524,144.966,145.965,139.88,142.291,142.334,142.201,140.408,142.682,143.983,141.412,142.417,142.041]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"06_remove-one-1k","v":{"total":[16.526,16.587,16.535,16.882,16.625,16.514,16.572,16.133,16.247,16.142,16.752,16.615,16.667,16.418,16.523],"script":[1.347,1.31,1.343,1.324,1.643,1.332,1.276,0.949,1.323,1.555,1.369,1.301,1.241,1.283,1.294],"paint":[14.24,14.498,14.243,14.283,14.23,14.121,14.584,14.522,14.187,13.746,14.374,14.524,14.694,14.401,14.476]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"07_create10k","v":{"total":[603.282,603.25,597.446,597.87,604.35,604.458,599.554,601.441,593.882,599.177,593.379,601.771,593.97,587.015,579.2],"script":[248.956,251.239,241.896,244.992,250.311,252.755,249.163,249.873,244.179,247.881,241.315,249.631,242.2,249.828,242.686],"paint":[347.324,345.253,348.776,346.163,347.194,344.955,343.515,344.902,343.007,344.545,345.399,345.422,345.106,330.426,329.822]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"08_create1k-after1k_x2","v":{"total":[53.055,54.295,50.209,50.016,49.801,50.883,51.261,51.712,52.13,51.619,49.452,52.998,49.609,49.228,54.003],"script":[12.556,13.401,12.189,12.279,12.477,12.873,12.809,13.4,13.234,12.406,12.517,12.973,12.428,12.349,13.301],"paint":[39.441,39.913,37.202,36.877,36.428,37.098,37.443,37.394,38,38.275,36.035,39.086,36.253,35.938,39.776]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"09_clear1k_x8","v":{"total":[26.177,25.319,26.076,25.652,26.713,25.951,24.869,24.882,25.276,24.242,25.434,24.874,26.23,25.488,26.943],"script":[23.899,23.666,24.112,23.552,24.157,24.106,23.197,22.986,22.89,22.544,23.802,22.679,24.038,23.605,24.264],"paint":[2.161,0.72,1.841,1.576,1.863,1.406,0.802,1.804,2.009,1.6,1.541,2.094,2.095,1.787,1.694]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.0685653686523438]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"22_run-memory","v":{"DEFAULT":[4.328461647033691]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.780000686645508]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.8977985382080078]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[30.45377826690674]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[156.5859375]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"42_size-compressed","v":{"DEFAULT":[43.7705078125]}}, -{"f":"react-rxjs-v18.2.0 + 0.10.4-keyed","b":"43_first-paint","v":{"DEFAULT":[238.5]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"01_run1k","v":{"total":[43.293,44.841,41.021,44.414,43.518,45.096,41.018,45.219,44.839,44.732,41.767,44.519,44.331,44.807,43.085],"script":[12.699,12.994,10.184,13.331,12.796,13.698,10.301,14.422,13.217,13.17,10.282,13.084,12.562,13.223,12.949],"paint":[30.173,31.444,30.445,30.677,30.302,31.008,30.309,30.405,31.221,31.137,30.96,31.035,31.348,31.188,29.736]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"02_replace1k","v":{"total":[52.679,57.598,57.103,57.557,57.643,52.103,57.473,57.038,56.178,51.668,56.961,52.629,56.694,51.574,56.475],"script":[23.811,23.451,23.527,23.968,24.058,23.2,23.938,23.455,22.97,22.872,23.524,23.87,23.238,22.764,23.03],"paint":[28.453,33.648,33.141,33.007,33.157,28.477,33.095,33.142,32.775,28.382,33.015,28.327,33.027,28.399,33.02]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"03_update10th1k_x16","v":{"total":[19.164,19.494,18.849,19.975,20.485,19.385,20.638,21.108,19.882,19.33,20.034,22.766,20.454,20.628,20.455],"script":[3.705,3.794,3.386,3.888,3.255,3.288,4.255,4.358,3.551,3.622,3.683,5.152,3.558,4.572,3.883],"paint":[14.142,14.659,14.25,14.687,15.591,14.8,15.33,15.653,14.857,14.547,15.023,15.718,15.757,14.473,14.361]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"04_select1k","v":{"total":[4.417,4.625,4.433,4.887,3.739,3.994,4.603,4.265,3.478,4.37,4.452,4.243,4.911,4.616,4.282,4.462,4.7,4.954,5.067,3.488,4.407,4.267,5.23,4.603,3.587],"script":[1.097,2.121,1.33,1.784,1.579,1.463,1.903,1.495,1.509,1.929,1.335,1.363,1.606,1.836,1.978,1.715,2.117,1.418,1.88,1.78,1.725,1.107,1.554,1.775,1.578],"paint":[2.605,2.263,1.402,2.006,2.053,2.428,2.58,2.625,1.852,2.286,2.515,2.763,3.102,1.864,2.192,1.816,2.041,3.405,2.589,0.815,1.716,3.019,3.482,1.943,1.901]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"05_swap1k","v":{"total":[152.462,151.599,152.196,150.74,150.925,151.675,152.693,157.48,152.616,151.75,152.451,154.08,152.912,153.908,150.167],"script":[32.676,32.449,32.764,32.3,33.646,32.705,33.409,33.924,32.851,32.443,33.401,33.737,32.556,35.246,33.339],"paint":[118.675,117.043,117.241,116.622,115.912,117.475,117.64,121.091,116.467,117.738,117.968,118.749,118.06,116.408,115.249]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"06_remove-one-1k","v":{"total":[21.359,21.462,21.548,21.414,21.915,20.936,21.644,21.51,21.646,21.92,21.39,21.1,21.517,21.555,21.406],"script":[5.952,6.083,6.011,6.128,6.148,5.758,6.134,6.438,6.559,6.214,5.899,5.749,6.088,6.177,6.199],"paint":[14.659,14.571,14.424,14.511,14.621,13.852,14.573,14.601,14.317,14.743,14.249,14.294,14.658,14.556,14.195]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"07_create10k","v":{"total":[610.929,619.897,620.102,587.583,608.767,612.443,599.207,607.326,614.612,611.306,615.18,607.392,599.441,611.043,616.508],"script":[265.204,268.421,270.426,254.722,258.398,261.644,261.382,254.009,257.865,263.369,267.86,261.267,262.97,264.212,269.132],"paint":[338.859,344.906,343.009,326.051,343.804,344.124,331.025,345.9,350.098,341.264,340.657,339.477,329.794,340.203,340.649]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"08_create1k-after1k_x2","v":{"total":[48.354,47.829,46.537,46.768,46.693,48.038,46.782,46.036,47.331,46.756,47.767,48.252,46.943,47.115,46.588],"script":[14.768,13.228,12.911,13.245,13.102,14.445,13.213,12.984,13.506,13.224,13.2,14.475,13.48,13.138,13.115],"paint":[32.716,33.75,32.747,32.717,32.746,32.731,32.72,32.167,32.948,32.681,33.74,32.932,32.665,33.11,32.608]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"09_clear1k_x8","v":{"total":[27.947,27.061,29.183,29.134,27.999,27.445,27.105,27.741,28.34,29.456,27.873,29.665,29.333,28.389,26.89],"script":[25.441,24.894,27.583,27.553,26.07,25.743,25.48,25.968,26.604,27.043,26.065,27.567,27.884,26.04,25.196],"paint":[1.451,0.757,1.503,1.459,1.828,1.61,1.181,1.135,1.64,2.316,1.19,1.977,1.365,1.502,0.806]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.0580854415893555]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"22_run-memory","v":{"DEFAULT":[7.3572540283203125]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"23_update5-memory","v":{"DEFAULT":[7.226499557495117]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.273317337036133]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[58.28588676452637]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[146.181640625]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"42_size-compressed","v":{"DEFAULT":[41.4326171875]}}, -{"f":"react-signalis-v18.2.0 + 0.0.8-keyed","b":"43_first-paint","v":{"DEFAULT":[221.2]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"01_run1k","v":{"total":[53.788,54.532,55.085,55.093,55.382,54.07,53.455,54.602,55.601,54.318,55.648,55.122,54.415,54.913,54.04],"script":[19.817,20.22,20.57,20.295,20.579,20.052,20.327,20.237,21.206,20.126,21.425,20.624,20.34,20.492,19.983],"paint":[33.534,33.895,34.086,34.338,34.32,33.585,32.505,33.911,33.921,33.763,33.762,34.063,33.663,33.985,33.61]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"02_replace1k","v":{"total":[63.026,65.89,62.734,63.782,61.433,62.099,62.303,62.53,64.196,65.268,63.575,65.092,62.62,64.972,64.699],"script":[26.486,27.877,27.32,27.513,26.232,26.339,27.337,26.567,27.737,27.733,27.19,28.312,27.185,27.87,27.218],"paint":[36.033,37.547,34.926,35.823,34.771,35.299,34.527,35.521,36.041,37.073,35.936,36.289,35.006,36.638,37.024]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"03_update10th1k_x16","v":{"total":[52.542,53.514,53.104,55.27,52.889,56.36,53.689,53.93,53.65,52.795,53.821,55.057,55.466,52.291,53.207],"script":[36.312,36.831,36.755,38.89,35.998,39.27,37.509,37.285,37.21,35.717,37.677,37.522,38.196,35.759,37.51],"paint":[14.91,15.626,13.555,15.09,15.159,15.772,14.302,14.881,14.664,15.596,14.438,14.936,16.244,15.384,14.215]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"04_select1k","v":{"total":[39.57,39.789,40.015,37.409,38.976,39.739,39.421,40.906,38.03,38.454,40.019,40.606,38.488,38.309,39.266,39.397,37.158,38.395,40.266,38.745,38.01,38.396,39.245,40.02,40.013],"script":[36.896,35.795,36.047,34.978,34.817,36.268,35.208,37.55,35.205,35.242,36.204,36.955,35.229,34.901,36.137,36.262,34.285,35.03,36.259,35.641,35.465,34.763,35.637,36.677,36.795],"paint":[1.544,3.099,3.041,1.2,3.229,2.752,2.777,3.136,1.967,3.037,3.155,2.978,2.219,2.36,2.316,2.957,1.86,2.429,2.787,2.188,1.903,2.944,2.178,2.732,2.572]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"05_swap1k","v":{"total":[197.586,197.727,199.064,205.679,199.938,204.094,196.708,197.518,201.821,197.174,200.566,198.862,201.481,203.836,199.317],"script":[57.574,58.755,57.226,60.229,59.593,56.952,58.084,58.643,59.158,58.435,59.614,58.513,59.358,61.924,58.679],"paint":[138.12,137.335,139.934,143.613,138.47,145.516,137.083,137.624,139.946,136.592,138.756,138.422,138.982,139.964,138.56]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"06_remove-one-1k","v":{"total":[33.72,33.101,36.033,33.674,33.11,33.974,34.54,34.685,33.77,33.873,34.168,33.302,34.538,35.051,33.74],"script":[17.888,17.791,19.558,17.455,17.975,18.025,18.121,18.371,18.395,18.157,18.528,18.014,18.567,19.532,18.279],"paint":[14.412,14.525,15.53,14.678,14.339,15.102,15.625,15.534,14.482,14.951,14.515,14.244,14.749,14.66,14.369]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"07_create10k","v":{"total":[681.199,673.583,676.022,668.814,664.398,663.331,679.926,665.192,670.18,672.014,688.438,662.412,682.195,650.436,665.469],"script":[315.221,312.944,325.646,316.014,314.918,309.01,327.042,313.576,309.679,312.072,320.116,312.803,315.81,300.835,312.223],"paint":[358.66,353.879,343.435,346.133,342.441,347.353,346.176,344.921,353.71,352.671,361.35,342.994,359.189,342.827,346.205]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[67.124,66.534,67.689,66.583,68.787,67.589,67.792,68.342,67.79,67.748,68.858,68.014,66.409,67.251,69.049],"script":[27.2,27.451,27.477,26.699,26.866,27.409,28.013,27.577,28.022,27.136,27.844,28.363,26.939,27.318,27.609],"paint":[38.976,38.2,39.275,38.929,40.85,39.213,38.888,39.797,38.912,39.713,40.1,38.704,38.521,39.008,40.495]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"09_clear1k_x8","v":{"total":[30.984,29.684,29.915,29.487,28.279,30.323,30.099,30.62,30.462,30.148,28.836,28.039,33.916,28.834,29.072],"script":[28.062,27.929,28,27.063,26.642,28.139,27.033,28.408,28.419,27.962,26.441,26.878,31.153,26.66,26.512],"paint":[2.272,1.663,1.23,1.923,1.544,0.926,2.511,2.116,1.274,2.065,1.253,0.432,2.49,2.07,2.462]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.5592403411865234]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"22_run-memory","v":{"DEFAULT":[6.662574768066406]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.980984687805176]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.8895692825317383]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[48.381916999816895]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[225.8232421875]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[61.8857421875]}}, -{"f":"react-starbeam-v18.2.0 + 0.6.0-keyed","b":"43_first-paint","v":{"DEFAULT":[334.9]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"01_run1k","v":{"total":[46.24,46.432,45.694,45.245,45.687,46.212,46.642,46.65,46.117,45.876,46.086,45.729,46.305,46.644,47.134],"script":[12.597,12.788,12.811,12.413,12.231,12.869,12.457,13.318,12.433,12.814,13.021,12.689,13.094,13.368,13.356],"paint":[33.213,33.217,32.45,32.42,33.023,32.894,33.75,32.906,33.256,32.653,32.635,32.644,32.788,32.86,33.355]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"02_replace1k","v":{"total":[56.695,57.13,57.415,58.591,57.173,56.442,57.211,56.762,58.332,57.602,56.971,57.384,57.117,57.254,57.184],"script":[19.818,19.513,20.093,21.139,20.343,19.315,20.92,20.256,21.244,20.438,20.503,20.04,19.964,20.371,20.261],"paint":[36.392,37.141,36.87,37.01,36.357,36.671,35.837,36.042,36.623,36.723,35.999,36.88,36.689,36.405,36.458]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"03_update10th1k_x16","v":{"total":[21.032,22.006,21.417,21.845,21.133,20.483,21.757,22.568,21.191,22.019,21.831,21.085,21.624,21.321,21.11],"script":[5.33,5.588,4.721,5.336,5.068,5.265,5.427,6.378,4.501,5.705,5.535,5.732,5.26,5.309,6.142],"paint":[13.69,13.949,14.79,15.172,15.011,13.258,14.885,14.411,14.215,14.904,15.188,14.171,15.271,14.719,13.904]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"04_select1k","v":{"total":[5.701,5.206,4.227,4.222,4.951,4.365,4.849,4.872,4.964,4.911,5.3,5.408,4.856,5.609,5.059,5.233,5.541,4.643,5.248,5.356,5.265,4.599,4.984,4.851,5.668],"script":[2.945,2.01,1.484,1.671,2.3,2.084,1.93,2.557,2.073,1.524,2.427,2.531,1.484,2.574,1.76,2.428,2.55,2.398,2.118,2.5,2.586,2.5,2.24,2.316,2.357],"paint":[2.615,3.042,2.623,1.995,2.113,1.139,2.7,1.386,2.008,3.23,2.541,2.145,3.256,2.876,2.25,2.684,2.863,1.623,2.978,2.705,1.36,1.22,1.981,2.334,3.005]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"05_swap1k","v":{"total":[165.893,163,166.505,166.371,161.948,164.715,163.236,163.943,160.654,164.208,168.298,160.262,165.404,162.279,164.036],"script":[23.428,21.631,23.155,23.477,23.738,22.58,21.458,22.727,21.875,22.221,23.706,21.699,23.977,22.285,21.493],"paint":[139.029,139.377,141.144,141.109,137.095,140.062,140.641,138.905,137.049,140.18,142.975,137.138,139.3,138.318,140.581]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"06_remove-one-1k","v":{"total":[16.175,16.055,16.348,16.42,16.622,16.813,16.896,15.976,16.371,16.572,16.272,16.359,16.427,16.394,16.403],"script":[1.379,1.269,1.151,1.269,1.586,1.66,1.433,0.955,1.283,0.94,1.298,1.106,1.326,1.486,1.309],"paint":[13.842,13.932,14.292,14.422,13.95,14.327,14.7,14.256,14.06,14.896,14.097,14.469,14.366,13.98,14.391]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"07_create10k","v":{"total":[617.427,608.99,620.023,617.074,619.568,615.393,615.589,616.808,613.92,619.684,610.991,612.512,615.418,614.035,617.399],"script":[255.618,253.613,257.387,256.435,259.301,255.447,255.822,256.72,257.047,258.286,253.49,255.954,257.926,255.973,256.442],"paint":[354.932,348.759,355.708,353.998,353.438,353.193,353.114,353.432,350.169,354.741,350.844,349.748,350.667,351.34,353.641]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[55.49,55.49,53.468,52.357,53.97,55.247,53.964,53.06,52.666,52.837,53.898,52.325,55.911,54.704,53.768],"script":[14.554,14.313,13.594,13.628,14.154,14.032,13.9,13.829,13.588,13.573,14.927,13.984,14.354,14.042,14.014],"paint":[39.95,40.296,38.907,37.771,38.866,40.275,39.17,38.303,38.198,38.356,38.055,37.436,40.616,39.716,38.831]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"09_clear1k_x8","v":{"total":[25.634,26.499,24.466,26.526,26.605,24.901,27.146,26.913,24.837,27.232,25.205,26.914,26.542,25.745,25.929],"script":[23.674,24.671,22.582,24.35,24.937,23.523,25.011,24.575,22.481,25.618,23.322,25.044,25.175,23.427,23.747],"paint":[1.09,1.725,0.604,2.071,1.208,0.367,1.617,2.237,2.259,1.368,1.78,1.767,0.387,2.19,1.576]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.9934473037719727]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"22_run-memory","v":{"DEFAULT":[4.961178779602051]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.538423538208008]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.8704748153686523]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[37.20715141296387]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[141.8896484375]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[40.0517578125]}}, -{"f":"react-tagged-state-v18.2.0 + 1.23.2-keyed","b":"43_first-paint","v":{"DEFAULT":[213.7]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"01_run1k","v":{"total":[47.804,46.571,47.156,48.348,47.803,49.858,47.777,47.735,48.694,47.293,47.987,47.888,49.416,48.539,48.725],"script":[14.085,13.897,13.824,14.803,14.347,15.306,14.176,14.526,15.477,14.062,14.309,14.191,15.474,15.032,14.707],"paint":[33.267,32.257,32.923,33.109,33.006,34.109,33.159,32.777,32.781,32.788,33.243,33.247,33.469,33.054,33.573]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"02_replace1k","v":{"total":[56.83,58.556,56.664,57.483,58.047,57.209,57.522,57.568,56.669,58.042,56.987,56.298,56.841,57.267,57.123],"script":[20.459,22.285,20.381,20.962,21.525,21.07,22.183,22.018,21.473,21.551,21.098,20.409,20.375,20.859,21.304],"paint":[35.884,35.785,35.85,36.011,36.079,35.677,34.821,35.134,34.668,36.055,35.352,35.348,36.022,35.954,35.388]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"03_update10th1k_x16","v":{"total":[25.36,27.043,25.268,25.076,25.088,24.854,24.65,24.898,25.037,24.777,24.363,25.691,24.636,25.598,24.946],"script":[9.463,10.513,9.442,9.543,9.286,9.14,8.486,9.533,9.088,9.761,8.397,9.991,9.136,9.963,9.491],"paint":[14.465,14.964,14.496,14.208,14.29,13.94,14.384,14.379,14.642,13.774,14.6,13.607,14.202,14.34,13.946]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"04_select1k","v":{"total":[8.85,8.878,8.379,9.191,8.72,8.513,7.754,8.642,9.043,8.393,8.342,7.841,8.832,8.913,8.452,8.417,8.378,8.267,8.457,9.188,8.438,8.439,9.102,9.215,7.854],"script":[6.019,6.146,6.331,5.988,5.914,5.848,5.215,5.382,6.118,5.73,5.864,5.01,6.058,5.977,6.108,5.094,5.296,5.498,5.85,6.47,5.384,5.628,6.204,6.121,5.767],"paint":[2.111,1.941,1.896,2.135,2.686,2.361,2.028,3.118,2.004,1.649,2.336,2.259,2.414,2.778,1.416,3.208,2.967,2.633,1.158,2.179,1.957,2.67,2.756,2.946,1.949]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"05_swap1k","v":{"total":[177.527,172.496,173.054,171.373,172.254,171.891,168.153,172.455,169.916,170.753,170.894,173.142,170.797,169.07,170.966],"script":[30.795,27.726,30.102,26.852,30.158,26.484,26.641,27.799,28.705,29.007,27.899,28.492,29.977,27.15,28.844],"paint":[144.881,142.819,141.379,142.845,140.469,143.347,139.283,143.489,139.203,140.593,139.82,142.357,138.195,139.359,140.289]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"06_remove-one-1k","v":{"total":[18.528,18.449,18.34,19.158,18.453,18.483,18.406,18.573,18.608,18.474,18.591,18.485,18.359,18.453,18.529],"script":[3.627,3.337,3.203,3.375,3.227,3.413,3.513,3.308,3.257,3.133,3.305,3.504,3.735,2.854,3.45],"paint":[14.065,14.384,14.443,14.764,14.177,14.261,14.113,14.123,14.59,14.611,14.513,14.004,13.788,14.868,13.934]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"07_create10k","v":{"total":[620.953,618.999,619.636,624.306,614.423,621.216,622.466,614.454,625.953,621.265,625.381,619.696,618.624,621.735,619.433],"script":[270.687,268.106,265.323,269.624,263.579,270.225,269.876,258.628,268.933,269.879,267.581,268.107,267.23,268.993,267.808],"paint":[343.435,344.236,347.63,347.937,344.073,344.338,345.848,349.152,349.346,344.669,351.024,344.776,344.7,345.839,344.912]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"08_create1k-after1k_x2","v":{"total":[58.557,53.973,54.813,54.493,54.084,58.673,58.323,58.241,58.525,58.167,58.392,57.568,55.897,56.619,57.668],"script":[17.257,16.324,16.165,16.207,16.066,17.1,16.988,17.872,18.018,17.812,17.142,18.657,16.848,17.186,17.888],"paint":[40.384,36.766,37.741,37.334,37.119,40.615,40.355,39.477,39.608,39.474,40.346,38.011,38.237,38.538,38.853]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"09_clear1k_x8","v":{"total":[25.064,24.664,25.78,24.859,24.619,23.968,24.695,25.366,24.329,24.59,25.545,24.9,24.516,24.746,24.963],"script":[23.051,22.389,23.578,22.932,22.675,22.681,22.829,22.706,22.517,22.658,24.12,22.682,22.998,22.437,22.939],"paint":[1.299,2.18,2.1,1.83,1.837,1.193,1.762,2.556,1.709,1.826,1.307,2.113,1.369,1.798,1.579]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.0842256546020508]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"22_run-memory","v":{"DEFAULT":[4.940828323364258]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.558403015136719]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.2211170196533203]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[36.2567777633667]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[145.8505859375]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"42_size-compressed","v":{"DEFAULT":[41.4306640625]}}, -{"f":"react-tracked-v18.2.0 + 1.7.11-keyed","b":"43_first-paint","v":{"DEFAULT":[219.2]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"01_run1k","v":{"total":[49.451,50.174,48.767,49.889,49.578,49.883,48.896,49.086,50.045,50.324,48.824,48.613,48.757,49.045,49.757],"script":[15.247,16.271,15.192,16.073,15.838,15.783,15.131,15.403,15.73,15.664,15.291,15.23,15.373,15.499,15.329],"paint":[33.771,33.432,33.15,33.359,33.296,33.659,33.332,33.239,33.852,34.224,33.114,32.96,32.946,33.124,33.974]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"02_replace1k","v":{"total":[58.63,58.083,57.792,59.064,58.579,59.991,59.313,59.522,58.507,59.745,58.867,58.988,59.246,58.644,59.498],"script":[21.682,21.783,21.732,22.293,22.236,22.826,22.884,22.492,22.026,22.601,22.419,21.733,22.532,22.073,22.528],"paint":[36.398,35.852,35.593,36.319,35.872,36.703,35.983,36.566,35.981,36.663,35.977,36.783,36.239,36.117,36.51]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"03_update10th1k_x16","v":{"total":[22.459,23.822,22.843,22.905,24.024,22.785,22.509,24.798,22.626,22.492,23.176,24.66,22.482,22.058,23.337],"script":[7.006,7.797,6.577,6.971,7.248,7.308,6.82,7.169,6.896,6.718,7.693,6.881,7.429,6.109,6.912],"paint":[14.554,14.519,14.911,14.126,15.377,13.669,13.572,16.312,14.214,14.015,13.339,16.413,13.668,14.351,15.053]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"04_select1k","v":{"total":[5.892,6.06,6.152,6.58,5.583,5.678,5.14,5.118,6.411,6.082,5.959,5.791,5.895,6.76,6.196,6.158,5.824,5.651,5.887,5.454,5.922,5.821,5.151,5.551,7.197],"script":[3.06,3.508,3.294,3.683,2.878,2.669,2.817,2.532,3.43,3.151,2.889,3.103,3.079,3.692,3.537,3.041,3.017,2.665,2.522,2.659,2.823,2.768,2.881,2.857,3.137],"paint":[2.279,0.55,2.009,1.549,1.856,2.86,1.172,2.019,2.305,2.308,2.926,1.668,2.687,2.048,2.126,1.779,1.609,2.312,3.223,1.698,2.322,2.923,2.121,1.967,3.816]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"05_swap1k","v":{"total":[166.7,164.671,169.161,169.33,165.844,167.203,173.577,166.503,169.201,167.2,171.472,169.028,171.199,172.521,168.036],"script":[24.987,25.1,27.489,26.817,26.664,26.164,27.06,25.011,27.127,27.29,25.253,26.784,25.89,27.106,25.975],"paint":[140.149,137.738,139.518,140.462,137.03,138.54,144.578,139.825,140.224,138.304,144.395,139.958,143.914,143.319,139.301]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"06_remove-one-1k","v":{"total":[17.432,17.885,17.423,17.457,17.624,17.933,18.143,17.876,17.818,18.688,17.827,18.479,18.079,17.61,17.399],"script":[2.102,2.416,2.309,2.36,2.242,2.533,2.511,2.451,2.383,2.182,2.424,2.423,2.184,2.16,2.006],"paint":[14.538,14.306,14.028,13.741,14.645,14.624,14.591,14.624,14.653,15.188,14.595,15.252,15.118,14.698,14.651]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"07_create10k","v":{"total":[645.368,642.11,637.23,639.001,643.329,640.694,634.293,641.431,640.63,646.752,638.122,636.564,646.172,635.49,651.424],"script":[284.495,285.352,281.866,282.279,280.741,284.972,280.267,281.653,284.665,286.394,282.75,285.138,283.846,281.139,282.858],"paint":[353.886,350.058,348.357,349.961,355.383,348.95,347.336,353.074,349.254,353.743,348.708,344.143,355.621,347.677,361.832]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"08_create1k-after1k_x2","v":{"total":[56.797,55.506,55.083,56.706,56.199,56.217,55.81,54.926,55.793,55.97,55.683,54.758,55.545,54.485,53.845],"script":[17.306,16.21,15.436,16.816,17.255,17.182,15.98,15.837,16.694,16.544,16.134,16.416,16.228,15.594,15.198],"paint":[38.55,38.137,38.837,39.007,38.071,38.152,38.313,38.211,37.708,38.536,38.657,37.474,38.215,37.868,37.463]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"09_clear1k_x8","v":{"total":[29.457,31.622,28.236,29.371,28.981,28.922,31.605,29.194,32.56,29.513,28.607,27.171,26.975,29.61,27.375],"script":[27.854,29.296,25.811,27.737,26.626,27.009,29.67,27.126,29.869,27.334,26.738,25.012,24.917,27.517,24.767],"paint":[1.485,2.222,1.889,1.21,1.223,1.804,1.192,1.961,2.121,2.075,1.782,1.185,1.077,1.958,2.14]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.019474983215332]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"22_run-memory","v":{"DEFAULT":[7.378084182739258]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.000672340393066]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.896714210510254]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[60.610809326171875]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[144.8798828125]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"42_size-compressed","v":{"DEFAULT":[40.8134765625]}}, -{"f":"react-zustand-v18.2.0 + 4.3.6-keyed","b":"43_first-paint","v":{"DEFAULT":[227.8]}}, -{"f":"reagent-v0.10-keyed","b":"01_run1k","v":{"total":[60.856,59.165,59.269,57.741,66.424,63.01,65.168,59.017,58.607,63.105,62.903,64.12,59.806,64.734,63.683],"script":[26.622,25.239,25.042,25.194,26.204,26.066,24.737,25.168,25.137,24.823,25.726,26.437,26.247,25.479,25],"paint":[34.085,33.775,33.677,32.395,34.195,33.726,34.86,33.688,33.319,33.776,33.392,33.855,33.406,33.103,32.264]}}, -{"f":"reagent-v0.10-keyed","b":"02_replace1k","v":{"total":[75.696,76.076,68.166,76.079,75.625,77.807,74.094,77.345,77.278,72.1,69.281,67.27,76.568,67.186,69.887],"script":[30.463,30.877,29.177,30.991,29.935,30.409,30.353,30.051,30.203,29.646,29.94,29.526,29.684,29.711,30.061],"paint":[36.873,36.284,36.438,36.967,36.327,36.856,36.319,37.83,36.712,36.092,36.809,35.796,37.104,36.91,36.917]}}, -{"f":"reagent-v0.10-keyed","b":"03_update10th1k_x16","v":{"total":[47.038,29.542,31.784,30.598,30.692,28.966,28.859,28.603,30.059,29.525,27.75,29.703,31.08,45.771,29.698],"script":[15.684,13.929,14.058,13.881,13.595,14.59,13.732,14.604,13.702,14.499,12.179,13.819,14.272,15.339,13.486],"paint":[15.316,15.427,15.022,14.414,15.378,14.264,15.003,13.873,15.594,14.067,14.57,15.764,14.41,14.526,13.756]}}, -{"f":"reagent-v0.10-keyed","b":"04_select1k","v":{"total":[9.029,7.647,7.601,8.433,8.418,8.497,10.261,10.904,9.78,7.793,10.36,10.077,9.981,10.533,7.482,7.633,10.51,9.42,7.705,8.264,9.039,12.323,6.759,9.863,8.273],"script":[5.497,4.138,4.316,4.981,5.379,4.193,5.621,3.697,5.099,4.28,3.902,3.973,4.57,3.719,4.822,4.419,4.318,5.368,4.775,5.18,4.303,5.24,3.812,3.555,4.865],"paint":[2.632,2.961,2.797,1.719,2.86,2.575,2.672,3.37,3.233,2.39,1.739,2.929,2.385,2.894,1.614,2.034,2.859,1.987,2.041,2.911,3.007,3.085,2.199,2.981,2.352]}}, -{"f":"reagent-v0.10-keyed","b":"05_swap1k","v":{"total":[170.023,189.427,166.979,172.92,189.78,174.123,175.765,163.31,171.025,172.966,168.492,165.376,166.426,180.827,165.994],"script":[26.573,29.453,30.288,29.297,29.372,29.128,27.733,27.035,28.539,30.397,26.519,26.408,27.131,27.212,25.765],"paint":[142.348,143.207,136.111,142.302,143.555,144.184,146.21,135.764,139.061,140.586,141.818,137.793,139.157,137.554,139.772]}}, -{"f":"reagent-v0.10-keyed","b":"06_remove-one-1k","v":{"total":[25.615,22.564,24.429,32.528,28.071,27.783,28.778,22.973,32.315,26.539,33.781,24.131,26.117,33.476,35.884],"script":[4.892,4.98,5.127,5.271,5.035,5.41,5.011,5.554,5.069,5.536,5.533,4.8,5.099,5.587,5.376],"paint":[15.243,15.87,16.099,15.638,15.021,15.636,14.851,14.978,15.017,14.966,15.24,15.618,15.939,15.92,15.306]}}, -{"f":"reagent-v0.10-keyed","b":"07_create10k","v":{"total":[689.256,674.975,673.989,668.319,670.745,671.484,679.414,672.627,671.149,670.27,686.132,676.058,689.071,671.69,665.629],"script":[324.867,324.595,324.01,322.665,324.646,325.158,332.461,321.773,324.771,325.892,329.032,326.443,325.532,326.008,320.323],"paint":[362.121,348.272,346.517,343.474,343.533,344.165,344.851,348.641,343.782,342.265,354.953,347.057,359.612,343.319,343.14]}}, -{"f":"reagent-v0.10-keyed","b":"08_create1k-after1k_x2","v":{"total":[68.501,71.67,69.882,68.705,68.329,64.055,70.471,72.454,72.577,73.356,69.88,68.635,69.621,72.664,69.568],"script":[24.639,23.854,23.761,23.64,23.678,23.932,24.067,23.56,23.507,24.166,23.759,23.889,23.826,24.268,23.758],"paint":[37.715,39.12,39.665,39.189,38.497,38.856,38.301,39.459,39.128,39.337,39.38,38.882,38.437,39.634,39.198]}}, -{"f":"reagent-v0.10-keyed","b":"09_clear1k_x8","v":{"total":[28.649,30.095,30.453,30.115,29.534,29.848,30.567,33.218,29.327,29.317,29.763,27.983,28.289,30.809,29.999],"script":[26.932,28.383,29.147,27.922,27.078,27.989,26.732,28.063,27.723,26.729,26.679,26.66,26.529,28.983,27.072],"paint":[1.651,1.654,1.244,1.484,2.393,1.797,1.602,2.152,1.542,1.834,2.184,0.979,1.057,1.732,1.983]}}, -{"f":"reagent-v0.10-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.4371309280395508]}}, -{"f":"reagent-v0.10-keyed","b":"22_run-memory","v":{"DEFAULT":[6.484687805175781]}}, -{"f":"reagent-v0.10-keyed","b":"23_update5-memory","v":{"DEFAULT":[7.168415069580078]}}, -{"f":"reagent-v0.10-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.26486873626709]}}, -{"f":"reagent-v0.10-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[42.45787334442139]}}, -{"f":"reagent-v0.10-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[274.7626953125]}}, -{"f":"reagent-v0.10-keyed","b":"42_size-compressed","v":{"DEFAULT":[64.447265625]}}, -{"f":"reagent-v0.10-keyed","b":"43_first-paint","v":{"DEFAULT":[394.9]}}, -{"f":"redom-v3.29.0-keyed","b":"01_run1k","v":{"total":[44.383,41.859,43.45,44.904,43.081,43.961,44.191,44.354,43.876,44.355,46.302,43.598,44.7,43.7,43.817],"script":[9.969,8.603,9.883,10.438,9.997,10.173,10.248,9.861,10.135,10.005,10.784,9.766,10.139,9.95,9.99],"paint":[33.962,32.81,33.13,34.003,32.641,33.368,33.497,34.03,33.289,33.916,35.077,33.416,34.15,33.334,33.376]}}, -{"f":"redom-v3.29.0-keyed","b":"02_replace1k","v":{"total":[48.957,49.802,49.515,48.417,49.784,49.512,48.704,49.175,48.947,49.56,50.334,48.651,49.671,49.612,49.262],"script":[13.088,13.046,13.153,13.08,13.585,13.278,12.801,12.882,12.984,13.902,13.237,13.055,12.802,13.642,13.705],"paint":[35.38,36.291,35.874,34.904,35.753,35.673,35.419,35.818,35.503,35.172,36.649,35.131,36.42,35.525,35.109]}}, -{"f":"redom-v3.29.0-keyed","b":"03_update10th1k_x16","v":{"total":[18.056,17.517,17.774,17.762,17.293,18.297,18.007,18.294,17.744,17.017,17.575,17.945,18.173,17.515,17.241],"script":[2.415,2.721,2.092,2.118,1.301,1.534,1.83,2.386,1.678,1.813,1.792,1.623,2.352,2.259,1.714],"paint":[14.01,13.789,13.425,14.174,14.616,15.77,14.925,14.467,15.015,13.841,14.663,15.248,13.785,13.601,14.205]}}, -{"f":"redom-v3.29.0-keyed","b":"04_select1k","v":{"total":[2.858,4.064,3.277,3.131,3.739,3.303,4.016,3.267,2.622,3.324,3.198,3.077,4.231,2.987,3.008,2.875,3.9,4.149,4.652,2.978,3.428,3.698,3.652,2.917,2.913],"script":[0.666,0.911,1.146,0.989,1.458,1.25,1.233,0.857,1.192,0.917,0.955,0.933,1.056,0.952,0.996,0.552,1.627,1.494,1.792,0.222,0.613,0.571,1.679,0.965,0.957],"paint":[2.074,1.944,2.007,1.622,2.176,1.925,2.674,2.304,1.326,2.297,1.409,1.48,3.028,1.178,1.18,1.198,2.166,1.903,1.782,1.63,1.904,2.753,1.137,1.843,1.847]}}, -{"f":"redom-v3.29.0-keyed","b":"05_swap1k","v":{"total":[19.273,19.206,19.898,19.027,19.595,18.576,19.586,20.036,19.414,20.377,19.234,19.731,19.984,19.185,19.929],"script":[0.959,0.98,1.701,1.176,0.905,1.26,1.45,1.787,1.674,1.703,1.256,1.544,1.744,1.373,1.284],"paint":[16.006,17.017,16.117,17.179,17.113,16.106,17.121,17.072,16.468,17.311,16.376,17.026,16.59,15.877,17.452]}}, -{"f":"redom-v3.29.0-keyed","b":"06_remove-one-1k","v":{"total":[15.936,15.411,15.112,15.465,15.258,15.394,15.659,15.302,15.99,15.831,15.601,15.869,15.438,15.333,15.361],"script":[0.616,0.569,0.359,0.615,0.558,0.6,0.333,0.563,0.578,0.617,0.46,0.59,0.592,0.474,0.582],"paint":[14.557,14.07,13.712,13.751,13.971,14.063,14.614,14.016,14.466,14.52,14.499,14.622,14.076,13.962,14.024]}}, -{"f":"redom-v3.29.0-keyed","b":"07_create10k","v":{"total":[444.131,443.914,447.325,446.295,447.12,443.803,447.184,447.089,448.775,441.912,446.731,442.252,447.202,444.183,443.31],"script":[100.427,100.488,100.968,102.138,100.258,100.316,99.984,100.534,101.502,100.587,100.967,100.399,101.783,102.479,101.608],"paint":[337.084,336.869,339.73,337.514,340.237,336.959,340.716,339.968,340.628,334.793,339.299,335.392,338.887,335.13,335.129]}}, -{"f":"redom-v3.29.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.65,50.04,48.653,48.043,48.276,48.816,49.101,48.564,48.023,50.066,48.368,49.907,49.685,49.868,49.945],"script":[10.759,10.602,10.29,10.192,10.177,10.261,10.529,10.535,10.506,10.531,10.157,10.813,10.849,10.717,10.978],"paint":[37.991,38.481,37.45,36.964,37.207,37.658,37.654,37.14,36.63,38.638,37.32,38.196,37.905,38.178,38.11]}}, -{"f":"redom-v3.29.0-keyed","b":"09_clear1k_x8","v":{"total":[13.759,14.679,14.016,14.224,13.98,13.648,13.902,13.499,14.539,14.026,15.331,15.611,14.166,14.115,14.764],"script":[11.935,12.73,12.404,12.379,12.081,11.954,12.009,12.145,12.793,11.795,13.117,13.894,12.381,12.689,12.967],"paint":[1.723,1.188,0.989,1.415,1.167,0.758,1.801,0.756,1.655,1.345,2.115,1.632,1.504,1.339,0.957]}}, -{"f":"redom-v3.29.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4922351837158203]}}, -{"f":"redom-v3.29.0-keyed","b":"22_run-memory","v":{"DEFAULT":[2.4475574493408203]}}, -{"f":"redom-v3.29.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.5744876861572266]}}, -{"f":"redom-v3.29.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.5122880935668945]}}, -{"f":"redom-v3.29.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[19.28907585144043]}}, -{"f":"redom-v3.29.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[9.4873046875]}}, -{"f":"redom-v3.29.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.24609375]}}, -{"f":"redom-v3.29.0-keyed","b":"43_first-paint","v":{"DEFAULT":[47.1]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"01_run1k","v":{"total":[40.248,40.232,41.059,40.35,40.323,40.231,39.827,40.6,39.837,39.488,41.094,39.352,40.873,40.676,40.862],"script":[6.415,6.464,7.554,6.718,6.727,6.939,7.368,6.885,6.527,6.424,7.445,6.575,6.493,7.135,7.474],"paint":[33.41,33.339,33.086,33.221,33.165,32.875,32.04,33.304,32.903,32.654,33.232,32.36,33.97,33.15,32.991]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"02_replace1k","v":{"total":[50.394,49.771,48.098,49.699,47.556,50.53,50.029,49.354,48.728,50.364,48.116,48.309,50.06,49.727,49.984],"script":[14.785,14.499,13.295,14.378,13.21,15.068,14.824,13.901,13.461,15.03,13.512,13.645,15.057,14.338,14.434],"paint":[35.205,34.85,34.368,34.879,33.877,35.028,34.788,35.019,34.808,34.882,34.174,34.23,34.587,34.892,35.125]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"03_update10th1k_x16","v":{"total":[18.776,18.822,19.101,19.563,18.253,18.335,18.105,19.726,17.963,17.586,17.846,17.423,19.106,19.043,19.232],"script":[3.374,2.968,2.829,2.884,3.07,2.969,2.44,3.255,2.806,2.532,2.739,2.701,3.315,2.719,4.062],"paint":[14.184,13.881,14.483,14.569,13.688,14.669,14.523,13.935,13.775,13.751,14.033,12.839,14.785,15.218,14.075]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"04_select1k","v":{"total":[4.645,4.996,5.688,4.858,4.327,3.59,3.965,4.962,6.677,3.805,4.45,3.834,4.034,4.524,4.232,4.032,4.335,4.392,4.586,4.071,4.609,5.148,4.287,4.876,4.43],"script":[1.787,2.55,2.238,1.915,1.682,1.436,1.25,2.456,1.914,1.301,1.857,1.964,1.894,2.33,1.801,1.596,1.894,1.265,2.164,1.071,2.169,1.409,1.656,2.691,2.075],"paint":[1.565,1.779,2.108,2.846,2.536,2.05,2.606,1.996,2.786,1.469,1.727,1.098,2.038,2.075,2.094,1.957,1.679,2.988,1.706,2.902,1.737,1.955,1.463,1.578,1.433]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"05_swap1k","v":{"total":[19.899,19.811,19.604,20.677,20.197,20.217,20.371,20.072,19.971,19.664,21.096,20.635,19.919,21.511,19.6],"script":[1.321,1.674,1.55,1.811,2.324,2.635,2.139,2.231,1.846,1.069,2.402,2.487,1.044,2.171,1.846],"paint":[16.741,16.962,16.695,17.147,16.576,15.783,17.013,16.381,16.03,17.619,17.139,17.129,17.593,17.968,16.17]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"06_remove-one-1k","v":{"total":[16.539,16.012,16.258,16.418,15.6,16.015,15.929,16.754,16.223,16.389,15.962,15.957,16.288,15.465,16.059],"script":[1.101,1.113,0.915,1.115,0.818,0.893,1.062,1.137,0.946,1.095,0.981,0.799,0.924,0.735,1.041],"paint":[14.685,14.19,14.205,14.602,14.025,14.253,14.13,14.67,14.515,14.531,13.977,14.382,14.546,13.667,14.231]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"07_create10k","v":{"total":[427.945,429.824,434.655,424.365,423.191,427.619,427.693,427.289,426.877,424.83,422.058,423.016,423.032,422.141,423.532],"script":[81.713,83.487,83.315,82.053,81.917,82.561,84.905,84.674,83.438,82.125,82.523,80.727,83.321,83.069,83.164],"paint":[339.501,339.146,344.643,335.697,334.053,338.295,336.095,335.912,336.774,335.855,332.881,335.619,333.075,332.366,333.033]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"08_create1k-after1k_x2","v":{"total":[45.41,45.623,46.113,45.945,47.554,46.381,45.941,47.501,46.22,47.364,47.384,47.504,47.331,47.289,48.551],"script":[6.702,7.006,6.674,7.078,7.992,7.055,6.761,7.508,7.333,7.301,7.3,7.657,6.797,7.657,6.975],"paint":[37.854,37.702,38.508,37.935,38.655,38.411,38.28,39.096,37.977,39.123,39.186,38.961,39.626,38.759,40.65]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"09_clear1k_x8","v":{"total":[12.893,12.892,13.786,12.704,13.278,13.089,12.578,13.252,12.903,13.296,13.023,12.872,12.509,13.436,13.206],"script":[10.844,10.677,11.098,11.05,11.5,10.79,11.463,10.991,11.702,11.35,10.51,10.661,11.293,11.106,11.143],"paint":[1.952,2.121,1.707,1.568,1.688,2.2,0.365,2.178,1.111,1.854,2.416,2.115,0.356,2.241,1.976]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.46042633056640625]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"22_run-memory","v":{"DEFAULT":[2.863656997680664]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.8788061141967773]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.8888835906982422]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[22.874950408935547]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[4.8408203125]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"42_size-compressed","v":{"DEFAULT":[2.359375]}}, -{"f":"rendrjs-v0.2.50-keyed","b":"43_first-paint","v":{"DEFAULT":[48.1]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"01_run1k","v":{"total":[40.161,40.232,42.116,41.465,41.212,41.601,41.514,41.077,42.948,41.163,39.805,41.086,40.148,41.756,41.668],"script":[7.017,6.915,7.818,6.999,7.229,7.038,7.871,7.834,7.548,7.331,7.538,7.605,7.533,6.922,7.683],"paint":[32.71,32.891,33.877,34.053,33.561,34.156,33.238,32.826,34.987,33.413,31.856,33.078,32.204,34.398,33.502]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"02_replace1k","v":{"total":[51.569,51.823,50.629,50.389,49.922,50.996,52.366,52.206,52.142,52.274,50.493,51.909,53.26,52.011,52.654],"script":[15.03,16.429,15.251,14.993,14.837,15.377,15.935,16.46,15.018,15.658,14.809,15.144,16.339,16.001,16.509],"paint":[36.061,34.921,34.944,34.936,34.625,35.141,35.979,35.294,36.698,36.158,35.231,36.327,36.458,35.555,35.683]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"03_update10th1k_x16","v":{"total":[18.036,18.641,18.108,17.464,18.051,17.256,19.022,17.971,18.039,18.056,18.594,17.857,17.674,18.64,17.815],"script":[2.377,2.618,2.338,2.376,2.697,2.449,2.417,3.202,2.131,2.744,2.553,1.982,2.487,1.916,2.072],"paint":[14.547,14.042,14.337,13.529,13.919,13.831,15.531,12.774,14.34,14.031,14.106,14.848,13.878,15.146,14.975]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"04_select1k","v":{"total":[2.457,3.701,3.247,3.803,3.09,2.986,3.819,3.101,3.329,3.433,2.641,2.854,3.076,3.534,2.204,3.311,3.058,3.068,3.246,3.893,2.913,2.733,3.38,3.132,4.405],"script":[0.305,1.376,0.598,1.132,0.573,0.196,1.204,0.923,0.821,1.39,0.175,0.752,0.701,0.939,0.608,0.551,0.171,1.046,0.893,0.605,0.903,0.199,1.224,0.57,0.868],"paint":[1.398,2.213,1.7,1.718,2.407,2.688,1.754,1.705,1.325,1.937,2.371,0.773,2.268,1.243,1.065,1.596,2.662,0.691,1.544,2.584,1.918,2.008,1.559,1.558,2.37]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"05_swap1k","v":{"total":[19.976,18.722,19.446,19.25,20.104,19.279,19.328,19.084,18.893,19.254,19.354,19.29,18.989,18.714,18.821],"script":[1.045,0.655,0.961,1.157,1.142,1.143,1.462,0.638,1.502,0.642,1.331,1.227,0.92,0.278,1.263],"paint":[16.926,16.777,17.182,15.978,17.372,16.811,15.422,17.151,15.128,16.635,17.062,16.765,16.082,17.289,15.948]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"06_remove-one-1k","v":{"total":[16.568,15.578,15.391,16.156,15.679,16.008,15.323,15.99,15.859,15.372,16.577,15.387,15.877,15.588,15.39],"script":[0.656,0.635,0.668,0.675,0.657,0.649,0.664,0.672,0.669,0.661,0.937,0.656,0.978,0.816,0.691],"paint":[14.975,14.254,13.705,14.704,14.313,14.633,13.944,14.644,14.555,13.917,14.414,13.718,14.2,13.879,13.672]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"07_create10k","v":{"total":[436.333,432.919,429.139,443.031,425.14,431.482,426.089,428.823,425.917,432.4,435.635,437.894,426.507,423.009,440.089],"script":[90.6,87.251,87.016,86.553,86.236,87.658,84.863,85.986,85.236,86.334,85.596,87.074,85.82,84.966,87.468],"paint":[339.03,338.347,335.382,349.785,332.178,337.093,334.47,336.112,333.987,339.371,343.338,344.166,334.018,331.406,345.839]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"08_create1k-after1k_x2","v":{"total":[45.544,45.534,44.747,48.402,46.61,46.065,46.877,45.893,45.043,46.336,45.013,47.822,46.013,46.223,46.542],"script":[6.925,6.742,6.851,7.07,7.583,7.24,7.443,7.355,6.915,7.508,6.759,7.043,6.953,7.545,7.212],"paint":[37.661,37.957,37.054,40.442,38.133,37.985,38.528,37.673,37.217,37.954,37.396,39.719,38.094,37.851,38.469]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"09_clear1k_x8","v":{"total":[14.59,13.422,13.259,12.994,13.264,13.67,13.352,12.801,13.486,13.538,12.632,13.28,13.06,13.986,13.226],"script":[12.468,11.081,11.742,11.897,11.58,11.562,11.371,11.132,11.75,11.731,11.244,11.335,10.657,11.925,11.473],"paint":[1.377,1.84,1.142,0.358,0.791,2.017,1.889,1.207,1.646,1.712,1.296,1.854,2.31,1.57,1.663]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5491237640380859]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"22_run-memory","v":{"DEFAULT":[3.190570831298828]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.3019609451293945]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7474231719970703]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[26.047858238220215]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[5.419921875]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"42_size-compressed","v":{"DEFAULT":[2.591796875]}}, -{"f":"rendrjs-atoms-v0.2.50-keyed","b":"43_first-paint","v":{"DEFAULT":[47.2]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"01_run1k","v":{"total":[47.087,45.784,46.231,46.215,45.376,45.6,46.184,45.128,46.38,45.895,45.211,45.41,46.329,45.915,46.697],"script":[12.405,12.218,12.824,12.233,12.657,11.966,12.44,11.659,12.49,12.441,12.104,12.441,12.402,12.543,12.143],"paint":[34.231,33.112,32.957,33.524,32.28,33.198,33.302,33.036,33.442,32.993,32.642,32.522,33.48,32.94,34.118]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"02_replace1k","v":{"total":[50.479,49.22,48.352,47.997,49.732,47.933,48.469,49.134,49.359,48.298,49.406,49.074,49.382,49.406,50.05],"script":[15.293,13.877,13.4,13.506,14.998,13.647,14.195,14.274,14.738,14.245,14.421,13.789,14.323,15.031,14.844],"paint":[34.695,34.854,34.509,34.022,34.263,33.815,33.819,34.41,34.149,33.61,34.515,34.838,34.602,33.93,34.761]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"03_update10th1k_x16","v":{"total":[28.874,30.03,29.95,30.815,30.751,30.795,31.076,30.191,29.296,30.914,29.206,30.473,28.918,29.69,31.33],"script":[12.314,13.392,14.264,15.423,14.399,15.628,14.936,13.968,13.872,14.897,13.398,14.821,12.871,13.607,14.516],"paint":[15.282,15.11,13.249,13.76,14.571,13.855,14.776,14.821,13.956,14.67,13.894,13.911,15,14.291,14.491]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"04_select1k","v":{"total":[14.645,14.116,15.086,14.269,12.588,15.274,15.057,15.122,13.454,13.512,12.897,13.72,14.247,14.081,13.873,13.892,13.94,14.546,14.329,13.595,14.471,12.951,13.523,12.858,12.906],"script":[11.327,11.18,11.641,11.162,10.05,12.502,11.174,11.501,10.999,10.422,10.384,10.907,10.832,10.826,11.144,11.277,11.112,11.579,10.929,10.513,11.997,10.005,11.217,9.604,10.692],"paint":[3.052,2.767,3.258,2.944,1.657,2.602,3.711,2.563,2.301,2.001,1.377,2.046,2.823,2.507,2.575,1.781,2.282,2.787,3.151,1.193,2.314,1.849,1.39,2.538,1.659]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"05_swap1k","v":{"total":[179.393,184.557,177.551,178.741,180.404,177.604,172.276,177.582,178.857,177.858,182.262,182.858,169.699,168.22,177.849],"script":[33.476,34.313,33.832,33.399,36.814,34.962,32.763,33.854,35.58,31.825,34.536,34.79,33.011,32.433,34.338],"paint":[143.786,149.152,141.29,143.284,140.976,141.064,136.871,141.776,141.875,143.979,145.778,147.245,134.793,132.638,141.474]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"06_remove-one-1k","v":{"total":[21.217,21.625,21.642,21.329,21.478,22.21,21.072,21.936,21.058,21.572,21.414,22.247,22.175,21.321,21.588],"script":[6.347,6.345,6.378,5.959,6.273,6.472,6.21,6.672,5.732,6.571,6.218,6.511,6.269,6.306,6.595],"paint":[14.121,14.099,14.457,14.254,14.239,14.585,14.099,14.501,14.4,14.117,14.446,14.899,14.837,14.11,14.254]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"07_create10k","v":{"total":[602.031,602.151,586.662,585.34,599.954,599.22,581.238,604.086,601.731,596.436,582.557,603.076,605.274,600.914,590.26],"script":[250.19,249.918,250.466,246.668,249.845,248.703,241.723,247.48,249.396,246.656,245.795,250.817,252.066,250.494,246.727],"paint":[344.937,345.51,329.496,331.974,343.393,343.655,332.747,349.897,345.626,342.947,330.103,345.5,346.4,343.744,336.732]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[55.826,54.821,54.726,54.603,55.725,54.123,54.544,55.2,54.996,54.629,53.953,54.541,55.664,55.669,54.175],"script":[14.968,15.273,14.669,15.222,15.46,14.977,15.111,15.102,14.906,15.197,14.785,15.257,15.214,15.915,14.967],"paint":[39.941,38.654,39.158,38.463,39.347,38.243,38.522,39.194,39.178,38.517,38.29,38.368,39.408,38.837,38.295]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"09_clear1k_x8","v":{"total":[15.962,14.843,14.059,14.914,15.509,14.467,15.891,15.676,15.218,15.269,15.302,15.808,15.193,15.93,15.182],"script":[13.796,12.819,12.232,12.767,13.881,13.291,14.302,13.556,12.957,13.75,13.773,13.973,13.115,14.171,13.431],"paint":[1.588,1.514,1.71,1.049,1.537,0.445,1.323,1.624,2.171,1.426,0.935,1.087,1.993,0.892,0.739]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.938786506652832]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"22_run-memory","v":{"DEFAULT":[4.346417427062988]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.482413291931152]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.702164649963379]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.168522834777832]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[132.6806640625]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[37.9970703125]}}, -{"f":"rescript-react-v0.10.3-keyed","b":"43_first-paint","v":{"DEFAULT":[199.2]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"01_run1k","v":{"total":[44.476,44.546,43.955,43.295,44.181,43.472,43.523,45.077,44.061,45.378,48.105,45.005,43.879,43.369,44.574],"script":[10.421,10.503,9.811,10.032,10.606,10.306,10.065,10.941,10.542,10.515,10.861,10.835,10.133,10.288,10.62],"paint":[33.585,33.625,33.713,32.842,33.169,32.752,33.056,33.7,33.075,34.438,36.801,33.755,33.314,32.649,33.523]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"02_replace1k","v":{"total":[48.548,49.468,49.616,49.74,48.819,49.658,49.18,48.987,49.49,49.073,49.694,49.473,49.223,47.617,48.079],"script":[12.952,12.981,13.877,14.044,12.612,13.665,13.031,13.014,13.126,13.717,14.17,13.803,13.556,12.831,12.898],"paint":[35.144,36.042,35.323,35.251,35.788,35.553,35.7,35.532,35.901,34.921,35.098,35.243,35.24,34.34,34.747]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"03_update10th1k_x16","v":{"total":[16.96,18.304,17.137,17.86,17.736,17.639,17.536,17.197,17.605,17.582,18.178,18.034,16.549,17.013,17.554],"script":[2.362,2.522,2.336,1.987,2.359,2.669,2.177,2.568,2.257,2.31,2.17,2.611,1.963,2.105,1.582],"paint":[12.466,14.485,13.622,13.776,13.416,12.891,13.787,13.404,13.568,14.005,14.393,14.262,13.29,13.933,12.977]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"04_select1k","v":{"total":[4.589,2.986,3.334,3.679,3.846,4.108,4.841,4.585,6.75,3.799,3.346,3.794,3.502,3.412,4.243,3.403,3.73,3.719,3.292,3.64,3.675,4.007,4.052,3.532,2.978],"script":[0.965,0.965,0.806,1.657,0.61,1.454,2.088,0.661,0.976,1.275,1.416,1.018,0.921,0.67,1.787,1.024,1.208,1.326,1.114,1.035,0.941,1.626,1.033,0.906,0.967],"paint":[2.485,1.916,2.431,1.916,2.725,1.673,2.133,2.956,2.351,1.74,0.962,2.212,2.478,2.33,1.609,1.698,0.563,2.279,2.073,2.49,1.809,2.28,2.375,1.611,1.205]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"05_swap1k","v":{"total":[21.065,22.163,22.068,21.94,22.306,20.705,21.272,22.766,20.908,21.006,20.889,21.446,21.017,22.069,21.289],"script":[2.897,2.453,2.819,2.896,2.434,2.327,2.706,2.595,2.576,2.609,2.632,2.817,2.162,2.463,2.265],"paint":[16.274,17.902,18.089,17.742,18.339,16.748,16.683,18.291,16.729,17.207,17.113,16.637,16.612,18.156,17.095]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"06_remove-one-1k","v":{"total":[16.598,18.452,16.975,16.554,16.488,16.347,16.157,16.989,16.575,16.943,16.11,16.403,16.595,16.656,16.77],"script":[1.235,1.247,1.539,1.383,1.185,0.939,1.28,1.526,1.314,1.22,1.233,1.286,1.237,1.307,1.244],"paint":[14.573,16.77,14.738,14.486,14.547,14.382,14.16,14.726,14.518,14.96,14.102,14.061,14.361,14.569,14.563]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"07_create10k","v":{"total":[447.449,441.406,445.813,447.378,450.458,440.688,442.608,443.961,443.837,445.995,439.001,441.247,439.376,440.09,449.456],"script":[103.695,102.965,105.921,103.992,105.337,103.408,105.704,105.907,106.169,104.161,101.424,101.839,101.844,101.035,101.393],"paint":[337.132,331.748,333.231,336.773,338.464,330.606,330.185,331.061,331.009,335.146,330.938,332.839,330.91,332.416,340.869]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.416,50.021,49.517,48.67,48.322,49.065,50.261,49.892,48.943,51.558,48.103,50.35,50.716,48.429,49.117],"script":[11.456,11.173,11.312,10.237,10.215,10.702,10.114,11.036,10.366,11.254,9.91,11.309,10.451,10.181,9.618],"paint":[40.055,37.941,37.297,37.521,37.203,37.464,39.251,37.968,37.686,39.388,37.309,38.144,39.408,37.329,38.629]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"09_clear1k_x8","v":{"total":[11.366,11.442,12.675,12.128,11.567,12.842,12.112,11.724,12.801,11.169,12.099,12.519,11.133,12.182,13.175],"script":[9.806,9.308,10.303,10.292,9.931,10.639,10.161,10.544,10.291,9.705,10.093,10.732,9.714,10.367,11.923],"paint":[1.076,1.384,1.335,1.74,0.735,1.119,1.121,0.826,1.761,0.93,1.482,1.255,1.331,1.719,1.162]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.49127864837646484]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"22_run-memory","v":{"DEFAULT":[2.846734046936035]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.912019729614258]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.8518886566162109]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[20.443537712097168]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11.6435546875]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.11328125]}}, -{"f":"rezact-v1.0.15-beta.9-keyed","b":"43_first-paint","v":{"DEFAULT":[51.9]}}, -{"f":"riot-v7.1.0-keyed","b":"01_run1k","v":{"total":[48.504,48.329,45.43,45.954,45.323,45.608,46.803,44.914,44.993,47.368,45.331,45.883,46.437,45.786,46.532],"script":[12.446,12.128,11.825,12.134,12.003,12.039,11.904,11.764,11.669,13.185,11.713,12.277,12.877,12.065,12.681],"paint":[35.607,35.77,33.183,33.396,32.896,33.14,34.442,32.718,32.893,33.729,33.199,33.16,32.998,33.285,33.441]}}, -{"f":"riot-v7.1.0-keyed","b":"02_replace1k","v":{"total":[54.377,55.493,54.917,54.78,54.41,53.874,53.571,54.711,54.459,53.703,54.199,54.291,53.894,55.128,53.542],"script":[17.789,18.864,18.752,18.115,18.212,18.009,17.522,18.434,18.31,17.964,17.523,18.132,17.651,18.035,17.635],"paint":[36.112,36.182,35.689,36.212,35.753,35.42,35.608,35.778,35.697,35.304,36.217,35.69,35.778,36.637,35.471]}}, -{"f":"riot-v7.1.0-keyed","b":"03_update10th1k_x16","v":{"total":[21.308,20.793,20.922,20.125,22.074,21.103,20.345,21.181,21.088,21.144,22.934,21.08,20.645,20.922,20.399],"script":[5.732,5.538,6.155,5.316,6.129,4.936,5.511,6.486,5.648,5.63,5.903,5.734,5.229,5.404,5.373],"paint":[14.454,13.174,13.889,14.058,14.112,14.313,13.556,13.685,13.997,13.812,15.638,14.339,13.797,14.309,13.661]}}, -{"f":"riot-v7.1.0-keyed","b":"04_select1k","v":{"total":[7.589,8.256,8.287,9.286,8.175,7.36,7.476,8.689,8.688,8.4,8.313,7.775,7.64,7.223,7.809,7.792,8.646,7.784,7.374,7.887,7.724,8.272,8.284,8.358,7.571],"script":[5.014,5.257,5.723,6.442,5.528,4.92,4.963,6.056,5.885,5.885,5.014,5.359,5.423,5.08,5.42,5.297,5.621,5.533,5.181,5.267,4.695,5.419,5.035,5.514,5.125],"paint":[1.207,2.842,1.898,2.688,1.471,1.445,2.369,2.476,2.544,1.228,2.689,1.613,1.348,1.541,2.25,1.812,2.407,1.276,0.53,2.138,2.877,1.754,2.103,1.674,1.3]}}, -{"f":"riot-v7.1.0-keyed","b":"05_swap1k","v":{"total":[24.767,23.3,23.426,23.756,23.323,23.89,23.951,24.943,23.687,24.145,24.465,23.59,24.346,23.205,24.469],"script":[6.128,5.309,5.464,5.458,5.185,5.673,5.345,5.863,5.051,5.27,5.522,4.822,5.41,5.229,5.597],"paint":[16.6,16.947,15.709,17.169,16.452,16.669,17.276,17.81,16.02,16.984,17.233,16.971,18.243,16.694,17.08]}}, -{"f":"riot-v7.1.0-keyed","b":"06_remove-one-1k","v":{"total":[18.051,17.296,17.33,18.835,17.661,17.255,17.923,17.633,17.745,17.939,17.751,17.637,17.254,17.377,18.983],"script":[3.024,2.565,2.556,2.924,2.822,2.901,2.672,2.781,2.861,2.82,2.951,2.803,2.507,2.638,2.972],"paint":[14.251,13.977,13.995,15.16,13.87,13.597,14.209,13.67,14.101,14.026,13.993,14.095,14.041,14.019,14.95]}}, -{"f":"riot-v7.1.0-keyed","b":"07_create10k","v":{"total":[478.515,479.035,476.516,478.401,479.834,480.944,489.742,489.286,486.881,483.898,484.797,480.191,481.392,477.655,481.392],"script":[130.532,130.781,130.812,132.15,132.906,134.045,135.006,137.146,134.685,136.026,136.447,133.611,133.448,132.843,134.772],"paint":[340.987,341.511,339.015,339.502,340.194,340.033,348.062,345.401,345.49,340.949,341.675,339.927,340.682,338.065,339.948]}}, -{"f":"riot-v7.1.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[54.707,54.683,54.619,54.139,53.873,54.931,54.164,53.721,55.731,55.097,54.42,53.003,53.014,52.294,53.015],"script":[13.265,13.25,13.127,13.213,12.628,12.942,13.077,13.041,14.064,13.053,12.958,12.829,12.703,12.531,13.038],"paint":[40.481,40.581,40.553,40.056,40.289,41.035,40.203,39.728,40.617,41.113,40.529,39.11,39.386,38.841,39.064]}}, -{"f":"riot-v7.1.0-keyed","b":"09_clear1k_x8","v":{"total":[24.711,20.967,21.479,23.534,23.858,23.499,23.678,24.071,21.621,21.673,23.109,22.23,23.889,22.659,21.897],"script":[22.611,19.096,19.884,21.605,21.741,21.436,21.685,22.618,19.654,19.652,20.689,20.793,21.98,20.658,20.085],"paint":[1.986,1.587,0.811,1.104,1.996,1.054,1.044,1.354,1.223,1.163,2.322,0.407,1.813,1.183,1.717]}}, -{"f":"riot-v7.1.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5339937210083008]}}, -{"f":"riot-v7.1.0-keyed","b":"22_run-memory","v":{"DEFAULT":[3.584469795227051]}}, -{"f":"riot-v7.1.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.6070556640625]}}, -{"f":"riot-v7.1.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9044942855834961]}}, -{"f":"riot-v7.1.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[30.23105812072754]}}, -{"f":"riot-v7.1.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[19.9287109375]}}, -{"f":"riot-v7.1.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.4384765625]}}, -{"f":"riot-v7.1.0-keyed","b":"43_first-paint","v":{"DEFAULT":[75.4]}}, -{"f":"s2-v1.0.17-keyed","b":"01_run1k","v":{"total":[45.477,45.214,44.033,46.444,44.531,44.204,44.821,44.212,44.246,46.007,44.046,45.046,47.01,45.617,44.818],"script":[10.584,10.007,9.911,10.916,10.019,9.982,10.569,10.405,10.631,10.378,9.718,10.25,10.151,10.848,10.154],"paint":[34.424,34.761,33.686,35.102,34.074,33.784,33.809,33.293,33.204,35.21,33.903,34.365,36.4,34.344,34.239]}}, -{"f":"s2-v1.0.17-keyed","b":"02_replace1k","v":{"total":[51.624,51.431,52.968,51.847,51.073,50.809,51.258,50.73,53.349,52.008,53.474,53.32,51.237,51.599,52.536],"script":[14.449,14.279,14.903,14.221,14.155,14.15,14.26,14.352,14.867,14.323,15.349,14.827,14.346,14.924,14.868],"paint":[36.681,36.69,37.554,37.161,36.465,36.201,36.554,35.923,37.971,37.186,37.62,38.034,36.411,36.167,37.196]}}, -{"f":"s2-v1.0.17-keyed","b":"03_update10th1k_x16","v":{"total":[18.399,17.086,17.571,17.167,18.288,18.357,18.228,16.646,18.144,18.075,16.902,18.022,16.986,17.85,17.59],"script":[1.876,1.068,1.721,1.533,0.981,1.796,0.977,1.402,1.943,1.79,1.619,1.28,1.478,1.78,1.301],"paint":[14.524,14.693,14.631,14.12,15.956,15.294,15.686,14.089,14.451,15.043,14.349,14.571,14.303,14.487,14.743]}}, -{"f":"s2-v1.0.17-keyed","b":"04_select1k","v":{"total":[4.375,3.013,3.483,2.961,3.012,3.774,2.248,4.181,3.366,2.522,2.991,2.73,2.546,3.073,2.192,3.337,2.677,2.098,3.815,2.34,2.626,2.597,2.542,2.942,2.221],"script":[0.365,0.878,0.053,0.054,0.053,0.049,0.049,0.045,0.76,0.632,0.046,0.053,0.051,0.535,0.435,0.048,0.771,0.056,0.049,0.05,0.048,0.256,0.05,0.047,0.05],"paint":[1.848,2.028,2.283,2.583,2.515,1.89,1.764,1.998,2.504,1.417,2.838,2.577,2.389,1.884,1.653,3.163,1.184,1.075,2.542,2.17,2.214,2.235,1.52,2.788,2.066]}}, -{"f":"s2-v1.0.17-keyed","b":"05_swap1k","v":{"total":[18.345,20.001,19.52,18.784,19.682,18.793,18.148,18.256,19.336,19.023,19.389,18.855,20.196,19.244,19.437],"script":[0.132,0.86,0.826,0.609,0.901,0.13,0.659,0.127,0.738,0.12,0.857,0.554,0.818,0.117,0.773],"paint":[16.163,16.967,17.373,15.37,17.444,17.114,15.909,17.131,17.645,17.045,17.119,16.332,17.667,17.299,17.108]}}, -{"f":"s2-v1.0.17-keyed","b":"06_remove-one-1k","v":{"total":[15.373,15.204,15.683,15.504,15.087,14.979,15.74,15.583,15.329,15.415,15.13,15.429,15.13,15.372,15.542],"script":[0.092,0.09,0.202,0.139,0.086,0.091,0.414,0.144,0.092,0.099,0.089,0.09,0.099,0.27,0.108],"paint":[14.203,14.466,14.662,14.669,13.954,14.195,14.626,14.718,14.543,14.631,14.003,13.951,13.888,14.372,15.016]}}, -{"f":"s2-v1.0.17-keyed","b":"07_create10k","v":{"total":[471.947,463.481,458.039,465.923,462.669,459.852,469.884,462.428,460.2,464.226,462.055,458.815,462.389,461.73,465.206],"script":[116.092,114.611,111.221,118.098,114.062,112.312,115.651,112.153,111.855,112.87,111.843,113.005,112.847,116.422,116.464],"paint":[348.814,341.855,339.821,340.962,341.814,340.785,347.46,343.512,341.584,344.455,343.384,339.049,342.767,338.396,342.01]}}, -{"f":"s2-v1.0.17-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.394,50.81,52.322,51.86,50.108,51.352,52.617,51.77,51.804,51.817,51.58,52.736,51.575,52.897,51.913],"script":[12.088,10.835,10.987,11.224,10.702,10.967,11.99,10.895,11.961,11.859,10.79,11.932,11.992,11.794,11.793],"paint":[39.329,39.116,40.423,39.701,38.495,39.453,39.717,39.913,38.967,39.049,39.881,39.846,38.674,40.17,39.209]}}, -{"f":"s2-v1.0.17-keyed","b":"09_clear1k_x8","v":{"total":[17.621,18.456,17.828,20.185,18.341,18.857,18.454,18.964,18.069,18.728,17.66,18.897,17.191,17.111,19.026],"script":[15.498,16.384,15.626,17.732,16.718,17.034,16.479,17.049,16.366,16.254,16.118,16.27,15.762,15.685,16.835],"paint":[1.515,1.977,1.2,2.354,0.982,1.681,1.716,1.054,0.795,1.465,1.436,1.85,1.339,1.311,2.096]}}, -{"f":"s2-v1.0.17-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5664300918579102]}}, -{"f":"s2-v1.0.17-keyed","b":"22_run-memory","v":{"DEFAULT":[3.3038434982299805]}}, -{"f":"s2-v1.0.17-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.323984146118164]}}, -{"f":"s2-v1.0.17-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0907831192016602]}}, -{"f":"s2-v1.0.17-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[25.861918449401855]}}, -{"f":"s2-v1.0.17-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[73.3544921875]}}, -{"f":"s2-v1.0.17-keyed","b":"42_size-compressed","v":{"DEFAULT":[11.75]}}, -{"f":"s2-v1.0.17-keyed","b":"43_first-paint","v":{"DEFAULT":[129.9]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"01_run1k","v":{"total":[45.992,44.58,44.705,45.858,46.518,44.746,45.573,44.816,46.17,44.998,44.244,45.373,45.878,45.049,45.926],"script":[11.931,10.656,10.781,11.281,11.824,10.893,11.902,11.14,11.399,11.253,10.689,11.583,11.831,11.263,11.639],"paint":[33.625,33.473,33.471,34.185,34.272,33.406,33.242,33.262,34.333,33.309,33.112,33.382,33.638,33.346,33.824]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"02_replace1k","v":{"total":[54.372,52.743,53.096,52.358,52.05,53.07,52.074,51.637,52.402,51.728,51.527,51.434,52.751,52.114,52.311],"script":[16.931,16.508,17.22,16.837,16.463,17.057,16.403,16.101,16.931,16.294,16.259,16.129,17.029,16.649,16.383],"paint":[36.929,35.77,35.403,35.066,35.125,35.536,35.239,35.087,35.001,34.984,34.793,34.844,35.237,35.012,35.493]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"03_update10th1k_x16","v":{"total":[19.183,18.814,20.82,19.228,21.259,19.043,19.429,19.754,18.988,19.728,19.646,20.231,20.186,19.646,18.728],"script":[3.42,3.549,3.922,3.385,4.048,3.114,3.578,3.36,2.918,3.685,3.432,3.316,3.862,3.918,3.675],"paint":[13.983,13.561,15.903,13.869,16.118,14.851,13.887,14.263,14.781,14.211,14.465,15.707,14.698,14.737,13.747]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"04_select1k","v":{"total":[4.106,4.184,4.322,4.5,5.388,4.59,5.322,4.425,4.45,4.119,4.853,4.102,4.28,4.808,4.829,4.545,3.902,4.604,4.371,5.032,3.849,4.582,4.339,4.198,4.025],"script":[1.89,1.841,1.622,2.081,1.87,2.067,1.702,1.882,1.747,1.995,1.381,1.403,2.066,1.849,2.063,2.276,1.39,1.837,2.091,2.168,1.788,1.933,1.726,1.508,1.62],"paint":[1.657,2.235,2.053,2.317,1.309,1.453,2.409,1.874,1.897,1.986,3.117,2.581,1.487,2.837,1.483,2.11,1.834,2.023,2.176,2.743,1.954,2.163,2.455,1.62,1.581]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"05_swap1k","v":{"total":[20.341,21.189,20.477,20.538,20.932,21.079,21.098,22.106,21.166,21.946,21.085,21.669,20.145,20.192,23.001],"script":[1.805,2.347,2.006,1.565,1.811,2.054,1.747,2.483,2.019,2.121,2.455,2.063,1.884,1.815,2.035],"paint":[17.618,17.728,17.174,17.675,17.784,17.71,17.307,18.637,17.645,18.219,16.994,18.172,16.524,16.5,19.268]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"06_remove-one-1k","v":{"total":[16.212,16.13,16.094,16.012,15.918,15.951,15.875,16.199,15.89,15.707,16.324,16.54,16.086,16.221,16.063],"script":[0.932,0.718,0.665,0.812,1.001,0.988,0.678,0.986,0.67,0.678,0.997,1.02,0.701,0.817,0.702],"paint":[14.513,14.582,14.377,14.418,14.111,13.906,14.445,14.535,14.455,14.208,14.554,14.989,14.585,14.731,14.626]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"07_create10k","v":{"total":[474.187,476.075,478.803,473.318,476.12,473.73,479.969,473.463,479.033,475.379,471.712,478.19,473.138,470.514,477.046],"script":[124.375,120.589,121.405,124.623,121.28,121.949,121.711,125.913,121.162,127.474,116.646,118.655,118.704,125.173,117.703],"paint":[342.311,348.118,350.16,341.304,347.506,344.454,350.813,340.23,350.528,340.578,347.756,352.033,347.174,337.938,352.117]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[51.23,52.812,51.221,52.728,54.126,52.041,53.515,52.595,52.435,53.274,52.612,52.376,53.401,52.573,51.278],"script":[11.67,12.865,11.579,12.399,12.766,11.603,12.607,11.896,12.267,11.887,12.408,12.03,12.415,11.64,11.529],"paint":[38.592,39.032,38.703,39.387,40.378,39.526,39.971,39.769,39.177,40.475,39.304,39.431,39.88,40.016,38.821]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"09_clear1k_x8","v":{"total":[24.516,23.459,24.796,23.46,22.014,22.31,21.086,21.674,21.856,21.407,23.101,23.75,23.525,22.992,23.091],"script":[22.627,21.5,23.274,21.966,19.926,20.67,19.184,19.761,19.141,19.776,21.045,21.975,21.445,21.265,20.938],"paint":[0.93,1.253,1.409,1.392,1.158,1.54,1.806,1.814,1.368,0.725,1.963,0.809,1.967,0.717,2.047]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.838836669921875]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"22_run-memory","v":{"DEFAULT":[4.991396903991699]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.111337661743164]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.1895809173583984]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[41.20985221862793]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[76.447265625]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[19.0400390625]}}, -{"f":"san-composition-v3.12.2 + 1.3.0-keyed","b":"43_first-paint","v":{"DEFAULT":[123.1]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"01_run1k","v":{"total":[41.43,39.066,39.696,42.655,40.883,40.565,40.661,39.857,39.545,41.34,40.047,41.319,40.705,41.317,41.343],"script":[7.691,7.046,7.14,7.057,7.916,7.697,7.929,7.108,7.103,7.795,7.135,7.806,7.695,8.152,7.953],"paint":[33.547,31.861,32.378,34.74,32.787,32.677,32.553,31.908,32.279,33.354,32.734,33.331,32.84,32.994,33.18]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"02_replace1k","v":{"total":[47.677,47.015,46.298,46.583,49.137,46.834,47.258,46.527,46.185,45.795,47.305,47.631,46.942,47.926,46.374],"script":[12.993,12.463,12.56,12.35,12.961,12.68,13.055,12.148,12.366,12.252,12.541,12.558,12.47,12.743,12.535],"paint":[34.507,34.365,33.57,33.95,36.015,33.975,34.03,34.105,33.648,33.37,34.599,34.895,34.16,34.994,33.655]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"03_update10th1k_x16","v":{"total":[17.893,22.216,22.167,18.446,20.126,43.748,40.144,19.991,21.588,42.368,23.601,22.256,18.685,21.487,18.41],"script":[3.717,4.909,4.824,4.355,4.288,3.739,3.25,4.25,3.921,4.314,4.397,4.324,4.262,4.807,3.934],"paint":[13.486,15.856,16.459,13.97,13.941,15.272,14.99,13.894,17.141,16.228,15.94,16.034,13.455,15.501,13.307]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"04_select1k","v":{"total":[8.825,5.818,8.777,10.165,8.558,12.998,10.359,8.269,4.868,17.077,9.715,14.626,7.127,6.82,10.082,5.242,6.984,4.659,8.849,14.116,7.262,10.225,7.071,10.035,7.068],"script":[2.182,2.424,3.087,3.456,2.623,3.635,2.549,2.318,1.287,2.596,2.483,2.956,3.694,1.812,2.339,2.693,3.397,2.248,2.697,2.497,2.854,3.419,2.407,1.651,2.63],"paint":[4.002,3.183,3.739,3.343,4.159,4.288,3.623,3.196,1.354,4.531,2.658,4.257,2.454,3.803,3.956,1.614,3.687,1.746,3.323,3.574,3.934,4.399,3.622,3.68,2.643]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"05_swap1k","v":{"total":[43.426,21.789,21.707,21.748,40.357,39.992,21.238,39.777,20.314,20.501,39.189,19.696,22.468,43.647,40.244],"script":[1.692,1.445,2.876,2.21,1.233,2.743,2.299,2.692,2.485,2.479,1.868,2.798,2.501,2.013,1.954],"paint":[19.867,15.416,16.608,17.205,16.026,16.091,17.315,16.758,16.911,17.735,16.946,15.893,17.843,18.658,16.762]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"06_remove-one-1k","v":{"total":[18.028,17.933,18.553,16.985,16.533,16.124,16.044,15.463,17.43,16.017,16.086,15.462,17.859,16.318,16.436],"script":[1.299,1.217,1.249,1.229,1.199,1.204,1.052,1.262,1.059,1.209,1.202,1.201,1.272,1.172,1.184],"paint":[14.699,15.242,16.08,14.574,14.081,14.014,13.769,13.453,14.852,13.742,13.114,13.853,15.112,14.234,14.807]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"07_create10k","v":{"total":[420.351,416.537,422.528,415.904,420.126,415.658,424.254,417.813,421.342,418.369,423.222,419.979,421.203,416.647,417.203],"script":[86.113,83.695,85.323,86.081,84.057,85.283,85.874,84.464,86.226,84.235,88.229,85.279,86.021,84.1,84.418],"paint":[332.015,330.744,335.079,327.644,333.533,328.255,336.212,331.148,332.972,332.009,332.792,332.45,333.054,330.415,330.616]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"08_create1k-after1k_x2","v":{"total":[47.099,46.454,45.676,44.813,47.136,47.058,47.093,46.418,47.922,45.978,46.78,46.43,45.793,46.697,64.611],"script":[8.317,7.774,7.613,7.751,8.54,8.537,8.596,7.766,8.269,8.036,8.624,7.856,7.694,8.329,7.75],"paint":[38.425,38.339,37.781,36.795,38.277,38.243,38.213,38.36,39.38,37.669,37.814,38.089,37.778,38.045,39.132]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"09_clear1k_x8","v":{"total":[19.608,17.213,16.922,15.768,20.396,19.684,21.019,16.271,18.534,18.906,20.714,15.968,18.851,20.473,20.076],"script":[15.225,15.076,14.806,14.606,15.41,16.01,17.088,14.629,14.979,14.545,16.779,14.547,14.513,15.773,16.116],"paint":[3.372,2.05,2.018,1.068,3.216,2.353,2.576,1.541,1.93,2.896,3.346,1.317,4.101,4.425,2.566]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.8736782073974609]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"22_run-memory","v":{"DEFAULT":[3.5236940383911133]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.6472854614257812]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.1404657363891602]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[26.184914588928223]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[86.3759765625]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"42_size-compressed","v":{"DEFAULT":[21.6728515625]}}, -{"f":"san-store-v3.12.2 + 2.2.1-keyed","b":"43_first-paint","v":{"DEFAULT":[136.2]}}, -{"f":"sauron-v0.57.4-keyed","b":"01_run1k","v":{"total":[78.123,75.551,75.921,74.888,79.07,75.762,78.237,76.38,74.482,79.689,78.864,79.727,80.016,75.322,78.149],"script":[42.338,39.849,39.911,39.037,43.509,39.947,42.503,40.588,39.218,43.667,42.36,43.521,43.915,39.746,42.639],"paint":[35.361,35.273,35.585,35.423,35.125,35.357,35.307,35.354,34.837,35.606,36.076,35.778,35.647,35.153,35.104]}}, -{"f":"sauron-v0.57.4-keyed","b":"02_replace1k","v":{"total":[99.773,99.466,98.032,102.565,102.051,102.623,102.187,98.951,102.334,98.716,100.249,99.047,98.894,97.037,100.309],"script":[63.861,62.756,62.038,65.909,66.041,66.662,65.824,62.989,65.831,62.663,63.858,63.045,63.037,61.202,63.569],"paint":[35.477,36.259,35.563,36.225,35.57,35.533,35.935,35.525,36.067,35.613,35.96,35.524,35.43,35.391,36.305]}}, -{"f":"sauron-v0.57.4-keyed","b":"03_update10th1k_x16","v":{"total":[24.776,25.108,25.252,25.451,25.586,25.314,26.774,25.792,24.714,25.182,24.614,25.536,24.864,26.872,24.685],"script":[8.768,9.126,9.28,9.314,9.454,8.903,9.075,9.006,8.792,8.674,9.099,8.734,9.813,9.873,9.022],"paint":[14.687,15.286,14.645,14.588,14.138,15.602,16.333,15.789,14.55,14.873,14.596,15.529,13.755,15.507,14.296]}}, -{"f":"sauron-v0.57.4-keyed","b":"04_select1k","v":{"total":[11.225,11.121,9.806,9.652,9.924,9.825,10.032,9.941,9.836,10.275,9.304,10.034,9.957,10.144,9.802,9.877,10.097,10.122,9.041,10.196,10.79,10.056,9.365,9.932,9.607],"script":[8.194,7.699,7.394,6.6,7.291,7.126,6.754,6.908,7.331,7.576,6.491,7.699,7.195,7.664,7.078,7.769,7.544,7.571,6.993,7.033,7.599,7.827,6.708,7.123,7.369],"paint":[1.633,2.827,1.486,2.913,2.496,1.412,3.145,2.34,2.039,2.128,2.347,2.195,2.629,1.593,1.749,1.241,1.745,1.391,1.175,2.075,3.027,1.431,2.523,1.941,1.64]}}, -{"f":"sauron-v0.57.4-keyed","b":"05_swap1k","v":{"total":[49.935,48.889,50.49,49.752,49.474,49.258,48.074,48.978,48.225,50.226,48.564,48.238,49.289,48.675,50.554],"script":[29.924,29.904,30.261,30.363,29.831,29.251,29.688,30.097,29.286,30.643,29.805,30.172,29.447,29.621,30.525],"paint":[18.222,17.222,19.063,18.454,18.321,18.174,16.796,17.237,18.209,18.591,17.137,15.626,18.498,18.35,17.697]}}, -{"f":"sauron-v0.57.4-keyed","b":"06_remove-one-1k","v":{"total":[18.932,19.935,18.964,18.957,18.82,19.073,18.513,19.06,18.978,18.468,18.747,19.535,19.122,18.768,18.997],"script":[3.6,3.41,3.585,3.585,3.614,3.604,3.522,3.603,3.597,3.576,3.61,3.659,3.593,3.605,3.612],"paint":[14.591,15.263,14.334,14.619,14.468,14.489,14.043,14.674,14.657,14.158,14.108,14.92,14.787,14.436,14.686]}}, -{"f":"sauron-v0.57.4-keyed","b":"07_create10k","v":{"total":[968.534,955.047,980.719,949.514,969.919,972.798,958.738,966.162,955.943,961.78,963.683,963.888,967.29,953.395,973.519],"script":[606.151,594.295,615.479,588.883,606.344,606.385,590.483,599.47,591.278,598.989,599.553,594.46,597.864,591.681,609.974],"paint":[355.661,354.153,358.461,353.983,356.981,359.489,361.349,360.018,358.059,356.112,357.458,361.886,362.728,350.853,356.809]}}, -{"f":"sauron-v0.57.4-keyed","b":"08_create1k-after1k_x2","v":{"total":[95.188,96.19,95.513,96.827,95.202,97.431,97.37,95.941,94.9,95.236,94.48,95.805,97.811,96.918,94.839],"script":[56.9,57.311,56.734,58.411,57.151,55.301,58.023,57.774,55.971,56.804,57.929,57.405,55.832,58.509,56.41],"paint":[37.347,37.962,37.843,37.499,37.131,41.174,38.417,37.245,37.986,37.523,35.673,37.499,41.028,37.489,37.523]}}, -{"f":"sauron-v0.57.4-keyed","b":"09_clear1k_x8","v":{"total":[44.793,45.659,42.892,39.851,43.234,42.058,42.396,43.689,41.298,44.098,43.332,44.806,46.411,41.891,44.155],"script":[42.878,43.251,40.714,38.206,41.218,39.951,40.745,41.314,39.089,41.548,40.961,42.369,44.168,39.7,42.23],"paint":[1.806,1.888,2.073,1.201,1.147,2.002,1.556,2.24,2.109,2.014,0.741,1.866,1.357,2.09,1.824]}}, -{"f":"sauron-v0.57.4-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.6824398040771484]}}, -{"f":"sauron-v0.57.4-keyed","b":"22_run-memory","v":{"DEFAULT":[5.564094543457031]}}, -{"f":"sauron-v0.57.4-keyed","b":"23_update5-memory","v":{"DEFAULT":[7.88668155670166]}}, -{"f":"sauron-v0.57.4-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.553736686706543]}}, -{"f":"sauron-v0.57.4-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[42.07828235626221]}}, -{"f":"sauron-v0.57.4-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[249.458984375]}}, -{"f":"sauron-v0.57.4-keyed","b":"42_size-compressed","v":{"DEFAULT":[75.6826171875]}}, -{"f":"sauron-v0.57.4-keyed","b":"43_first-paint","v":{"DEFAULT":[473.8]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"01_run1k","v":{"total":[42.998,41.663,41.112,43.881,42.76,41.651,42.433,42.717,42.23,41.05,42.599,41.339,41.186,40.88,42.734],"script":[7.985,7.488,7.195,7.564,8.071,7.288,7.832,8.037,7.973,7.258,7.911,7.128,7.148,7.109,7.662],"paint":[34.547,33.712,33.448,35.848,34.24,33.927,34.155,34.239,33.815,33.325,34.251,33.779,33.58,33.335,34.651]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"02_replace1k","v":{"total":[46.914,46.026,45.497,46.186,45.381,45.753,46.619,47.676,44.619,47.325,46.776,46.666,48.258,47.273,45.139],"script":[10.025,9.729,9.641,9.538,9.455,9.595,10.134,10.269,9.424,10.229,10.287,10.688,10.662,10.464,9.659],"paint":[36.427,35.848,35.409,36.169,35.47,35.7,35.994,36.944,34.74,36.643,36.052,35.492,37.148,36.325,35.015]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"03_update10th1k_x16","v":{"total":[17.046,17.153,19.953,20.63,20.646,18.408,17.344,18.229,32.272000000000006,17.427,34.616,21.885,16.452,32.295,18.743],"script":[2.624,1.803,1.018,1.369,2.48,1.566,1.962,2.109,1.134,1.793,1.995,2.521,1.916,1.217,1.475],"paint":[13.891,14.916,15.666,15.573,14.297,13.916,15.262,15.254,15.096,14.706,16.554,15.968,13.735,14.154,14.895]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"04_select1k","v":{"total":[3.85,4.304,3.789,4.513,3.856,3.979,4.136,3.957,4.377,3.587,4.575,3.892,3.69,3.765,5.525,3.711,4.082,4.07,4.038,4.352,4.649,4.131,4.487,3.889,4.132],"script":[1.374,1.28,0.953,1.445,1.186,1.71,1.242,1.306,2.063,1.279,1.531,1.714,1.167,1.004,1.525,1.086,1.516,1.364,1.596,1.574,1.185,1.678,1.403,1.536,1.913],"paint":[2.351,2.799,2.716,1.929,1.941,2.166,2.151,2.198,1.546,2.211,0.984,1.431,2.086,2.475,2.235,2.076,2.458,1.877,2.309,1.435,0.775,1.549,2.074,1.469,2.106]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"05_swap1k","v":{"total":[19.505,20.502,19.471,20.905,19.75,20.62,20.274,20.099,20.996,21.496,19.604,19.908,20.152,20.296,19.749],"script":[0.941,1.525,0.207,0.851,0.885,1.299,1.502,0.765,1.149,1.567,0.559,1.157,0.945,1.177,0.828],"paint":[16.433,17.676,18.287,18.896,17.39,17.898,17.549,18.199,18.057,18.821,17.666,17.231,17.359,17.718,15.819]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"06_remove-one-1k","v":{"total":[15.844,15.868,16.68,16.466,16.457,16.205,16.235,15.88,16.012,15.782,16.035,17.263,15.953,16.05,16.148],"script":[0.474,0.566,0.609,0.562,0.556,0.599,0.574,0.62,0.28,0.379,0.566,0.614,0.584,0.585,0.602],"paint":[14.352,14.563,15.036,15.135,15.104,14.848,14.38,14.572,14.631,14.714,14.75,15.508,14.552,14.237,14.561]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"07_create10k","v":{"total":[436.196,434.251,435.195,434.36,435.849,437.512,436.23,430.599,436.723,437.545,435.661,438.082,438.85,435.453,431.769],"script":[86.737,86.042,86.535,86.471,87.076,87.742,87.47,86.692,89.173,88.229,88.08,90.126,89.374,87.306,87.876],"paint":[342.025,340.572,341.168,340.574,341.277,342.458,341.345,336.678,340.21,341.803,340.108,340.666,342.145,340.563,336.527]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"08_create1k-after1k_x2","v":{"total":[47.18,47.229,46.253,46.396,45.915,46.833,47.612,48.418,48.425,46.213,48.3,48.668,46.579,46.924,45.707],"script":[6.728,6.781,6.631,6.588,6.546,6.59,7.137,7.12,7.243,6.579,7.142,7.179,6.634,6.65,6.663],"paint":[39.552,39.533,38.746,38.932,38.468,39.347,39.534,40.411,40.305,38.711,40.234,40.6,38.995,39.359,38.107]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"09_clear1k_x8","v":{"total":[16.137,14.281,13.955,14.392,14.452,14.312,13.949,15.124,14.291,13.811,14.142,13.588,14.326,14.404,13.506],"script":[13.832,12.717,12.166,12.494,12.395,11.909,12.012,12.715,12.295,11.938,12.075,12.226,11.89,12.021,11.626],"paint":[2.166,0.939,1.682,0.391,1.95,2.023,1.84,2.284,1.125,1.78,1.059,0.905,2.21,1.458,1.049]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.8361473083496094]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"22_run-memory","v":{"DEFAULT":[3.917496681213379]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.059771537780762]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.250258445739746]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[30.43843364715576]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[117.443359375]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"42_size-compressed","v":{"DEFAULT":[30.4462890625]}}, -{"f":"scarlets-frame-v0.34.6-keyed","b":"43_first-paint","v":{"DEFAULT":[167.6]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"01_run1k","v":{"total":[41.628,42.487,40.069,40.711,42.885,42.032,41.069,41.904,41.051,41.611,40.722,40.431,41.939,41.684,40.338],"script":[7.062,8.097,6.972,7.442,7.867,7.448,7.672,7.506,7.083,7.652,6.986,7.109,7.563,7.606,7.016],"paint":[34.137,33.957,32.677,32.879,34.595,34.157,32.979,33.989,33.589,33.566,33.35,32.881,33.974,33.68,32.906]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"02_replace1k","v":{"total":[44.701,45.76,44.11,44.53,44.89,45.233,45.115,44.747,44.014,44.43,45.1,46.115,45.249,44.228,43.775],"script":[9.522,10.61,9.448,9.648,9.228,10.457,9.679,9.372,9.271,9.458,9.537,9.881,10.45,9.206,9.31],"paint":[34.687,34.688,34.201,34.452,35.21,34.326,35.013,34.921,34.307,34.543,35.114,35.81,34.366,34.585,34.012]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"03_update10th1k_x16","v":{"total":[16.498,16.403,16.649,18.452,16.191,16.772,16.017,16.5,16.088,17.423,16.433,16.253,16.802,16.555,15.927],"script":[1.228,0.572,0.922,0.936,0.902,0.936,1.25,1.089,1.036,1.642,0.875,1.104,1.117,1.494,0.938],"paint":[14.111,14.493,14.545,15.781,13.614,14.239,13.184,14.14,13.752,14.814,14.119,13.856,13.912,13.18,13.653]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"04_select1k","v":{"total":[4.118,3.303,3.096,3.887,3.112,3.104,3.315,3.171,5.708,4.515,3.09,3.039,2.877,3.005,4.997,3.49,4.424,2.971,2.805,3.626,3.262,2.879,3.221,2.661,2.871],"script":[0.184,0.858,1.012,1.295,0.195,0.933,0.629,1.019,1.483,0.868,0.543,0.531,0.901,0.764,0.929,0.554,1.221,0.651,0.918,1.186,0.19,1.034,1.043,0.202,0.871],"paint":[2.451,2.342,1.619,1.894,2.321,1.372,2.581,1.877,1.909,1.777,1.384,2.395,1.876,1.738,2.498,1.901,1.423,1.551,1.351,2.339,2.959,1.35,1.665,2.21,1.175]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"05_swap1k","v":{"total":[18.63,18.314,18.905,18.702,18.16,19.584,18.727,18.08,18.421,18.683,19.479,19.196,18.626,18.274,17.602],"script":[0.778,0.519,0.25,0.751,0.133,0.127,0.829,0.125,0.143,0.9,0.787,0.117,0.762,0.126,0.129],"paint":[16.541,16.739,17.611,16.455,16.43,18.217,16.536,16.943,16.734,16.469,17.672,17.825,16.412,16.705,15.456]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"06_remove-one-1k","v":{"total":[15.005,14.844,14.96,14.857,15.406,14.817,15.539,14.917,15.516,15.162,15.124,15.358,15.416,15.737,14.975],"script":[0.275,0.098,0.289,0.102,0.312,0.106,0.231,0.24,0.12,0.109,0.324,0.422,0.416,0.364,0.189],"paint":[13.819,13.842,13.919,13.996,14.403,14,14.615,13.791,14.678,14.105,14.099,14.523,14.013,14.614,14.069]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"07_create10k","v":{"total":[421.262,417.104,417.936,417.769,420.012,420.224,424.198,418.89,427.169,424.694,419.635,419.384,418.666,423.341,420.615],"script":[81.428,83.476,78.185,81.959,85.601,83.398,82.257,82.287,80.239,85.116,84.846,84.866,83.494,85.571,84.433],"paint":[332.863,327.008,333.099,328.972,327.093,330.213,335.267,329.959,340.064,332.324,328.139,327.884,328.52,331.154,329.602]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[45.569,46.511,46.731,45.612,45.882,46.718,45.606,46.476,46.941,46.296,46.567,45.942,45.83,48.376,46.811],"script":[7.399,7.141,7.313,7.145,7.218,7.451,7.254,7.183,7.332,7.313,7.358,7.287,7.195,7.438,7.192],"paint":[37.327,38.547,38.585,37.649,37.829,38.405,37.494,38.43,38.748,38.154,38.33,37.827,37.773,40.063,38.76]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"09_clear1k_x8","v":{"total":[13.739,14.194,14.381,14.195,14.489,14.38,14.148,14.727,14.553,13.473,13.564,13.846,14.4,14.32,14.026],"script":[11.596,12.516,11.943,12.04,12.517,12.316,12.051,12.361,12.68,11.627,12.234,11.494,12.072,12.447,12.274],"paint":[2.061,1.594,1.994,2.063,1.852,1.965,2.009,2.111,1.777,1.755,1.246,1.345,2.146,1.782,1.031]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.635274887084961]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"22_run-memory","v":{"DEFAULT":[3.6682281494140625]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.796940803527832]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.534296989440918]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[22.434337615966797]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[170.7578125]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[46.126953125]}}, -{"f":"silkenweb-v0.6.0-keyed","b":"43_first-paint","v":{"DEFAULT":[269.2]}}, -{"f":"sinuous-v0.32.1-keyed","b":"01_run1k","v":{"total":[40.957,39.918,39.295,39.607,40.086,40.969,39.758,37.597,37.964,40.663,40.635,38.201,38.273,39.116,40.282],"script":[6.968,6.165,6.228,6.331,6.221,6.35,6.002,6.095,5.974,6.137,6.303,6.05,6.046,6.113,6.9],"paint":[33.57,33.29,32.631,32.847,33.441,34.181,33.323,31.089,31.576,34.092,33.901,31.747,31.811,32.58,32.961]}}, -{"f":"sinuous-v0.32.1-keyed","b":"02_replace1k","v":{"total":[45.083,44.369,44.591,44.458,44.533,44.893,43.931,44.81,43.593,44.595,44.737,45.152,44.487,45.34,44.848],"script":[8.787,9.106,9.181,9.282,9.047,9.166,8.87,9.138,8.686,9.284,9.09,9.227,9.152,8.981,9.241],"paint":[35.839,34.838,34.969,34.735,35.041,35.296,34.606,35.23,34.457,34.853,35.197,35.474,34.906,35.902,35.134]}}, -{"f":"sinuous-v0.32.1-keyed","b":"03_update10th1k_x16","v":{"total":[15.893,16.647,16.007,16.327,16.324,16.658,15.622,17.203,16.612,16.568,16.803,16.533,17.377,17.468,16.93],"script":[1.095,0.918,0.738,1.073,0.89,0.643,0.654,1.128,1.221,0.591,1.148,0.928,0.655,1.417,0.194],"paint":[13.237,13.534,13.963,13.937,13.773,13.988,13.434,14.64,14.681,13.731,14.372,13.793,15.114,14.808,15.136]}}, -{"f":"sinuous-v0.32.1-keyed","b":"04_select1k","v":{"total":[3.402,2.971,2.769,3.104,2.637,2.985,2.668,3.022,3.029,2.773,3.05,2.524,3.444,2.377,2.385,2.297,2.843,2.948,2.789,2.864,2.512,2.333,3.347,5.189,2.582],"script":[0.072,0.064,0.065,0.76,0.068,0.569,0.068,0.062,0.796,0.766,0.064,0.066,0.737,0.064,0.499,0.073,0.068,0.8,0.77,0.067,0.07,0.065,1.072,0.283,0.069],"paint":[3.237,2.432,1.761,2.237,1.602,2.316,1.785,2.708,2.14,1.904,2.893,2.156,1.624,1.968,0.868,1.231,2.67,1.422,1.907,2.696,2.343,1.525,1.312,1.82,1.603]}}, -{"f":"sinuous-v0.32.1-keyed","b":"05_swap1k","v":{"total":[19.182,20.196,19.702,20.405,20.436,21.412,19.328,20.266,19.741,19.998,20.294,19.981,20.231,20.521,19.563],"script":[1.065,1.033,2.152,1.248,1.696,2.046,0.87,1.217,1.005,0.644,1.112,1.304,1.484,1.407,1.565],"paint":[15.861,17.794,15.833,17.596,17.441,17.096,16.701,17.61,17.203,18.096,17.352,17.625,17.319,17.332,16.648]}}, -{"f":"sinuous-v0.32.1-keyed","b":"06_remove-one-1k","v":{"total":[15.324,15.712,15.048,15.244,15.715,15.253,15.197,15.878,15.961,15.859,15.655,15.506,15.677,15.073,15.301],"script":[0.186,0.329,0.17,0.44,0.489,0.449,0.184,0.571,0.338,0.49,0.489,0.34,0.492,0.332,0.349],"paint":[14.376,14.623,13.873,14.042,14.494,13.845,14.192,14.545,14.716,14.584,14.354,14.155,14.45,14.01,14.217]}}, -{"f":"sinuous-v0.32.1-keyed","b":"07_create10k","v":{"total":[423.929,435.528,425.143,424.863,423.571,427.162,425.398,420.984,430.16,426.606,421.954,418.322,412.985,417.874,423.016],"script":[81.022,81.328,80.082,81.768,79.596,81.011,81.416,81.042,82.395,81.102,81.374,80.104,77.118,79.631,80.468],"paint":[336.181,347.481,338.398,336.364,337.337,339.445,337.337,333.112,341.033,338.796,333.848,331.5,329.14,331.577,335.89]}}, -{"f":"sinuous-v0.32.1-keyed","b":"08_create1k-after1k_x2","v":{"total":[46.396,44.239,43.792,46.019,44.973,44.926,45.023,44.727,45.236,44.661,44.736,44.705,45.985,45.938,46.205],"script":[6.351,6.088,6.051,6.539,5.978,6.139,6.206,6.114,6.128,6.088,6.186,6.104,6.532,6.811,6.681],"paint":[39.17,37.036,36.901,38.546,37.98,37.908,37.924,37.722,38.223,37.669,37.674,37.659,38.501,38.249,38.669]}}, -{"f":"sinuous-v0.32.1-keyed","b":"09_clear1k_x8","v":{"total":[12.012,12.305,11.728,11.643,12.3,12.811,11.994,12.591,11.731,11.645,11.853,11.725,11.565,12.43,11.885],"script":[10.194,10.44,9.902,10.52,10.261,10.984,10.56,10.82,10.021,10.236,9.736,9.629,10.118,10.494,9.549],"paint":[1.721,1.781,1.739,0.356,1.081,1.156,1.258,0.875,0.833,0.382,2.022,2.021,1.356,1.832,2.253]}}, -{"f":"sinuous-v0.32.1-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4849967956542969]}}, -{"f":"sinuous-v0.32.1-keyed","b":"22_run-memory","v":{"DEFAULT":[2.647650718688965]}}, -{"f":"sinuous-v0.32.1-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.645925521850586]}}, -{"f":"sinuous-v0.32.1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7718515396118164]}}, -{"f":"sinuous-v0.32.1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[20.569453239440918]}}, -{"f":"sinuous-v0.32.1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[9.44140625]}}, -{"f":"sinuous-v0.32.1-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.7568359375]}}, -{"f":"sinuous-v0.32.1-keyed","b":"43_first-paint","v":{"DEFAULT":[48.6]}}, -{"f":"skruv-v0.6.3-keyed","b":"01_run1k","v":{"total":[46.111,46.326,50.157,45.703,45.527,46.967,46.852,47.051,46.844,46.501,46.329,45.309,47.921,47.479,47.284],"script":[12.549,11.983,14.199,12.443,12.427,12.269,12.221,12.069,11.925,12.166,12.223,12.375,12.798,13.825,13.412],"paint":[33.126,33.921,35.482,32.837,32.666,34.237,34.202,34.548,34.488,33.913,33.668,32.471,34.648,33.185,33.444]}}, -{"f":"skruv-v0.6.3-keyed","b":"02_replace1k","v":{"total":[56.799,54.58,53.849,57.612,53.303,54.515,54.25,54.929,54.982,58.407,56.387,57.112,57.379,54.371,56.672],"script":[20.5,18.237,18.278,21.184,17.682,17.9,17.671,18.322,18.344,21.659,19.861,20.597,20.892,18.173,19.928],"paint":[35.815,35.891,35.082,35.967,35.165,36.163,36.134,36.124,36.15,36.273,36.012,36.079,36.04,35.749,36.264]}}, -{"f":"skruv-v0.6.3-keyed","b":"03_update10th1k_x16","v":{"total":[21.445,20.088,20.65,21.982,20.906,20.888,20.612,20.909,20.175,20.336,21.674,21.097,20.776,20.509,21.58],"script":[5.275,4.392,5.165,5.725,5.06,5.118,4.556,5.142,4.991,4.977,5.512,5.132,4.745,4.66,4.967],"paint":[14.184,14.351,14.149,15.229,12.953,13.764,14.908,14.587,13.117,13.505,13.909,14.529,14.723,13.985,15.495]}}, -{"f":"skruv-v0.6.3-keyed","b":"04_select1k","v":{"total":[5.656,5.466,4.952,5.504,5.51,4.823,5.751,5.531,5.583,5.445,5.28,6.105,5.475,5.462,6.577,5.337,6.622,5.261,6.049,5.882,4.815,6.124,5.814,5.424,5.889],"script":[3.146,3.217,2.91,2.881,2.967,2.956,2.973,3.04,3.214,3.185,3.595,3.097,3.237,3.04,3.638,2.852,3.692,2.866,3.326,3.469,2.52,3.365,3.069,2.761,3.551],"paint":[1.773,2.13,1.927,2.152,2.416,1.419,2.264,2.389,2.254,1.281,1.033,2.027,2.124,2.313,1.913,2.372,1.685,1.713,2.627,1.523,1.797,2.13,2.628,2.554,2.229]}}, -{"f":"skruv-v0.6.3-keyed","b":"05_swap1k","v":{"total":[20.916,21.533,21.173,22.079,21.529,21.989,21.792,22.235,21.176,21.346,23.194,21.004,21.517,21.366,21.39],"script":[2.981,3.203,3.042,2.864,3.282,3.283,3.049,3.083,3.757,3.027,3.716,3.015,3.278,3.089,2.816],"paint":[16.614,17.315,17.123,17.641,16.5,17.23,17.263,17.519,16.21,17.024,18.096,16.484,17.171,16.45,17.262]}}, -{"f":"skruv-v0.6.3-keyed","b":"06_remove-one-1k","v":{"total":[17.337,16.706,17.804,17.254,16.932,16.475,17.116,17.132,16.6,16.602,16.894,16.677,16.474,16.728,16.542],"script":[1.668,1.363,1.783,1.612,1.796,1.352,1.327,1.555,1.37,1.342,1.684,1.675,1.374,1.622,1.66],"paint":[14.644,14.314,14.933,14.854,14.404,14.37,14.986,14.888,14.485,14.311,14.466,14.261,14.415,14.363,14.133]}}, -{"f":"skruv-v0.6.3-keyed","b":"07_create10k","v":{"total":[494.707,496.445,493.65,490.497,495.949,498.897,493.102,493.106,490.299,491.08,490.827,491.9,490.476,489.249,494.689],"script":[140.769,144.626,144.559,143.569,143.151,145.434,144.078,143.822,140.531,145.848,143.527,142.484,140.638,141.4,144.651],"paint":[346.074,345.033,342.195,340.177,345.664,346.561,342.008,342.369,343.107,338.474,340.514,342.426,343.238,341.004,343.193]}}, -{"f":"skruv-v0.6.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[56.112,56.296,54.91,57.33,55.765,56.137,55.188,55.713,54.601,57.268,56.468,55.421,55.819,56.324,54.826],"script":[15.663,15.336,15.439,16.343,15.697,15.589,15.469,15.923,15.524,15.939,15.705,16.022,15.687,16.079,15.312],"paint":[39.604,40.028,38.598,40.028,39.104,39.558,38.781,38.907,38.138,40.399,39.579,38.46,39.205,39.342,38.625]}}, -{"f":"skruv-v0.6.3-keyed","b":"09_clear1k_x8","v":{"total":[13.26,13.211,12.782,12.579,13.853,13.361,13.158,13.191,13.177,13.256,13.6,13.347,13.714,12.975,12.444],"script":[11.015,11.336,10.671,11.452,11.859,10.779,11.562,11.883,10.962,10.658,11.68,11.631,12.023,11.34,10.96],"paint":[2.157,1.675,2.018,0.382,1.899,1.145,0.679,0.535,1.127,2.315,1.758,1.22,1.572,0.72,1.391]}}, -{"f":"skruv-v0.6.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.46224308013916016]}}, -{"f":"skruv-v0.6.3-keyed","b":"22_run-memory","v":{"DEFAULT":[2.0004663467407227]}}, -{"f":"skruv-v0.6.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.998490333557129]}}, -{"f":"skruv-v0.6.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.8954391479492188]}}, -{"f":"skruv-v0.6.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[15.219494819641113]}}, -{"f":"skruv-v0.6.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[4.5078125]}}, -{"f":"skruv-v0.6.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[1.8310546875]}}, -{"f":"skruv-v0.6.3-keyed","b":"43_first-paint","v":{"DEFAULT":[47.5]}}, -{"f":"solid-v1.8.0-keyed","b":"01_run1k","v":{"total":[36.673,39.587,36.501,37.033,36.97,36.385,37.442,36.503,37.039,37.133,38.149,36.809,36.752,37.081,37.186],"script":[3.905,4.388,3.913,3.74,3.942,3.821,4.2,3.826,3.78,4.317,4.255,4.015,3.938,3.883,4.321],"paint":[32.375,34.778,32.197,32.877,32.602,32.182,32.856,32.266,32.844,32.419,33.486,32.374,32.397,32.817,32.475]}}, -{"f":"solid-v1.8.0-keyed","b":"02_replace1k","v":{"total":[42.31,42.465,41.747,43.442,43.597,43.424,43.327,42.228,42.674,43.753,42.9,41.986,43.262,42.724,42.949],"script":[7.349,7.801,7.595,7.937,7.859,8.07,8.252,7.76,7.469,7.96,7.993,7.392,8.348,8.101,8.06],"paint":[34.489,34.211,33.738,35.081,35.301,34.905,34.643,34.016,34.76,35.34,34.478,34.169,34.494,34.174,34.456]}}, -{"f":"solid-v1.8.0-keyed","b":"03_update10th1k_x16","v":{"total":[17.117,16.72,17.001,20.198,16.483,16.58,16.452,16.286,18.771,16.886,16.45,16.721,16.585,16.115,16.254],"script":[0.975,1.168,1.554,1.688,1.247,1.067,1.262,0.945,0.987,1.413,0.61,1.293,0.74,0.981,0.926],"paint":[14.554,14.549,12.646,16.372,13.617,13.465,12.765,13.812,16.285,14.196,13.607,14.33,14.225,13.587,14.072]}}, -{"f":"solid-v1.8.0-keyed","b":"04_select1k","v":{"total":[3.025,3.24,4.331,2.675,3.54,6.504,2.403,2.774,4.383,2.557,3.337,3.284,2.585,3.442,2.839,3.56,2.953,4.026,2.56,2.321,3.78,2.894,2.367,2.7,2.855],"script":[0.176,0.566,1.086,0.519,1.064,0.135,0.146,0.129,0.522,0.139,1.044,0.969,0.586,0.596,0.141,1.001,0.144,1.113,1.063,0.144,0.497,0.135,0.15,0.141,0.135],"paint":[2.391,2.572,2.076,2.06,2.278,1.637,2.161,1.92,1.867,2.317,1.668,1.565,1.321,2.357,2.589,2.459,2.485,1.494,1.4,2.076,1.188,1.391,1.841,2.049,2.631]}}, -{"f":"solid-v1.8.0-keyed","b":"05_swap1k","v":{"total":[21.225,19.478,20.138,19.028,19.655,19.39,19.809,19.097,18.876,19.246,18.495,19.095,19.055,20.207,19.983],"script":[1.291,1.487,1.831,0.981,1.723,1.022,2.108,1.045,1.075,1.131,1.456,1.235,1.186,1.75,1.782],"paint":[18.812,16.926,16.34,16.519,16.442,16.483,16.237,16.792,16.15,16.364,15.561,16.34,16.574,16.65,16.834]}}, -{"f":"solid-v1.8.0-keyed","b":"06_remove-one-1k","v":{"total":[15.364,15.259,15.469,15.263,15.339,15.267,15.159,14.998,15.937,15.101,15.694,15.021,15.051,15.81,15.519],"script":[0.554,0.562,0.417,0.631,0.547,0.588,0.552,0.568,0.561,0.445,0.575,0.55,0.538,0.563,0.43],"paint":[14.099,14.322,13.919,13.915,14.049,13.95,13.473,13.717,14.508,13.912,14.523,13.526,13.807,14.518,14.415]}}, -{"f":"solid-v1.8.0-keyed","b":"07_create10k","v":{"total":[387.151,382.369,389.301,382.118,391.102,383.166,385.428,379.685,379.836,378.415,381.688,386.398,381.17,380.981,381.084],"script":[44.132,43.646,44.152,43.653,43.952,43.663,43.618,42.958,42.799,42.383,43.029,43.939,42.746,42.786,44.042],"paint":[336.281,332.104,338.272,331.699,339.413,332.77,335.022,329.951,330.369,329.366,332.019,335.761,331.76,331.605,330.334]}}, -{"f":"solid-v1.8.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[42.746,43.75,44.41,43.7,42.786,44.166,42.739,42.973,44.124,43.397,45.214,44.138,45.021,43.957,43.801],"script":[4.412,4.903,4.553,4.897,4.384,4.901,4.482,4.539,4.883,4.805,4.386,4.827,4.459,4.851,4.884],"paint":[37.484,37.991,38.996,37.956,37.505,38.368,37.413,37.558,38.394,37.743,39.963,38.445,39.714,38.282,38.055]}}, -{"f":"solid-v1.8.0-keyed","b":"09_clear1k_x8","v":{"total":[13.737,13.708,13.81,14.143,13.366,13.758,14.184,13.849,14.012,14.217,13.925,13.517,14.206,13.256,14.391],"script":[11.902,11.844,12.177,11.902,11.13,12.084,12.181,11.968,11.655,11.928,11.361,11.626,11.715,11.932,12.305],"paint":[1.035,1.051,1.541,1.797,2.149,1.573,1.644,1.79,2.268,2.187,2.008,1.084,2.067,0.358,1.977]}}, -{"f":"solid-v1.8.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5649776458740234]}}, -{"f":"solid-v1.8.0-keyed","b":"22_run-memory","v":{"DEFAULT":[2.565220832824707]}}, -{"f":"solid-v1.8.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.5857162475585938]}}, -{"f":"solid-v1.8.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.637751579284668]}}, -{"f":"solid-v1.8.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[20.447714805603027]}}, -{"f":"solid-v1.8.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11.7734375]}}, -{"f":"solid-v1.8.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.5400390625]}}, -{"f":"solid-v1.8.0-keyed","b":"43_first-paint","v":{"DEFAULT":[77]}}, -{"f":"solid-store-v1.5.4-keyed","b":"01_run1k","v":{"total":[39.184,39.235,38.696,44.609,39.673,40.367,39.47,40.624,41.915,40.631,40.622,40.187,37.672,39.607,42.044],"script":[6.538,6.345,5.907,6.363,6.433,6.58,6.226,6.852,6.64,6.483,6.696,6.595,6.028,6.441,6.669],"paint":[32.209,32.47,32.367,37.79,32.826,33.303,32.846,33.329,34.804,33.702,33.471,33.142,31.212,32.737,34.957]}}, -{"f":"solid-store-v1.5.4-keyed","b":"02_replace1k","v":{"total":[46.602,46.994,46.736,46.588,44.297,43.55,44.86,42.654,44.801,45.022,43.363,44.527,44.661,44.389,44.159],"script":[10.328,9.872,10.271,10.023,9.62,9.868,9.624,9.651,10.077,10.086,9.326,9.953,10.006,9.695,9.872],"paint":[35.752,36.616,35.94,36.076,34.217,33.269,34.811,32.555,34.264,34.491,33.607,34.08,34.228,34.244,33.849]}}, -{"f":"solid-store-v1.5.4-keyed","b":"03_update10th1k_x16","v":{"total":[17.935,16.739,15.843,17.847,15.941,16.519,17.563,17.717,17.824,16.846,16.467,16.826,16.104,16.722,17.313],"script":[2.278,1.704,1.618,2.291,1.343,1.471,1.625,2.313,1.764,1.04,1.029,0.946,1.646,1.548,0.988],"paint":[14.271,14.109,13.262,14.252,13.507,14.34,14.922,14.104,14.691,14.272,14.104,14.759,13.163,12.978,15.38]}}, -{"f":"solid-store-v1.5.4-keyed","b":"04_select1k","v":{"total":[3.205,3.716,3.104,3.307,4.103,3.231,2.98,3.142,4.169,2.751,3.298,3.577,4.691,3.25,3.63,3.527,2.723,2.43,4.007,2.738,2.728,4.926,4.673,3.342,3.354],"script":[0.794,1.436,0.784,1.197,1.017,0.163,0.536,0.147,0.681,1.071,1.11,0.851,0.915,0.555,0.911,0.878,0.246,0.146,1.386,0.391,0.277,0.941,0.726,0.691,0.824],"paint":[2.299,1.782,2.215,1.522,2.898,1.909,1.607,2.884,1.569,1.586,1.564,1.477,1.862,1.761,2.421,1.358,1.967,2.101,1.727,2.243,2.347,2.682,1.971,2.074,1.604]}}, -{"f":"solid-store-v1.5.4-keyed","b":"05_swap1k","v":{"total":[22.699,22.152,21.342,22.806,22.166,21.574,21.253,21.842,21.866,21.224,20.837,21.44,22.329,20.581,21.226],"script":[3.14,2.83,2.983,3.18,3.589,3.671,3.119,3.396,3.448,3.235,3.47,3.513,3.663,2.784,3.433],"paint":[18.42,18.134,17.166,18.536,17.246,16.831,16.865,16.825,16.313,16.864,16.104,16.608,17.366,16.478,15.953]}}, -{"f":"solid-store-v1.5.4-keyed","b":"06_remove-one-1k","v":{"total":[17.891,17.124,17.341,17.653,17.082,17.101,16.651,16.795,16.935,17.112,16.887,17.196,16.6,18.215,16.612],"script":[2.007,2.021,2.274,2.326,2.305,2.337,2.017,2.126,2.26,2.317,2.24,2.341,1.989,2.282,2.016],"paint":[14.954,14.409,14.142,14.604,14.048,14.032,13.943,13.943,13.971,14.102,13.933,14.3,13.62,14.635,13.899]}}, -{"f":"solid-store-v1.5.4-keyed","b":"07_create10k","v":{"total":[391.889,398.439,384.872,397.379,396.575,399.224,390.029,395.808,396.613,394.381,391.562,390.65,392.928,393.113,389.864],"script":[61.92,61.079,59.954,63.509,62.607,63.618,60.628,60.528,60.809,61.998,60.442,59.479,59.637,58.715,59.238],"paint":[320.666,327.657,318.042,324.52,324.653,326.456,320.075,325.863,326.609,323.17,324.445,322.064,324,325.178,321.488]}}, -{"f":"solid-store-v1.5.4-keyed","b":"08_create1k-after1k_x2","v":{"total":[44.217,45.326,44.888,47.004,45.133,44.941,45.965,45.035,44.929,44.424,46.251,44.793,44.878,44.449,45.32],"script":[6.963,7.335,7.107,7.342,7.449,7.354,7.026,7.238,7.124,7.216,7.287,7.361,7.366,6.998,7.321],"paint":[36.325,37.18,36.854,38.747,36.761,36.735,38.029,36.969,36.936,36.287,38.092,36.619,36.644,36.529,37.114]}}, -{"f":"solid-store-v1.5.4-keyed","b":"09_clear1k_x8","v":{"total":[13.515,13.302,13.506,14.35,13.892,13.766,14.301,14.132,13.71,14.358,13.991,14.249,14.13,13.992,14.481],"script":[12.405,12.229,11.616,12.365,11.947,12.492,12.574,11.953,11.695,12.116,12.329,12.358,12.382,12.265,12.56],"paint":[1.024,0.349,1.599,1.883,1.859,1.185,1.28,1.14,1.923,1.185,1.306,1.097,1.659,1.632,1.834]}}, -{"f":"solid-store-v1.5.4-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.48853206634521484]}}, -{"f":"solid-store-v1.5.4-keyed","b":"22_run-memory","v":{"DEFAULT":[2.7884883880615234]}}, -{"f":"solid-store-v1.5.4-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.8407726287841797]}}, -{"f":"solid-store-v1.5.4-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9144124984741211]}}, -{"f":"solid-store-v1.5.4-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[21.52719497680664]}}, -{"f":"solid-store-v1.5.4-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[14.6611328125]}}, -{"f":"solid-store-v1.5.4-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.46484375]}}, -{"f":"solid-store-v1.5.4-keyed","b":"43_first-paint","v":{"DEFAULT":[51.4]}}, -{"f":"spair-v0.0.8-keyed","b":"01_run1k","v":{"total":[41.121,41.65,41.61,42.149,43.594,42.676,41.908,42.606,42.86,42.421,43.796,42.236,42.188,41.991,42.43],"script":[8.598,8.423,8.682,8.74,9.133,9.19,8.739,8.737,9.462,8.503,8.768,8.98,8.812,9.119,8.809],"paint":[32.108,32.782,32.5,33.026,34.033,33.087,32.751,33.422,33.007,33.478,34.635,32.844,32.93,32.431,33.193]}}, -{"f":"spair-v0.0.8-keyed","b":"02_replace1k","v":{"total":[49.198,48.463,48.552,48.672,49.197,47.831,49.824,48.927,50.564,50.09,48.086,48.713,49.566,49.686,48.745],"script":[12.593,12.603,12.544,12.556,13.207,12.581,13.295,12.579,13.949,12.538,12.722,12.784,12.885,13.297,12.793],"paint":[36.181,35.4,35.557,35.654,35.534,34.756,36.069,35.91,36.129,37.042,34.883,35.492,36.223,35.963,35.455]}}, -{"f":"spair-v0.0.8-keyed","b":"03_update10th1k_x16","v":{"total":[17.561,16.759,16.886,17.484,17.174,17.23,17.044,18.34,16.68,17.583,16.468,17.958,17.719,18.284,17.492],"script":[1.663,1.458,1.106,1.846,1.972,1.75,2.114,2.36,1.122,2.241,1.469,2.362,1.638,1.568,1.564],"paint":[13.839,14.323,14.375,13.876,12.876,14.182,13.932,13.886,14.285,13.93,13.825,14.225,13.563,15.563,14.949]}}, -{"f":"spair-v0.0.8-keyed","b":"04_select1k","v":{"total":[5.067,4.268,4.243,3.485,4.512,3.774,4.613,5.179,4.748,3.196,3.595,3.825,6.888,3.926,3.648,3.736,3.872,4.663,4.223,4.356,6.029,4.132,3.047,3.492,5.682],"script":[1.333,2.022,1.643,0.732,1.458,1.289,2.051,1.409,1.284,1.059,1.176,1.007,1.438,0.884,1.152,1.841,1.452,2.01,1.309,2.083,1.552,1.741,1.149,1.524,1.856],"paint":[1.46,2.138,2.488,2.653,2.95,1.986,1.902,1.64,2.318,2.026,2.317,2.72,2.224,2.938,1.451,1.264,2.169,1.759,2.419,1.771,2.454,1.67,1.779,1.136,0.873]}}, -{"f":"spair-v0.0.8-keyed","b":"05_swap1k","v":{"total":[20.377,19.323,20.306,19.565,20.857,19.755,19.472,19.379,18.872,19.597,18.668,19.184,19.232,19.463,19.863],"script":[1.006,1.068,1.937,1.82,1.262,0.984,1.768,0.952,1.188,1.594,1.696,1.261,1.551,1.27,1.127],"paint":[17.982,17.204,17.152,16.417,18.599,17.157,16.439,16.671,16.379,16.223,15.499,16.845,16.445,16.289,17.39]}}, -{"f":"spair-v0.0.8-keyed","b":"06_remove-one-1k","v":{"total":[15.387,15.87,15.843,15.887,15.76,15.909,16.063,16.291,15.594,15.327,15.391,15.381,15.164,16.002,15.573],"script":[0.692,0.694,0.673,0.673,0.938,0.686,0.678,1.036,0.668,0.94,0.676,0.675,0.672,0.859,0.792],"paint":[13.809,14.382,14.113,14.534,14.075,14.519,14.694,14.234,13.955,13.719,13.993,13.975,13.436,14.375,14.056]}}, -{"f":"spair-v0.0.8-keyed","b":"07_create10k","v":{"total":[439.194,432.031,434.753,438.984,436.455,441.326,436.338,435.977,434.594,437.429,432.773,433.202,434.583,433.776,436.367],"script":[100.104,97.118,96.679,98.777,98.833,97.809,96.275,98.332,97.161,98.896,98.223,97.686,97.733,95.475,97.462],"paint":[332.385,328.35,331.116,333.634,330.864,336.873,333.33,330.975,330.768,331.917,327.946,328.886,330.252,331.645,332.153]}}, -{"f":"spair-v0.0.8-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.964,49.543,48.872,49.27,49.05,49.237,49.441,49.082,48.919,50.138,49.573,50.804,49.503,49.191,50.291],"script":[9.559,9.547,9.227,9.516,9.651,9.336,9.844,9.436,9.868,9.843,9.486,9.529,9.949,9.686,9.558],"paint":[40.508,39.128,38.775,38.846,38.5,38.979,38.695,38.774,38.179,39.328,39.215,40.379,38.666,38.575,39.844]}}, -{"f":"spair-v0.0.8-keyed","b":"09_clear1k_x8","v":{"total":[13.427,14.702,13.669,13.899,14.078,13.661,13.146,14.054,14.514,13.361,13.743,13.803,13.825,13.763,13.252],"script":[11.544,12.844,12.561,11.917,12.208,11.875,11.768,12.644,12.859,11.497,11.75,12.015,11.861,12.062,11.785],"paint":[1.204,1.046,0.347,0.995,0.905,1.693,1.285,1.313,1.549,1.771,1.48,1.699,1.69,1.613,1.374]}}, -{"f":"spair-v0.0.8-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.627676010131836]}}, -{"f":"spair-v0.0.8-keyed","b":"22_run-memory","v":{"DEFAULT":[4.961784362792969]}}, -{"f":"spair-v0.0.8-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.053736686706543]}}, -{"f":"spair-v0.0.8-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.5224103927612305]}}, -{"f":"spair-v0.0.8-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[34.254608154296875]}}, -{"f":"spair-v0.0.8-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[101.40625]}}, -{"f":"spair-v0.0.8-keyed","b":"42_size-compressed","v":{"DEFAULT":[31.7783203125]}}, -{"f":"spair-v0.0.8-keyed","b":"43_first-paint","v":{"DEFAULT":[170.1]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"01_run1k","v":{"total":[44.628,42.413,41.569,42.755,42.829,42.818,43.431,43.525,42.897,42.693,42.211,41.743,43.078,42.029,43.008],"script":[9.708,8.97,8.476,9.421,9.284,9.547,9.827,9.765,9.13,8.603,8.799,8.882,8.957,8.818,8.832],"paint":[34.482,33.041,32.658,32.922,33.12,32.843,33.178,33.347,33.345,33.643,32.992,32.44,33.63,32.785,33.738]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"02_replace1k","v":{"total":[48.113,46.597,47.447,46.259,47.036,46.632,47.206,48.562,48.862,46.499,47.214,48.005,47.014,47.5,47.002],"script":[11.141,11.227,11.263,10.935,11.812,11.032,11.207,11.343,11.571,11.062,11.751,11.457,11.452,11.588,11.269],"paint":[36.517,34.936,35.745,34.868,34.761,35.166,35.553,36.767,36.844,34.975,35.023,36.125,35.109,35.426,35.299]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"03_update10th1k_x16","v":{"total":[16.883,17.732,16.552,16.132,16.659,16.127,16.436,15.623,16.882,16.624,16.439,16.902,16.646,17.389,16.381],"script":[1.751,1.752,1.389,0.938,1.008,1.305,0.694,1.281,1.907,1.103,1.771,1.724,1.595,1.632,1.488],"paint":[14.148,14.795,12.859,13.748,14.58,13.464,12.951,12.206,13.428,13.14,13.397,13.809,13.355,14.144,13.864]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"04_select1k","v":{"total":[2.527,2.119,2.543,2.968,5.286,2.976,2.638,2.731,3.223,2.779,4.143,2.703,4.746,3.728,4.032,4.097,3.103,3.262,4.221,2.788,2.395,5.59,4.295,3.928,3.236],"script":[0.088,0.288,0.63,0.093,0.094,0.71,0.082,0.876,0.773,0.848,0.084,0.083,0.964,0.084,0.799,0.094,0.72,1.104,0.532,0.085,0.083,0.085,0.835,1.22,0.733],"paint":[2.34,1.737,1.807,2.757,3.04,2.176,2.453,1.242,1.679,1.245,2.937,2.521,1.399,2.289,1.712,1.439,2.279,1.429,1.914,1.916,1.346,2.772,1.586,2.03,1.496]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"05_swap1k","v":{"total":[18.855,18.198,18.089,18.431,18.784,19.967,19.026,19.091,18.496,19.294,19.606,19.301,18.049,19.079,19.714],"script":[0.134,0.139,0.831,0.135,0.135,0.781,0.143,0.635,0.134,1.037,0.889,0.885,0.136,0.882,0.764],"paint":[17.709,16.79,15.658,16.875,17.502,17.359,17.144,16.872,17.055,16.448,16.237,16.94,16.328,16.677,17.676]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"06_remove-one-1k","v":{"total":[14.871,15.073,14.887,15.054,14.802,15.069,14.785,15.032,15.557,15.436,15.349,15.275,15.019,15.36,15.279],"script":[0.122,0.33,0.219,0.297,0.116,0.197,0.109,0.254,0.43,0.277,0.2,0.439,0.283,0.433,0.442],"paint":[13.707,13.937,13.986,13.659,13.949,14.049,13.973,14.009,14.204,14.331,14.001,14.078,13.862,14.23,14.077]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"07_create10k","v":{"total":[439.144,436.045,435.682,430.649,443.646,436.706,437.438,443.394,436.831,436.588,436.159,435.956,436.255,438.682,437.395],"script":[99.855,96.182,95.881,95.308,101.139,98.509,98.308,97.186,98.745,98.119,98.203,97.216,97.356,98.051,98.762],"paint":[332.46,333.138,333.151,328.626,335.876,331.547,332.41,339.501,331.524,331.835,331.35,332.084,332.295,333.953,331.959]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.094,48.405,49.421,47.833,47.216,49.112,48.558,47.613,49.294,49.267,48.513,49.03,48.928,48.478,47.186],"script":[8.82,8.604,8.878,8.287,8.129,8.941,8.849,8.6,9.367,9.194,9.006,9.264,8.824,8.975,8.581],"paint":[39.415,38.917,39.594,38.677,38.197,39.225,38.856,38.151,39.004,39.111,38.653,38.905,39.219,38.643,37.776]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"09_clear1k_x8","v":{"total":[14.816,14.247,13.944,14.204,13.702,14.25,13.921,15.015,14.75,14.937,14.793,14.884,13.821,13.675,13.575],"script":[12.704,11.912,12.55,12.195,11.658,12.17,11.818,12.868,12.88,13,12.393,12.874,11.925,11.471,12.514],"paint":[1.671,1.323,0.762,0.828,1.447,1.822,2.021,1.663,1.761,1.842,2.265,1.348,1.241,2.115,0.338]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.6240863800048828]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"22_run-memory","v":{"DEFAULT":[4.469348907470703]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.471112251281738]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.018862724304199]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[29.77289581298828]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[90.68359375]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"42_size-compressed","v":{"DEFAULT":[27.787109375]}}, -{"f":"spair-qr-v0.0.8-keyed","b":"43_first-paint","v":{"DEFAULT":[160.9]}}, -{"f":"stdweb-v0.4.17-keyed","b":"01_run1k","v":{"total":[48.617,46.522,46.692,47.407,46.846,48.453,47.118,48.275,46.426,47.865,48.078,46.425,47.004,47.607,47.98],"script":[13.47,13.039,13.191,13.662,13.117,13.922,13.649,13.49,12.888,13.435,13.93,14.019,13.677,13.771,13.921],"paint":[34.709,33.061,33.07,33.326,33.327,34.095,33.05,34.363,33.125,34.013,33.707,31.972,32.923,33.425,33.641]}}, -{"f":"stdweb-v0.4.17-keyed","b":"02_replace1k","v":{"total":[51.571,52.029,52.986,53.476,53.771,53.34,52.069,53.749,52.992,52.636,52.665,53.354,52.866,52.934,51.735],"script":[16.84,16.837,17.432,17.972,17.174,17.812,16.872,17.246,17.493,16.652,17.434,17.836,17.886,17.426,16.739],"paint":[34.246,34.757,35.108,35.059,36.106,35.092,34.714,36.017,35.022,35.516,34.811,35.046,34.524,35.066,34.536]}}, -{"f":"stdweb-v0.4.17-keyed","b":"03_update10th1k_x16","v":{"total":[17.149,16.52,16.512,17.06,16.97,17.742,16.365,16.678,17.268,16.905,16.624,17.498,17.065,16.487,16.677],"script":[0.924,0.949,1.197,0.972,1.412,1.271,1.304,1.12,0.251,1.503,1.432,1.214,0.594,1.116,0.987],"paint":[15.196,14.4,13.13,13.661,13.743,15.301,13.193,13.487,15.246,13.977,13.163,14.534,14.516,14.611,13.071]}}, -{"f":"stdweb-v0.4.17-keyed","b":"04_select1k","v":{"total":[3.6,4.237,3.919,5.272,2.839,2.826,2.757,5.441,3.165,4.466,4.918,3.074,2.795,3.302,2.847,3.835,3.525,2.651,3.376,3.358,2.83,3.605,4.281,3.563,3.304],"script":[1.145,1.048,0.894,0.108,0.824,0.557,0.798,0.417,1.135,0.885,0.109,0.754,0.335,1.101,0.827,0.827,1.225,0.117,0.881,0.816,0.925,1.229,0.111,0.931,0.897],"paint":[1.511,2.077,1.631,2.748,1.913,1.656,1.104,1.976,1.923,2.306,1.836,2.219,2.36,1.338,1.331,1.935,2.198,1.627,1.732,1.689,1.492,2.282,1.573,2.342,1.752]}}, -{"f":"stdweb-v0.4.17-keyed","b":"05_swap1k","v":{"total":[17.98,17.966,18.728,19.191,18.661,19.073,19.493,19.62,19.369,18.47,18.714,20.203,18.724,18.973,19.196],"script":[0.109,0.098,0.502,0.774,0.749,0.108,0.109,0.105,0.11,0.101,0.101,0.812,0.102,0.247,0.435],"paint":[16.8,16.456,16.938,16.779,17.275,17.445,18.261,18.382,18.251,16.987,17.063,18.297,17.112,16.998,18.054]}}, -{"f":"stdweb-v0.4.17-keyed","b":"06_remove-one-1k","v":{"total":[15.177,15.202,15.181,15.387,14.842,15.32,15.051,14.877,15.849,14.768,15.875,14.923,15.048,16.037,15.151],"script":[0.513,0.441,0.359,0.492,0.189,0.514,0.298,0.5,0.523,0.177,0.194,0.277,0.378,0.413,0.506],"paint":[13.927,14.063,13.959,14.167,13.703,13.721,13.497,13.665,14.602,13.904,14.605,13.951,13.888,14.849,13.938]}}, -{"f":"stdweb-v0.4.17-keyed","b":"07_create10k","v":{"total":[442.3,443.02,445.2,457.301,449.328,445.873,446.861,440.911,447.423,443.048,445.052,440.951,444.346,442.76,444.921],"script":[104.187,102.765,99.444,110.376,107.418,100.093,105.107,101.453,101.544,105.773,100.816,105.207,101.825,101.625,108.318],"paint":[331.085,333.247,339.021,339.094,334.6,339.189,335.005,332.717,339.219,330.614,337.581,328.996,335.797,334.46,329.816]}}, -{"f":"stdweb-v0.4.17-keyed","b":"08_create1k-after1k_x2","v":{"total":[48.668,50.389,48.877,47.67,48.33,49.459,49.667,49.783,49.389,49.122,49.384,49.304,48.523,48.97,48.328],"script":[9.487,10.013,9.585,9.102,9.878,10.155,10.462,10.002,10.195,10.136,9.976,10.138,9.352,10.122,9.395],"paint":[38.328,39.396,38.382,37.689,37.609,38.426,38.372,38.934,38.317,38.07,38.546,38.329,38.274,37.967,38.033]}}, -{"f":"stdweb-v0.4.17-keyed","b":"09_clear1k_x8","v":{"total":[17.051,17.563,17.91,18.433,17.478,18.424,18.634,18.607,18.334,17.108,18.511,17.858,18.649,18.739,19.224],"script":[15.252,16.475,16.289,16.524,15.806,16.64,16.766,16.422,16.462,15.727,15.907,15.981,16.445,16.786,16.9],"paint":[1.719,0.36,1.531,1.101,1.581,0.978,1.08,1.61,1.039,0.77,2.508,0.403,2.125,1.862,1.34]}}, -{"f":"stdweb-v0.4.17-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.7404394149780273]}}, -{"f":"stdweb-v0.4.17-keyed","b":"22_run-memory","v":{"DEFAULT":[3.186068534851074]}}, -{"f":"stdweb-v0.4.17-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.1746253967285156]}}, -{"f":"stdweb-v0.4.17-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.3049068450927734]}}, -{"f":"stdweb-v0.4.17-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[16.399325370788574]}}, -{"f":"stdweb-v0.4.17-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[130.80078125]}}, -{"f":"stdweb-v0.4.17-keyed","b":"42_size-compressed","v":{"DEFAULT":[34.1728515625]}}, -{"f":"stdweb-v0.4.17-keyed","b":"43_first-paint","v":{"DEFAULT":[76.9]}}, -{"f":"stencil-v4.11.0-keyed","b":"01_run1k","v":{"total":[46.348,44.782,45.131,45.387,44.703,44.378,45.132,45.835,45.67,46.436,45.142,45.858,44.893,46.537,46.66],"script":[11.036,10.345,10.572,10.692,10.516,10.276,10.389,10.953,10.748,11.029,10.577,10.741,10.903,11.184,11.089],"paint":[34.865,33.976,34.128,34.25,33.743,33.669,34.274,34.434,34.466,34.977,34.117,34.669,33.551,34.931,35.104]}}, -{"f":"stencil-v4.11.0-keyed","b":"02_replace1k","v":{"total":[53.932,55.43,55.031,54.415,55.822,55.527,54.634,54.412,55.749,54.94,55.971,55.112,55.417,54.672,54.579],"script":[18.096,19.369,18.1,18.033,19.061,18.945,18.034,17.993,19.136,18.238,18.892,19.099,18.969,18.9,18.743],"paint":[35.351,35.583,36.497,35.9,36.288,36.136,36.144,35.949,36.157,36.232,36.584,35.586,35.965,35.299,35.395]}}, -{"f":"stencil-v4.11.0-keyed","b":"03_update10th1k_x16","v":{"total":[32.066,32.249,31.21,30.975,34.791,30.607,30.062,31.408,30.572,29.362,31.771,31.422,32.231,31.484,29.829],"script":[15.369,14.904,14.017,14.699,16.8,14.327,14.46,15.841,14.898,13.134,14.795,14.77,14.309,15.149,13.784],"paint":[15.703,15.998,15.598,14.705,16.885,15.08,14.582,13.577,13.981,14.89,15.543,13.904,16.209,14.538,14.72]}}, -{"f":"stencil-v4.11.0-keyed","b":"04_select1k","v":{"total":[16.929,17.195,17.876,15.136,16.779,16.245,15.265,15.997,16.517,15.804,16.344,16.569,19.582,15.326,16.267,16.281,16.337,17.087,17.064,17.088,17.813,15.588,16.638,17.841,15.738],"script":[13.195,13.949,14.793,12.627,13.636,13.441,12.221,13.266,13.512,12.794,13.461,13.317,15.865,12.403,13.559,13.764,13.475,13.012,13.339,14.17,13.737,12.815,12.675,14.445,13.022],"paint":[3.314,2.013,1.818,2.352,1.994,1.854,2.004,2.57,2.013,2.855,1.736,2.426,2.581,1.467,2.544,2.36,1.197,2.719,3.362,1.592,2.226,1.18,3.757,3.201,2.005]}}, -{"f":"stencil-v4.11.0-keyed","b":"05_swap1k","v":{"total":[33.851,32.597,32.851,33.404,33.358,31.926,32.54,32.995,34.485,33.659,32.635,32.862,33.978,34.065,33.162],"script":[14.133,13.868,12.692,13.059,13.991,13.758,12.52,13.666,14.824,13.571,13.308,14.448,14.354,14.89,14.392],"paint":[18.275,16.82,18.367,18.4,17.439,17.185,18.108,17.791,18.913,18.178,17.649,17.062,17.572,18.346,17.064]}}, -{"f":"stencil-v4.11.0-keyed","b":"06_remove-one-1k","v":{"total":[22.741,22.382,24.273,22.213,23.176,23.815,23.378,22.558,22.439,21.625,24.181,22.192,23.285,23.793,23.717],"script":[7.442,7.055,7.826,7.313,7.489,7.31,7.414,7.398,7.219,6.37,7.637,7.097,7.538,7.747,7.217],"paint":[14.536,14.54,14.901,13.85,14.673,15.118,14.963,14.384,14.469,14.163,15.671,14.063,14.971,15.288,15.71]}}, -{"f":"stencil-v4.11.0-keyed","b":"07_create10k","v":{"total":[476.154,474.054,472.669,476.732,473.803,476.858,477.222,472.994,479.518,469.871,476.761,480.447,475.275,473.408,471.703],"script":[126.702,125.147,124.635,128.419,125.917,128.139,129.96,125.703,129.979,122.687,128.442,128.061,127.907,126.701,124.886],"paint":[342.738,342.146,341.281,341.676,341.132,342.048,340.477,340.611,342.859,340.495,341.25,345.68,340.69,340.03,340.096]}}, -{"f":"stencil-v4.11.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[57.536,57.384,55.829,57.529,57.417,57.546,58.003,58.142,57.744,57.855,58.246,58.023,58.041,57.769,57.413],"script":[15.931,15.795,15.038,15.808,15.935,15.967,16.048,15.992,16.305,15.526,16.689,16.238,16.195,16.08,16.038],"paint":[40.708,40.671,39.854,40.821,40.587,40.663,41.049,41.257,40.507,41.423,40.675,40.871,40.928,40.771,40.425]}}, -{"f":"stencil-v4.11.0-keyed","b":"09_clear1k_x8","v":{"total":[15.639,16.374,15.662,15.383,15.53,15.278,15.747,15.96,15.357,15.263,15.249,15.092,15.062,15.583,15.574],"script":[13.278,14.63,13.545,13.794,14.146,13.6,13.768,13.923,13.682,13.219,13.443,13.127,13.619,13.396,13.53],"paint":[2.25,0.87,2.031,1.494,0.985,0.799,1.211,1.453,0.786,1.94,0.853,1.855,1.345,1.051,1.946]}}, -{"f":"stencil-v4.11.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5305614471435547]}}, -{"f":"stencil-v4.11.0-keyed","b":"22_run-memory","v":{"DEFAULT":[3.5842437744140625]}}, -{"f":"stencil-v4.11.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.573305130004883]}}, -{"f":"stencil-v4.11.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.8798732757568359]}}, -{"f":"stencil-v4.11.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[29.561969757080078]}}, -{"f":"stencil-v4.11.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[12.298828125]}}, -{"f":"stencil-v4.11.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.111328125]}}, -{"f":"stencil-v4.11.0-keyed","b":"43_first-paint","v":{"DEFAULT":[57.5]}}, -{"f":"strve-v6.6.6-keyed","b":"01_run1k","v":{"total":[42.991,40.25,40.345,39.982,44.014,40.165,41.942,41.328,39.668,40.207,39.389,40.185,40.227,40.361,40.799],"script":[7.726,7.152,7.498,6.881,8.252,6.844,7.901,7.819,7.021,7.287,6.945,7.431,7.219,7.72,7.629],"paint":[34.799,32.692,32.374,32.704,35.309,32.905,33.642,33.128,32.227,32.518,32.033,32.343,32.597,32.226,32.748]}}, -{"f":"strve-v6.6.6-keyed","b":"02_replace1k","v":{"total":[44.501,43.764,45.087,43.188,44.007,44.253,44.925,45.378,44.432,45.532,44.43,44.823,44.341,45.18,44.913],"script":[10.448,9.72,10.145,9.775,9.842,9.872,10.584,10.377,10.066,11.073,10.036,10.596,9.827,10.532,10.502],"paint":[33.638,33.612,34.507,32.997,33.715,33.931,33.908,34.555,33.925,34.04,33.987,33.783,34.058,34.243,34.011]}}, -{"f":"strve-v6.6.6-keyed","b":"03_update10th1k_x16","v":{"total":[28.001,26.685,28.949,27.807,26.422,27.564,26.821,27.578,27.806,27.47,27.073,26.315,28.465,27.832,27.583],"script":[10.989,10.774,11.921,11.36,10.347,12.004,10.899,11.88,10.93,10.781,10.977,10.56,11.22,10.086,11.913],"paint":[15.637,14.932,15.927,15.18,15.092,14.454,14.682,14.415,15.244,15.19,14.599,13.581,15.948,15.368,13.463]}}, -{"f":"strve-v6.6.6-keyed","b":"04_select1k","v":{"total":[12.894,12.831,12.403,14.424,12.9,12.958,12.95,13.182,11.581,13.604,12.251,12.091,13.204,12.508,12.006,13.484,13.271,12.916,12.006,12.38,13.341,12.337,12.152,13.27,14.176],"script":[9.819,9.994,9.899,10.518,10.377,10.396,10.377,10.284,8.662,10.632,10.183,10.14,10.653,9.184,9.394,10.482,10.537,9.855,9.654,9.453,9.97,10.109,10.198,10.191,11.511],"paint":[2.921,2.087,1.971,3.324,1.264,2.046,1.628,1.888,1.666,1.822,1.19,1.818,2.35,2.782,1.489,2.52,1.805,2.269,2.202,2.775,2.408,1.468,1.808,2.924,1.851]}}, -{"f":"strve-v6.6.6-keyed","b":"05_swap1k","v":{"total":[29.229,28.594,29.593,29.017,30.037,30.549,29.147,29.959,28.172,30.223,29.542,28.515,29.34,29.823,29.383],"script":[11.207,10.294,11.138,10.955,11.245,11.831,10.14,10.519,10.17,11.64,10.717,10.909,11.036,10.53,10.731],"paint":[16.663,16.965,16.956,16.392,16.801,17.61,17.881,18.123,16.941,16.02,17.555,15.978,16.674,17.916,17.92]}}, -{"f":"strve-v6.6.6-keyed","b":"06_remove-one-1k","v":{"total":[20.359,20.28,20.243,19.701,19.683,20.255,20.347,20.311,20.2,20.272,19.956,20.387,21.379,19.829,20.642],"script":[5.44,5.485,5.437,5.419,5.313,5.531,5.517,5.492,5.442,5.356,5.152,5.647,5.427,5.444,5.405],"paint":[14.161,14.064,13.789,13.563,13.732,13.708,14.082,13.485,13.746,14.077,13.706,14.011,15.216,13.611,14.5]}}, -{"f":"strve-v6.6.6-keyed","b":"07_create10k","v":{"total":[430.516,421.502,425.915,431.573,429.278,428.164,426.042,419.851,427.791,422.716,424.682,426.813,425.324,434.817,426.989],"script":[86.382,80.266,87.509,87.323,86.487,89.264,87.002,80.011,87.602,86.507,79.727,85.888,86.158,85.522,86.988],"paint":[337.569,334.6,331.836,337.619,335.816,332.33,331.801,333.236,333.655,329.427,338.307,334.406,332.574,342.736,333.385]}}, -{"f":"strve-v6.6.6-keyed","b":"08_create1k-after1k_x2","v":{"total":[48.575,48.398,48.378,47.997,49.644,48.028,48.895,49.041,48.1,48.915,48.637,47.952,48.437,49.108,48.162],"script":[10.181,10.269,10.057,9.99,10.198,10.765,10.56,11.036,9.797,10.321,10.679,9.993,10.326,10.927,10.435],"paint":[37.537,37.245,37.502,37.208,38.553,36.384,37.442,37.161,37.424,37.741,37.057,37.043,37.221,37.322,36.865]}}, -{"f":"strve-v6.6.6-keyed","b":"09_clear1k_x8","v":{"total":[13.132,12.832,12.887,12.689,12.696,13.232,12.771,13.36,12.969,13.449,13.418,13.172,12.675,12.66,13.207],"script":[11.031,11.058,10.845,10.737,10.868,11.607,11.115,10.994,11.313,11.374,11.553,11.331,10.677,10.999,11.46],"paint":[2.022,1.678,1.455,1.053,1.732,1.065,1.09,2.274,1.568,1.449,1.784,1.684,0.858,1.483,0.802]}}, -{"f":"strve-v6.6.6-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.47019004821777344]}}, -{"f":"strve-v6.6.6-keyed","b":"22_run-memory","v":{"DEFAULT":[2.269582748413086]}}, -{"f":"strve-v6.6.6-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.3096437454223633]}}, -{"f":"strve-v6.6.6-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6944684982299805]}}, -{"f":"strve-v6.6.6-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[17.726266860961914]}}, -{"f":"strve-v6.6.6-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[10.66015625]}}, -{"f":"strve-v6.6.6-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.919921875]}}, -{"f":"strve-v6.6.6-keyed","b":"43_first-paint","v":{"DEFAULT":[58.6]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"01_run1k","v":{"total":[41.244,39.794,42.861,39.91,38.922,38.828,38.421,41.581,39.75,40.412,40.892,40.075,41.355,41.242,40.876],"script":[7.157,7.7,7.682,7.226,7.152,6.854,6.902,7.588,7.499,7.517,7.395,7.488,7.736,7.468,7.455],"paint":[33.641,31.714,34.735,32.213,31.39,31.569,31.112,33.596,31.831,32.502,33.078,32.177,33.206,33.392,33.002]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"02_replace1k","v":{"total":[45.624,45.175,45.961,46.601,45.733,45.038,45.494,46.371,44.742,45.734,45.717,45.975,45.456,45.917,44.564],"script":[11.275,10.81,11.412,11.084,11.088,10.55,11.094,11.313,10.299,10.93,10.537,10.652,10.3,11.229,10.583],"paint":[33.909,33.934,34.111,35.083,34.233,34.047,33.997,34.635,34.025,34.392,34.75,34.885,34.731,34.264,33.567]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"03_update10th1k_x16","v":{"total":[27.507,26.851,29.184,28.875,28.831,27.774,29.48,27.126,28.374,28.86,27.364,27.032,29.087,27.828,26.936],"script":[11.52,10.781,11.188,11.832,11.062,11.551,11.984,11.705,11.399,11.324,11.175,10.444,11.997,11.618,11.014],"paint":[14.539,13.839,16.131,16.096,16.243,13.364,16.348,14.121,15.522,15.773,14.911,14.685,15.9,14.179,14.683]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"04_select1k","v":{"total":[14.309,15.149,12.978,14.407,13.476,13.431,13.779,13.686,15.737,15.187,14.564,13.603,13.754,12.637,13.398,13.775,14.662,13.898,13.654,15.255,14.934,14.625,13.036,14.112,13.414],"script":[11.272,11.378,10.483,10.353,10.442,11.042,9.988,10.275,12.002,11.076,11.037,10.168,10.975,9.382,10.287,10.56,10.854,11.427,11.22,11.57,11.468,11.207,9.955,10.575,10.231],"paint":[2.87,2.908,1.9,2.929,2.167,1.358,3.623,2.72,2.828,3.131,2.318,3.275,2.427,2.754,2.511,2.839,2.995,2.321,1.258,3.37,2.12,1.865,2.934,3.359,3.025]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"05_swap1k","v":{"total":[29.421,30.351,30.714,30.674,29.983,30.376,31.861,31.212,31.737,31.403,28.811,29.842,30.671,31.984,30.491],"script":[10.47,11.893,11.478,11.657,11.073,10.504,12.83,12.211,11.57,10.74,10.231,12.059,11.305,11.449,11.654],"paint":[17.584,16.731,18.559,16.975,16.894,18.331,17.811,17.589,18.95,18.262,17.322,16.882,17.61,19.059,17.578]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"06_remove-one-1k","v":{"total":[20.349,20.731,20.936,21.405,20.349,21.936,20.771,20.838,21.367,20.334,20.305,20.286,20.542,20.833,21.047],"script":[5.224,5.493,5.497,5.438,5.515,5.615,5.43,5.416,5.521,5.501,5.441,5.452,5.227,5.448,5.533],"paint":[14.396,14.209,14.713,14.931,13.771,15.514,14.625,14.126,15.056,14.092,13.87,14.077,14.242,14.686,14.752]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"07_create10k","v":{"total":[431.802,431.197,429.661,430.171,425.684,430.491,427.387,436.718,428.996,431.825,437.383,425.778,429.926,431.427,432.854],"script":[89.534,88.362,88.459,88.15,86.77,87.692,88.351,87.098,86.537,88.678,86.704,87.06,87.664,88.573,89.975],"paint":[335.679,335.951,334.596,335.475,332.408,336.301,332.528,342.802,335.674,336.659,343.811,332.066,335.757,336.337,336.34]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[48.758,49.77,48.258,48.321,49.93,48.101,49.299,48.931,49.892,49.283,49.703,49.159,48.343,51.057,48.967],"script":[10.477,10.436,9.913,9.928,10.164,9.925,10.601,10.298,10.403,10.134,10.269,10.192,10.286,10.504,10.161],"paint":[37.403,38.452,37.467,37.522,38.875,37.289,37.797,37.71,38.513,38.319,38.569,38.091,37.206,39.659,37.921]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"09_clear1k_x8","v":{"total":[13.572,14.284,13.606,14.026,14.275,14.509,14.321,14.112,14.406,14.077,14.514,14.877,15.081,14.214,14.404],"script":[12.079,12.134,11.563,11.876,12.481,12.286,12.385,11.608,12.536,11.941,12.393,12.81,12.773,12.377,12.575],"paint":[1.408,2.053,1.947,1.805,0.915,1.682,1.105,2.389,1.785,2.042,2.026,1.983,1.854,1.023,1.573]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5268325805664062]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"22_run-memory","v":{"DEFAULT":[2.3418779373168945]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.3673715591430664]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7147274017333984]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[17.80020046234131]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[22.0986328125]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[7.8701171875]}}, -{"f":"strve-reactivity-v1.5.0-keyed","b":"43_first-paint","v":{"DEFAULT":[75.7]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"01_run1k","v":{"total":[36.808,36.661,36.616,36.92,36.857,38.952,37.209,36.361,37.507,39.163,36.658,36.092,36.988,37.187,36.284],"script":[3.319,3.661,3.39,3.687,3.368,3.73,3.472,3.616,3.809,3.667,3.67,3.509,3.576,3.661,3.571],"paint":[33.055,32.578,32.815,32.827,33.069,34.786,33.266,32.345,33.266,35.06,32.586,32.16,33.009,33.11,32.308]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"02_replace1k","v":{"total":[43.588,44.175,41.454,41.473,44.115,41.125,41.677,41.301,41.099,41.577,41.675,41.721,41.17,41.389,41.891],"script":[6.956,7.179,6.729,6.548,6.913,6.563,6.575,6.73,6.712,6.735,6.941,6.613,6.81,6.793,6.783],"paint":[36.185,36.557,34.293,34.512,36.755,34.12,34.663,34.139,33.954,34.394,34.27,34.689,33.923,34.177,34.692]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"03_update10th1k_x16","v":{"total":[16.901,15.856,15.593,16.981,15.756,16.118,16.267,16.7,16.87,16.828,16.431,16.148,17.267,16.076,16.438],"script":[1.224,0.941,0.903,1.179,0.271,1.204,0.982,1.475,1.515,0.258,0.892,1.248,0.886,0.974,1.013],"paint":[13.772,13.593,13.454,15.071,13.731,13.616,13.998,14.226,14.083,15.908,14.236,13.386,14.528,12.947,14.203]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"04_select1k","v":{"total":[3.46,3.845,3.138,3.441,3.851,3.261,4.056,2.731,3.95,3.825,5.732,3.803,5.801,4.056,6.929,3.452,3.894,3.397,2.921,3.021,3.11,4.108,3.857,4.267,3.599],"script":[0.9,1.221,1.295,0.954,0.65,0.707,0.678,0.235,1.037,1.296,0.872,1.373,0.619,1.212,1.173,1.298,0.681,0.964,0.867,0.515,0.983,0.683,0.724,1.23,1.179],"paint":[1.353,2.496,1.294,1.94,3.07,2.071,2.18,2.399,2.471,2.414,1.943,2.261,2.425,2.728,1.959,2.052,1.845,2.053,1.93,2.382,2.027,2.51,3.016,2.825,1.379]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"05_swap1k","v":{"total":[20.236,20.128,20.66,20.539,20.067,19.126,20.926,20.155,20.039,19.833,19.95,20.852,20.353,19.701,20.849],"script":[1.318,1.207,1.418,1.665,1.087,1.583,1.572,1.792,1.866,1.909,2.067,1.693,1.702,1.976,1.832],"paint":[17.998,17.362,17.904,17.569,16.809,14.875,18.152,17.295,16.283,16.717,15.914,17.622,16.301,15.491,17.135]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"06_remove-one-1k","v":{"total":[15.355,15.625,15.419,16.165,14.884,15.695,14.852,15.157,15.083,15.752,15.62,15.382,15.841,15.516,15.219],"script":[0.583,0.636,0.558,0.248,0.263,0.563,0.515,0.351,0.345,0.568,0.36,0.586,0.563,0.62,0.58],"paint":[14.03,14.297,14.084,15.487,13.899,14.371,13.7,14.029,13.676,14.502,14.015,14.05,14.387,13.904,13.936]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"07_create10k","v":{"total":[369.224,363.796,366.094,369.767,370.029,368.881,371.157,366.824,367.15,364.101,368.407,368.689,367.101,366.033,367.038],"script":[40.453,40.612,42.857,41.597,42.669,40.023,42.164,41.676,40.075,41.07,41.865,40.483,40.047,41.454,40.755],"paint":[321.878,316.745,316.861,321.76,320.388,322.042,322.577,318.799,320.586,316.5,320.05,321.673,320.605,318.089,319.736]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"08_create1k-after1k_x2","v":{"total":[42.894,42.805,42.682,43.805,43.741,42.697,41.958,41.814,43.005,42.333,43.182,43.264,42.44,43.341,44.499],"script":[3.399,3.282,3.384,3.575,3.517,3.286,3.379,3.547,3.516,3.369,3.354,3.439,3.598,3.477,3.372],"paint":[38.612,38.612,38.414,39.395,39.285,38.523,37.738,37.433,38.623,38.087,38.928,38.958,37.938,38.956,40.242]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"09_clear1k_x8","v":{"total":[13.25,13.401,12.948,13.361,12.797,13.285,13.194,13.317,13.183,13.984,13.239,13.408,13.326,12.773,12.88],"script":[11.425,11.278,11.392,10.796,11.207,10.91,10.747,11,11.27,11.611,11.474,11.416,10.846,11.407,11.239],"paint":[1.729,1.779,1.474,2.478,1.5,2.287,2.311,2.173,1.111,2.272,1.673,1.195,2.384,0.361,0.742]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4982023239135742]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"22_run-memory","v":{"DEFAULT":[2.638660430908203]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.652606964111328]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9120607376098633]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[19.7034273147583]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[17.9296875]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.9658203125]}}, -{"f":"svelte-v5.0.0-next.64-keyed","b":"43_first-paint","v":{"DEFAULT":[76.8]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"01_run1k","v":{"total":[39.244,39.672,36.726,36.171,36.615,37.477,37.698,37.383,37.951,38.658,38.715,38.968,38.924,39.313,38.653],"script":[5.114,5.438,5.114,4.868,4.954,5.002,5.172,5.049,5.202,5.1,5.183,5.555,5.384,5.157,5.184],"paint":[33.67,33.792,31.238,30.909,31.246,32.068,32.113,31.927,32.349,33.147,33.135,32.99,33.133,33.745,33.052]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"02_replace1k","v":{"total":[44.566,47.33,44.502,44.364,44.807,45.834,44.235,45.126,44.682,44.658,44.791,44.57,44.504,44.011,44.253],"script":[8.312,8.769,8.937,8.668,8.588,8.133,8.625,8.706,8.312,8.766,9.141,8.561,8.728,8.864,8.578],"paint":[35.804,38.162,35.152,35.222,35.766,37.236,35.19,35.963,35.934,35.442,35.189,35.578,35.343,34.724,35.223]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"03_update10th1k_x16","v":{"total":[18.363,16.868,17.753,16.778,17.193,17.273,16.87,17.622,17.941,17.157,17.42,17.484,16.91,17.298,17.144],"script":[1.477,1.842,2.366,1.846,2.003,1.771,1.824,2.087,2.625,1.916,1.655,2.043,1.874,2.062,2.098],"paint":[14.474,13.591,13.85,13.284,13.624,14.467,13.746,14.478,13.908,14.294,13.192,14.106,13.239,13.94,13.541]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"04_select1k","v":{"total":[3.873,3.362,3.188,4.211,3.466,3.807,3.506,2.949,3.536,3.811,3.86,3.377,4.253,3.217,4.346,5.208,3.876,4.262,4.719,4.949,3.426,3.962,5.099,3.859,5.168],"script":[0.918,0.658,0.992,1.34,1.525,1.278,1.311,1.216,1.2,0.768,1.28,1.437,0.85,0.876,1.253,1.81,1.241,1.804,1.444,1.623,0.895,1.46,1.489,0.274,1.132],"paint":[1.609,2.578,1.431,2.47,1.84,2.407,2.089,1.615,1.544,1.781,1.77,1.822,2.675,2.24,2.818,2.263,2.519,2.331,1.296,3.154,1.443,2.381,2.152,3.459,2.481]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"05_swap1k","v":{"total":[20.232,20.303,20.066,19.68,19.823,19.829,20.957,19.425,19.666,19.771,19.316,20.619,19.639,20.111,21.249],"script":[2.248,1.91,1.643,1.58,1.824,1.354,1.834,1.23,1.013,1.583,1.405,1.515,1.727,1.777,1.376],"paint":[16.763,16.928,16.678,16.634,16.612,16.998,17.548,17.159,17.487,17.32,16.626,17.885,16.267,17.154,18.314]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"06_remove-one-1k","v":{"total":[15.595,15.48,15.313,15.451,15.397,15.644,15.502,15.354,15.779,15.896,15.452,15.66,15.321,15.421,15.857],"script":[0.713,0.614,0.62,0.65,0.655,0.638,0.655,0.662,0.603,0.617,0.608,0.63,0.642,0.608,0.836],"paint":[14.137,13.8,13.931,13.905,13.899,13.572,14.105,14.157,14.471,14.799,14.154,14.001,13.975,14.132,14.327]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"07_create10k","v":{"total":[400.455,394.041,402.524,403.729,403.816,408.845,399.319,405.755,404.43,395.013,402.809,404.087,403.663,399.897,402.036],"script":[57.281,56.451,56.32,57.116,57.983,57.322,56.955,57.037,57.696,56.362,57.071,56.238,55.782,56.724,56.083],"paint":[336.412,330.766,339.255,339.882,339.12,344.8,335.662,341.99,339.953,331.877,338.971,341.06,341.18,336.463,339.136]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"08_create1k-after1k_x2","v":{"total":[46.07,45.075,47.493,45.767,45.095,46.327,45.762,46.54,46.345,47.538,46.299,46.564,46.675,46.604,46.807],"script":[5.588,5.559,5.778,5.577,5.502,5.916,5.99,5.88,5.924,6.086,5.984,5.951,5.868,6.1,5.605],"paint":[39.545,38.659,40.845,39.329,38.706,39.567,38.925,39.797,39.565,40.501,39.46,39.765,39.959,39.647,40.303]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"09_clear1k_x8","v":{"total":[12.636,12.902,12.847,12.945,13.76,13.411,12.156,12.612,13.155,13.164,12.369,13.189,13.112,12.83,13.633],"script":[10.86,10.821,10.732,10.977,11.5,11.312,10.745,10.765,11.373,11.454,10.767,11.412,10.996,10.732,11.701],"paint":[1.682,1.57,2.021,1.878,1.187,1.375,0.39,1.756,0.966,0.779,1.513,1.511,0.495,1.895,1.835]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.49695777893066406]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"22_run-memory","v":{"DEFAULT":[2.757552146911621]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.791414260864258]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.365610122680664]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[20.956418991088867]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[16.87890625]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.5615234375]}}, -{"f":"svelte-classic-v5.0.0-next.64-keyed","b":"43_first-paint","v":{"DEFAULT":[77.1]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"01_run1k","v":{"total":[42.207,43.475,41.919,41.949,41.199,44.065,43.751,42.552,43.828,42.919,43.06,42.225,42.046,43.081,43.013],"script":[8.362,9.279,8.366,8.297,8.218,9.073,9.395,8.4,8.87,8.694,8.944,8.549,8.754,9.266,8.721],"paint":[33.412,33.767,33.113,33.231,32.578,34.59,33.942,33.735,34.551,33.822,33.708,33.252,32.826,33.4,33.884]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"02_replace1k","v":{"total":[51.829,50.94,49.92,52.931,51.047,50.321,51.423,49.995,51.262,52.252,51.457,50.107,49.33,49.58,51.087],"script":[14.934,14.608,14.695,15.639,14.506,14.443,15.308,14.506,15.188,15.704,15.453,15.202,14.477,14.612,15.418],"paint":[36.442,35.872,34.8,36.842,36.089,35.44,35.635,35.054,35.629,36.105,35.572,34.466,34.423,34.533,35.235]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"03_update10th1k_x16","v":{"total":[17.576,16.872,17.199,16.633,18.436,17.119,17.592,18.468,18.162,17.45,18.163,17.288,17.854,17.902,16.904],"script":[2.098,1.555,1.817,1.827,2.353,1.286,1.937,2.584,1.504,1.848,1.539,1.804,1.897,1.394,0.954],"paint":[13.902,14.071,14.109,13.512,14.319,13.832,14.621,14.309,15.391,14.177,15.268,13.967,14.896,14.69,14.374]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"04_select1k","v":{"total":[7.233,6.951,6.085,7.03,6.522,6.514,5.856,6.578,5.768,6.222,6.373,7.107,6.473,6.554,6.249,6.821,6.613,6.706,6.426,6.107,6.56,5.944,5.98,5.966,6.605],"script":[4.112,4.047,3.912,4.283,3.973,3.766,3.807,3.722,3.44,3.752,4.16,4.276,3.942,3.799,3.531,4.739,4.125,3.788,3.696,3.897,4.325,3.714,3.751,4.284,4.007],"paint":[3.003,2.795,2.054,1.378,1.503,1.713,1.036,1.281,1.178,2.357,2.089,2.031,2.429,2.238,2.615,1.972,2.363,2.816,1.78,0.995,2.118,2.131,1.363,1.119,2.492]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"05_swap1k","v":{"total":[19.724,19.507,19.694,20.298,19.034,20.75,19.417,19.62,20.499,19.041,19.227,20.543,19.653,19.584,20.122],"script":[1.689,0.938,1.415,2.081,1.421,1.485,1.301,1.345,1.391,1.267,1.307,1.431,1.476,1.535,1.84],"paint":[15.836,16.961,16.89,16.346,15.363,17.975,17.105,16.722,17.704,16.714,16.94,17.479,17.053,17.096,16.726]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"06_remove-one-1k","v":{"total":[15.912,15.816,15.901,15.955,15.848,15.488,15.677,15.357,16.27,15.546,15.691,15.851,15.964,15.513,15.683],"script":[1.098,1.087,1.101,1.078,1.04,0.818,0.989,0.992,0.883,0.785,0.939,1.066,1.074,0.8,0.814],"paint":[14.109,14.059,14.143,13.88,14.002,13.663,13.838,13.516,14.638,13.76,13.85,14.101,13.919,13.645,14.165]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"07_create10k","v":{"total":[431.94,429.242,433.906,435.771,436.269,436.129,439.967,436.696,438.383,437.189,436.779,435.481,436.597,438.124,437.004],"script":[96.018,97.587,97.509,98.468,99.398,98.367,99.923,98.684,98.82,98.615,98.387,97.471,99.427,99.528,100.243],"paint":[329.191,324.99,329.53,330.211,330.059,331.076,333.325,331.364,332.805,331.884,331.714,331.322,330.458,331.792,330.081]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[48.654,50.894,48.128,49.403,49.345,49.979,48.453,49.34,49.39,49.266,49.426,49.641,49.62,50.437,49.757],"script":[9.309,9.763,9.31,9.474,9.806,9.786,9.3,9.811,9.246,9.839,9.421,9.509,9.372,9.913,9.858],"paint":[38.418,40.24,37.967,39.035,38.653,39.337,38.214,38.618,39.258,38.525,39.077,39.271,39.391,39.596,39.027]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"09_clear1k_x8","v":{"total":[15.812,15.889,16.072,15.924,16.381,15.153,16.13,14.573,14.68,15.127,14.831,15.267,15.637,15.015,15.342],"script":[13.715,13.762,13.777,14.022,14.091,12.959,14.098,12.696,13.396,13.149,13.364,13.082,13.163,13.456,13.8],"paint":[1.987,2.026,2.193,1.229,1.688,2.098,1.648,1.781,0.696,1.24,1.376,1.117,1.815,1.474,0.973]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.6336116790771484]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"22_run-memory","v":{"DEFAULT":[4.749085426330566]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.727506637573242]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.445829391479492]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[40.606215476989746]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[157.5185546875]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[47.2265625]}}, -{"f":"sycamore-v0.9.0-beta.2-keyed","b":"43_first-paint","v":{"DEFAULT":[277.6]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"01_run1k","v":{"total":[41.63,41.869,41.096,41.728,42.278,41.915,41.683,43.046,42.295,41.642,42.686,42.004,41.691,41.497,42.259],"script":[8.081,7.811,7.996,8.044,8.123,7.912,8.112,7.717,8.459,7.908,7.823,8.607,8.026,8.139,7.982],"paint":[33.102,33.625,32.674,33.261,33.728,33.574,33.145,34.872,33.422,33.309,34.347,32.973,33.254,32.937,33.838]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"02_replace1k","v":{"total":[46.532,46.783,46.538,46.358,46.095,46.586,46.746,47.615,46.788,46.56,47.922,46.393,47.339,46.884,47.568],"script":[11.758,11.128,11.498,11.491,11.368,11.368,11.393,11.265,11.725,11.321,11.429,11.433,11.807,11.531,11.848],"paint":[34.329,35.213,34.608,34.405,34.277,34.777,34.89,35.891,34.62,34.794,36.04,34.515,35.085,34.898,35.258]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"03_update10th1k_x16","v":{"total":[17.247,16.614,16.294,17.194,17.413,15.619,15.83,15.939,16.536,16.213,17.888,15.995,15.904,16.282,15.75],"script":[0.99,1.137,0.926,0.195,1.045,0.282,0.945,0.607,0.19,0.183,1.23,0.94,0.635,1,0.924],"paint":[14.93,13.648,13.826,15.559,14.468,14.481,13.66,13.999,15.063,15.041,15.309,13.459,14.16,14.256,13.638]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"04_select1k","v":{"total":[2.882,3.298,2.771,3.831,3.159,2.477,1.961,2.87,3.088,6.352,2.636,2.61,3.082,3.139,3.713,3.173,3.161,2.743,2.797,2.995,3.934,2.456,4.782,2.772,2.419],"script":[0.6,0.07,0.071,0.072,0.075,0.314,0.075,0.533,0.562,0.696,0.075,0.071,0.073,0.072,0.067,0.069,0.473,0.574,0.769,0.83,0.071,0.067,0.075,0.98,0.737],"paint":[2.181,2.873,2.601,1.949,0.813,1.738,1.786,1.693,1.765,1.686,2.371,1.4,1.922,2.447,1.971,1.927,1.528,2.069,1.523,1.432,2.587,1.613,3.195,1.697,1.588]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"05_swap1k","v":{"total":[25.713,25.349,25.232,24.512,27.245,25.798,25.943,27.311,27.595,26.565,25.989,25.761,24.812,25.667,26.271],"script":[7.182,6.291,6.918,6.009,7.283,6.158,6.063,7.393,7.285,7.814,6.283,6.205,6.116,6.681,7.086],"paint":[17.218,18.023,16.724,17.724,18.842,18.467,18.537,18.776,18.729,16.712,18.644,17.728,16.353,18.073,16.335]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"06_remove-one-1k","v":{"total":[19.398,19.614,18.711,19.643,19.398,18.912,20.501,19.194,19.014,19.498,19.265,19.226,18.889,19.212,19.228],"script":[4.04,3.952,3.843,3.863,4.287,3.992,4.961,3.919,3.837,4.309,4.136,4.342,4.049,3.484,4.272],"paint":[14.431,13.916,14.105,14.855,13.929,14.146,14.636,14.503,14.122,14.468,14.39,14.111,13.783,14.946,13.829]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"07_create10k","v":{"total":[432.937,426.977,425.663,426.648,427.83,430.124,430.799,432.924,427.041,421.002,421.465,429.748,429.335,426.148,429.126],"script":[95.523,88.874,92.604,90.919,92.342,94.593,94.295,94.188,91.529,89.332,90.371,93.716,93.573,88.797,93.173],"paint":[330.568,331.356,325.972,328.866,328.774,328.746,329.789,331.953,328.686,324.878,324.063,329.017,328.679,330.511,329.166]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"08_create1k-after1k_x2","v":{"total":[51.269,51.005,51.748,49.98,50.552,50.87,50.499,50.401,50.442,50.45,50.789,51.708,50.741,50.394,50.257],"script":[10.684,10.237,11.317,10.11,10.344,10.133,10.154,10.167,10.893,10.299,10.233,10.848,10.441,10.063,10.252],"paint":[39.683,39.87,39.529,38.994,39.309,39.831,39.413,39.331,38.658,39.241,39.63,39.911,39.395,39.45,39.104]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"09_clear1k_x8","v":{"total":[13.233,13.5,13.989,13.576,14.437,13.153,13.658,13.094,14.055,13.491,14.053,13.495,13.034,13.477,13.457],"script":[11.229,11.902,11.908,11.383,12.282,11.096,11.602,11.222,12.164,11.649,12.391,11.366,11.375,11.626,11.525],"paint":[1.444,1.276,1.794,2.076,1.298,1.22,1.961,1.79,1.085,1.746,0.74,1.526,1.404,1.751,1.799]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5291948318481445]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"22_run-memory","v":{"DEFAULT":[2.7558364868164062]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.802882194519043]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6911125183105469]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[21.925585746765137]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[12.865234375]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.705078125]}}, -{"f":"udomsay-esx-v0.4.9-keyed","b":"43_first-paint","v":{"DEFAULT":[91.4]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"01_run1k","v":{"total":[41.64,40.952,40.629,41.489,41.443,42.701,40.846,40.191,41.049,40.585,41.133,41.699,41.458,41.4,41.487],"script":[7.371,7.24,7.144,7.317,7.378,8.034,7.468,7.795,7.264,7.29,7.282,7.412,7.6,7.528,7.567],"paint":[33.836,33.266,33.045,33.703,33.594,34.201,32.938,31.932,33.342,32.86,33.405,33.843,33.407,33.426,33.47]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"02_replace1k","v":{"total":[48.07,48.094,47.421,49.25,47.006,47.346,48.532,48.571,48.744,47.933,49.571,49.04,46.634,46.929,48.179],"script":[12.544,11.98,11.854,12.442,11.617,11.707,12.26,12.721,12.184,11.807,12.748,12.213,11.32,11.735,12.278],"paint":[35.063,35.67,35.109,36.311,34.95,35.193,35.822,35.412,36.114,35.683,36.362,36.335,34.865,34.75,35.449]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"03_update10th1k_x16","v":{"total":[16.781,17.285,16.672,17.096,16.108,15.737,16.49,16.972,15.917,16.213,17.757,15.534,16.489,16.779,17.175],"script":[1.637,0.882,0.615,0.86,1.011,0.638,0.585,1,0.889,0.843,0.888,0.878,0.822,1.14,0.554],"paint":[14.178,15.282,14.597,14.933,13.781,13.482,14.616,14.184,13.756,14.465,15.597,13.09,14.197,14.875,14.504]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"04_select1k","v":{"total":[4.97,3.795,2.577,2.641,2.308,2,3.357,2.759,2.484,2.211,3.157,2.899,3.677,2.595,2.984,2.398,3.292,2.845,2.722,3.663,2.819,2.539,2.572,2.564,3.649],"script":[0.072,0.78,0.078,0.324,0.086,0.075,0.29,0.799,0.076,0.07,0.627,0.07,0.694,0.073,0.07,0.076,0.465,0.072,0.717,0.075,0.793,0.074,0.482,0.082,0.07],"paint":[2.174,1.114,1.955,1.855,1.335,1.142,1.292,1.851,1.087,2.047,2.059,2.381,1.641,2.418,2.522,1.893,1.793,2.478,1.887,1.089,1.085,2.361,1.612,1.454,2.221]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"05_swap1k","v":{"total":[24.861,27.951,25.931,25.533,25.99,24.709,25.386,25.463,26.22,26.962,25.885,25.687,24.945,25.855,26.07],"script":[5.575,7.309,7.08,7.159,7.119,5.753,6.656,6.744,5.976,7.643,7.225,6.758,6.686,6.562,6.711],"paint":[17.032,18.884,17.573,17.253,17.302,16.974,18.004,17.654,18.026,18.156,17.214,17.388,16.506,17.857,17.344]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"06_remove-one-1k","v":{"total":[18.552,17.966,18.967,18.447,18.441,18.303,19.012,17.91,18.41,19.579,19.651,18.768,18.059,18.928,19.154],"script":[3.74,3.24,3.759,3.567,3.621,3.497,3.766,3.186,3.258,3.646,3.973,3.684,3.24,3.669,3.688],"paint":[14.051,14.042,13.882,13.903,13.847,13.629,14.465,14.053,14.414,15.081,14.91,14.333,13.798,14.351,14.689]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"07_create10k","v":{"total":[429.683,428.969,426.194,425.626,427.355,429.075,430.807,434.573,436.019,424.513,427.98,428.924,430.319,427.919,426.841],"script":[88.464,86.994,84.469,85.007,86.371,86.137,87.525,96.097,85.91,85.046,87.393,87.937,91.794,86.902,85.91],"paint":[334.477,335.13,334.858,333.641,334.006,336.152,336.515,331.702,343.316,332.694,333.86,334.251,331.706,334.274,334.054]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"08_create1k-after1k_x2","v":{"total":[51.116,52.137,51.096,49.554,51.429,49.688,50.064,49.66,50.097,49.609,49.524,50.95,50.873,51.027,51.01],"script":[10.252,11.52,11.038,9.976,10.459,10.227,9.925,9.975,9.978,10.022,9.884,10.177,10.328,10.334,10.116],"paint":[39.907,39.681,39.143,38.723,40.058,38.529,39.263,38.811,39.099,38.715,38.757,39.89,39.645,39.789,39.959]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"09_clear1k_x8","v":{"total":[12.157,13.486,13.429,13.273,13.222,12.863,13.201,12.64,13.696,12.763,13.706,13.34,14.076,13.372,12.603],"script":[10.523,11.783,11.516,11.627,11.711,11.012,11.271,10.746,11.673,11.217,11.919,11.352,11.976,11.464,10.71],"paint":[1.184,1.606,0.94,0.746,0.797,1.766,1.842,1.223,0.983,1.463,0.908,1.169,1.879,1.467,1.804]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5861787796020508]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"22_run-memory","v":{"DEFAULT":[2.740572929382324]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.844575881958008]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.8802108764648438]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[22.017369270324707]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[13.431640625]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.2373046875]}}, -{"f":"udomsay-tpl-v0.4.9-keyed","b":"43_first-paint","v":{"DEFAULT":[100.3]}}, -{"f":"uhtml-v4.4.1-keyed","b":"01_run1k","v":{"total":[39.077,38.942,39.081,38.973,40.089,39.323,39.836,40.746,39.026,40.208,40.09,38.944,39.686,39.798,40.064],"script":[5.303,5.345,5.838,5.352,5.811,5.465,5.47,5.944,5.344,5.687,5.479,5.797,5.387,5.64,5.731],"paint":[33.318,33.136,32.823,33.171,33.86,33.429,33.92,34.359,33.236,34.102,34.163,32.688,33.837,33.724,33.886]}}, -{"f":"uhtml-v4.4.1-keyed","b":"02_replace1k","v":{"total":[43.871,45.11,45.18,45.306,45.342,45.276,44.724,45.089,45.009,44.018,45.377,44.693,44.105,45.699,46.696],"script":[8.517,9.142,9.403,8.795,8.97,9.582,8.88,9.421,9.623,8.571,9.66,8.883,8.666,9.691,9.001],"paint":[34.873,35.488,35.323,36.048,35.922,35.231,35.408,35.241,34.942,35.01,35.263,35.35,35.013,35.567,37.248]}}, -{"f":"uhtml-v4.4.1-keyed","b":"03_update10th1k_x16","v":{"total":[19.199,18.124,19.769,17.457,17.156,18.262,17.216,19.072,17.612,18.345,17.982,17.005,17.601,16.984,18.155],"script":[2.288,1.88,1.981,1.836,1.833,2.014,1.609,2.206,2.382,1.878,1.847,1.94,1.992,2.074,1.745],"paint":[15.549,14.163,16.162,13.731,13.97,14.613,14.272,15.025,13.771,14.829,14.744,13.609,14.194,13.397,15.131]}}, -{"f":"uhtml-v4.4.1-keyed","b":"04_select1k","v":{"total":[2.754,2.816,3.194,3.571,3.926,2.779,2.533,5.287,2.809,2.581,2.456,5.757,3.55,2.534,4.133,2.441,3.111,2.351,2.881,5.939,2.765,3.104,4.081,5.402,2.71],"script":[0.878,0.061,0.053,0.758,0.055,0.062,0.059,0.054,0.588,0.055,0.222,0.534,0.055,0.059,0.055,0.057,0.777,0.225,0.972,0.057,0.049,0.705,0.059,1.047,0.06],"paint":[1.782,2.651,1.678,1.569,3.196,2.601,2.377,2.289,1.98,1.621,0.877,1.836,1.167,2.334,1.493,2.294,1.577,1.586,1.794,2.632,2.623,2.295,1.877,2.526,2.553]}}, -{"f":"uhtml-v4.4.1-keyed","b":"05_swap1k","v":{"total":[20.268,20.054,19.503,19.492,20.106,18.446,19.685,19.647,19.386,19.889,19.917,19.61,19.449,19.343,19.315],"script":[0.91,0.254,0.892,1.101,0.862,1.024,0.85,1.082,0.684,1.249,0.857,0.226,0.224,0.892,0.658],"paint":[17.701,18.769,17.041,17.018,17.518,16.425,17.972,17.548,17.321,16.666,17.771,17.915,18.475,16.933,17.12]}}, -{"f":"uhtml-v4.4.1-keyed","b":"06_remove-one-1k","v":{"total":[15.962,15.489,15.492,15.414,15.279,15.585,15.25,15.354,15.373,15.386,15.695,15.662,15.069,15.296,15.805],"script":[0.569,0.278,0.583,0.577,0.488,0.334,0.459,0.563,0.552,0.555,0.54,0.319,0.365,0.559,0.462],"paint":[14.639,14.54,13.852,14.075,14.295,14.786,13.979,13.791,13.786,14.104,14.142,14.639,13.669,13.861,13.94]}}, -{"f":"uhtml-v4.4.1-keyed","b":"07_create10k","v":{"total":[423.148,423.891,423.779,419.116,418.747,418.95,417.737,419.08,419.394,423.144,420.755,417.985,418.816,420.16,417.099],"script":[80.404,79.981,79.11,79.639,79.117,79.718,78.24,79.778,79.32,81.601,79.697,79.656,79.221,75.343,75.341],"paint":[335.091,336.757,337.633,332.302,332.336,331.828,332.433,332.351,333.164,334.525,333.854,331.131,332.558,338.009,334.977]}}, -{"f":"uhtml-v4.4.1-keyed","b":"08_create1k-after1k_x2","v":{"total":[44.79,44.725,45.243,45.123,45.865,45.354,46.131,45.514,44.895,46.115,46.28,45.988,45.878,45.999,47.515],"script":[5.653,5.587,5.61,5.655,5.652,5.617,6.049,5.569,5.576,6.219,5.971,6.135,6.169,5.818,6.086],"paint":[38.252,38.265,38.735,38.609,39.307,38.831,39.211,38.948,38.44,39.018,39.458,38.988,38.838,39.211,40.406]}}, -{"f":"uhtml-v4.4.1-keyed","b":"09_clear1k_x8","v":{"total":[14.52,14.128,13.182,13.408,14.145,13.843,13.987,13.334,14.467,14.736,14.446,13.99,14.896,13.619,14.925],"script":[12.168,11.851,11.288,11.804,12.477,11.436,12.38,12.174,11.768,12.561,12.387,12.057,12.57,11.072,12.856],"paint":[1.329,2.187,1.82,1.499,0.733,1.933,1.299,1.077,1.359,1.975,1.955,1.83,2.205,1.606,1.974]}}, -{"f":"uhtml-v4.4.1-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5059242248535156]}}, -{"f":"uhtml-v4.4.1-keyed","b":"22_run-memory","v":{"DEFAULT":[2.3115644454956055]}}, -{"f":"uhtml-v4.4.1-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.293351173400879]}}, -{"f":"uhtml-v4.4.1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7289772033691406]}}, -{"f":"uhtml-v4.4.1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[18.12419033050537]}}, -{"f":"uhtml-v4.4.1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[9.677734375]}}, -{"f":"uhtml-v4.4.1-keyed","b":"42_size-compressed","v":{"DEFAULT":[4]}}, -{"f":"uhtml-v4.4.1-keyed","b":"43_first-paint","v":{"DEFAULT":[51.5]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"01_run1k","v":{"total":[47.098,47.539,44.548,47.792,40.9,47.31,50.169,41.206,49.901,41.659,47.134,45.138,46.808,47.514,42.367],"script":[7.46,7.326,8.546,7.86,7.58,8.262,8.462,7.169,7.646,8.131,7.682,7.537,7.452,7.529,7.449],"paint":[34.15,33.2,34.148,34.18,33.126,32.873,33.183,33.449,33.779,33.293,33.404,33.925,33.023,33.3,33.404]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"02_replace1k","v":{"total":[54.514,54.669,54.99,48.906,54.321,50.814,51.366,52.204,52.704,54.651,51.669,55.361,54.125,48.118,55.299],"script":[10.591,10.375,10.703,10.168,10.756,10.522,10.538,10.421,10.697,10.712,10.783,10.716,10.658,10.309,10.715],"paint":[35.54,34.836,35.677,35.23,35.199,35.941,34.94,35.8,34.825,35.785,35.993,35.915,34.874,35.451,35.5]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"03_update10th1k_x16","v":{"total":[17.494,21.326,36.156,34.889,20.127,34.425,20.373,18.326,21.467,18.081,19.385,34.869,18.417,18.183,20.395],"script":[3.536,3.646,3.457,4.183,3.746,3.617,2.797,2.603,3.514,2.127,3.243,3.15,3.883,4.483,2.76],"paint":[12.935,14.476,16.322,14.665,15.788,14.763,15.1,14.728,15.623,14.925,14.06,14.945,14.422,13.588,15.068]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"04_select1k","v":{"total":[5.673,5.89,5.919,6.025,5.522,6.223,5.667,5.952,5.76,5.913,6.232,6.959,5.79,6.689,5.303,6.219,6.836,5.629,6.228,5.552,5.839,6.733,5.564,5.708,6.742],"script":[3.171,3.025,2.23,2.333,2.81,3.748,2.768,3.635,2.646,2.203,2.692,3.385,2.626,3.26,2.929,2.818,3.341,2.493,2.906,2.484,2.779,3.976,2.712,3.233,3.916],"paint":[2.348,2.704,3.238,2.407,1.756,2.033,2.14,2.175,2.05,2.631,2.909,2.932,2.583,3.283,1.342,2.448,2.517,2.816,3.169,1.988,1.993,2.622,2.012,2.344,1.623]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"05_swap1k","v":{"total":[23.44,21.731,21.11,36.555,20.986,37.82299999999999,37.306,37.167,36.241,21.668,36.653000000000006,24.642,38.489,19.858,20.674],"script":[2.156,2.775,2.414,2.031,2.851,3.256,2.737,2.912,2.559,2.167,3.273,2.491,4.116,2.931,2.638],"paint":[20.21,18.203,18.579,18.052,18.009,18.575,17.751,18.212,18.13,18.187,17.153,18.507,17.964,16.683,17.925]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"06_remove-one-1k","v":{"total":[16.721,15.465,19.966,15.329,15.369,21.598,18.304,17.966,18.326,16.622,15.871,15.556,20.774,15.454,18.448],"script":[1.542,1.774,1.669,1.545,0.976,1.324,1.349,1.303,1.692,1.639,1.514,1.481,1.371,1.109,1.692],"paint":[13.008,12.974,13.866,13.657,13.559,13.404,13.549,13.1,12.981,14.05,13.6,13.734,13.273,13.85,13.434]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"07_create10k","v":{"total":[429.319,431.941,440.09,440.734,419.84,423.227,438.412,423.42,425.737,430.047,439.522,441.647,446.31,436.872,425.806],"script":[83.719,84.095,82.121,83.187,80.805,82.32,83.916,82.277,82.718,85.703,82.876,83.915,86.787,84.684,83.117],"paint":[338.855,342.304,355.296,355.518,336.232,338.77,350.763,339.039,340.871,340.731,353.902,354.482,357.46,347.615,340.544]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"08_create1k-after1k_x2","v":{"total":[56.029,57.531,57.672,58.137,58.034,56.319,57.784,58.031,56.317,56.662,55.576,58.073,55.802,57.417,58.02],"script":[7.11,7.662,7.215,7.37,7.157,7.232,7.913,7.14,7.1,7.288,7.124,7.046,7.1,7.229,7.275],"paint":[37.624,37.116,37.805,37.942,37.996,37.597,38.54,38.162,37.698,37.797,37.193,38.637,37.585,38.481,38.135]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"09_clear1k_x8","v":{"total":[15.85,30.631999999999998,14.796,17.163,15.338,31.644000000000005,15.253,31.213,14.287,18.609,14.488,14.665,18.253,15.031,32.12799999999999],"script":[13.368,13.094,12.874,12.873,12.205,13.615,12.312,12.816,12.028,13.389,11.583,12.734,13.378,13.349,14.272],"paint":[1.649,1.541,1.863,1.038,2.042,2.03,2.89,2.122,1.354,1.012,2.842,1.878,1.648,1.631,1.86]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7735595703125]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"22_run-memory","v":{"DEFAULT":[3.055964469909668]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.0144596099853516]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.1264839172363281]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[21.85037612915039]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[48.9423828125]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"42_size-compressed","v":{"DEFAULT":[14.69921875]}}, -{"f":"ui5-webcomponents-v1.3.1-keyed","b":"43_first-paint","v":{"DEFAULT":[93.7]}}, -{"f":"unis-v1.2.2-keyed","b":"01_run1k","v":{"total":[50.718,49.476,50.616,49.137,49.146,50.173,48.616,48.776,50.095,49.885,48.991,49.202,49.064,48.262,48.776],"script":[15.886,15.54,16.147,15.623,15.488,16.47,15.519,15.829,16.076,15.897,15.4,15.789,15.72,15.549,15.794],"paint":[34.394,33.507,33.987,33.078,33.224,33.283,32.67,32.543,33.59,33.536,33.163,33.004,32.917,32.293,32.559]}}, -{"f":"unis-v1.2.2-keyed","b":"02_replace1k","v":{"total":[61.264,60.063,60.359,60.759,60.071,60.603,60.374,60.902,60.609,60.624,60.709,59.956,60.342,60.683,60.364],"script":[23.538,23.446,23.853,22.975,23.289,23.835,23.558,23.867,23.369,23.953,23.777,23.387,23.402,23.76,23.997],"paint":[37.231,36.17,36.043,37.354,36.319,36.312,36.35,36.569,36.775,36.202,36.474,36.107,36.488,36.44,35.925]}}, -{"f":"unis-v1.2.2-keyed","b":"03_update10th1k_x16","v":{"total":[26.239,27.834,26.196,25.818,26.758,26.526,26.554,25.57,26.959,26.068,27.551,28.553,25.782,26.142,27.474],"script":[10.869,10.839,10.623,10.25,11.056,10.905,10.207,10.24,10.791,10.697,10.88,11.953,11.124,10.492,11.063],"paint":[13.763,14.777,14.192,14.493,14.326,14.584,14.244,13.568,14.805,14.445,15.111,15.532,13.452,14.414,15.08]}}, -{"f":"unis-v1.2.2-keyed","b":"04_select1k","v":{"total":[7.598,8.633,7.647,8.3,8.725,7.554,7.98,7.771,7.638,7.422,8.13,7.351,8.54,7.716,8.025,9.728,9.163,7.857,7.641,7.738,8.357,7.948,8.776,7.739,8.072],"script":[5.084,5.806,5.45,5.828,5.845,5.066,5.429,5.191,5.41,4.856,5.323,4.919,5.542,5.542,4.782,6.288,6.456,5.33,5.169,5.002,5.779,5.26,5.582,5.106,5.153],"paint":[2.015,2.317,2.037,2.351,1.648,1.605,1.767,1.655,1.157,2.207,2.227,2.283,2.011,1.832,3.058,2.15,2.438,2.027,1.458,2.623,1.647,2.574,1.764,2.484,2.764]}}, -{"f":"unis-v1.2.2-keyed","b":"05_swap1k","v":{"total":[25.095,24.455,24.642,24.445,24.05,24.153,24.516,25.688,25.444,25.332,24.238,24.188,25.611,24.513,24.08],"script":[5.74,5.704,5.62,5.866,5.852,5.62,5.858,5.678,6.341,5.635,4.937,5.33,6.486,5.851,5.637],"paint":[17.679,16.603,17.711,17.013,16.897,17.236,17.657,18.019,16.662,16.86,17.948,17.556,17.417,17.017,17.199]}}, -{"f":"unis-v1.2.2-keyed","b":"06_remove-one-1k","v":{"total":[19.448,19.187,18.439,18.89,18.719,18.46,18.355,18.53,18.375,19.432,18.691,19.308,18.229,18.54,18.578],"script":[3.479,3.301,3.454,3.667,3.266,3.483,3.151,3.549,3.181,3.483,3.617,3.388,3.515,3.214,3.222],"paint":[14.692,14.286,14.229,14.196,14.624,13.856,14.426,14.351,14.611,15.157,14.083,14.869,13.957,14.267,13.353]}}, -{"f":"unis-v1.2.2-keyed","b":"07_create10k","v":{"total":[519.808,521.376,516.518,527.629,535.96,528.113,518.934,530.957,526.317,515.532,515.96,530.351,530.225,502.89,529.902],"script":[166.196,166.656,164.929,166.24,167.146,165.281,164.659,164.907,165.82,164.799,166.018,166.849,165.194,167.763,165.91],"paint":[346.753,348.04,344.846,354.684,362.063,356.186,347.563,359.322,353.567,344.074,343.033,356.837,358.277,328.487,357.376]}}, -{"f":"unis-v1.2.2-keyed","b":"08_create1k-after1k_x2","v":{"total":[57.171,56.269,53.481,53.906,58.029,54.983,53.984,53.516,56.049,56.035,56.675,56.535,56.3,57.069,56.503],"script":[16.419,16.506,15.786,15.747,17.254,16.473,16.1,15.574,16.514,16.728,16.83,16.799,16.497,16.947,16.598],"paint":[39.863,38.85,36.809,37.366,39.768,37.716,37.098,37.067,38.662,38.446,38.957,38.842,38.927,39.245,39.032]}}, -{"f":"unis-v1.2.2-keyed","b":"09_clear1k_x8","v":{"total":[19.674,18.727,18.717,16.419,17.075,16.957,19.534,20.014,16.463,19.301,18.325,19.366,18.816,20.019,19.35],"script":[17.284,16.539,17.184,14.435,15.213,15.012,18.156,18.094,14.17,17.082,16.913,17.429,16.341,17.542,17.49],"paint":[1.862,2.09,1.432,1.872,1.76,1.816,1.266,0.891,2.195,2.129,1.31,1.679,2.38,2.368,1.336]}}, -{"f":"unis-v1.2.2-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5917606353759766]}}, -{"f":"unis-v1.2.2-keyed","b":"22_run-memory","v":{"DEFAULT":[6.87657356262207]}}, -{"f":"unis-v1.2.2-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.899847030639648]}}, -{"f":"unis-v1.2.2-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0785112380981445]}}, -{"f":"unis-v1.2.2-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[60.885005950927734]}}, -{"f":"unis-v1.2.2-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[16.8896484375]}}, -{"f":"unis-v1.2.2-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.3017578125]}}, -{"f":"unis-v1.2.2-keyed","b":"43_first-paint","v":{"DEFAULT":[76.8]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"01_run1k","v":{"total":[52.97,52.045,53.068,52.794,52.032,52.919,52.251,52.057,53.143,53.05,52.732,52.508,51.918,53.588,52.347],"script":[19.652,18.55,19.52,19.325,18.368,19.518,19.469,18.587,19.454,19.433,19.079,19.078,19.27,20.156,19.184],"paint":[32.876,33.059,33.048,33.006,33.191,32.967,32.338,33.032,33.247,33.179,33.191,32.996,32.217,32.994,32.738]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"02_replace1k","v":{"total":[59.928,61.759,58.759,59.661,59.141,59.445,60.768,59.651,60.674,60.044,59.345,58.755,59.483,59.762,60.646],"script":[23.81,24.367,22.687,23.422,23.561,23.08,24.243,23.955,24.096,23.6,22.654,22.498,23.494,23.102,24.302],"paint":[35.641,36.945,35.607,35.785,35.12,35.908,36.073,35.245,36.118,35.972,36.171,35.78,35.528,36.203,35.876]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"03_update10th1k_x16","v":{"total":[33.522,33.431,33.084,33.444,34.32,33.15,33.366,33.15,31.993,33.793,34.091,34.722,32.625,33.563,33.155],"script":[17.334,17.59,16.794,17.411,16.603,16.89,16.636,17.087,15.481,18.027,17.164,18.224,16.864,17.02,16.914],"paint":[14.536,14.464,15.222,14.211,16.438,15.038,15.484,13.737,15.166,13.147,15.313,14.32,14.623,15.483,14.896]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"04_select1k","v":{"total":[13.184,10.921,11.027,11.601,11.87,11.124,12.119,11.335,10.541,10.304,11.158,11.627,11.734,10.102,11.574,10.677,11.323,10.255,10.633,10.402,10.346,11.46,11.463,10.552,11.758],"script":[9.478,8.515,8.387,8.671,9.379,8.526,9.354,8.657,8.056,8.606,8.365,8.242,9.187,7.669,8.588,8.546,8.559,7.858,7.644,7.85,7.59,8.66,8.929,8.507,8.834],"paint":[3.127,1.634,1.82,2.802,2.341,1.777,1.923,1.859,1.45,1.017,2.272,2.763,2.035,1.339,1.292,2.011,2.653,2.278,1.885,1.735,1.679,2.659,1.312,1.156,2.176]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"05_swap1k","v":{"total":[175.849,174.894,179.68,174.183,174.066,176.486,178.255,173.339,176.499,172.682,175.115,172.381,176.497,179.353,176.704],"script":[35.17,34.247,36.117,35.237,33.829,37.235,37.776,34.627,35.002,33.547,34.401,34.437,36.31,39.428,36.071],"paint":[138.827,137.766,141.705,136.439,138.577,137.37,139.069,136.476,139.743,137.091,138.816,136.432,138.229,137.743,138.013]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"06_remove-one-1k","v":{"total":[24.373,24.555,25.14,24.563,24.003,24.438,24.081,24.27,24.134,24.402,23.969,24.128,24.139,24.308,24.258],"script":[9.064,9.097,8.694,9.445,8.762,9.144,8.739,9.068,8.87,9.162,8.631,8.772,8.907,9.14,8.886],"paint":[14.342,14.621,15.468,14.272,14.143,14.461,14.506,14.466,14.13,14.465,13.962,14.569,14.119,14.029,14.298]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"07_create10k","v":{"total":[672.162,681.107,671.676,640.755,643.564,644.775,698.5,658.617,691.2,685.827,686.064,682.974,689.172,688.187,679.662],"script":[311.234,327.47,316.743,292.709,294.925,293.066,338.187,307.984,335.183,331.698,333.352,333.317,330.705,327.332,329.241],"paint":[354.143,346.598,348.007,341.27,341.965,344.895,353.387,343.944,349.181,347.394,345.527,342.827,351.805,353.72,343.529]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"08_create1k-after1k_x2","v":{"total":[63.21,62.951,63.098,64.218,63.173,63.014,64.301,63.378,62.962,62.047,62.488,61.458,65.687,62.713,64.714],"script":[23.675,23.568,23.65,24.622,23.883,23.502,24.751,24.13,23.646,23.163,23.764,22.809,24.717,23.723,24.835],"paint":[38.634,38.471,38.588,38.716,38.413,38.637,38.673,38.359,38.433,38.003,37.675,37.759,40.111,38.09,38.908]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"09_clear1k_x8","v":{"total":[19.187,18.944,18.636,18.829,18.736,19.095,18.561,19.56,18.79,18.78,19.455,18.628,18.147,17.803,19.226],"script":[16.844,17.401,16.093,16.462,16.894,16.582,16.897,17.449,16.579,17.028,17.503,16.948,16.798,15.889,16.753],"paint":[1.666,1.443,1.373,2.27,1.208,1.372,0.726,1.983,2.107,0.84,1.861,1.583,0.907,1.803,2.031]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.0255231857299805]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"22_run-memory","v":{"DEFAULT":[5.9122314453125]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.723596572875977]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.7328872680664062]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[45.805925369262695]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[146.716796875]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"42_size-compressed","v":{"DEFAULT":[41.5693359375]}}, -{"f":"valtio-v18.2.0 + 1.10.3-keyed","b":"43_first-paint","v":{"DEFAULT":[225.8]}}, -{"f":"vanillajs-keyed","b":"01_run1k","v":{"total":[35.338,34.876,34.75,34.918,35.753,35.211,35.557,35.086,35.213,35.668,34.681,34.793,35.219,35.606,34.41],"script":[2.491,2.484,2.499,2.473,2.44,2.463,2.41,2.428,2.478,2.456,2.429,2.483,2.425,2.424,2.427],"paint":[32.423,31.985,31.865,32.046,32.895,32.384,32.753,32.291,32.325,32.82,31.854,31.921,32.401,32.789,31.583]}}, -{"f":"vanillajs-keyed","b":"02_replace1k","v":{"total":[38.483,37.642,38.401,37.951,38.527,39.129,38.526,39.564,39.568,38.2,39.381,38.358,39.489,38.215,38.915],"script":[4.679,4.663,4.734,4.663,4.666,4.802,4.712,4.903,4.927,4.686,4.868,4.825,4.884,4.697,4.918],"paint":[33.37,32.553,33.242,32.862,33.438,33.904,33.396,34.234,34.253,33.106,34.094,33.143,34.084,33.087,33.576]}}, -{"f":"vanillajs-keyed","b":"03_update10th1k_x16","v":{"total":[16.451,16.776,15.918,16.445,16.269,16.507,18.415,16,16.816,16.02,16.541,16.644,16.729,16.903,16.605],"script":[0.195,1.114,0.532,1.04,0.655,0.801,0.181,0.783,0.647,0.53,0.896,0.903,0.874,1.168,0.825],"paint":[14.796,14.053,14.395,14.067,14.532,14.697,17.057,13.654,14.912,15.165,14.448,14.104,14.546,14.693,14.792]}}, -{"f":"vanillajs-keyed","b":"04_select1k","v":{"total":[2.749,2.845,5.471,2.256,4.968,2.447,2.978,4.423,2.651,3.352,3.494,6.211,4.624,2.074,2.71,2.601,2.882,2.93,2.486,3.081,2.516,2.11,2.946,1.937,3.042],"script":[0.056,0.063,0.058,0.056,0.055,0.056,0.056,0.073,0.06,0.803,0.658,0.347,0.995,0.054,0.058,0.056,0.056,0.058,0.065,0.766,0.054,0.052,0.058,0.062,0.941],"paint":[2.527,2.678,1.79,1.077,1.694,2.297,2.829,2.958,1.432,1.689,1.875,1.503,1.36,1.199,2.558,2.012,2.089,2.774,1.999,1.613,2.366,1.138,2.353,1.774,1.641]}}, -{"f":"vanillajs-keyed","b":"05_swap1k","v":{"total":[17.746,18.804,18.372,18.113,18.536,18.032,19.285,18.118,18.892,18.702,18.357,17.477,18.43,17.892,17.558],"script":[0.383,0.078,0.732,0.08,0.557,0.067,0.09,0.079,0.876,0.072,0.219,0.067,0.078,0.073,0.632],"paint":[15.291,17.173,16.4,17.116,17.192,16.679,18.272,16.798,16.209,17.563,16.477,16.221,16.492,16.283,15.518]}}, -{"f":"vanillajs-keyed","b":"06_remove-one-1k","v":{"total":[14.864,15.168,14.861,15.019,15.156,14.323,14.604,15.194,14.789,14.612,15.22,14.669,15.513,15.331,14.815],"script":[0.115,0.418,0.262,0.219,0.377,0.109,0.101,0.295,0.103,0.114,0.418,0.107,0.154,0.108,0.104],"paint":[14.022,14.027,13.855,14.003,14.351,13.485,13.8,14.203,13.969,13.55,14.161,13.593,14.739,14.462,13.976]}}, -{"f":"vanillajs-keyed","b":"07_create10k","v":{"total":[364.918,368.754,367.853,377.005,372.095,376.054,368.498,366.64,368.782,369.262,369.758,369.556,371.529,371.261,370.308],"script":[29.408,29.32,27.515,28.84,30.251,29.875,29.221,29.659,28.284,28.167,28.208,29.184,28.448,28.663,29.873],"paint":[328.782,332.698,333.73,341.338,335.162,339.56,332.66,330.41,333.93,333.744,334.97,333.792,336.527,336.185,333.884]}}, -{"f":"vanillajs-keyed","b":"08_create1k-after1k_x2","v":{"total":[41.021,39.686,40.284,39.835,40.802,39.752,39.477,39.79,40.42,40.469,40,41.842,40.462,40.283,40.078],"script":[2.543,2.462,2.454,2.452,2.415,2.426,2.454,2.431,2.526,2.551,2.418,2.487,2.619,2.462,2.577],"paint":[37.65,36.397,36.993,36.537,37.426,36.498,36.21,36.529,37.07,37.108,36.756,38.5,37.034,37.017,36.709]}}, -{"f":"vanillajs-keyed","b":"09_clear1k_x8","v":{"total":[10.831,11.405,12.012,11.044,11.674,11.672,11.382,11.761,11.614,11.397,11.647,11.966,11.256,11.719,12.155],"script":[9.732,10.322,10.35,9.702,10.076,9.955,9.635,10.15,9.987,9.567,9.852,10.298,9.722,10.339,10.488],"paint":[0.369,0.369,1.578,1.254,0.94,1.632,1.665,0.724,1.548,1.741,1.716,1.584,0.801,1.287,1.481]}}, -{"f":"vanillajs-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4723787307739258]}}, -{"f":"vanillajs-keyed","b":"22_run-memory","v":{"DEFAULT":[1.7369375228881836]}}, -{"f":"vanillajs-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.6600341796875]}}, -{"f":"vanillajs-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.5207719802856445]}}, -{"f":"vanillajs-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[12.175152778625488]}}, -{"f":"vanillajs-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11.423828125]}}, -{"f":"vanillajs-keyed","b":"42_size-compressed","v":{"DEFAULT":[2.37109375]}}, -{"f":"vanillajs-keyed","b":"43_first-paint","v":{"DEFAULT":[59.2]}}, -{"f":"vanillajs-1-keyed","b":"01_run1k","v":{"total":[35.605,35.182,35.186,35.525,35.495,35.35,35.336,35.974,35.059,34.979,35.425,35.339,35.105,35.549,35.657],"script":[2.588,2.528,2.583,2.597,2.556,2.537,2.52,2.55,2.456,2.485,2.479,2.576,2.428,2.556,2.467],"paint":[32.611,32.265,32.206,32.511,32.496,32.428,32.428,33.026,32.214,32.095,32.587,32.386,32.304,32.636,32.799]}}, -{"f":"vanillajs-1-keyed","b":"02_replace1k","v":{"total":[38.835,38.872,38.928,38.512,38.616,38.353,39.525,39.031,39.053,39.356,39.38,39.677,40.408,38.782,41.003],"script":[4.864,4.955,4.955,4.807,4.762,4.864,4.984,4.799,4.874,4.918,4.968,5.074,5.095,4.97,5.162],"paint":[33.549,33.502,33.559,33.29,33.423,33.077,34.132,33.785,33.745,34.013,33.999,34.195,34.859,33.402,35.412]}}, -{"f":"vanillajs-1-keyed","b":"03_update10th1k_x16","v":{"total":[15.461,16.04,15.09,15.475,15.941,15.581,15.765,15.805,16.177,16.379,16.202,15.202,15.981,16.487,16.236],"script":[0.161,0.175,0.642,0.159,0.851,0.89,0.811,0.186,0.594,0.823,0.155,0.156,0.782,1.105,0.486],"paint":[13.708,14.175,13.36,13.984,14.07,12.914,13.622,14.055,14.443,14.42,14.495,13.259,14.249,14.384,14.447]}}, -{"f":"vanillajs-1-keyed","b":"04_select1k","v":{"total":[5.527,2.247,2.629,2.337,1.833,3.245,2.788,3.078,3.536,3.977,4.524,2.483,2.558,2.57,3.819,3.024,3.112,2.033,4.202,2.988,3.694,2.388,3.452,2.177,2.496],"script":[0.058,0.067,0.064,0.063,0.227,0.833,0.066,0.588,0.056,0.059,0.061,0.596,0.059,0.291,0.057,0.065,0.825,0.056,0.057,0.077,0.059,0.056,0.571,0.055,0.057],"paint":[1.86,2.068,1.628,1.328,1.509,1.813,2.568,2.395,2.265,2.412,1.519,1.556,2.403,2.176,1.349,1.708,2.181,1.194,2.423,2.792,2.089,2.228,2.727,1.359,2.339]}}, -{"f":"vanillajs-1-keyed","b":"05_swap1k","v":{"total":[17.304,17.589,18.721,17.601,17.821,17.764,17.855,18.739,17.727,18.521,18.138,19.029,17.792,18.278,18.297],"script":[0.072,0.083,0.077,0.077,0.075,0.075,0.074,0.569,0.082,0.081,0.073,0.066,0.078,0.083,0.075],"paint":[15.65,16.515,17.267,15.878,16.463,16.518,17.081,16.828,16.729,17.222,16.329,18.325,16.005,17.04,16.897]}}, -{"f":"vanillajs-1-keyed","b":"06_remove-one-1k","v":{"total":[14.647,15.144,14.626,14.711,14.24,14.362,15.07,14.717,14.724,15.263,15.135,14.65,14.445,14.678,15.165],"script":[0.082,0.388,0.08,0.077,0.075,0.2,0.075,0.194,0.074,0.31,0.306,0.201,0.188,0.075,0.075],"paint":[13.841,14.069,14.109,13.923,13.477,13.26,14.319,13.776,14.073,14.279,14.387,13.752,13.466,13.873,14.093]}}, -{"f":"vanillajs-1-keyed","b":"07_create10k","v":{"total":[370.816,363.741,367.265,366.082,366.083,373.35,364.549,368.14,376.52,374.841,370.9,364.894,368.065,365.854,377.412],"script":[27.67,27.758,26.943,27.24,26.543,27.241,27.648,28.132,28.163,29.061,29.745,27.575,28.901,27.32,28.249],"paint":[336.334,329.492,333.851,332.316,332.403,339.436,330.373,333.42,341.529,339.154,334.261,330.776,332.601,331.938,342.414]}}, -{"f":"vanillajs-1-keyed","b":"08_create1k-after1k_x2","v":{"total":[40.024,39.761,39.454,39.676,39.845,40.696,41.391,40.771,40.27,41.064,40.335,40.074,39.347,40.744,40.018],"script":[2.541,2.44,2.521,2.436,2.45,2.483,2.59,2.614,2.514,2.566,2.508,2.599,2.476,2.574,2.466],"paint":[36.699,36.486,36.154,36.464,36.578,37.372,37.976,37.341,36.96,37.658,37.003,36.615,36.032,37.323,36.717]}}, -{"f":"vanillajs-1-keyed","b":"09_clear1k_x8","v":{"total":[11.656,12.124,11.702,11.8,11.529,11.836,11.682,11.811,11.88,11.727,11.688,11.668,11.149,12.45,12.205],"script":[9.514,10.095,10.09,10.239,9.602,9.735,10.099,10.005,10.365,9.792,10.015,10.051,9.791,10.139,10.282],"paint":[2.06,1.321,1.534,1.47,1.221,1.861,1.496,1.042,1.171,1.854,0.759,1.392,1.286,1.806,0.952]}}, -{"f":"vanillajs-1-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4304313659667969]}}, -{"f":"vanillajs-1-keyed","b":"22_run-memory","v":{"DEFAULT":[1.7358684539794922]}}, -{"f":"vanillajs-1-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.6473112106323242]}}, -{"f":"vanillajs-1-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6018514633178711]}}, -{"f":"vanillajs-1-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[12.092707633972168]}}, -{"f":"vanillajs-1-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[9.060546875]}}, -{"f":"vanillajs-1-keyed","b":"42_size-compressed","v":{"DEFAULT":[2.041015625]}}, -{"f":"vanillajs-1-keyed","b":"43_first-paint","v":{"DEFAULT":[45.1]}}, -{"f":"vanillajs-wc-keyed","b":"01_run1k","v":{"total":[38.476,37.923,38.242,37.943,38.189,37.699,38.455,38.713,37.827,38.035,38.621,37.553,38.68,38.464,37.409],"script":[4.754,4.619,4.787,4.735,4.802,4.831,4.809,4.781,4.721,4.69,4.86,4.64,4.846,4.815,4.74],"paint":[33.314,32.919,33.087,32.817,32.956,32.495,33.242,33.517,32.702,32.934,33.387,32.498,33.427,33.257,32.262]}}, -{"f":"vanillajs-wc-keyed","b":"02_replace1k","v":{"total":[41.223,41.296,41.155,41.383,40.6,41.067,41.71,41.183,40.471,41.823,41.047,40.41,40.145,40.88,41.157],"script":[6.781,6.72,6.845,6.81,6.805,6.825,6.873,6.6,6.631,6.927,6.793,6.689,6.717,6.67,6.648],"paint":[34.002,34.151,33.926,34.122,33.382,33.799,34.447,34.157,33.405,34.47,33.843,33.282,33,33.787,34.079]}}, -{"f":"vanillajs-wc-keyed","b":"03_update10th1k_x16","v":{"total":[16.248,16.501,15.408,16.323,16.742,17.279,16.62,16.876,16.517,17.735,16.316,19.009,16.273,17.071,16.533],"script":[0.506,0.893,0.606,0.193,0.878,1.05,0.965,0.986,0.842,1.259,0.164,0.847,0.556,0.694,0.898],"paint":[14.059,14.607,13.174,15.137,14.093,14.301,13.497,14.887,15.031,14.515,14.73,16.213,15.011,14.844,14.632]}}, -{"f":"vanillajs-wc-keyed","b":"04_select1k","v":{"total":[2.418,2.414,4.033,2.629,2.339,3.211,2.493,3.025,2.567,2.647,3.427,4.558,2.589,2.707,3.192,2.346,2.717,1.972,4.091,2.391,3.229,3.728,2.86,3.985,2.526],"script":[0.585,0.323,0.063,0.067,0.069,0.836,0.471,0.861,0.065,0.228,0.956,0.201,0.069,0.071,0.924,0.345,0.062,0.068,0.071,0.071,0.063,0.065,0.433,0.59,0.415],"paint":[1.414,1.988,1.095,1.512,2.166,1.43,1.917,2.058,2.388,1.791,1.905,1.644,1.916,1.715,1.802,1.912,2.554,1.054,1.742,2.214,1.836,2.223,2.314,1.95,2.025]}}, -{"f":"vanillajs-wc-keyed","b":"05_swap1k","v":{"total":[17.932,18.342,18.598,17.961,18.5,17.574,18.153,18.892,18.507,18.998,18.326,18.917,18.651,18.138,18.367],"script":[0.09,0.222,0.73,0.096,0.822,0.085,0.504,0.454,0.095,0.101,0.085,0.28,0.546,0.088,0.592],"paint":[16.317,16.785,16.723,16.455,16.061,16.497,15.106,16.673,16.921,18.221,16.752,17.318,16.72,16.66,15.397]}}, -{"f":"vanillajs-wc-keyed","b":"06_remove-one-1k","v":{"total":[15.028,14.842,15.762,14.917,14.724,15.162,14.752,14.69,14.74,15.223,14.883,15.241,14.866,15.698,15.149],"script":[0.111,0.404,0.358,0.269,0.107,0.107,0.243,0.276,0.416,0.111,0.104,0.444,0.115,0.332,0.107],"paint":[13.867,13.731,14.671,13.948,13.915,14.333,13.799,13.854,13.623,14.093,13.803,14.054,13.813,14.497,14.415]}}, -{"f":"vanillajs-wc-keyed","b":"07_create10k","v":{"total":[407.299,403.612,404.809,407.108,404.285,403.846,406.134,405.682,406.022,406.218,404.362,404.952,402.772,405.146,407.676],"script":[60.044,59.214,59.975,61.116,59.814,58.992,59.618,60.526,58.837,60.374,59.404,58.682,57.431,60.228,58.75],"paint":[340.464,337.556,338.11,339.026,337.758,338.184,339.873,338.419,340.543,339.137,338.135,339.72,338.673,338.257,342.185]}}, -{"f":"vanillajs-wc-keyed","b":"08_create1k-after1k_x2","v":{"total":[44.717,43.722,43.518,45.175,43.128,43.991,43.105,43.657,43.771,44.159,43.286,44.041,44.025,43.884,44.001],"script":[4.563,4.235,4.4,4.346,4.287,4.354,4.258,4.453,4.445,4.39,4.332,4.431,4.476,4.431,4.327],"paint":[39.274,38.585,38.277,39.988,37.998,38.763,37.998,38.372,38.468,38.923,38.109,38.732,38.692,38.579,38.761]}}, -{"f":"vanillajs-wc-keyed","b":"09_clear1k_x8","v":{"total":[12.901,12.916,12.268,12.437,11.907,11.869,13.091,12.45,13.051,12.016,12.591,12.083,12.045,11.78,13.132],"script":[11.072,10.759,10.43,10.838,10.362,9.865,11.015,10.596,10.817,10.573,10.705,10.552,10.898,9.873,10.679],"paint":[1.736,1.822,1.752,1.092,1.277,1.922,1.349,1.307,1.174,0.38,1.05,1.444,0.385,1.826,2.364]}}, -{"f":"vanillajs-wc-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5438957214355469]}}, -{"f":"vanillajs-wc-keyed","b":"22_run-memory","v":{"DEFAULT":[1.7899789810180664]}}, -{"f":"vanillajs-wc-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.9211034774780273]}}, -{"f":"vanillajs-wc-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6146697998046875]}}, -{"f":"vanillajs-wc-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[13.594362258911133]}}, -{"f":"vanillajs-wc-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[9.7998046875]}}, -{"f":"vanillajs-wc-keyed","b":"42_size-compressed","v":{"DEFAULT":[2.484375]}}, -{"f":"vanillajs-wc-keyed","b":"43_first-paint","v":{"DEFAULT":[45.7]}}, -{"f":"vanjs-v1.1.0-keyed","b":"01_run1k","v":{"total":[46.158,45.723,45.717,44.184,44.358,45.353,45.33,45.018,44.799,45.758,45.285,45.27,46.561,45.645,45.295],"script":[10.175,9.49,9.573,9.294,9.305,10.025,9.776,9.964,9.993,9.814,9.864,10.081,10.211,9.978,9.532],"paint":[35.516,35.778,35.701,34.463,34.631,34.899,35.085,34.631,34.375,35.51,35.002,34.752,35.91,35.246,35.293]}}, -{"f":"vanjs-v1.1.0-keyed","b":"02_replace1k","v":{"total":[50.124,47.703,48.201,49.111,49.063,48.529,49.408,49.146,48.888,48.689,49.47,48.134,48.69,49.542,49.623],"script":[12.465,12.021,11.935,12.242,12.749,12.003,12.606,12.64,12.563,12.384,12.59,11.684,12.572,12.232,12.704],"paint":[37.197,35.265,35.827,36.419,35.881,36.093,36.357,36.08,35.896,35.859,36.45,36.017,35.692,36.835,36.48]}}, -{"f":"vanjs-v1.1.0-keyed","b":"03_update10th1k_x16","v":{"total":[39.27,37.445,15.795,39.076,34.994,39.561,15.843,35.278,16.895,38.697,35.403,35.834,38.847,36.091,17.045],"script":[1.08,1.93,1.354,0.309,1.036,1.376,1.225,1.859,1.142,1.289,1.281,0.292,1.025,1.696,1.194],"paint":[16.578,14.201,13.775,17.314,14.781,15.273,13.203,13.727,14.202,17.15,14.117,13.78,15.733,14.654,14.753]}}, -{"f":"vanjs-v1.1.0-keyed","b":"04_select1k","v":{"total":[3.109,2.634,5.472,2.549,2.288,3.094,2.696,2.252,5.573,2.532,3.118,2.766,2.379,2.983,2.239,2.448,2.682,2.413,4.382,2.556,5.051,5.841,2.652,4.033,3.409],"script":[0.937,0.294,0.067,0.068,0.069,0.944,0.072,0.073,1.027,0.069,0.397,0.066,0.283,0.804,0.067,0.069,0.493,0.076,0.35,0.068,0.069,0.071,0.526,0.87,1.032],"paint":[2.071,2.231,1.746,1.588,0.861,2.047,2.527,1.094,1.406,2.371,1.454,2.602,1.584,1.646,2.085,2.276,0.573,2.239,1.631,1.954,2.243,2.166,1.452,1.71,2.282]}}, -{"f":"vanjs-v1.1.0-keyed","b":"05_swap1k","v":{"total":[18.025,18.86,17.997,19.596,18.993,18.481,18,18.688,17.724,18.236,18.95,18.914,18.574,19.354,19.014],"script":[0.412,0.078,0.089,0.73,1.103,0.461,0.262,0.598,0.525,0.078,0.086,0.293,0.085,0.089,0.152],"paint":[16.358,17.457,16.358,16.748,16.848,16.747,15.898,16.836,15.923,16.839,17.42,16.825,17.386,17.831,17.737]}}, -{"f":"vanjs-v1.1.0-keyed","b":"06_remove-one-1k","v":{"total":[15.301,15.341,15.406,16.637,15.886,15.136,15.339,17.758,15.635,15.41,15.897,15.224,15.873,15.877,15.29],"script":[0.133,0.457,0.387,0.478,0.138,0.294,0.135,0.456,0.366,0.374,0.395,0.249,0.449,0.386,0.135],"paint":[13.992,13.703,13.726,14.767,14.867,13.956,14.015,15.918,13.745,13.853,14.506,13.773,14.235,14.231,13.973]}}, -{"f":"vanjs-v1.1.0-keyed","b":"07_create10k","v":{"total":[467.035,459.315,447.279,459.727,460.062,455.195,467.357,444.377,458.191,460.417,448.267,457.462,467.447,449.11,462.752],"script":[111.681,107.789,108.056,107.64,106.955,107.888,111.808,107.374,107.607,108.139,108.975,106.592,112.219,109.974,110.556],"paint":[348.147,344.967,332.587,345.508,346.129,340.665,348.707,330.46,344.025,345.598,332.637,344.1,348.596,332.471,345.348]}}, -{"f":"vanjs-v1.1.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.076,49.126,48.907,49.056,50.077,49.543,49.226,49.002,47.865,48.931,48.169,48.242,47.753,48.563,50.167],"script":[8.775,8.822,8.814,9.497,9.469,9.353,9.345,8.705,8.755,8.874,9.505,8.732,8.773,8.808,8.965],"paint":[39.395,39.414,39.153,38.692,39.736,39.215,38.983,39.357,38.233,39.172,37.77,38.616,38.124,38.881,39.996]}}, -{"f":"vanjs-v1.1.0-keyed","b":"09_clear1k_x8","v":{"total":[12.579,12.381,13.016,12.302,12.947,11.683,12.247,12.851,12.963,12.791,13.107,12.031,12.869,13.285,13.376],"script":[11.057,10.705,10.997,10.725,10.796,10.634,10.823,11.446,11.379,10.855,10.969,10.48,11.256,11.263,11.507],"paint":[0.965,1.59,1.561,1.496,2.052,0.355,1.338,1.314,0.36,1.855,2.05,1.468,1.532,1.652,0.467]}}, -{"f":"vanjs-v1.1.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4329671859741211]}}, -{"f":"vanjs-v1.1.0-keyed","b":"22_run-memory","v":{"DEFAULT":[2.244020462036133]}}, -{"f":"vanjs-v1.1.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.343626022338867]}}, -{"f":"vanjs-v1.1.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6673069000244141]}}, -{"f":"vanjs-v1.1.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[17.67130947113037]}}, -{"f":"vanjs-v1.1.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[5.4677734375]}}, -{"f":"vanjs-v1.1.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[1.9130859375]}}, -{"f":"vanjs-v1.1.0-keyed","b":"43_first-paint","v":{"DEFAULT":[49]}}, -{"f":"voby-v0.48.0-keyed","b":"01_run1k","v":{"total":[40.555,40.678,39.791,39.907,39.529,39.902,39.128,39.556,39.752,39.869,40.309,40.133,39.964,40.001,39.688],"script":[7.067,7.152,7.005,6.957,7.074,7.191,6.714,6.844,7.075,7.061,7.379,6.966,7.222,7.341,7.11],"paint":[33.066,33.119,32.347,32.556,32.074,32.316,31.99,32.3,32.272,32.416,32.535,32.756,32.335,32.27,32.177]}}, -{"f":"voby-v0.48.0-keyed","b":"02_replace1k","v":{"total":[43.433,42.563,41.852,43.51,43.042,43.374,41.852,43.705,43.104,43.794,44.069,42.188,43.359,43.333,44.125],"script":[8.83,8.283,8.401,9.098,8.727,8.723,8.948,9.129,9.263,9.076,8.928,8.392,8.913,9.092,8.929],"paint":[34.153,33.85,33.041,34.002,33.904,34.213,32.484,34.17,33.407,34.286,34.717,33.361,34.001,33.819,34.779]}}, -{"f":"voby-v0.48.0-keyed","b":"03_update10th1k_x16","v":{"total":[16.233,16.571,16.796,16.742,15.903,16.294,16.494,16.157,16.228,16.282,15.835,16.468,16.657,15.504,16.464],"script":[1.413,1.709,1.26,1.706,1.029,1.261,0.95,1.276,1.366,1.26,1.24,0.642,0.934,1.14,1.747],"paint":[13.505,13.285,13.908,14.085,13.632,13.751,13.433,13.843,13.576,13.492,12.871,14.279,14.451,13.351,13.202]}}, -{"f":"voby-v0.48.0-keyed","b":"04_select1k","v":{"total":[5.885,2.272,2.87,2.925,2.784,3.101,2.691,2.541,3.996,3.123,3.535,2.624,3.39,6.676,4.151,5.446,3.286,2.851,2.827,2.744,2.793,2.784,2.995,3.011,3.299],"script":[0.57,0.147,0.705,0.6,0.839,0.142,0.467,0.153,0.85,1.092,0.512,1.059,0.363,0.78,0.135,0.138,0.146,0.15,0.61,0.488,0.794,0.995,0.653,0.234,1.1],"paint":[1.606,2.022,1.592,2.229,1.216,2.866,2.126,1.349,1.299,1.935,1.149,1.463,2.034,1.805,2.258,2.511,2.356,2.602,1.612,1.245,1.902,1.323,2.238,2.672,2.109]}}, -{"f":"voby-v0.48.0-keyed","b":"05_swap1k","v":{"total":[20.867,20.337,20.178,20.731,20.446,20.091,20.428,20.418,20.352,20.67,20.271,22.387,21.182,19.911,20.07],"script":[1.947,1.588,1.498,1.893,2.025,1.412,1.789,2.153,1.639,1.374,1.142,1.389,1.747,2.078,1.349],"paint":[16.83,16.999,17.816,17.518,16.546,17.707,17.61,16.997,16.998,18.201,17.656,17.564,18,16.578,16.72]}}, -{"f":"voby-v0.48.0-keyed","b":"06_remove-one-1k","v":{"total":[16.215,16.482,15.768,15.868,15.791,16.174,15.845,15.549,15.986,15.548,15.932,15.995,15.675,15.98,15.806],"script":[0.882,0.732,0.726,0.906,0.691,1.043,0.967,0.732,0.917,0.699,0.725,0.86,0.699,0.977,0.687],"paint":[14.342,14.881,13.835,14.247,14.322,14.221,13.938,14.054,14.238,13.833,14.493,14.406,14.305,14.267,14.139]}}, -{"f":"voby-v0.48.0-keyed","b":"07_create10k","v":{"total":[394.705,391.934,396.002,396.37,394.502,402.957,391.737,395.385,392.712,393.831,394.055,396.473,396.491,399.094,393.096],"script":[67.837,68.567,70.331,67.111,67.463,67.746,68.964,68.324,68.252,69.439,68.12,68.726,69.491,69.665,67.12],"paint":[320.256,316.458,318.948,322.672,320.629,328.67,316.193,320.421,317.82,317.903,319.298,321.194,320.39,322.46,319.56]}}, -{"f":"voby-v0.48.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[45.126,44.465,44.319,44.025,44.132,44.66,43.817,44.913,43.999,43.864,43.713,44.197,44.08,44.701,44.32],"script":[6.252,6.585,6.734,6.689,6.548,6.738,6.691,6.637,6.566,6.27,6.314,6.663,6.469,6.658,6.625],"paint":[37.955,36.998,36.746,36.506,36.726,37.074,36.291,37.437,36.607,36.743,36.489,36.711,36.758,37.217,36.869]}}, -{"f":"voby-v0.48.0-keyed","b":"09_clear1k_x8","v":{"total":[13.237,15.36,13.545,13.244,13.965,13.099,13.279,12.928,15.115,13.408,14.578,13.946,13.475,13.907,15.354],"script":[11.45,13.467,12.001,11.7,11.691,11.275,11.775,11.482,12.96,11.943,13.02,11.75,12.038,11.952,13.296],"paint":[1.691,1.108,1.463,1.452,1.457,1.102,1.41,0.398,2.046,1.372,0.513,1.085,1.341,1.85,1.953]}}, -{"f":"voby-v0.48.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6431703567504883]}}, -{"f":"voby-v0.48.0-keyed","b":"22_run-memory","v":{"DEFAULT":[3.184615135192871]}}, -{"f":"voby-v0.48.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.2092485427856445]}}, -{"f":"voby-v0.48.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.1176328659057617]}}, -{"f":"voby-v0.48.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[23.268893241882324]}}, -{"f":"voby-v0.48.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[33.6552734375]}}, -{"f":"voby-v0.48.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[11.8427734375]}}, -{"f":"voby-v0.48.0-keyed","b":"43_first-paint","v":{"DEFAULT":[77.6]}}, -{"f":"vue-v3.4.18-keyed","b":"01_run1k","v":{"total":[44.433,43.351,42.88,42.995,42.742,42.284,42.002,43.151,43.557,44.754,43.464,42.424,43.588,43.508,43.974],"script":[9.882,9.083,9.166,8.59,9.089,9.291,8.782,9.007,9.471,9.316,9.146,8.818,9.239,9.034,9.861],"paint":[34.134,33.869,33.312,33.976,33.241,32.601,32.813,33.738,33.675,34.798,33.907,33.19,33.923,34.069,33.705]}}, -{"f":"vue-v3.4.18-keyed","b":"02_replace1k","v":{"total":[47.738,47.229,47.468,46.973,45.697,46.399,46.632,47.151,47.155,46.833,46.234,47.709,46.859,45.874,47.28],"script":[11.68,11.394,11.371,11.318,11.56,11.167,12.066,11.634,11.473,11.881,11.403,11.975,11.913,11.079,11.746],"paint":[35.591,35.4,35.644,35.2,33.681,34.789,34.155,35.042,35.24,34.535,34.386,35.303,34.534,34.372,35.114]}}, -{"f":"vue-v3.4.18-keyed","b":"03_update10th1k_x16","v":{"total":[19.863,18.724,19.587,18.867,18.95,20.403,19.021,20.194,18.891,20.984,19.001,19.001,19.038,18.697,20.032],"script":[3.923,3.241,3.765,3.59,2.926,3.791,3.745,4.099,2.673,3.567,2.734,3.112,3.328,3.078,3.368],"paint":[14.077,13.93,14.83,14.227,14.4,14.713,14.171,14.875,15.215,15.5,14.876,14.895,14.724,14.246,15.545]}}, -{"f":"vue-v3.4.18-keyed","b":"04_select1k","v":{"total":[3.999,3.268,4.04,4.296,4.076,3.844,3.835,3.705,4.242,4.243,4.643,4.328,3.138,4.143,4.148,4.017,4.412,4.382,3.816,3.834,3.759,3.801,3.676,4.498,3.333],"script":[1.661,1.603,1.381,2.033,1.571,1.594,1.646,1.064,1.625,1.476,1.638,1.256,0.94,0.989,1.023,1.778,1.548,1.789,1.145,1.214,1.43,1.521,1.057,1.816,0.894],"paint":[1.858,1.564,1.857,2.154,1.747,2.137,1.936,2.538,2.499,1.637,1.656,1.779,2.095,3.059,2.497,1.466,1.102,2.479,2.061,2.511,2.201,1.165,2.518,1.942,2.339]}}, -{"f":"vue-v3.4.18-keyed","b":"05_swap1k","v":{"total":[20.377,21.302,20.541,19.932,19.705,20.186,19.15,20.074,20.136,20.398,21.55,19.802,19.877,19.89,20.182],"script":[1.82,1.851,1.532,1.213,1.565,1.991,1.667,1.626,1.735,2.262,1.907,1.709,1.947,1.369,1.802],"paint":[17.87,18.392,17.338,16.99,17.16,16.452,16.373,16.786,17.271,16.851,18.195,17.079,16.935,17.507,16.987]}}, -{"f":"vue-v3.4.18-keyed","b":"06_remove-one-1k","v":{"total":[18.316,18.177,18.234,20.053,18.978,19.453,17.972,18.061,18.58,18.216,19.441,17.86,18.402,19.479,18.141],"script":[3.044,3.091,3.092,3.768,3.138,3.096,3.108,2.979,3.197,3.375,3.149,3.029,3.155,3.206,3.197],"paint":[14.483,13.863,14.413,15.419,15.063,15.598,13.827,14.269,14.582,13.592,15.251,13.809,14.456,15.577,14.114]}}, -{"f":"vue-v3.4.18-keyed","b":"07_create10k","v":{"total":[441.745,443.524,437.414,439.732,442.745,439.212,444.953,446.687,445.089,440.527,441.791,433.942,440.011,436.374,441.553],"script":[96.827,96.416,93.369,101.901,97.092,96.911,100.254,99.264,99.31,97.328,97.144,96.999,100,94.082,97.46],"paint":[337.825,340.473,337.229,331.122,338.834,335.796,337.917,340.687,339.123,336.586,337.689,330.306,333.395,335.659,337.652]}}, -{"f":"vue-v3.4.18-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.853,47.558,48.145,47.876,47.989,48.558,47.726,48.332,48.921,47.694,48.281,48.369,48.147,47.512,48.77],"script":[8.807,8.226,8.224,8.456,8.465,8.368,8.242,8.441,8.714,8.264,8.337,8.585,8.373,8.147,8.622],"paint":[40.088,38.475,39.088,38.557,38.685,39.33,38.628,39.041,39.372,38.529,39.074,38.923,38.9,38.532,39.246]}}, -{"f":"vue-v3.4.18-keyed","b":"09_clear1k_x8","v":{"total":[14.82,14.522,15.136,15.435,14.41,15.555,14.427,16.374,14.44,14.824,14.279,14.854,15.563,15.022,15.314],"script":[13.263,13.097,13.58,13.288,12.294,13.346,12.343,13.612,12.738,12.406,12.679,12.487,12.877,12.73,12.875],"paint":[1.459,1.338,1.467,1.538,1.882,1.321,1.987,2.645,1.609,2.311,1.503,2.265,2.586,1.913,2.075]}}, -{"f":"vue-v3.4.18-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7182464599609375]}}, -{"f":"vue-v3.4.18-keyed","b":"22_run-memory","v":{"DEFAULT":[3.7485103607177734]}}, -{"f":"vue-v3.4.18-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.772507667541504]}}, -{"f":"vue-v3.4.18-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.17376708984375]}}, -{"f":"vue-v3.4.18-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[28.313244819641113]}}, -{"f":"vue-v3.4.18-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[55.765625]}}, -{"f":"vue-v3.4.18-keyed","b":"42_size-compressed","v":{"DEFAULT":[20.4345703125]}}, -{"f":"vue-v3.4.18-keyed","b":"43_first-paint","v":{"DEFAULT":[110.1]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"01_run1k","v":{"total":[42.497,42.308,41.728,42.22,42.659,42.017,41.773,41.377,42.263,42.934,42.532,41.828,42.813,43.285,41.756],"script":[8.804,8.651,8.831,8.682,8.808,8.622,8.698,8.485,8.671,8.921,8.771,8.86,9.297,9.494,8.712],"paint":[33.282,33.262,32.508,33.142,33.433,32.99,32.661,32.489,33.184,33.591,33.337,32.561,33.143,33.38,32.629]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"02_replace1k","v":{"total":[47.255,48.456,48.007,48.224,48.357,48.075,47.707,47.828,47.975,47.875,47.876,48.069,48.33,49.002,47.889],"script":[12.352,12.557,12.219,12.712,12.79,12.818,12.243,12.526,12.859,12.543,12.933,12.732,12.884,12.362,12.729],"paint":[34.468,35.475,35.354,35.088,35.136,34.827,35.019,34.878,34.688,34.905,34.532,34.889,35.019,36.139,34.762]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"03_update10th1k_x16","v":{"total":[28.137,27.033,27.595,27.317,27.89,27.433,26.648,28.914,28.605,27.65,27.6,27.66,27.351,28.085,30.275],"script":[11.61,11.887,11.71,12.005,12.342,11.804,10.912,12.536,12.892,12.114,12.44,11.872,12.071,13.158,12.95],"paint":[15.593,13.247,13.507,13.969,13.934,13.049,14.665,14.782,13.719,14.342,13.932,14.727,13.487,13.823,15.577]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"04_select1k","v":{"total":[12.337,13.284,13.511,12.694,13.115,12.356,13.079,13.188,13.022,13.086,13.633,13.557,14.19,12.539,11.97,12.209,13.113,12.856,13.836,12.571,14.472,12.314,13.079,13.844,13.645],"script":[9.277,10.148,9.642,9.464,10.298,9.045,9.668,9.907,10.061,10.187,10.506,10.382,10.332,9.263,9.61,9.669,9.875,10.151,10.225,9.512,10.672,8.95,9.671,10.736,10.532],"paint":[2.904,2.974,2.989,2.572,2.105,2.785,3.278,3.127,1.724,2.757,2.965,2.964,2.853,2.711,1.55,2.395,3.077,1.562,3.431,2.925,2.043,1.564,2.857,2.479,2.316]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"05_swap1k","v":{"total":[29.611,28.902,28.981,28.644,28.562,29.828,30.179,28.344,30.035,28.698,28.416,27.637,29.09,31.407,28.25],"script":[10.845,10.901,10.865,9.89,10.399,11.523,10.376,10.017,11.451,10.186,10.237,9.326,10.764,10.82,10.235],"paint":[16.814,16.106,16.684,17.687,16.999,17.324,18.549,16.982,17.252,17.264,17.177,16.425,16.712,17.812,16.98]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"06_remove-one-1k","v":{"total":[20.315,20.926,21.324,20.221,20.175,19.81,19.611,20.301,21.569,19.767,19.854,19.715,19.654,20.724,19.611],"script":[5.261,5.433,5.431,5.311,5.48,4.993,4.895,5.041,5.606,5.033,5.095,4.947,4.929,5.402,4.912],"paint":[14.299,14.711,15.147,14.196,13.97,13.944,13.727,14.547,15.051,13.998,14.019,13.74,13.707,14.505,13.69]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"07_create10k","v":{"total":[440.034,451.016,445.11,447.954,437.662,441.545,444.62,444.782,441.796,446.248,441.524,440.717,442.929,440.869,438.496],"script":[100.421,101.038,99.187,103.246,98.544,101.881,105.524,97.523,103.956,98.283,103.571,97.7,100.373,100.711,103.033],"paint":[332.709,343.294,339.075,338.131,332.349,332.958,332.649,340.617,331.209,341.306,331.214,336.235,335.915,333.506,328.821]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.8,54.064,53.135,52.972,53.046,52.909,52.912,53.62,53.528,52.699,52.248,53.214,53.535,53.027,53.066],"script":[13.623,13.386,13.236,13.489,13.428,13.379,13.542,13.16,13.46,13.337,13.356,13.398,14.266,13.014,13.464],"paint":[38.299,39.818,39.057,38.633,38.744,38.649,38.486,39.613,39.193,38.483,38.044,38.952,38.384,39.13,38.711]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"09_clear1k_x8","v":{"total":[16.459,16.035,15.627,17.278,18.517,15.954,16.346,15.998,15.504,15.689,17.351,17.644,17.678,17.242,16.432],"script":[13.811,13.635,14.088,15.641,15.967,14.375,14.223,14.425,13.668,13.764,15.229,15.053,15.821,15.122,14.532],"paint":[2.517,1.925,1.439,1.525,1.997,1.474,2.018,0.952,1.036,1.557,1.489,1.496,1.056,1.238,1.794]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7086582183837891]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"22_run-memory","v":{"DEFAULT":[4.163657188415527]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.18806266784668]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.2241888046264648]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[32.416019439697266]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[52.734375]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[19.345703125]}}, -{"f":"vue-jsx-v3.4.0-keyed","b":"43_first-paint","v":{"DEFAULT":[102]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"01_run1k","v":{"total":[44.949,47.261,46.003,45.282,46.215,46.008,45.61,45.272,46.487,46.378,46.53,44.947,45.26,45.198,45.213],"script":[10.978,11.358,11.62,10.663,11.372,11.706,11.334,10.88,11.989,11.601,11.539,10.709,10.515,10.813,11.055],"paint":[33.554,35.474,33.968,34.215,34.447,33.875,33.896,33.978,34.073,34.38,34.561,33.833,34.324,33.994,33.757]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"02_replace1k","v":{"total":[51.331,49.246,50.255,47.96,48.888,49.335,50.156,48.835,49.974,49.476,49.084,49.558,49.54,49.752,50.761],"script":[14.822,14.042,14.574,13.557,14.088,14.62,14.672,13.542,14.46,13.58,13.874,13.576,14.522,14.666,14.815],"paint":[35.919,34.766,35.251,33.994,34.376,34.177,35.077,34.878,35.097,35.475,34.782,35.44,34.606,34.686,35.518]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"03_update10th1k_x16","v":{"total":[22.764,22.656,22.838,26.697,22.287,22.677,21.881,22.938,22.721,22.137,23.321,22.406,22.273,21.828,22.609],"script":[7.316,6.385,6.137,7.795,6.649,7.003,6.471,6.508,6.978,6.466,6.55,6.219,5.679,6.438,6.766],"paint":[14.318,14.442,15.109,17.422,13.812,14.945,14.113,14.9,14.602,13.991,14.75,14.758,15.626,14.079,14.717]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"04_select1k","v":{"total":[6.98,6.426,7.153,6.74,6.687,6.625,6.507,6.496,6.235,6.586,6.743,6.224,6.515,6.764,6.526,6.321,6.461,7.201,7.061,6.255,6.944,6.556,6.657,6.725,6.132],"script":[4.032,3.699,4.7,4.714,3.599,3.501,4.679,4.09,3.614,4.031,4.196,3.296,4.602,4.207,3.833,3.428,4.181,4.262,4.467,3.873,4.716,4.088,3.877,4.044,4.126],"paint":[2.448,2.281,2.342,1.916,2.964,2.995,1.726,2.291,2.233,2.443,1.748,2.096,1.803,1.64,2.586,2.771,2.168,2.806,1.41,2.274,2.106,1.82,1.984,1.889,1.894]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"05_swap1k","v":{"total":[23.052,22.903,22.122,22.48,24.212,23.001,23.512,23.246,22.451,23.06,22.764,23.509,22.406,22.932,22.978],"script":[4.742,5.003,4.272,4.597,4.557,5.027,4.62,5.161,4.715,4.907,4.008,4.798,4.269,4.399,4.529],"paint":[17.125,16.349,16.328,16.125,17.637,16.367,17.193,16.493,16.758,16.727,17.744,17.475,16.36,17.211,16.616]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"06_remove-one-1k","v":{"total":[22.494,22.161,22.767,22.201,22.399,21.875,21.401,22.324,21.687,21.765,22.494,22.181,22.323,22.849,22.212],"script":[6.876,6.742,6.55,6.782,6.28,6.798,6.124,6.989,6.764,6.509,6.922,6.883,6.619,6.769,6.834],"paint":[14.831,14.545,15.098,14.633,15.077,13.693,14.569,14.544,13.87,14.445,14.73,14.547,14.807,15.316,14.623]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"07_create10k","v":{"total":[453.76,453.178,457.858,449.276,455.135,450.99,455.431,452.742,449.106,453.076,448.861,452.809,456.995,451.841,455.661],"script":[110.816,107.777,108.676,109.395,113.477,112.544,113.297,107.727,105.775,106.61,115.313,114.971,111.751,107.607,108.714],"paint":[336.304,338.831,342.6,333.221,334.942,331.683,335.068,338.255,336.701,339.68,326.906,331.147,338.529,337.599,340.254]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"08_create1k-after1k_x2","v":{"total":[51.226,51.118,52.183,53.015,50.859,51.124,52.382,51.309,51.605,53.853,50.488,52.944,51.41,51.247,52.413],"script":[11.883,11.927,12.389,13.528,12.265,12.616,12.802,12.513,12.61,13.253,11.415,13.284,12.784,12.494,12.928],"paint":[38.446,38.355,38.955,38.614,37.725,37.652,38.618,37.915,38.131,39.715,38.207,38.791,37.771,37.891,38.622]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"09_clear1k_x8","v":{"total":[17.44,16.175,17.108,16.636,18.654,16.839,17.609,18.553,18.08,17.329,16.276,17.804,16.832,16.359,16.639],"script":[15.859,14.103,14.896,14.913,16.92,14.782,15.342,16.456,15.875,14.949,13.998,15.902,14.926,14.295,14.551],"paint":[1.486,1.931,2.127,0.857,1.429,1.953,1.897,1.841,1.99,1.889,1.39,1.814,1.069,1.967,1.987]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7588930130004883]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"22_run-memory","v":{"DEFAULT":[4.496708869934082]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.546605110168457]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.4332904815673828]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[35.30594825744629]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[60.3271484375]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"42_size-compressed","v":{"DEFAULT":[22.1259765625]}}, -{"f":"vue-pinia-v3.4.18 + 2.1.7-keyed","b":"43_first-paint","v":{"DEFAULT":[110.7]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"01_run1k","v":{"total":[44.543,43.685,42.671,43.875,43.282,44.014,43.227,42.622,43.996,44.119,42.989,44.139,44.427,43.809,43.916],"script":[10.349,9.231,10.066,9.975,9.496,9.784,9.815,9.861,9.835,9.954,9.567,9.815,9.879,10.013,9.853],"paint":[33.721,33.972,32.155,33.451,33.313,33.805,32.959,32.321,33.612,33.717,32.968,33.864,34.077,33.35,33.602]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"02_replace1k","v":{"total":[51.054,50.571,50.365,50.481,50.574,49.954,50.817,50.289,50.519,52.195,50.253,49.96,50.379,50.688,49.933],"script":[14.749,14.418,14.41,14.132,14.065,14.169,14.186,14.367,14.125,14.592,14.008,14.037,14.262,14.363,13.866],"paint":[35.82,35.743,35.531,35.919,36.034,35.357,36.133,35.485,35.909,37.143,35.801,35.479,35.698,35.878,35.624]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"03_update10th1k_x16","v":{"total":[21.053,19.461,19.64,20.777,18.841,19.199,20.283,19.432,19.759,19.337,18.707,20.464,19.786,20.07,19.538],"script":[3.826,3.697,3.623,3.915,3.299,3.786,4.604,3.232,3.663,3.796,3.537,3.904,3.596,3.469,4.307],"paint":[15.867,14.603,14.15,15.819,14.537,13.817,14.291,13.807,14.581,14.422,13.877,15.195,15.144,14.608,13.112]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"04_select1k","v":{"total":[6.772,5.388,6.467,6.527,6.05,6.099,5.793,5.304,6.415,6.2,6.415,5.54,5.532,6.543,6.197,5.783,5.613,5.759,6.324,6.292,6.359,6.031,6.303,5.68,5.429],"script":[3.875,3.359,4.085,3.482,3.664,3.729,3.562,3.018,3.569,3.219,3.573,3.244,3.627,3.962,3.87,3.323,3.31,3.307,3.906,3.53,3.73,3.309,3.798,3.732,2.692],"paint":[1.518,1.917,2.259,2.908,2.281,1.915,1.401,1.211,2.699,1.729,2.059,1.831,1.35,2.313,1.687,2.354,2.199,2.346,1.645,1.737,2.504,2.621,1.873,1.358,1.681]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"05_swap1k","v":{"total":[21.837,21.154,21.112,21.383,21.217,21.009,20.9,20.916,22.932,21.534,20.511,21.116,20.764,21.463,21.65],"script":[2.62,2.17,2.205,2.326,2.698,2.373,2.381,1.999,2.904,2.258,1.838,2.371,2.259,2.647,2.781],"paint":[18.141,17.939,16.922,17.227,16.633,17.601,15.573,17.673,18.625,17.787,17.198,17.162,17.198,17.475,17.587]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"06_remove-one-1k","v":{"total":[16.243,16.427,16.102,16.213,16.904,16.906,16.336,16.36,16.175,17.212,16.957,16.385,17.052,16.312,17.094],"script":[1.285,1.25,0.966,1.261,1.243,1.58,1.244,1.289,1.369,1.234,1.302,1.204,1.274,1.195,1.246],"paint":[13.68,14.473,14.46,14.494,14.898,14.592,14.132,14.279,14.198,15.065,14.736,14.259,15.001,14.382,15.068]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"07_create10k","v":{"total":[466.529,459.824,441.566,454.271,449.359,447.182,446.03,461.711,458.911,443.26,455.296,455.89,442.404,458.54,465.625],"script":[105.481,104.62,103.627,102.951,103.032,102.143,107.149,107.929,103.349,104.386,105.614,106.227,103.848,106.567,105.258],"paint":[354.036,348.348,331.177,344.509,339.03,338.274,331.823,346.839,348.804,332.169,342.873,342.897,331.791,344.558,353.478]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.152,50.879,49.947,49.838,50.199,50.429,50.46,49.976,50.548,50.455,49.66,49.935,50.334,49.711,50.245],"script":[9.667,10.133,9.703,9.376,9.694,9.916,10.353,9.734,10.048,10.125,9.671,9.786,9.927,9.742,9.596],"paint":[39.534,39.87,39.314,39.559,39.567,39.577,39.177,39.305,39.624,39.414,39.078,39.205,39.525,39.059,39.752]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"09_clear1k_x8","v":{"total":[18.992,18.477,18.05,19.157,18.392,18.617,18.655,18.781,19.036,18.085,19.089,18.69,18.219,19.965,18.635],"script":[17.455,16.589,16.182,17.674,16.503,17.023,16.764,16.98,17.181,15.717,16.979,16.213,16.872,17.466,17.074],"paint":[1.342,1.416,1.758,1.383,1.764,1.485,1.776,1.68,1.751,1.329,1.433,2.373,0.863,2.056,1.456]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5581331253051758]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"22_run-memory","v":{"DEFAULT":[3.625260353088379]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.6384878158569336]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.323948860168457]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[28.75620460510254]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[29.123046875]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"42_size-compressed","v":{"DEFAULT":[10.8896484375]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-keyed","b":"43_first-paint","v":{"DEFAULT":[82.8]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"01_run1k","v":{"total":[38.728,39.048,37.637,38.279,37.416,37.448,37.605,38.489,39.005,38.926,38.822,38.41,38.64,40.378,37.994],"script":[5.42,5.457,5.022,5.04,5.071,5.017,5.046,5.794,5.404,5.878,5.745,5.591,5.587,5.64,5.06],"paint":[32.898,33.178,32.193,32.827,31.926,32.013,32.138,32.296,33.208,32.661,32.667,32.415,32.661,34.323,32.526]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"02_replace1k","v":{"total":[44.883,43.225,43.464,43.945,43.842,43.812,43.853,43.775,42.217,43.191,44.224,43.736,43.221,43.901,43.95],"script":[9.596,9.232,9.208,9.484,9.431,9.466,9.391,9.764,9.214,9.317,9.777,9.198,9.402,9.391,9.629],"paint":[34.859,33.581,33.859,34.049,33.898,33.915,34.028,33.595,32.551,33.442,34,34.111,33.398,34.091,33.893]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"03_update10th1k_x16","v":{"total":[16.844,16.969,18.546,17.029,17.332,18.53,16.815,16.722,16.89,17.535,16.924,17.448,16.517,16.321,16.567],"script":[1.052,1.418,2.091,1.966,1.805,2.427,1.799,1.741,1.561,1.687,2.031,1.155,1.332,1.772,1.332],"paint":[13.868,14.529,15.127,13.867,14.272,14.597,13.917,13.522,13.523,14.567,13.364,15.256,13.503,12.985,13.784]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"04_select1k","v":{"total":[4.485,3.68,2.631,3.484,3.03,3.323,2.808,2.512,3.393,3.089,3.137,3.69,5.759,6.491,3.044,2.822,2.971,2.904,2.754,2.68,3.918,3.594,2.448,3.301,3.339],"script":[0.124,0.544,0.487,1.054,0.753,1.169,0.128,0.127,1.057,0.799,0.133,1.117,0.141,0.881,1.121,0.402,0.119,0.123,0.835,0.124,0.888,0.5,0.127,0.471,0.122],"paint":[2.416,1.117,2.049,2.315,2.184,1.525,2.488,2.289,2.228,2.19,2.899,1.449,2.206,1.979,1.818,1.527,2.758,2.689,1.826,2.088,1.766,2.131,2.221,1.624,2.932]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"05_swap1k","v":{"total":[21.34,22.535,21.436,21.659,21.46,21.879,21.386,22.489,22.578,22.488,21.51,21.449,21.695,22.341,21.739],"script":[3.504,4.038,3.629,3.684,3.643,3.569,3.602,3.744,3.944,3.95,4.127,2.913,3.645,4.158,3.286],"paint":[16.108,16.343,16.511,16.438,16.483,16.555,16.3,17.609,17.369,17.588,15.803,17.427,16.195,16.908,17.175]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"06_remove-one-1k","v":{"total":[16.084,16.757,16.046,16.621,16.031,16.491,16.516,16.637,16.091,16.355,16.523,15.99,16.502,16.361,16.499],"script":[1.653,1.779,1.421,1.748,1.654,1.74,1.702,1.706,1.405,1.598,1.617,1.648,1.726,1.746,1.723],"paint":[13.693,14.275,13.926,13.844,13.38,13.885,14.124,13.912,13.76,13.863,14.177,13.641,13.767,13.991,14.362]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"07_create10k","v":{"total":[397.192,395.59,391.591,394.115,397.989,387.336,391.817,389.171,393.075,384.394,390.796,392.527,389.704,391.761,390.534],"script":[63.153,62.244,63.616,67.087,62.231,60.973,62.333,60.874,65.954,59.692,63.269,59.76,62.307,59.532,60.168],"paint":[326.921,326.524,321.434,320.296,329.182,319.841,323.045,321.753,320.611,318.322,321.001,325.946,320.405,325.436,323.686]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[46.783,44.086,45.071,45.402,45.794,46.417,45.91,46.678,46.134,46.327,46.788,45.955,46.52,45.77,46.789],"script":[7.242,6.985,7.083,7.089,7.209,7.715,7.091,7.73,7.624,7.524,7.692,7.401,7.678,7.352,7.087],"paint":[38.651,36.33,37.168,37.474,37.67,37.803,37.946,37.946,37.657,37.941,38.2,37.696,37.866,37.568,38.83]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"09_clear1k_x8","v":{"total":[14.58,13.594,13.159,13.726,13.604,13.733,14.142,13.189,14.023,13.849,14.604,14.324,13.926,13.585,14.127],"script":[12.632,11.731,11.697,12.219,12.289,11.699,12.093,11.029,11.964,12.114,12.775,12.561,12.18,11.86,12.324],"paint":[1.048,1.771,1.367,1.416,1.219,1.952,1.907,0.811,1.22,1.647,1.737,1.66,1.656,0.628,1.386]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4971494674682617]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"22_run-memory","v":{"DEFAULT":[3.180891990661621]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.340214729309082]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0964574813842773]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[25.035795211791992]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[15.076171875]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.662109375]}}, -{"f":"vuerx-jsx-v0.2.0-keyed","b":"43_first-paint","v":{"DEFAULT":[52.9]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"01_run1k","v":{"total":[37.427,37.585,37.416,37.465,37.145,39.016,37.246,37.936,38.291,37.928,37.714,37.664,38.05,38.24,38.288],"script":[4.584,4.573,4.625,4.665,4.422,5.013,4.622,4.91,4.901,4.705,4.778,4.749,4.627,5.132,4.709],"paint":[32.437,32.602,32.373,32.384,32.326,33.608,32.223,32.619,32.99,32.811,32.548,32.492,33.009,32.677,33.192]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"02_replace1k","v":{"total":[42.374,41.971,41.241,43.664,42.051,41.103,41.505,40.884,41.173,43.193,41.921,41.99,42.368,42.376,42.048],"script":[7.111,7.178,6.821,6.954,7.203,6.893,7.08,6.855,6.934,6.96,7.153,7.121,7.268,7.355,7.3],"paint":[34.812,34.322,33.948,36.268,34.414,33.772,33.993,33.586,33.795,35.774,34.326,34.404,34.649,34.583,34.304]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"03_update10th1k_x16","v":{"total":[17.174,16.941,17.333,17.485,17.706,16.76,16.542,17.142,16.389,17.662,16.229,16.377,16.37,16.548,16.543],"script":[1.241,1.165,1.248,0.936,1.71,0.918,1.199,1.1,1.136,0.949,0.961,0.57,1.041,0.974,1.205],"paint":[14.948,13.84,14.834,15.91,13.361,14.562,13.944,15.094,13.985,14.562,14.549,14.539,13.894,13.83,13.877]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"04_select1k","v":{"total":[4.541,3.316,2.841,2.569,2.552,2.695,3.013,3.105,3.768,3.087,3.701,3.499,4.047,2.538,4.267,2.776,2.436,5.436,2.921,3.316,3.018,2.245,2.792,5.503,4.319],"script":[1.132,0.346,0.084,0.1,0.085,0.521,0.089,0.999,0.747,0.553,0.46,0.087,0.092,0.476,0.302,0.085,0.223,0.923,0.714,0.875,0.475,0.493,0.531,0.864,0.597],"paint":[2.159,1.489,1.662,2.364,2.137,2.002,1.677,1.67,1.634,2.429,1.897,1.24,1.611,1.229,1.852,2.592,1.577,2.539,2.121,1.924,1.645,1.644,2.164,2.614,2.542]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"05_swap1k","v":{"total":[18.261,19.147,17.899,19.514,18.753,18.212,18.572,19.105,17.962,18.382,18.292,18.083,19.424,19.006,18.892],"script":[0.776,0.718,0.098,0.097,0.104,0.424,0.103,1.071,0.096,0.106,0.099,0.758,0.783,0.102,0.754],"paint":[16.424,17.282,16.446,18.12,17.187,16.588,17.154,16.926,15.924,17.334,16.445,15.905,17.205,17.624,16.641]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"06_remove-one-1k","v":{"total":[15.581,14.824,14.879,15.337,15.603,15.437,14.847,15.154,15.634,15.011,14.84,14.822,15.337,15.211,14.999],"script":[0.241,0.127,0.124,0.122,0.31,0.204,0.123,0.115,0.13,0.275,0.12,0.12,0.441,0.123,0.338],"paint":[14.805,13.715,14.028,14.459,14.576,14.474,13.997,14.322,14.781,13.886,14.03,13.999,14.208,14.354,13.951]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"07_create10k","v":{"total":[399.488,393.198,396.825,398.809,399.207,390.867,396.681,393.118,392.61,396.564,395.35,395.815,397.212,391.316,394.59],"script":[52.557,51.614,53.723,52.43,53.287,52.027,51.846,52.105,52.367,51.542,51.817,53.01,56.049,52.872,50.892],"paint":[340.068,335.044,336.207,339.677,339.285,332.237,338.242,334.333,333.545,338.108,336.868,336.216,334.401,331.911,337.12]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"08_create1k-after1k_x2","v":{"total":[42.503,41.965,42.267,42.302,42.291,42.759,41.918,42.727,42.84,43.067,41.987,43.246,43.556,41.806,42.716],"script":[4.544,4.427,4.388,4.34,4.424,4.552,4.444,4.543,4.477,4.458,4.323,4.904,4.841,4.317,4.409],"paint":[37.077,36.721,37.037,37.148,37.03,37.393,36.643,37.36,37.529,37.798,36.809,37.522,37.891,36.663,37.49]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"09_clear1k_x8","v":{"total":[11.301,11.861,11.71,11.397,11.615,12.067,11.872,12.325,12.238,11.798,11.935,11.454,11.881,11.97,11.734],"script":[9.386,10.088,10.296,10.146,10.209,10.187,10.398,10.152,10.448,10.024,10.206,9.335,9.988,10.664,9.827],"paint":[1.826,1.676,1.32,0.848,0.421,1.608,1.385,1.501,0.931,0.996,1.64,2.04,1.803,1.211,1.822]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.598057746887207]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"22_run-memory","v":{"DEFAULT":[2.772341728210449]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.9095382690429688]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.7952461242675781]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[13.315508842468262]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[47.0224609375]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"42_size-compressed","v":{"DEFAULT":[14.453125]}}, -{"f":"wasm-bindgen-v0.2.84-keyed","b":"43_first-paint","v":{"DEFAULT":[96.3]}}, -{"f":"whatsup-v2.6.0-keyed","b":"01_run1k","v":{"total":[52.37,51.256,52.739,51.811,51.498,51.591,51.658,51.907,51.641,50.948,50.91,51.032,50.854,52.068,51.377],"script":[15.818,15.618,16.465,15.912,15.466,16.017,15.703,16.088,16,15.631,15.432,15.552,15.697,15.95,15.849],"paint":[36.115,35.185,35.813,35.481,35.596,35.144,35.499,35.365,35.208,34.877,35.012,35.034,34.718,35.674,35.101]}}, -{"f":"whatsup-v2.6.0-keyed","b":"02_replace1k","v":{"total":[60.215,56.749,57.634,56.991,57.902,56.996,57.419,57.383,57.751,57.956,58.081,57.142,57.775,57.527,57.547],"script":[21.302,19.878,20.981,20.357,20.846,19.976,20.234,20.54,20.961,20.509,20.576,20.664,20.204,19.667,20.919],"paint":[38.229,36.42,36.206,36.186,36.587,36.552,36.722,36.408,36.336,36.947,37.046,36.018,37.099,37.405,36.165]}}, -{"f":"whatsup-v2.6.0-keyed","b":"03_update10th1k_x16","v":{"total":[25.238,24.461,25.037,24.551,25.269,24.606,26.303,25.827,24.95,25.326,24.024,26.057,24.036,24.496,22.928],"script":[9.488,8.338,8.481,7.817,9.204,8.621,10.082,9.471,8.628,8.029,8.686,9.129,7.857,8.703,7.581],"paint":[14.644,13.623,14.591,15.395,14.357,14.368,13.802,14.806,13.365,15.669,13.79,14.431,15.091,14.644,14.055]}}, -{"f":"whatsup-v2.6.0-keyed","b":"04_select1k","v":{"total":[5.462,5.508,4.152,4.953,5.182,4.904,5.038,4.825,5.206,4.379,4.263,4.582,4.695,4.899,4.595,4.798,4.554,5.201,4.655,5.138,4.558,4.607,4.98,4.889,5.046],"script":[2.452,3.137,1.7,1.967,2.783,2.227,2.414,2.375,2.108,2.082,1.812,2.137,2.222,2.524,2.268,2.676,2.201,1.867,1.559,1.914,2.221,1.773,2.444,2.316,2.191],"paint":[2.046,1.725,2.336,2.14,2.281,2.38,1.462,1.728,2.068,1.739,2.164,1.397,1.62,2.059,2.206,1.889,0.867,2.063,2.982,2.204,1.651,1.749,1.462,2.464,1.666]}}, -{"f":"whatsup-v2.6.0-keyed","b":"05_swap1k","v":{"total":[23.081,22.989,22.07,23.389,22.811,23.379,24.28,23.561,22.979,22.737,23.573,23.137,24.145,23.566,22.597],"script":[4.255,3.886,3.623,4.317,3.996,3.798,4.288,4.054,3.778,3.84,3.958,4.743,4.031,4.345,3.707],"paint":[17.558,17.985,17.296,18.062,16.969,18.182,18.583,17.871,17.57,17.839,18.562,16.003,18.287,18.171,17.806]}}, -{"f":"whatsup-v2.6.0-keyed","b":"06_remove-one-1k","v":{"total":[16.669,16.664,16.75,17.162,17.169,16.973,16.653,16.639,16.731,16.774,16.663,17.805,16.968,16.673,16.668],"script":[1.694,1.378,1.424,1.823,1.56,1.719,1.383,1.585,1.453,1.772,1.293,1.785,1.731,1.778,1.451],"paint":[13.903,14.626,14.544,14.552,14.581,14.495,14.553,14.018,14.542,13.95,14.723,15.199,14.388,14.09,14.414]}}, -{"f":"whatsup-v2.6.0-keyed","b":"07_create10k","v":{"total":[547.05,560.154,545.146,538.005,543.43,562.085,543.127,560.236,539.291,538.767,524.994,554.693,557.737,557.231,544.916],"script":[178.426,180.523,179.455,178.387,179.825,180.863,180.363,178.694,178.877,178.317,177.62,177.437,177.251,176.65,181.676],"paint":[361.519,372.784,358.932,352.414,356.144,374.332,356.01,374.63,353.631,353.722,340.55,370.461,373.76,373.763,356.391]}}, -{"f":"whatsup-v2.6.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[59.664,57.351,57.814,58.253,57.884,57.557,57.579,60.639,57.37,58.242,58.399,58.061,58.158,58.842,57.271],"script":[17.444,17.23,16.712,17.131,16.847,16.684,16.878,17.519,16.787,17.315,17.472,17.157,17.472,17.749,16.812],"paint":[41.266,39.182,40.188,40.214,40.098,39.951,39.773,41.95,39.666,39.995,40.016,39.972,39.738,40.17,39.511]}}, -{"f":"whatsup-v2.6.0-keyed","b":"09_clear1k_x8","v":{"total":[18.098,18.502,17.776,18.473,18.071,18.38,17.094,18.515,17.965,19.465,16.927,18.414,17.184,16.953,16.927],"script":[16.358,16.318,15.619,16.605,16.648,16.681,15.516,16.137,15.438,17.151,15.009,16.168,14.749,15.623,15.064],"paint":[0.783,1.811,1.248,1.772,1.331,1.434,1.274,2.287,2.425,1.924,1.798,2.158,2.342,0.897,1.5]}}, -{"f":"whatsup-v2.6.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6641426086425781]}}, -{"f":"whatsup-v2.6.0-keyed","b":"22_run-memory","v":{"DEFAULT":[8.461180686950684]}}, -{"f":"whatsup-v2.6.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.61449146270752]}}, -{"f":"whatsup-v2.6.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.025297164916992]}}, -{"f":"whatsup-v2.6.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[74.55990314483643]}}, -{"f":"whatsup-v2.6.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[36.12890625]}}, -{"f":"whatsup-v2.6.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[10.9033203125]}}, -{"f":"whatsup-v2.6.0-keyed","b":"43_first-paint","v":{"DEFAULT":[80]}}, -{"f":"yew-v0.21.0-keyed","b":"01_run1k","v":{"total":[54.422,54.898,54.782,55.148,55.408,55.233,55.654,56.05,55.736,56.467,56.571,56.588,55.944,54.906,54.772],"script":[19.353,19.446,19.259,19.159,19.348,19.322,20.004,20.395,19.344,20.091,20.848,20.504,20.162,20.593,19.368],"paint":[34.638,35.029,35.094,35.554,35.62,35.496,35.211,35.221,35.953,35.952,35.296,35.67,35.374,33.834,34.978]}}, -{"f":"yew-v0.21.0-keyed","b":"02_replace1k","v":{"total":[62.809,63.731,62.138,62.03,62.456,61.905,63.175,61.788,63.706,62.346,63.98,63.978,63.578,62.03,60.351],"script":[25.893,25.765,25.466,25.758,25.548,26.368,26.932,25.651,26.055,25.887,27.012,27.565,26.881,25.734,25.214],"paint":[36.477,37.517,36.245,35.845,36.471,35.105,35.814,35.701,37.215,36.03,36.526,35.994,36.273,35.853,34.699]}}, -{"f":"yew-v0.21.0-keyed","b":"03_update10th1k_x16","v":{"total":[21.227,20.539,20.94,20.569,21.16,20.94,20.607,22.261,20.786,20.862,20.306,20.271,20.508,20.92,20.58],"script":[5.347,4.826,4.876,4.862,5.572,4.576,4.742,5.264,4.632,4.198,4.255,4.759,4.395,4.068,4.06],"paint":[14.063,14.434,14.724,14.505,13.837,15.009,15.186,15.31,15.018,15.14,14.05,14.196,14.478,15.511,14.522]}}, -{"f":"yew-v0.21.0-keyed","b":"04_select1k","v":{"total":[5.577,5.213,4.775,5.577,5.066,4.933,4.983,5.408,5.622,5.218,4.836,5.535,4.62,5.234,5.316,5.037,5.652,5.151,5.371,5.303,4.625,5.283,4.627,6.799,5.341],"script":[2.713,3.074,2.808,2.837,2.293,2.936,2.629,2.699,2.524,2.937,2.155,2.305,2.503,2.771,3.113,2.769,2.514,2.469,2.255,2.527,2.716,2.478,2.105,2.229,2.193],"paint":[2.739,2.01,1.113,2.614,2.487,1.177,1.428,2.589,1.885,2.172,1.732,1.716,1.442,2.193,2.1,1.37,2.435,1.816,1.765,2.662,1.315,2.694,0.581,3.291,3.016]}}, -{"f":"yew-v0.21.0-keyed","b":"05_swap1k","v":{"total":[21.157,21.409,21.241,20.958,21.558,21.239,22.329,21.538,21.468,21.748,22.564,21.631,21.217,22.353,21.398],"script":[2.776,3.056,2.881,2.229,2.839,2.484,3.077,2.433,2.799,3.122,2.551,2.846,2.188,2.739,3.462],"paint":[15.475,16.474,17.099,17.765,17.342,17.456,18.047,16.528,16.567,16.905,18.654,17.61,16.498,18.266,15.35]}}, -{"f":"yew-v0.21.0-keyed","b":"06_remove-one-1k","v":{"total":[16.534,16.44,16.544,16.061,16.487,16.165,16.079,16.493,16.059,16.554,16.622,16.138,16.144,17.888,16.401],"script":[1.248,1.256,1.281,1.259,1.252,1.227,1.242,1.247,1.234,1.23,1.286,1.266,1.301,1.301,1.255],"paint":[14.858,13.856,14.526,14.06,14.512,14.237,14.052,14.293,14.074,14.635,14.375,13.735,13.94,15.506,13.798]}}, -{"f":"yew-v0.21.0-keyed","b":"07_create10k","v":{"total":[698.089,679.244,671.535,693.85,679.812,702.221,691.308,694.304,699.492,677.057,687.105,690.72,688.168,681.79,690.018],"script":[310.63,291.442,286.196,304.944,291.056,308.925,306.429,303.457,311.934,294.257,300.342,302.692,299.871,296.213,304.702],"paint":[380.729,381.122,378.476,382.225,382.016,386.685,378.19,384.293,380.928,376.077,380.185,381.38,381.532,378.775,378.724]}}, -{"f":"yew-v0.21.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[66.785,65.564,66.895,66.889,66.457,66.713,65.359,65.875,65.697,66.903,65.771,66.413,66.146,66.161,66.013],"script":[24.712,23.573,24.419,24.752,24.476,24.745,23.634,23.423,23.571,23.65,24.248,23.765,24.807,24.026,24.617],"paint":[41.178,41.082,41.574,41.238,41.113,41.104,40.857,41.551,41.257,42.225,40.618,41.721,40.46,41.258,40.536]}}, -{"f":"yew-v0.21.0-keyed","b":"09_clear1k_x8","v":{"total":[26.492,25.611,26.331,26.151,24.073,24.909,24.61,24.433,24.998,26.453,26.977,25.997,25.405,26,24.858],"script":[24.273,23.409,23.881,24.649,21.94,22.983,23.13,22.559,22.872,24.618,24.545,23.587,23.417,24.207,23.116],"paint":[1.069,2.097,2.347,1.404,1.52,1.827,0.429,1.778,2.039,1.726,2.333,1.66,1.741,1.016,1.367]}}, -{"f":"yew-v0.21.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.6614599227905273]}}, -{"f":"yew-v0.21.0-keyed","b":"22_run-memory","v":{"DEFAULT":[6.407252311706543]}}, -{"f":"yew-v0.21.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.434328079223633]}}, -{"f":"yew-v0.21.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.871448516845703]}}, -{"f":"yew-v0.21.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[47.59158897399902]}}, -{"f":"yew-v0.21.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[207.40625]}}, -{"f":"yew-v0.21.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[58.5244140625]}}, -{"f":"yew-v0.21.0-keyed","b":"43_first-paint","v":{"DEFAULT":[351.2]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"01_run1k","v":{"total":[56.123,56.373,54.401,55.635,56.419,57.118,56.328,56.334,55.104,54.116,55.076,55.843,56.782,56.193,56.352],"script":[20.998,20.785,19.032,20.064,20.531,20.704,20.262,20.283,20.214,19.425,20.219,20.156,20.899,20.163,20.43],"paint":[34.696,35.187,34.947,35.143,35.475,35.998,35.636,35.632,34.476,34.246,34.447,35.26,35.442,35.604,35.497]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"02_replace1k","v":{"total":[63.439,64.756,64.688,61.331,62.677,59.506,62.438,63.464,59.392,61.65,62.662,63.83,63.719,63.332,61.641],"script":[25.964,27.794,27.298,25.563,26.979,25.226,25.198,26.986,25.088,25.078,25.772,27.82,27.12,27.524,25.241],"paint":[37.033,36.543,36.96,35.34,35.278,33.857,36.781,36.022,33.876,36.111,36.476,35.577,36.182,35.381,35.933]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"03_update10th1k_x16","v":{"total":[30.469,28.15,29.456,28.791,29.229,29.881,30.238,31.983,30.199,29.248,29.807,31.241,29.562,29.656,30.093],"script":[13.9,12.743,13.062,12.946,13.005,13.884,13.583,14.181,13.248,12.965,13.594,13.867,13.525,13.113,13.264],"paint":[14.753,14.717,15.116,14.825,13.758,13.861,14.803,16.753,15.497,15.192,14.927,14.02,14.716,15.442,16.057]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"04_select1k","v":{"total":[14.647,15.16,16.017,14.282,14.705,14.778,14.446,15.261,14.627,14.757,14.98,15.188,14.842,14.884,14.503,14.957,15.098,15.532,14.81,15.131,14.314,14.847,15.088,14.729,15.144],"script":[12.356,12.326,13.074,11.49,12.35,12.301,12.011,12.433,11.579,12.225,12.463,12.072,12.367,12.016,11.99,12.386,12.528,12.013,11.378,12.56,12.007,11.841,12.188,11.705,12.636],"paint":[1.457,2.683,1.933,1.938,1.461,1.949,1.203,2.213,2.901,2.39,1.585,2.97,1.967,2.745,2.392,1.474,1.89,3.37,3.276,1.496,1.733,1.914,1.882,1.859,2.357]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"05_swap1k","v":{"total":[31.79,33.347,31.61,32.367,31.81,32.103,31.803,31.133,30.881,31.983,32.02,32.095,31.981,31.505,31.138],"script":[12.617,13.552,12.525,13.351,13.13,12.491,12.788,12.676,12.14,12.851,12.593,12.443,13.162,12.752,12.868],"paint":[17.964,18.288,18.106,17.461,17.024,18.122,17.736,17.716,17.655,18.142,17.896,18.32,17.497,17.315,16.272]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"06_remove-one-1k","v":{"total":[21.341,22.034,21.433,22.256,21.064,20.94,21.074,21.55,21.399,21.173,21.337,21.502,21.462,21.177,21.48],"script":[6.013,6.175,5.682,6.223,5.709,6.047,5.715,6.089,6.08,5.896,6.064,5.84,5.855,6.039,5.848],"paint":[14.597,15.012,14.715,15.284,14.649,13.664,14.657,14.466,14.609,14.524,14.177,14.707,14.817,13.799,14.45]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"07_create10k","v":{"total":[691.904,688.046,698.757,700.667,690.631,688.325,689.642,700.151,693.661,683.448,677.082,701.727,706.071,696.188,698.999],"script":[307.42,301.975,309.703,313.502,304.808,299.755,300.226,310.514,307.077,298.691,289.804,313.634,313.556,308.276,302.357],"paint":[377.719,379.455,382.409,380.551,378.511,381.881,382.755,382.866,379.924,378.147,380.365,381.466,385.858,381.303,389.835]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"08_create1k-after1k_x2","v":{"total":[69.402,67.972,67.842,68.43,68.932,68.234,69.003,69.694,69.448,68.345,68.864,69.678,68.024,69.051,69.04],"script":[27.441,26.122,26.006,26.413,26.392,26.754,26.208,26.468,26.749,26.817,26.657,27.203,25.621,26.898,26.841],"paint":[41.056,41.017,40.977,41.114,41.673,40.655,41.902,42.342,41.869,40.626,41.165,41.556,41.432,41.291,41.315]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"09_clear1k_x8","v":{"total":[25.518,26.081,26.019,26.481,26.305,25.485,25.553,26.686,25.898,25.662,25.764,26.294,26.884,26.752,25.644],"script":[23.954,23.98,23.867,24.549,23.877,24.054,23.954,24.98,23.365,23.932,23.987,24.529,24.916,24.538,23.247],"paint":[0.822,1.622,2.055,1.826,2.318,1.318,0.452,1.613,2.131,1.635,1.673,1.001,1.682,1.593,1.942]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.6616754531860352]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"22_run-memory","v":{"DEFAULT":[6.546679496765137]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.7616424560546875]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[5.047693252563477]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[48.84193801879883]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[211.9072265625]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"42_size-compressed","v":{"DEFAULT":[59.1962890625]}}, -{"f":"yew-hooks-v0.21.0-keyed","b":"43_first-paint","v":{"DEFAULT":[355.9]}}, -{"f":"alins-v0.0.34-non-keyed","b":"01_run1k","v":{"total":[54.16,53.583,55.28,53.479,54.394,53.97,54.561,55.769,54.045,53.869,54.044,53.172,53.649,53.198,53.569],"script":[19.812,19.514,19.548,19.133,19.35,18.66,19.029,19.535,18.869,18.844,19.348,18.662,19.59,19.065,18.772],"paint":[33.859,33.628,35.276,33.916,34.614,34.873,35.084,35.775,34.73,34.594,34.277,34.067,33.636,33.695,34.365]}}, -{"f":"alins-v0.0.34-non-keyed","b":"02_replace1k","v":{"total":[20.825,19.735,19.016,19.397,19.201,19.591,22.117,20.797,20.436,20.783,19.797,20.078,20.552,20.039,20.533],"script":[5.622,5.388,4.8,5.076,4.926,5.267,5.887,5.631,5.677,5.717,5.348,5.424,5.608,5.692,5.642],"paint":[14.716,13.916,13.784,13.888,13.823,13.876,15.76,14.686,14.327,14.627,14.019,14.216,14.514,13.923,14.488]}}, -{"f":"alins-v0.0.34-non-keyed","b":"03_update10th1k_x16","v":{"total":[17.343,17.913,17.94,16.879,17.456,18.216,18.321,17.261,17.494,18.119,18.609,17.182,17.626,17.862,17.648],"script":[1.776,1.807,1.987,1.81,2.093,1.788,1.612,2.18,1.678,1.588,2.414,1.656,1.608,2.227,1.715],"paint":[14.403,14.728,14.806,14.04,14.263,14.953,15.563,14.072,13.989,14.134,15.015,13.752,14.237,13.73,14.914]}}, -{"f":"alins-v0.0.34-non-keyed","b":"04_select1k","v":{"total":[4.226,4.255,4.071,4.224,4.269,4.068,3.911,4.153,4.18,4.463,4.415,3.681,4.087,3.948,3.661,4.973,3.466,4.107,4.526,4.735,4.163,4.151,5.28,3.832,4.5],"script":[1.424,1.506,1.244,1.64,1.568,1.54,1.334,1.629,0.87,1.674,2.048,1.753,1.545,1.403,1.323,0.873,1.577,1.872,1.76,1.87,1.319,1.516,1.844,1.735,1.635],"paint":[2.537,2.646,2.709,2.461,2.585,1.761,2.153,1.915,3.184,1.955,1.931,1.29,2.379,2.428,2.227,2.435,1.776,1.77,2.101,2.31,2.731,2.529,1.723,1.508,2.039]}}, -{"f":"alins-v0.0.34-non-keyed","b":"05_swap1k","v":{"total":[11.461,11.745,11.361,12.01,11.828,11.585,11.305,12.003,12.139,11.467,12.212,12.238,11.443,12.215,12.094],"script":[0.115,0.121,0.12,1.072,0.841,0.596,0.125,0.926,0.708,0.534,0.123,0.738,0.116,0.774,0.116],"paint":[9.904,10.151,9.669,9.583,9.724,9.163,9.671,9.604,9.777,9.603,10.699,9.878,9.755,10.313,11.195]}}, -{"f":"alins-v0.0.34-non-keyed","b":"06_remove-one-1k","v":{"total":[18.013,18.192,18.367,18.021,17.974,17.939,18.593,18.08,17.959,17.631,18.109,17.961,18.058,17.986,17.874],"script":[2.869,2.852,2.666,2.968,2.668,2.795,3.223,2.76,2.624,2.719,2.604,2.684,2.675,2.634,2.56],"paint":[14.178,14.38,15.008,14.35,14.663,14.449,14.662,14.372,14.666,14.237,14.792,14.48,14.698,14.668,14.641]}}, -{"f":"alins-v0.0.34-non-keyed","b":"07_create10k","v":{"total":[546.557,547.162,545.57,534.471,542.855,552.421,544.947,551.25,543.649,547.083,554.142,551.092,554.64,545.726,548.115],"script":[186.579,184.066,185.791,187.164,184.017,182.532,185.8,185.42,184.315,183.696,189.916,184.204,187.082,185.71,187.937],"paint":[352.943,356.145,352.565,340.381,351.914,363.04,352.341,358.696,352.531,356.489,357.414,360.247,360.614,353.261,353.339]}}, -{"f":"alins-v0.0.34-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[58.937,58.634,59.055,58.568,58.887,59.484,59.667,59.025,59.094,59.707,59.348,58.332,58.643,59.533,59.694],"script":[17.723,18.128,17.859,18.05,18.152,18.434,18.712,18.175,18.254,18.01,17.914,17.494,18.137,18.367,18.354],"paint":[40.292,39.627,40.315,39.581,39.826,40.148,40.038,39.929,39.909,40.756,40.524,39.91,39.591,40.272,40.417]}}, -{"f":"alins-v0.0.34-non-keyed","b":"09_clear1k_x8","v":{"total":[18.463,18.626,18.44,18.319,17.702,18.318,18.334,18.376,18.333,17.529,19.236,17.763,17.801,17.752,17.659],"script":[16.282,16.048,16.278,15.866,15.642,16.318,16.205,16.345,16.184,15.903,16.515,15.202,15.851,16.155,15.286],"paint":[1.649,2.473,1.379,2.238,1.796,1.196,1.768,1.589,1.517,1.53,1.912,2.46,1.296,1.491,2.266]}}, -{"f":"alins-v0.0.34-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5465936660766602]}}, -{"f":"alins-v0.0.34-non-keyed","b":"22_run-memory","v":{"DEFAULT":[5.373108863830566]}}, -{"f":"alins-v0.0.34-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.402748107910156]}}, -{"f":"alins-v0.0.34-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9890651702880859]}}, -{"f":"alins-v0.0.34-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[46.05220413208008]}}, -{"f":"alins-v0.0.34-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[24.4921875]}}, -{"f":"alins-v0.0.34-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[7.87890625]}}, -{"f":"alins-v0.0.34-non-keyed","b":"43_first-paint","v":{"DEFAULT":[81.9]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"01_run1k","v":{"total":[44.731,45.165,45.659,45.498,44.074,44.14,44.289,44.964,44.275,44.131,44.431,45.049,45.238,45.121,45.95],"script":[10.84,11.147,11.687,11.393,10.904,11.027,11.063,11.03,11.408,11.254,11.232,10.99,11.157,11.056,11.838],"paint":[33.466,33.607,33.521,33.633,32.74,32.693,32.805,33.496,32.454,32.446,32.773,33.629,33.651,33.622,33.679]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"02_replace1k","v":{"total":[26.937,24.971,25.557,26.391,25.527,25.502,24.734,25.285,24.787,25.896,25.97,25.955,25.869,24.748,25.513],"script":[10.54,10.259,10.358,11.011,10.321,10.548,10.022,10.369,10.216,10.472,10.712,10.925,10.771,10.077,10.414],"paint":[15.928,14.252,14.744,14.902,14.746,14.5,14.261,14.464,14.101,14.948,14.81,14.565,14.64,14.206,14.641]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"03_update10th1k_x16","v":{"total":[55.935,56.097,58.384,58.413,54.179,56.111,56.193,55.055,56.337,58.328,55.071,54.601,55.689,56.248,56.93],"script":[39.561,39.003,40.319,41.722,37.908,38.865,39.177,38.428,39.931,41.688,38.528,37.729,39.31,39.598,39.953],"paint":[14.602,15.869,15.785,15.626,14.412,15.692,14.178,15.059,15.297,15.299,14.718,15.253,14.618,15.395,15.071]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"04_select1k","v":{"total":[37.459,37.329,38.202,38.717,37.745,39.931,38.715,39.352,38.354,38.148,38.207,39.696,40.658,40.276,42.038,39.825,39.102,39.952,39.224,38.494,39.445,38.238,39.974,37.927,38.27],"script":[34.321,34.143,35.05,35.893,34.271,36.607,35.456,36.729,35.45,34.967,35.378,36.025,37.585,36.676,38.594,36.06,35.739,36.766,36.16,35.451,36.488,35.179,36.292,34.726,34.993],"paint":[2.648,1.981,2.201,2.618,2.854,2.149,1.967,2.439,1.878,1.017,1.951,2.769,2.53,3.394,2.737,3.148,2.191,2.381,2.363,2.865,1.898,2.12,2.692,3.015,2.785]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"05_swap1k","v":{"total":[48.123,46.919,45.73,47.749,47.889,45.742,48.303,48.434,45.467,45.819,49.986,45.583,51.804,48.401,49.821],"script":[36.463,35.448,34.912,36.452,35.744,34.016,35.818,35.881,34.12,34.998,38.412,34.558,38.791,36.81,37.249],"paint":[9.613,10.292,9.223,9.501,10.749,9.084,10.282,10.752,10.578,9.766,10.24,8.47,11.281,9.236,11.245]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"06_remove-one-1k","v":{"total":[49.041,53.934,48.639,47.828,54.828,54.297,53.549,49.265,49.204,49.439,54.639,48.476,54.467,53.543,51.648],"script":[18.563,20.185,18.133,17.627,20.267,20.533,20.003,18.99,18.718,18.413,20.963,18.597,20.563,20.007,19.501],"paint":[29.464,32.889,29.134,29.222,33.69,32.606,32.494,29.456,29.598,29.751,32.408,29.09,32.899,32.361,31.235]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"07_create10k","v":{"total":[480.701,486.048,485.056,482.234,475.578,479.826,475.237,487.439,476.514,476.596,473.101,482.05,475.713,473.473,484.41],"script":[137.628,140.393,140.149,140.387,140.078,140.232,135.14,139.737,138.876,135.177,136.07,141.303,135.107,139.035,136.398],"paint":[336.604,338.811,338.234,335.375,328.934,332.987,333.54,340.961,331.075,334.85,330.497,334.232,334.009,327.565,341.186]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[60.84,60.02,61.475,62.434,61.893,62.648,57.712,56.6,61.98,57.515,57.155,59.461,61.456,61.364,60.716],"script":[21.04,20.674,19.923,21.608,21.722,20.905,19.216,19.238,20.769,19.326,19.288,19.813,21.041,21.325,20.885],"paint":[38.948,38.451,40.45,39.918,39.312,40.804,37.62,36.492,40.234,37.296,36.981,38.512,39.541,39.177,38.968]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"09_clear1k_x8","v":{"total":[16.852,17.47,14.472,16.651,17.106,15.612,14.152,15.173,14.23,14.587,16.858,16.665,16.697,17.128,14.939],"script":[15.306,15.703,12.692,14.739,15.234,14.18,12.569,13.526,12.243,12.928,15.208,15.01,14.992,15.333,13.163],"paint":[1.449,1.681,0.922,1.833,1.628,1.352,0.929,1.549,1.724,1.341,1.562,0.742,0.824,1.325,1.678]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5502920150756836]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.542430877685547]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.8124704360961914]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.955235481262207]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[17.928308486938477]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[18.171875]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.8955078125]}}, -{"f":"apprun-v3.30.2-non-keyed","b":"43_first-paint","v":{"DEFAULT":[54.7]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"01_run1k","v":{"total":[88.78,88.598,89.689,91.375,89.717,90.437,89.507,89.054,89.5,87.972,88.91,88.307,89.411,88.764,88.952],"script":[51.153,51.256,52.211,52.873,51.973,52.418,51.952,51.504,52.161,51.08,51.605,51.285,51.384,51.672,51.66],"paint":[37.353,37.08,37.271,38.239,37.469,37.795,37.296,37.294,37.132,36.635,37.089,36.774,37.815,36.884,37.005]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"02_replace1k","v":{"total":[95.138,96.317,94.395,94.887,98.481,95.217,97.145,95.008,95.173,96.898,94.431,93.266,94.811,96.4,95.48],"script":[57.487,57.977,56.579,57.462,59.465,57.594,58.624,57.453,57.443,58.383,56.826,56.29,56.945,58.171,57.529],"paint":[37.431,38.082,37.584,37.174,38.593,37.332,38.069,37.321,37.44,38.095,37.367,36.77,37.633,37.797,37.71]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"03_update10th1k_x16","v":{"total":[83.322,83.468,81.751,85.602,87.434,84.891,80.713,79.675,80.024,86.009,85.553,79.369,83.864,79.47,81.164],"script":[47.335,49.563,48.19,49.765,49.883,48.078,47.879,46.963,46.948,48.22,50.292,46.999,46.127,46.529,46.416],"paint":[34.156,32.929,33.392,35.327,36.286,35.617,30.958,32.548,32.919,37.578,34.123,32.226,37.578,31.73,33.434]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"04_select1k","v":{"total":[16.889,17.426,14.329,15.647,13.276,13.556,13.318,15.755,10.139,13.543,14.284,9.875,13.028,13.823,13.422,13.478,9.93,13.886,16.105,17.787,13.335,13.331,15.972,11.722,14.185],"script":[8.43,8.567,8.527,7.582,6.959,8.162,8.319,8.55,6.689,8.226,7.795,7.388,7.249,8.281,7.467,7.533,5.899,8.135,7.782,8.204,7.136,9.048,8.276,7.943,8.288],"paint":[8.055,7.305,4.13,5.263,3.344,3.39,3.004,4.636,3.245,3.434,4.332,1.934,4.346,4.046,4.714,4.097,2.215,4.381,6.783,6.088,3.812,3.077,6.322,2.77,4.932]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"05_swap1k","v":{"total":[51.294,52.03,46.597,50.521,49.122,50.069,48.705,48.944,49.328,48.996,48.37,46.006,47.01,51.704,51.627],"script":[28.069,27.777,26.692,26.395,27.618,27.996,26.341,26.543,24.557,26.639,26.83,26.614,26.326,26.896,26.612],"paint":[22.78,23.75,19.744,22.541,21.003,21.328,21.776,20.674,24.003,20.068,21.393,19.239,20.529,23.854,24.105]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"06_remove-one-1k","v":{"total":[193.243,192.931,193.116,188.708,190.506,193.875,192.319,189.623,194.531,190.685,196.289,193.821,198.955,191.584,194.159],"script":[122.853,123.183,123.5,119.842,121.968,123.644,119.066,119.508,122.673,120.022,123.453,123.96,124.869,123.759,122.043],"paint":[68.217,68.313,68.351,67.574,67.235,68.76,71.794,68.273,70.57,68.879,71.622,68.317,72.266,66.836,70.592]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"07_create10k","v":{"total":[804.54,797.751,801.143,790.311,789.308,801.46,799.413,791.301,798.601,785.406,789.811,792.777,793.617,793.297,796.071],"script":[443.06,437.208,432.415,432.851,430.184,439.293,439.35,429.258,437.274,428.963,429.996,434.552,433.712,433.151,434.222],"paint":[357.733,356.727,364.945,353.903,355.259,358.423,356.197,358.31,357.533,352.654,355.879,354.621,356.015,356.411,358.231]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[105.326,105.523,106.409,104.259,104.186,104.498,103.223,105.401,104.067,104.539,104.198,104.669,104.063,102.794,104.807],"script":[67.291,65.428,66.774,66.255,65.658,66.889,65.235,66.61,65.236,64.685,66.266,65.841,65.348,65.019,65.894],"paint":[37.489,39.688,39.221,37.606,38.107,37.206,37.604,38.404,38.428,39.436,37.519,38.254,38.3,37.385,38.518]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"09_clear1k_x8","v":{"total":[21.654,21.11,18.082,21.956,18.955,21.943,18.602,19.532,23.156,21.491,21.77,23.581,22.712,18.923,22.472],"script":[16.933,17.178,15.814,17.428,16.84,17.478,17.015,16.553,18.624,17.573,17.398,18.587,18.667,16.916,18.645],"paint":[3.703,3.244,2.197,3.408,1.471,3.428,0.83,2.905,4.295,2.307,3.434,2.427,3.125,1.924,3.587]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5016565322875977]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"22_run-memory","v":{"DEFAULT":[9.464906692504883]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[15.31560230255127]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[43.504631996154785]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[88.50263977050781]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11.58984375]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.2705078125]}}, -{"f":"arrowjs-v1.0.0-alpha.9-non-keyed","b":"43_first-paint","v":{"DEFAULT":[50.5]}}, -{"f":"art-v0.1.7-non-keyed","b":"01_run1k","v":{"total":[44.562,43.291,44.052,44.451,44.425,44.682,45.187,44.66,44.464,43.857,44.68,43.796,44.366,43.996,44.308],"script":[10.958,10.268,9.939,10.272,10.63,10.311,10.416,10.309,10.143,10.326,10.362,10.103,10.412,10.666,10.157],"paint":[33.165,32.62,33.716,33.779,33.389,33.913,34.361,33.949,33.9,33.123,33.891,33.28,33.536,32.921,33.726]}}, -{"f":"art-v0.1.7-non-keyed","b":"02_replace1k","v":{"total":[25.32,26.124,25.713,27.052,26.089,26.304,25.684,26.271,25.38,25.443,26.324,27.208,26.362,25.995,25.362],"script":[9.707,9.852,9.943,10.019,9.985,10.191,9.987,9.972,9.561,9.64,10.205,9.929,9.47,10.048,9.446],"paint":[15.146,15.808,15.309,16.565,15.663,15.627,15.266,15.856,15.357,15.374,15.681,16.799,16.418,15.46,15.458]}}, -{"f":"art-v0.1.7-non-keyed","b":"03_update10th1k_x16","v":{"total":[22.01,22.01,21.809,21.802,22.796,20.914,21.514,21.845,22.259,21.038,21.658,22,21.824,21.649,21.478],"script":[6.636,6.497,6.342,6.358,6.854,5.869,6.04,6.138,6.81,5.864,6.137,5.788,6.257,6.264,6.38],"paint":[14.096,13.644,13.952,13.715,14.585,13.924,13.285,14.351,13.157,13.373,13.914,14.436,14.434,14.139,13.616]}}, -{"f":"art-v0.1.7-non-keyed","b":"04_select1k","v":{"total":[4.593,5.589,4.729,5.138,4.723,4.851,5.229,5.646,4.315,4.691,4.862,4.949,4.577,4.978,4.759,5.01,4.762,4.723,4.518,4.661,4.674,5.588,5.201,5.249,5.272],"script":[2.165,2.898,2.322,2.386,2.207,2.229,2.127,3.195,1.856,2.434,2.35,2.676,2.495,1.97,2.047,2.219,2.829,2.435,2.305,2.001,2.808,2.74,2.347,2.492,2.907],"paint":[1.947,2.57,1.783,2.627,1.854,2.01,2.863,2.141,2.357,1.586,1.604,1.307,1.96,2.889,2.59,1.961,1.828,1.194,2.087,2.181,1.766,2.732,2.735,2.63,2.259]}}, -{"f":"art-v0.1.7-non-keyed","b":"05_swap1k","v":{"total":[13.429,12.775,13.36,14.825,13.602,13.331,13.232,13.418,13.712,14,13.73,13.687,13.731,14.016,13.714],"script":[2.643,2.29,2.415,2.631,2.058,2.617,1.998,2.995,2.656,2.548,1.999,2.731,2.23,2.153,2.774],"paint":[9.023,8.425,9.588,10.641,9.811,8.9,9.941,9.495,9.993,10.396,9.611,9.681,10.213,10.587,9.743]}}, -{"f":"art-v0.1.7-non-keyed","b":"06_remove-one-1k","v":{"total":[50.696,49.285,49.708,49.377,50.034,50.955,49.558,52.953,49.259,51.95,49.392,49.787,49.743,48.762,51.027],"script":[17.363,16.976,17.163,16.775,17.261,17.36,17.255,19.211,17.314,18.64,16.789,17.395,17.505,16.922,17.195],"paint":[32.175,30.84,31.356,31.27,31.65,32.721,31.102,32.892,31.16,32.18,31.772,31.479,31.189,30.71,32.881]}}, -{"f":"art-v0.1.7-non-keyed","b":"07_create10k","v":{"total":[434.436,433.452,435.585,434.971,433.71,440.28,436.733,436.393,439.661,436.078,436.096,437.44,436.704,438.27,437.757],"script":[98.842,99.249,98.931,97.847,98.526,100.918,99.191,100.562,100.256,99.112,100.776,100.954,100.138,101.134,98.662],"paint":[328.745,327.255,329.752,330.244,328.463,331.725,330.82,329.135,332.629,330.219,328.382,329.654,329.854,330.461,332.331]}}, -{"f":"art-v0.1.7-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[51.01,50.954,50.861,50.879,49.281,52.424,49.695,50.426,50.821,50.372,49.995,49.565,50.112,50.683,48.798],"script":[10.034,10.905,11.011,10.25,9.819,10.976,10.145,10.072,10.743,10.163,9.757,9.694,10.767,10.911,9.823],"paint":[40.042,39.145,38.961,39.741,38.546,40.493,38.628,39.401,39.156,39.341,39.289,38.971,38.429,38.873,38.04]}}, -{"f":"art-v0.1.7-non-keyed","b":"09_clear1k_x8","v":{"total":[11.748,11.867,11.777,12.793,12.065,12.517,12.534,11.879,12.306,12.485,12.868,13.076,12.662,13.14,12.953],"script":[10.618,9.909,9.868,10.84,10.342,10.442,10.573,10.19,10.295,10.525,10.778,10.893,10.666,11.304,11.038],"paint":[0.379,1.098,1.825,1.866,0.691,1.981,0.954,1.304,1.104,1.87,1.986,1.286,1.911,1.499,1.365]}}, -{"f":"art-v0.1.7-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4783906936645508]}}, -{"f":"art-v0.1.7-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.86653995513916]}}, -{"f":"art-v0.1.7-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.807729721069336]}}, -{"f":"art-v0.1.7-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7001237869262695]}}, -{"f":"art-v0.1.7-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[32.09145545959473]}}, -{"f":"art-v0.1.7-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[8.7119140625]}}, -{"f":"art-v0.1.7-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.2392578125]}}, -{"f":"art-v0.1.7-non-keyed","b":"43_first-paint","v":{"DEFAULT":[43.1]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"01_run1k","v":{"total":[53.817,51.686,51.702,50.77,51.836,52.361,51.665,51.714,52.46,50.781,51.938,52.445,51.756,52.258,51.319],"script":[19.12,17.703,18.242,17.482,18.089,18.543,17.757,17.822,18.291,17.792,18.141,18.603,18.328,18.353,17.976],"paint":[34.18,33.448,32.962,32.785,33.273,33.337,33.415,33.401,33.651,32.469,33.309,33.365,32.907,33.403,32.861]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"02_replace1k","v":{"total":[18.69,19.214,18.519,18.388,18.386,18.873,18.691,18.576,20.147,18.477,18.948,18.643,19.805,18.741,18.771],"script":[4.384,4.864,4.339,4.304,4.334,4.659,4.391,4.193,4.971,4.292,4.208,4.29,4.737,4.189,4.3],"paint":[13.876,13.922,13.766,13.674,13.633,13.815,13.866,14.026,14.763,13.762,14.377,13.972,14.636,14.179,14.091]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.838,16.651,17.615,19.212,17.036,17.242,17.273,17.129,17.567,17.25,20.258,17.021,16.814,16.832,16.163],"script":[1.679,1.603,1.964,2.618,1.327,1.779,1.647,1.883,1.812,1.007,2.538,1.563,1.347,1.596,1.541],"paint":[13.421,13.361,14.285,15.522,13.602,13.158,13.83,13.32,13.751,15.193,15.626,13.934,14.409,14.082,13.61]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"04_select1k","v":{"total":[7.986,7.643,8.205,8.694,8.499,8.22,6.952,7.39,7.9,8.411,7.989,8.097,7.308,7.84,7.518,8.782,7.744,8.289,7.796,7.72,7.124,8.102,7.738,8.202,7.841],"script":[5.457,5.45,5.669,6.02,5.654,5.459,4.983,5.187,5.342,5.629,5.511,5.708,4.809,5.301,5.209,5.889,4.824,5.716,4.929,5.221,4.715,5.561,5.759,4.709,5.207],"paint":[1.981,1.563,1.725,2.524,2.709,1.285,1.279,2.109,2.43,1.565,2.35,1.482,1.466,1.576,2.197,2.758,2.818,1.732,2.76,2.357,2.298,1.623,1.874,3.026,1.646]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"05_swap1k","v":{"total":[12.591,12.798,12.003,12.109,12.612,12.214,12.305,12.428,13.208,11.75,12.477,12.417,12.249,11.685,12.062],"script":[1.346,0.642,0.946,1.287,1.833,1.481,1.428,1,1.257,0.985,1.237,1.291,1.266,0.885,1.803],"paint":[9.991,10.643,9.485,9.341,9.445,9.322,9.137,9.59,10.294,9.554,10.21,9.726,9.908,9.347,9.182]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"06_remove-one-1k","v":{"total":[37.452,39.027,36.848,37.463,37.324,40.218,37.883,37.674,37.498,36.335,36.798,37.739,37.268,36.623,37.342],"script":[7.336,7.16,7.24,7.743,7.386,6.894,7.843,7.761,7.645,6.878,6.833,7.2,7.441,6.875,7.408],"paint":[29.307,31.032,28.527,28.627,29.175,32.203,29.259,28.911,29.094,28.401,29.246,29.398,29.026,28.653,28.73]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"07_create10k","v":{"total":[933.252,903.583,926.543,932.933,922.75,930.024,933.761,925.737,920.722,927.407,923.67,924.781,931.764,913.082,913.552],"script":[203.36,177.985,208.495,204.532,202.939,190.742,212.239,206.59,203.192,205.869,204.349,204.123,206.318,194.802,197.59],"paint":[354.984,350.479,352.129,354.048,350.196,362.777,350.257,351.996,350.764,355.384,352.761,356.322,352.472,352.963,350.784]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[59.58,60.326,62.459,61.309,61.133,60.739,60.936,59.31,60.987,60.25,60.63,60.117,60.461,60.381,61.21],"script":[20.233,21.681,22.059,21.952,21.826,21.4,21.748,20.41,21.529,21.494,21.011,20.874,21.172,21.287,21.579],"paint":[38.364,37.694,39.343,38.346,38.389,38.371,38.229,37.968,38.49,37.841,38.689,38.193,38.343,38.025,38.614]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"09_clear1k_x8","v":{"total":[25.806,25.601,25.06,24.441,24.985,24.432,25.191,25.216,23.97,24.393,24.93,23.865,26.007,25.665,24.478],"script":[23.422,23.488,22.717,21.931,23.113,22.663,23.256,23.699,21.934,22.258,22.689,21.647,23.716,23.661,22.367],"paint":[1.819,2.003,1.869,2.401,1.04,1.22,1.831,0.984,1.609,2.037,2.13,1.574,1.642,1.892,1.99]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[2.155496597290039]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[5.5800933837890625]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.589881896972656]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.1614913940429688]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[33.73548603057861]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[300.37109375]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[62.51171875]}}, -{"f":"aurelia-v1.3.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[469]}}, -{"f":"bau-v0.39.0-non-keyed","b":"01_run1k","v":{"total":[46.633,46.691,46.747,47.53,48.337,46.774,46.002,46.985,47.076,45.446,46.401,43.958,48.159,43.802,47.349],"script":[12.457,12.532,12.811,13.345,12.705,13.03,12.327,12.665,12.493,12.498,12.722,11.924,13.342,12.143,12.637],"paint":[33.711,33.708,33.502,33.751,35.167,33.31,33.132,33.811,34.137,32.497,33.2,31.593,34.269,31.215,34.232]}}, -{"f":"bau-v0.39.0-non-keyed","b":"02_replace1k","v":{"total":[52.587,51.242,51.978,51.741,50.675,52.457,51.951,51.015,50.903,51.018,50.956,52.037,52.402,52.234,51.393],"script":[16.035,15.269,15.403,15.942,16.374,16.446,16.203,15.303,15.644,15.627,15.309,15.726,16.658,16.616,15.535],"paint":[36.061,35.466,36.13,35.332,33.837,35.529,35.26,35.249,34.779,34.94,35.174,35.829,35.292,35.158,35.356]}}, -{"f":"bau-v0.39.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[18.775,19.561,17.806,18.649,18.029,17.874,18.451,17.675,18.714,18.2,17.612,17.661,18.231,17.602,18.219],"script":[2.84,2.635,2.788,2.645,2.652,1.58,2.462,2.235,2.334,1.961,1.735,2.611,2.494,2.345,3.195],"paint":[14.932,15.141,12.819,14.844,14.039,14.574,14.647,13.879,15.263,13.786,14.593,14.057,14.695,13.981,14.341]}}, -{"f":"bau-v0.39.0-non-keyed","b":"04_select1k","v":{"total":[5.028,4.026,4.482,4.407,4.426,4.539,3.788,3.91,4.921,4.128,4.119,4.021,4.414,4.061,3.927,4.899,4.698,4.376,3.813,4.384,4.458,6.685,4.763,4.15,6.888],"script":[2.769,2.693,1.759,1.841,2.405,1.8,1.594,1.234,2.133,1.906,1.944,2.008,2.032,1.878,1.144,2.045,2.025,1.975,1.583,1.138,2.209,1.794,2.305,1.713,1.318],"paint":[1.77,1.145,1.724,1.717,1.257,2.604,2.071,1.336,2.433,1.219,1.799,1.898,1.761,0.517,2.148,1.403,0.911,2.268,2.104,1.329,1.792,1.644,2.068,2.319,2.241]}}, -{"f":"bau-v0.39.0-non-keyed","b":"05_swap1k","v":{"total":[20.121,20.807,20.289,21.262,19.6,20.176,20.917,19.659,20.023,20.26,20.083,20.33,20.737,21.116,20.627],"script":[1.497,1.837,1.908,1.965,1.587,1.624,2.465,2.011,1.709,1.942,1.82,1.654,2.1,1.844,2.524],"paint":[17.267,17.055,15.835,17.731,16.565,17.398,17.588,16.663,15.856,17.272,15.805,17.103,16.311,17.875,17.022]}}, -{"f":"bau-v0.39.0-non-keyed","b":"06_remove-one-1k","v":{"total":[15.782,15.809,16.301,16.306,15.355,15.591,15.948,15.332,16.02,15.84,15.351,15.957,15.454,15.901,15.832],"script":[1.017,1.016,0.827,1.006,0.676,0.703,0.961,0.373,0.697,0.703,0.877,0.973,0.719,1.039,0.742],"paint":[14.025,14.074,14.705,14.494,14.013,13.872,14.036,13.959,14.602,14.403,13.688,13.975,14.039,14.133,14.196]}}, -{"f":"bau-v0.39.0-non-keyed","b":"07_create10k","v":{"total":[482.408,481.041,484.218,492.023,479.689,482.484,475.861,481.366,487.278,484.046,483.264,486.517,480.275,480.308,480.652],"script":[138.488,139.463,141.165,140.671,138.53,139.947,137.191,137.405,142.106,142.044,139.537,143.012,140.158,138.263,140.48],"paint":[336.398,334.193,335.687,343.795,333.833,335.067,331.337,336.569,337.654,334.76,335.727,336.089,332.62,334.369,332.58]}}, -{"f":"bau-v0.39.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.908,53.06,53.647,54.223,52.647,52.209,52.881,54.315,52.664,54.06,52.832,51.942,52.46,51.554,51.113],"script":[12.058,13.291,12.672,12.553,12.087,12.194,12.424,12.928,12.509,12.92,12.293,12.611,12.067,12.431,12.214],"paint":[39.837,38.774,39.98,40.594,39.592,39.036,39.445,40.381,39.175,40.129,39.542,38.378,39.408,38.18,37.92]}}, -{"f":"bau-v0.39.0-non-keyed","b":"09_clear1k_x8","v":{"total":[14.183,14.091,14.655,13.912,14.279,14.72,14.024,13.644,13.759,14.197,14.703,13.964,14.284,14.263,13.706],"script":[11.638,11.818,12.232,11.887,12.357,12.197,11.884,11.606,12.28,12.668,12.818,11.949,11.926,12.012,11.854],"paint":[1.622,1.366,1.731,1.354,1.81,1.604,1.863,1.955,1.393,1.328,1.776,1.926,2.269,2.155,1.743]}}, -{"f":"bau-v0.39.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4713430404663086]}}, -{"f":"bau-v0.39.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.6862878799438477]}}, -{"f":"bau-v0.39.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.7437171936035156]}}, -{"f":"bau-v0.39.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.1057968139648438]}}, -{"f":"bau-v0.39.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[20.56671142578125]}}, -{"f":"bau-v0.39.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[6.7216796875]}}, -{"f":"bau-v0.39.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.0830078125]}}, -{"f":"bau-v0.39.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[45.3]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"01_run1k","v":{"total":[63.436,63.385,62.742,63.557,62.709,63.14,63.419,63.878,62.864,62.806,63.395,64.459,62.545,63.128,63.424],"script":[28.026,28.426,27.088,27.436,27.241,27.753,27.851,28.045,27.722,27.467,27.578,29.056,27.343,27.87,27.136],"paint":[34.966,34.527,35.216,35.687,35.007,34.947,35.092,35.382,34.696,34.897,35.38,34.96,34.791,34.83,35.843]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"02_replace1k","v":{"total":[73.675,74.278,73.632,73.336,72.195,72.87,75.094,72.19,73.043,73.504,74.121,74.058,74,75.577,73.83],"script":[37.054,37.855,36.618,36.225,35.742,36.33,37.901,35.343,36.463,36.725,36.919,37.443,36.912,38.478,37.014],"paint":[36.172,35.942,36.579,36.671,36.012,36.1,36.728,36.355,36.133,36.35,36.743,36.164,36.643,36.608,36.314]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"03_update10th1k_x16","v":{"total":[20.842,18.536,19.299,19.403,20.126,20.545,19.01,20.922,19.245,20.225,19.952,20.09,19.617,20.076,19.783],"script":[4.828,3.471,4.013,3.181,3.427,3.923,3.939,4.254,3.696,3.732,4.005,4.222,4.015,3.756,3.521],"paint":[14.962,13.763,14.011,14.72,15.103,15.401,13.772,14.96,14.566,14.117,14.088,14.7,13.903,15.638,14.981]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"04_select1k","v":{"total":[7.994,7.113,7.188,7.155,8.828,6.988,7.395,7.871,6.766,7.881,7.721,7.75,8.353,7.425,7.112,7.057,7.879,6.552,6.97,7.414,8.279,7.657,7.124,7.869,7.486],"script":[5.41,4.669,4.569,4.078,4.491,4.769,5.136,4.562,3.874,4.877,4.005,4.372,5.261,4.639,4.769,4.492,4.602,3.793,4.506,4.655,4.327,4.593,4.337,5.014,4.309],"paint":[0.966,2.335,1.503,2.599,2.244,1.648,1.397,2.686,2.785,2.174,3.557,2.854,2.946,2.187,1.239,1.72,2.228,2.613,1.669,2.614,3.028,2.922,2.674,1.973,2.916]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"05_swap1k","v":{"total":[21.284,22.619,22.754,22.724,23.653,22.853,21.654,22.45,23.274,22.521,22.761,22.635,22.587,22.87,24.136],"script":[3.438,3.771,4.632,4.044,4.389,4.01,3.906,4.46,4.352,4.264,4.31,3.923,4.362,4.062,4.112],"paint":[15.269,16.98,17.101,17.307,17.957,17.211,16.965,16.459,17.363,16.908,16.923,17.692,16.67,17.526,18.905]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"06_remove-one-1k","v":{"total":[16.217,15.982,16.069,16.253,16.843,16.525,16.151,16.033,16.746,16.29,16.007,15.986,16.603,15.959,16.003],"script":[1.395,1.502,1.31,1.33,1.496,1.651,1.419,1.342,1.325,1.418,1.328,1.313,1.555,1.483,1.452],"paint":[13.876,13.474,14.029,14.075,14.617,14.156,13.754,13.66,14.628,14.115,13.684,13.955,13.989,13.699,13.847]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"07_create10k","v":{"total":[572.541,567.218,551.696,564.645,560.798,556.419,568.343,556.415,558.647,561.484,557.978,551.965,560.345,565.383,570.085],"script":[214.076,212.806,212.344,204.634,207.873,202.916,205.281,205.374,205.267,208.165,205.242,205.344,207.72,213.019,210.232],"paint":[351.587,347.634,332.621,353.299,346.3,346.827,356.096,344.369,346.668,346.531,346.067,339.869,345.975,345.628,353.15]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[70.87,68.111,67.987,68.132,69.276,67.772,69.628,67.711,69.266,68.055,69.271,69.67,70.888,68.739,68.854],"script":[30.087,27.884,27.769,27.662,28.771,27.322,29.087,27.23,28.457,28.055,29.242,28.825,29.285,28.39,27.941],"paint":[39.872,39.361,39.32,39.598,39.594,39.575,39.658,39.638,39.948,39.12,39.141,39.938,40.552,39.452,40.002]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"09_clear1k_x8","v":{"total":[37.073,34.102,36.042,35.754,36.219,35.506,37.741,36.896,35.691,35.615,36.511,35.338,33.714,34.854,35.128],"script":[34.995,31.707,33.401,33.873,33.451,32.922,35.889,35.011,33.483,34.158,34.606,33.335,32.008,32.518,33.482],"paint":[1.734,1.864,1.821,1.768,2.654,2.451,1.379,1.785,2.09,1.352,0.778,0.892,0.793,2.23,1.54]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[2.0859336853027344]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"22_run-memory","v":{"DEFAULT":[10.375436782836914]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[10.458733558654785]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.1963729858398438]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[76.70380878448486]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[284.4765625]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[44.84765625]}}, -{"f":"binding.scala-v10.0.1-non-keyed","b":"43_first-paint","v":{"DEFAULT":[408.2]}}, -{"f":"bui-v1.9.1-non-keyed","b":"01_run1k","v":{"total":[57.939,60.596,58.511,56.81,59.232,56.997,60.246,55.177,57.792,60.5,60.284,61.16,59.166,59.898,59.4],"script":[22.049,22.577,22.456,20.871,22.855,21.176,22.669,20.438,21.804,22.942,22.786,22.444,21.85,22.588,22.814],"paint":[35.468,37.598,35.63,35.515,35.947,35.366,37.148,34.304,35.564,37.142,37.061,38.269,36.872,36.897,36.16]}}, -{"f":"bui-v1.9.1-non-keyed","b":"02_replace1k","v":{"total":[64.048,63.995,62.694,63.838,62.66,63.83,65.971,64.942,65.617,66.192,64.059,63.183,64.396,65.192,63.86],"script":[25.872,25.773,25.507,25.716,25.258,25.778,27.258,26.309,27.117,26.982,25.984,25.663,26.253,27.46,25.857],"paint":[37.755,37.785,36.743,37.628,36.964,37.597,38.257,38.196,38.06,38.753,37.623,37.059,37.686,37.299,37.549]}}, -{"f":"bui-v1.9.1-non-keyed","b":"03_update10th1k_x16","v":{"total":[167.585,174.29,171.801,169.467,169.524,169.511,170.868,171.141,170.677,169.517,170.48,170.729,169.975,174.944,170.088],"script":[136.397,140.888,139.496,137.854,137.533,137.426,138.085,138.272,137.746,137.897,138.353,137.77,137.901,140.359,138.32],"paint":[30.063,31.265,30.818,30.074,29.27,30.403,31.382,30.647,31.352,29.283,30.526,30.556,30.101,32.534,30.437]}}, -{"f":"bui-v1.9.1-non-keyed","b":"04_select1k","v":{"total":[4.823,5.032,5.2,4.739,4.624,5.421,5.541,5.183,6.337,5.172,4.683,4.694,5.463,5.268,6.195,5.021,5.146,5.546,4.888,4.98,4.96,4.735,4.992,4.884,5.491],"script":[2.594,2.582,2.721,2.04,2.735,2.975,2.512,2.479,2.59,1.914,1.611,2.237,2.689,2.998,2.707,2.439,2.424,2.422,2.527,2.37,2.459,1.76,2.457,2.678,2.938],"paint":[1.864,1.87,1.548,2.16,1.108,1.632,1.815,1.845,2.759,3.119,2.929,1.721,1.316,0.59,2.293,2.451,2.605,1.821,1.286,2.478,3.205,1.695,2.411,1.448,1.679]}}, -{"f":"bui-v1.9.1-non-keyed","b":"05_swap1k","v":{"total":[23.294,24.119,23.184,23.556,23.857,22.379,23.34,23.608,23.727,23.691,23.568,24.872,22.672,23.604,23.729],"script":[4.519,4.528,3.928,3.97,4.58,4.362,4.609,4.871,4.96,4.598,4.204,4.652,4.562,4.551,4.892],"paint":[16.517,18.218,17.786,17.538,17.918,16.783,17.666,17.653,17.49,18.223,17.793,18.28,16.49,18.118,17.206]}}, -{"f":"bui-v1.9.1-non-keyed","b":"06_remove-one-1k","v":{"total":[17.122,17.283,17.204,17.331,18.23,17.535,16.772,16.829,17.008,16.744,17.154,17.808,17.304,16.768,16.895],"script":[1.843,1.673,1.725,1.85,1.932,1.874,1.841,1.5,1.632,1.835,1.852,1.962,2.106,1.857,1.887],"paint":[14.187,14.728,14.769,14.73,15.19,14.792,14.178,14.265,14.441,14.133,14.259,14.999,14.415,13.972,14.335]}}, -{"f":"bui-v1.9.1-non-keyed","b":"07_create10k","v":{"total":[590.248,587.776,592.491,591.639,598.704,588.716,584.727,591.273,589.418,592.012,587.785,590.27,580.233,587.241,587],"script":[224.702,220.905,220.357,222.872,225.621,220.207,220.003,220.339,221.964,223.049,221.612,224.094,216.955,221.353,220.859],"paint":[357.576,359.306,364.806,361.258,365.739,361.376,357.4,363.587,360.118,361.546,358.621,358.391,355.793,358.431,358.638]}}, -{"f":"bui-v1.9.1-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[126.758,125.625,128.758,127.816,127.083,128.447,127.778,126.315,125.407,128.811,126.463,126.184,125.897,124.935,124.184],"script":[54.387,51.77,54.283,54.409,52.431,53.713,53.291,53.445,51.717,54.346,52.926,52.573,53.063,52.117,51.665],"paint":[71.521,72.999,73.565,72.53,73.753,73.86,73.603,71.99,72.785,73.557,72.647,72.717,71.961,71.946,71.621]}}, -{"f":"bui-v1.9.1-non-keyed","b":"09_clear1k_x8","v":{"total":[20.215,20.057,20.501,19.825,19.816,19.926,19.756,20.605,19.857,20.572,20.892,19.385,19.746,20.606,20.536],"script":[18.688,17.469,18.473,17.914,17.925,18.258,17.578,19.2,17.506,18.728,18.772,17.948,17.733,17.939,18.739],"paint":[1.432,2.502,1.569,1.83,1.791,1.022,2.087,1.286,1.827,1.759,1.402,0.349,1.367,2.371,1.7]}}, -{"f":"bui-v1.9.1-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.7877273559570312]}}, -{"f":"bui-v1.9.1-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.856842041015625]}}, -{"f":"bui-v1.9.1-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.9196624755859375]}}, -{"f":"bui-v1.9.1-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.076221466064453]}}, -{"f":"bui-v1.9.1-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[20.90069007873535]}}, -{"f":"bui-v1.9.1-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[413.1064453125]}}, -{"f":"bui-v1.9.1-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[100.4287109375]}}, -{"f":"bui-v1.9.1-non-keyed","b":"43_first-paint","v":{"DEFAULT":[574.3]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"01_run1k","v":{"total":[42.437,42.146,44.059,42.675,43.523,44.848,42.159,42.427,42.849,42.872,42.315,42.663,44.009,45.353,43.2],"script":[8.87,8.741,9.531,8.78,9.543,9.47,8.603,8.785,9.499,8.823,8.829,8.625,9.671,9.879,8.985],"paint":[33.163,32.994,34.153,33.491,33.569,34.98,33.157,33.248,32.954,33.622,33.088,33.635,33.926,35.066,33.818]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"02_replace1k","v":{"total":[22.129,22.009,21.528,23.516,21.794,21.906,21.915,21.629,21.503,21.98,21.477,21.321,21.996,22.458,21.241],"script":[7.168,7.268,7.209,7.26,7.306,7.313,6.933,7.08,6.945,7.031,6.686,6.9,7.105,7.32,6.887],"paint":[14.528,14.334,13.883,15.818,14.083,14.182,14.564,14.1,14.113,14.544,14.327,13.988,14.471,14.711,13.918]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[34.142,34.027,33.408,33.984,35.91,33.461,33.607,33.092,34.566,33.81,32.96,35.297,33.046,35.599,32.663],"script":[17.277,17.614,17.674,18.299,18.964,17.173,17.917,17.125,18.23,17.649,17.094,18.299,17.977,18.437,17.033],"paint":[15.263,15.056,14.365,14.309,15.277,14.73,14.346,13.618,14.788,14.311,14.022,15.527,13.729,15.763,14.473]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"04_select1k","v":{"total":[21.525,21.001,21.576,21.444,19.846,23.517,20.707,20.756,20.719,21.799,21.691,20.972,20.054,22.008,19.84,21.008,20.156,21.768,21.033,23.122,19.923,21.251,19.528,20.447,21.977],"script":[18.41,17.542,17.805,18.03,17.077,20.402,17.719,18.079,17.551,17.997,18.68,17.518,16.221,18.345,16.628,17.874,17.1,18.299,17.834,19.354,16.59,18.144,16.346,17.862,18.429],"paint":[1.972,2.53,3.575,2.773,2.596,2.914,1.526,1.458,2.508,3.12,2.132,2.735,2.805,2.875,2.181,1.688,2.892,2.477,2.175,3.197,2.516,2.917,1.934,1.73,3.331]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"05_swap1k","v":{"total":[28.613,29.784,30.171,29.074,28.529,29.871,29.193,26.986,29.689,28.777,28.252,29.42,26.888,27.339,27.782],"script":[17.78,18.825,18.494,18.168,17.226,18.094,17.282,16.502,18.257,17.382,17.713,16.499,15.238,15.773,16.262],"paint":[9.264,9.786,9.614,10.164,10.046,10.015,10.786,9.483,9.794,10.004,9.444,11.416,9.797,9.086,10.152]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"06_remove-one-1k","v":{"total":[42.997,41.34,45.016,43.016,42.462,42.508,41.804,43.499,42.821,44.462,41.857,43.043,42.434,42.375,41.785],"script":[12.22,11.447,13.48,13.078,12.407,12.351,12.345,12.921,12.754,13.195,11.768,12.984,12.454,12.274,12.165],"paint":[29.94,28.885,30.382,28.961,29.245,29.042,28.69,29.181,29.269,29.941,28.933,28.916,28.894,29.29,28.171]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"07_create10k","v":{"total":[452.73,455.146,448.691,454.696,449.607,448.193,456.107,451.133,452.212,450.59,452.395,453.396,452.861,454.044,450.655],"script":[120.437,118.905,113.808,122.152,115.678,116.105,122.312,116.661,119.211,115.764,115.517,117.969,119.059,119.461,116.747],"paint":[325.415,329.538,328.248,325.714,327.273,325.194,326.921,327.578,326.422,328.166,330.224,328.804,326.854,327.743,327.087]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[54.563,54.21,54.079,53.209,55.459,55.134,54.435,55.88,55.305,55.353,54.099,54.153,52.839,55.192,56.127],"script":[13.338,13.654,13.314,13.623,13.68,13.46,14.015,13.752,13.494,13.508,13.953,13.72,13.423,13.719,13.5],"paint":[40.248,39.693,39.891,38.694,40.807,40.72,39.531,41.179,40.936,40.95,39.21,39.513,38.531,40.489,41.654]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"09_clear1k_x8","v":{"total":[20.929,20.946,20.404,19.688,19.574,19.266,20.249,19.126,19.788,20.885,20.999,20.077,19.559,20.235,19.703],"script":[19.013,19.155,18.215,18.229,17.658,17.127,18.045,17.656,17.435,19.158,18.686,17.937,17.62,17.775,18.151],"paint":[1.423,1.325,1.836,1.355,1.81,2.034,2.107,0.397,2.262,0.843,1.722,1.535,1.837,2.37,1.453]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.8789291381835938]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.5381240844726562]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.518671989440918]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.1139411926269531]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[26.0386962890625]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[83.35546875]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[21.55078125]}}, -{"f":"cyclejs-dom-v20.4.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[130.7]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"01_run1k","v":{"total":[40.472,40.033,39.185,40.434,40.003,40.024,40.002,40.528,42.459,40.285,39.779,40.108,40.418,40.557,40.23],"script":[6.911,7.116,6.433,7.002,6.702,6.959,7.109,7.002,6.75,7.005,6.83,6.842,6.99,6.903,6.707],"paint":[33.148,32.512,32.346,33.037,32.885,32.647,32.483,33.109,35.277,32.87,32.528,32.845,33.007,33.24,33.116]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"02_replace1k","v":{"total":[17.009,15.999,15.989,17.976,17.722,18.031,16.172,17.713,16.598,17.682,16.051,17.823,17.845,17.863,17.669],"script":[1.949,1.945,1.898,2.121,2.119,2.102,1.877,1.969,1.897,2.072,1.882,2.154,2.094,2.034,2.065],"paint":[14.6,13.64,13.708,15.444,15.19,15.527,13.934,15.347,14.241,15.207,13.763,15.248,15.312,15.42,15.187]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"03_update10th1k_x16","v":{"total":[19.064,19.604,19.685,19.546,19.365,19.745,19.546,19.324,19.041,20.465,19.545,18.816,18.808,19.471,19.451],"script":[4.086,3.854,3.678,3.926,4.729,4.206,4.093,4.555,3.974,4.049,4.022,3.851,3.738,3.963,4.113],"paint":[14.273,14.164,14.862,14.503,12.523,13.803,13.505,12.927,13.134,15.371,13.681,13.69,13.408,14.422,13.802]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"04_select1k","v":{"total":[2.672,2.735,2.541,3.247,4.3,3.653,2.952,2.639,2.768,3.846,2.42,4.482,3.244,2.687,2.541,4.018,4.102,2.312,2.655,4.389,4.787,2.142,3.297,3.122,2.981],"script":[0.122,0.702,0.111,0.901,0.113,0.942,0.956,0.114,0.255,0.835,0.597,0.112,0.482,0.469,0.793,1.227,0.832,0.122,0.107,0.543,0.108,0.28,0.937,0.131,0.827],"paint":[1.587,1.94,1.798,2.24,2.628,2.516,1.888,1.314,1.769,2.13,1.726,2.473,2.278,2.122,1.646,1.901,1.455,1.101,2.449,1.943,2.682,1.764,2.255,1.583,1.481]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"05_swap1k","v":{"total":[14.653,14.07,13.287,14.384,14.529,13.488,13.695,14.41,13.306,14.305,13.446,14.424,13.919,14.031,14.586],"script":[3.642,3.643,3.032,2.283,3.358,2.334,3.091,3.511,3.224,3.194,3.193,2.879,3.033,2.752,3.269],"paint":[9.481,8.91,8.971,10.926,9.66,9.807,8.887,9.007,8.881,9.733,8.992,9.715,9.567,10.296,9.805]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"06_remove-one-1k","v":{"total":[33.329,33.542,34.289,33.765,34.119,34.004,34.225,33.334,33.336,33.515,33.591,33.418,33.807,33.383,34.008],"script":[3.806,3.745,4.232,4.15,3.969,4.149,4.062,3.929,3.994,4.114,4.19,3.806,4.116,3.901,3.998],"paint":[28.49,28.778,29.127,28.639,29.398,29.029,29.385,28.467,28.476,28.036,28.637,28.672,28.714,28.707,29.236]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"07_create10k","v":{"total":[412.315,414.597,413.097,412.512,414.189,412.178,410.824,410.755,411.664,413.155,416.385,412.442,413.654,412.043,412.689],"script":[66.167,68.214,68.402,70.454,67.802,67.214,65.64,66.751,67.746,70.205,67.931,67.369,67.616,65.866,67.381],"paint":[339.461,339.726,337.939,334.84,339.719,338.277,338.234,337.296,337.271,336.289,341.514,338.416,339.39,339.526,338.636]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[47.628,48.591,46.043,45.297,46.51,46.303,47.824,46.578,47.819,46.502,46.136,45.706,46.031,45.001,46.654],"script":[7.068,7.432,7.271,7.041,7.238,7.427,7.276,7.235,7.08,7.328,7.307,7.246,7.268,6.527,7.291],"paint":[39.684,40.27,37.92,37.399,38.405,37.823,39.66,38.485,39.832,38.282,37.946,37.596,37.889,37.603,38.507]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"09_clear1k_x8","v":{"total":[12.648,12.705,12.56,12.783,12.753,12.318,13.035,12.578,12.95,12.532,12.77,13.243,12.11,12.074,12.3],"script":[10.29,10.073,10.238,10.859,10.721,10.699,11.211,10.281,11.05,10.229,10.427,10.94,10.274,10.22,10.887],"paint":[2.265,2.532,1.803,0.97,1.565,1.527,1.054,2.213,1.806,1.557,2.255,1.384,1.749,1.769,0.382]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5283088684082031]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.2488718032836914]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.3182449340820312]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7514276504516602]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[16.00042152404785]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[8.7841796875]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.2373046875]}}, -{"f":"cydon-v0.1.8-non-keyed","b":"43_first-paint","v":{"DEFAULT":[54.2]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"01_run1k","v":{"total":[38.492,38.675,39.37,41.889,39.937,39.482,39.306,39.611,39.655,39.96,39.22,40.38,39.731,39.425,39.654],"script":[5.343,4.976,5.341,5.222,5.114,5.242,5.254,5.372,5.291,5.173,5.07,5.238,4.861,5.172,5.115],"paint":[32.709,33.283,33.599,36.237,34.39,33.83,33.631,33.837,33.911,34.318,33.74,34.651,34.455,33.84,34.117]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"02_replace1k","v":{"total":[20.022,21.194,19.517,19.816,18.671,19.337,20.055,19.806,19.231,18.75,19.649,19.679,19.718,19.274,19.556],"script":[4.033,4.791,4.747,5.045,4.11,4.507,4.857,4.731,4.485,4.149,4.9,4.861,4.779,4.483,4.875],"paint":[15.561,15.947,14.365,14.393,14.169,14.459,14.729,14.635,14.322,14.174,14.356,14.425,14.563,14.422,14.292]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.291,17.343,17.035,17.122,16.408,16.104,16.297,16.787,17.227,16.384,16.847,17.256,16.007,15.77,16.713],"script":[0.541,0.933,0.903,1.153,0.904,0.946,0.843,0.907,0.872,1.107,0.921,0.891,0.964,0.664,0.225],"paint":[13.589,15.385,14.806,14.58,13.678,14.054,14.165,14.695,14.335,13.514,13.724,13.803,13.792,13.653,15.231]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"04_select1k","v":{"total":[5.303,2.227,2.26,2.613,1.863,2.7,2.644,5.115,2.482,3.049,3.138,3.215,2.841,3.301,2.512,2.504,2.528,2.203,5.204,2.671,2.857,2.196,4.146,1.97,2.734],"script":[0.063,0.303,0.061,0.066,0.066,0.07,0.714,0.057,0.066,0.336,0.074,1.058,0.067,0.725,0.059,0.059,0.062,0.059,0.895,0.068,0.062,0.057,0.061,0.061,0.064],"paint":[1.828,1.427,1.219,2.44,1.706,0.896,1.213,2.336,2.123,1.812,2.963,2.054,2.24,2.476,2.179,2.343,2.369,2.046,1.826,1.656,2.695,1.319,2.28,1.813,1.873]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"05_swap1k","v":{"total":[12.792,11.315,11.955,12.54,11.846,10.991,11.542,11.389,11.398,11.597,11.508,11.455,11.531,12.121,12.236],"script":[0.122,0.561,0.096,0.752,0.814,0.102,0.107,0.108,0.11,0.602,0.107,0.101,0.56,0.792,0.41],"paint":[11.039,9.387,9.719,10.767,9.923,9.61,9.381,10.216,10.328,10.019,9.834,9.709,9.822,10.116,10.672]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"06_remove-one-1k","v":{"total":[15.421,14.846,15.031,14.788,14.744,15.981,15.446,14.985,14.867,14.75,15.063,15.005,15.366,15.406,15.657],"script":[0.198,0.107,0.256,0.419,0.103,0.249,0.106,0.43,0.109,0.099,0.243,0.117,0.441,0.275,0.303],"paint":[14.484,13.104,14.023,13.67,13.783,14.779,14.593,13.866,13.722,14.262,14.106,13.885,14.181,14.122,14.671]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"07_create10k","v":{"total":[415.622,415.065,416.558,413.669,408.244,415.353,416.308,413.428,415.662,413.81,417.848,418.608,411.438,411.927,410.83],"script":[63.883,62.392,65.587,63.279,63.374,62.949,64.067,63.891,64.249,64.395,65.589,62.773,63.433,61.68,62.174],"paint":[344.987,345.972,344.144,343.677,338.19,345.708,345.507,342.597,344.752,342.733,345.533,349.141,341.337,343.713,341.751]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[43.326,44.329,43.304,43.867,44.589,43.482,44.002,43.789,44.896,43.759,43.573,44.859,44.031,44.755,44.352],"script":[4.484,4.642,4.525,4.537,4.618,4.497,4.595,4.51,4.7,4.674,4.452,4.754,4.523,4.666,4.619],"paint":[37.997,38.808,37.984,38.522,39.097,38.083,38.588,38.417,39.292,38.15,38.303,39.253,38.668,39.228,38.824]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"09_clear1k_x8","v":{"total":[12.168,12.209,12.683,12.105,12.92,12.151,12.334,11.766,12.119,12.219,12.504,12.701,13.346,12.317,12.164],"script":[10.448,10.802,11.319,10.073,11.327,10.42,11.062,9.706,10.687,9.858,10.425,10.467,10.835,10.717,9.858],"paint":[1.625,1.311,1.26,1.95,1.131,1.029,1.182,1.656,0.38,2.271,1.995,1.994,2.317,0.908,1.985]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.6674489974975586]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.184140205383301]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.342824935913086]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.9062232971191406]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[17.652867317199707]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[101.130859375]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[36.1484375]}}, -{"f":"delorean-v0.1.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[43.9]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"01_run1k","v":{"total":[37.355,37,36.909,36.431,38.213,36.247,37.575,37.499,37.962,37.267,38.928,39.334,38.272,37.23,39.28],"script":[3.797,4.031,4.093,4.013,4.359,3.776,4.06,4.017,4.175,3.846,4.402,4.471,4.368,3.93,4.268],"paint":[33.155,32.576,32.395,32.005,33.419,32.08,33.094,33.036,33.349,32.993,34.098,34.457,33.508,32.874,34.598]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"02_replace1k","v":{"total":[17.434,17.263,18.055,17.697,17.885,17.552,17.403,17.277,17.614,17.452,17.782,17.776,17.878,17.913,17.66],"script":[2.832,2.66,3.105,2.875,2.913,2.968,2.612,2.898,2.776,2.921,2.934,2.815,2.876,2.841,2.894],"paint":[14.199,14.199,14.576,14.404,14.603,14.163,14.382,13.972,14.404,14.098,14.464,14.601,14.63,14.693,14.38]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"03_update10th1k_x16","v":{"total":[21.585,20.983,21.885,20.652,21.343,20.599,21.121,21.028,20.302,22.421,20.58,21.254,20.616,20.718,20.88],"script":[5.535,5.043,4.919,5.232,5.434,4.96,4.974,4.732,4.365,5.417,4.94,4.693,4.958,5.002,5.162],"paint":[14.629,14.421,15.697,14.013,14.559,14.146,14.887,14.472,13.993,15.634,14.368,15.353,14.154,14.213,14.456]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"04_select1k","v":{"total":[2.132,4.3,3.12,4.623,2.534,2.273,3.355,2.483,2.665,4.304,2.516,4.855,3.438,3.507,2.779,2.38,3.369,2.793,3.032,2.644,2.533,2.436,2.379,2.993,2.425],"script":[0.171,0.571,0.725,1.101,0.079,0.077,1.019,0.073,0.394,0.568,0.505,0.072,0.773,1.09,0.498,0.226,0.263,0.293,0.827,0.243,0.18,0.082,0.074,0.705,0.409],"paint":[1.138,1.666,2.294,1.978,2.355,1.81,2.235,1.075,2.171,2.266,1.905,1.596,1.744,1.734,1.629,2.058,1.735,2.101,1.541,1.586,1.596,1.526,1.256,2.195,1.919]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"05_swap1k","v":{"total":[14.265,14.31,13.651,15.1,14.502,14.16,14.549,14.8,16.287,14.329,14.475,14.325,14.172,14.705,14.359],"script":[2.942,2.962,2.903,3.316,2.993,3.161,3.136,3.177,3.325,2.834,2.978,2.993,3.149,2.817,2.605],"paint":[10.078,10.025,9.436,10.787,10.819,9.495,10.508,10.598,11.563,10.48,9.588,9.618,9.637,10.618,10.445]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"06_remove-one-1k","v":{"total":[35.226,34.918,35.022,34.986,34.936,35.367,35.65,35.046,35.646,35.44,35.379,35.604,34.942,34.647,35.294],"script":[4.279,4.599,4.528,4.267,4.295,4.689,4.323,4.271,4.245,4.22,4.133,4.222,4.28,3.914,4.688],"paint":[30.075,29.556,29.721,30.01,29.533,29.923,30.377,30.051,30.686,30.399,30.213,30.661,29.876,30.025,29.853]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"07_create10k","v":{"total":[395.885,396.073,397.062,398.859,396.576,401.414,397.483,392.211,398.923,390.341,405.311,391.139,394.399,398.035,392.638],"script":[50.158,50.454,48.621,49.043,47.783,48.633,49.422,49.906,49.853,46.547,50.472,49.476,48.134,50.053,48.865],"paint":[339.043,338.848,341.868,343.074,342.166,346.129,341.334,335.622,342.339,337.172,348.001,335.024,339.621,341.368,336.967]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[43.578,44.762,44.267,45.128,43.877,45.116,45.103,43.967,43.62,46.74,44.483,43.561,45.439,44.931,43.333],"script":[4.936,5.748,5.193,5.473,5.174,5.425,5.511,5.087,5.081,5.239,5.304,5.042,5.36,5.553,4.905],"paint":[37.765,38.16,38.07,38.756,37.86,38.81,38.738,37.996,37.709,40.624,38.334,37.664,39.225,38.524,37.546]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"09_clear1k_x8","v":{"total":[14.605,13.961,14.79,13.928,14.154,14.152,13.417,16.161,15.22,13.723,13.824,13.99,14.418,13.501,13.64],"script":[12.783,12.548,13.155,11.94,11.994,12.714,12.31,13.959,13.066,11.559,12.619,12.192,12.75,11.631,11.757],"paint":[1.024,0.776,1.207,1.015,2.069,1.352,0.391,1.427,1.468,2.066,0.384,0.946,0.787,1.781,1.789]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4771881103515625]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.0595827102661133]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.0497875213623047]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7044591903686523]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[15.469904899597168]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[12.9033203125]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.7919921875]}}, -{"f":"dlightjs-v1.0.0-alpha.36-non-keyed","b":"43_first-paint","v":{"DEFAULT":[48.8]}}, -{"f":"doz-v4.0.3-non-keyed","b":"01_run1k","v":{"total":[59.269,58.719,59.392,58.793,58.498,58.496,60.218,59.423,60.053,59.588,60.05,58.908,58.559,60.49,59.897],"script":[25.798,25.222,26.016,25.614,25.227,24.905,26.235,25.662,26.275,25.971,26.223,25.296,25.182,26.532,25.935],"paint":[33.048,33.093,32.964,32.74,32.84,33.17,33.552,33.322,33.34,33.194,33.392,33.171,32.944,33.509,33.528]}}, -{"f":"doz-v4.0.3-non-keyed","b":"02_replace1k","v":{"total":[39.582,40.15,37.54,38.136,38.398,39.72,40.396,38.588,38.187,38.087,38.742,38.281,38.813,38.587,38.6],"script":[23.983,23.417,22.271,23.078,23.235,23.177,23.49,23.318,23.069,23.012,23.258,23.157,23.067,23.151,23.174],"paint":[15.117,16.274,14.796,14.57,14.687,16.036,16.428,14.787,14.659,14.609,15.047,14.639,15.29,15.01,14.959]}}, -{"f":"doz-v4.0.3-non-keyed","b":"03_update10th1k_x16","v":{"total":[25.893,26.063,26.155,26.212,25.602,26.181,25.505,25.499,25.734,25.488,26.105,25.254,26.389,27.9,25.726],"script":[9.79,10.475,10.338,10.628,9.645,10.283,9.836,10.145,10.141,9.572,9.646,10.113,9.802,10.109,9.8],"paint":[14.978,13.746,14.254,13.939,14.283,14.893,14.214,14.317,14.052,14.507,14.768,13.307,14.808,16.937,14.501]}}, -{"f":"doz-v4.0.3-non-keyed","b":"04_select1k","v":{"total":[8.366,7.118,7.762,7.794,7.456,8.384,7.863,8.245,7.709,8.512,7.786,7.95,7.274,8.151,7.361,7.584,7.713,6.979,7.71,8.018,8.251,7.738,8.247,8.51,8.807],"script":[5.462,4.596,4.997,5,5.237,5.579,5.002,5.473,5.403,5.17,5.531,5.203,4.94,5.07,4.75,4.799,5.411,4.912,5.632,5.461,4.986,5.318,5.291,6.029,6.103],"paint":[1.997,2.055,2.646,2.397,1.455,1.993,2.752,2.654,2.185,2.855,1.487,2.616,1.898,2.936,2.013,2.655,2.191,1.263,1.972,2.419,3.138,2.307,2.792,1.664,2.199]}}, -{"f":"doz-v4.0.3-non-keyed","b":"05_swap1k","v":{"total":[16.865,16.179,16.304,16.576,16.311,16.121,16.252,16.63,16.231,16.087,16.481,16.735,17.11,16.644,16.462],"script":[5.622,4.982,6.077,5.139,5.661,4.551,5.386,5.852,5.425,5.093,5.501,5.599,5.272,5.188,4.844],"paint":[9.49,9.592,8.685,9.718,7.653,10.616,9.202,9.002,8.992,9.472,9.711,10.085,10.431,10.141,10.022]}}, -{"f":"doz-v4.0.3-non-keyed","b":"06_remove-one-1k","v":{"total":[50.305,50.167,53.948,53.102,53.292,50.505,50.975,49.711,49.726,53.422,52.248,50.149,50.236,49.432,50.849],"script":[19.516,18.689,19.454,18.752,19.682,19.303,19.43,18.952,18.917,19.673,19.502,18.729,18.925,18.034,19.078],"paint":[29.247,30.609,33.683,33.176,32.419,30.369,30.705,29.593,29.716,32.916,31.576,30.551,29.902,30.375,30.602]}}, -{"f":"doz-v4.0.3-non-keyed","b":"07_create10k","v":{"total":[672.862,673.182,672.007,664.724,664.016,677.2,668.852,672.646,672.21,668.59,668.911,661.689,669.139,671.649,670.613],"script":[323.74,318.904,314.686,314.081,312.435,324.952,316.995,314,316.886,318.866,316.424,310.604,318.879,318.783,319.893],"paint":[342.474,347.596,350.728,344.085,344.914,345.642,345.263,352.239,348.67,343.232,345.823,343.987,343.69,346.195,344.078]}}, -{"f":"doz-v4.0.3-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[79.877,80.554,80.114,80.05,80.275,82.156,80.646,83.035,79.977,81.006,79.774,80.604,80.544,81.754,81.4],"script":[40.85,41.244,41.134,41.074,40.959,41.189,41.361,43.16,41.07,41.213,41.063,41.27,41.353,42.011,41.306],"paint":[38.197,38.448,38.041,38.078,38.388,39.739,38.374,38.927,38.064,38.921,37.807,38.481,38.289,38.831,39.203]}}, -{"f":"doz-v4.0.3-non-keyed","b":"09_clear1k_x8","v":{"total":[16.858,18.891,16.583,17.84,17.659,17.711,17.343,17.64,17.117,17.573,17.527,18.487,19.011,17.906,17.12],"script":[15.313,16.958,14.648,15.718,15.289,15.24,15.833,14.958,15.188,15.972,14.983,16.474,16.893,15.445,15.474],"paint":[1.439,1.81,1.84,2.029,1.322,2.375,1.417,2.222,1.114,1.506,2.44,1.922,2.005,1.784,1.544]}}, -{"f":"doz-v4.0.3-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7719287872314453]}}, -{"f":"doz-v4.0.3-non-keyed","b":"22_run-memory","v":{"DEFAULT":[4.346159934997559]}}, -{"f":"doz-v4.0.3-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.000749588012695]}}, -{"f":"doz-v4.0.3-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[8.525975227355957]}}, -{"f":"doz-v4.0.3-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[33.81096363067627]}}, -{"f":"doz-v4.0.3-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[77.251953125]}}, -{"f":"doz-v4.0.3-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[19.8955078125]}}, -{"f":"doz-v4.0.3-non-keyed","b":"43_first-paint","v":{"DEFAULT":[116.7]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"01_run1k","v":{"total":[35.407,36.576,35.569,35.403,35.228,38.562,36.627,35.014,35.552,35.751,35.918,35.919,37.074,35.522,36.57],"script":[2.305,2.411,2.208,2.289,2.353,2.328,2.412,2.336,2.348,2.305,2.228,2.271,2.15,2.419,2.254],"paint":[32.677,33.741,32.943,32.707,32.463,35.844,33.793,32.265,32.765,32.97,33.282,33.228,34.495,32.675,33.891]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"02_replace1k","v":{"total":[15.887,15.194,16.346,15.508,15.099,15.286,17.159,15.362,15.436,15.322,15.234,15.077,14.93,15.559,15.488],"script":[1.106,1.206,1.164,1.161,1.143,1.146,1.141,1.278,1.236,1.09,1.143,1.197,1.147,1.074,1.194],"paint":[14.363,13.614,14.763,13.92,13.558,13.726,15.601,13.676,13.797,13.863,13.673,13.496,13.387,14.106,13.874]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"03_update10th1k_x16","v":{"total":[15.984,16.094,16.47,15.553,15.454,17.734,16.017,16.159,16.198,16.122,16.794,16.573,17.648,16.486,16.375],"script":[1.226,0.975,1.074,1.115,1.066,1.388,1.013,0.724,1.089,1.17,1.228,1.178,0.941,1.445,0.586],"paint":[13.203,13.287,13.854,13.213,13.408,14.265,13.194,14.128,13.404,12.95,14.302,13.848,14.115,13.98,14.509]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"04_select1k","v":{"total":[2.804,3.643,3.009,2.903,4.331,3.043,2.219,2.649,3.219,2.733,4.075,2.6,3.151,2.491,4.216,2.488,3.521,2.929,5.982,2.992,2.766,2.67,2.998,2.792,5.513],"script":[0.932,0.839,0.732,0.532,0.773,0.729,0.108,0.53,0.777,0.553,0.097,0.098,0.991,0.104,0.342,0.102,1.076,0.104,0.1,0.771,0.104,0.105,0.865,0.514,0.783],"paint":[1.766,2.009,2.178,2.269,1.893,2.205,2.014,2.026,2.347,2.082,2.823,1.607,1.498,2.285,2.302,1.316,2.341,2.725,1.309,2.122,1.789,1.569,1.373,2.182,1.899]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"05_swap1k","v":{"total":[11.396,12.218,11.077,11.629,11.464,11.13,11.252,10.785,11.307,10.681,10.893,11.437,11.79,11.674,11.563],"script":[0.244,0.57,0.078,0.088,0.243,0.092,0.605,0.397,0.084,0.538,0.084,0.54,0.612,0.432,0.79],"paint":[8.39,10.315,8.978,9.111,10.173,9.624,9.119,9.429,10.492,9.178,8.8,9.355,10.021,9.81,9.491]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"06_remove-one-1k","v":{"total":[15.208,14.723,14.678,15.37,14.685,15.639,14.797,15.11,14.798,15.08,14.794,15.289,14.799,14.852,14.825],"script":[0.419,0.285,0.258,0.148,0.125,0.444,0.119,0.486,0.124,0.201,0.366,0.431,0.344,0.195,0.114],"paint":[14.1,13.689,13.258,14.816,13.727,14.499,13.967,13.904,13.969,14.171,13.421,13.904,13.773,13.644,13.73]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"07_create10k","v":{"total":[505.616,481.551,482.526,484.277,491.855,485.924,486.983,481.845,485.507,484.745,486.887,489.367,479.353,484.85,483.692],"script":[140.445,141.265,141.858,141.192,141.013,140.082,141.187,137.903,140.075,140.265,141.252,142.986,138.407,140.959,139.852],"paint":[357.416,333.307,333.938,336.273,343.877,339.111,338.902,337.135,338.745,337.655,338.88,339.019,334.291,337.191,337.145]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[57.099,55.623,56.859,55.377,55.793,57.424,56.238,57.091,55.631,56.485,56.138,56.139,54.886,55.196,55.595],"script":[15.65,15.86,16.177,15.229,15.307,16.104,15.582,16.016,15.468,16.031,15.825,15.873,15.691,15.103,15.252],"paint":[40.585,38.864,39.794,39.278,39.554,40.405,39.786,40.19,39.316,39.581,39.425,39.409,38.331,39.215,39.468]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"09_clear1k_x8","v":{"total":[17.355,17.867,18.148,17.523,17.543,16.847,17.423,15.961,18.734,16.724,17.321,18.089,18.183,17.772,17.959],"script":[15.624,15.364,15.88,14.975,15.874,15.205,15.582,14.76,16.479,14.801,15.599,16.098,15.791,15.837,16.107],"paint":[1.643,1.819,1.04,2.463,1.261,0.702,0.413,0.524,2.102,1.834,0.811,1.891,2.054,1.844,1.102]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5634775161743164]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"22_run-memory","v":{"DEFAULT":[4.682707786560059]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.742267608642578]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.690851211547852]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[38.7879581451416]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[25.3876953125]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.2763671875]}}, -{"f":"ef-js-v0.17.5-non-keyed","b":"43_first-paint","v":{"DEFAULT":[79.8]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"01_run1k","v":{"total":[46.854,46.787,46.383,42.399,51.556,42.096,44.092,47.187,50.965,46.08,44.399,46.693,47.477,45.342,50.319],"script":[9.012,8.321,8.799,8.715,9.104,8.617,8.511,8.918,9.063,8.817,8.803,8.712,8.433,8.819,8.866],"paint":[33.796,32.871,32.189,32.971,33.799,33.035,31.842,33.52,32.561,32.668,33.545,32.437,32.401,32.338,36.078]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"02_replace1k","v":{"total":[24.746,24.779,27.036,29.873,26.797,27.947,30.034,28.58,26.758,27.268,28.9,20.917,30.379,31.043,23.057],"script":[5.643,5.691,5.538,6.006,5.473,5.637,6.113,5.917,6.143,6.213,5.705,5.865,5.635,5.647,5.94],"paint":[16.02,14.324,14.572,14.825,14.485,14.608,14.81,14.762,14.669,14.344,15.148,14.629,14.675,14.858,16.676]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"03_update10th1k_x16","v":{"total":[23.394,42.806,41.476,42.948,44.776,19.521,22.704,45.343,20.929,21.315,20.624,22.361,20.466,45.04,42.523],"script":[3.165,3.658,4.128,4.326,3.905,4.04,3.455,3.496,3.344,3.68,3.567,3.812,3.766,3.694,3.555],"paint":[15.907,14.613,14.933,14.124,14.263,13.722,15.321,15.019,14.731,14.516,14.279,15.733,14.154,15.684,13.71]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"04_select1k","v":{"total":[4.591,4.84,7.568,9.072,11.47,6.727,4.657,6.631,9.609,7.619,5.584,8.702,7.835,4.376,9.883,10.26,5.264,9.738,12.136,6.531,5.553,12.944,5.238,8.728,10.766],"script":[0.946,0.934,1.2,1.123,1.129,1.417,1.376,0.582,0.639,1.035,1.729,0.316,0.94,1.827,0.349,1.066,1.89,0.668,0.403,1.326,1.488,1.844,1.407,1.579,0.893],"paint":[2.248,2.903,1.719,1.585,2.716,1.759,2.345,1.48,2.346,1.785,1.73,3.376,1.606,1.43,2.322,1.759,1.652,1.738,2.598,1.381,1.674,2.01,1.764,2.235,2.415]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"05_swap1k","v":{"total":[39.631,14.095,13.704,36.206,14.934,40.14,35.61,36.101,13.57,33.24,12.536,14.864,14.893,35.183,38.419],"script":[1.061,0.963,0.436,0.946,1.856,1.228,0.994,1.049,0.489,1.105,0.922,0.356,2.3,1.936,1.054],"paint":[10.728,10.752,10.311,9.126,9.987,10.45,10.219,9.974,10.099,10.375,10.538,9.92,10.885,9.715,11.438]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"06_remove-one-1k","v":{"total":[38.08,40.582,40.638,39.584,36.937,42.272,36.264,43.193,42.279,37.643,44.256,41.369,39.64,38.226,43.943],"script":[7.385,7.186,7.918,7.369,6.455,6.981,6.564,6.955,7.967,7.322,7.052,6.615,6.575,7.508,6.503],"paint":[29.907,32.432,31.929,31.42,29.244,33.256,28.793,30.492,31.577,29.297,29.341,32.072,28.717,29.314,29.901]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"07_create10k","v":{"total":[455.09,449.1,432.973,448.495,447.404,445.415,456.273,447.443,451.935,446.792,432.096,429.225,428.958,431.126,790.926],"script":[93.912,94.151,93.04,92.906,92.969,92.224,95.409,93.87,93.868,92.995,93.395,93.286,91.919,95.285,91.547],"paint":[352.006,345.723,330.966,345.708,344.902,344.362,347.103,344.52,348.827,343.28,330.229,326.447,326.055,327.277,339.826]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.8,51.875,46.821,57.78,54.711,57.711,53.743,52.72,47.402,57.131,56.602,56.272,57.606,55.459,53.081],"script":[7.632,7.292,7.386,7.572,7.669,8.411,8.569,7.757,7.854,7.797,7.911,7.591,7.621,7.489,7.877],"paint":[37.79,37.512,37.397,38.541,39.754,38.732,38.127,38.271,37.915,38.825,37.662,38.41,38.198,38.326,37.135]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"09_clear1k_x8","v":{"total":[12.547,14.582,37.406,12.47,13.438,11.626,12.268,16.92,37.129,12.265,13.256,13.193,12.182,12.156,40.089],"script":[9.881,10.426,10.155,10.493,11.242,9.964,10.097,11.538,9.931,9.58,10.173,10.581,9.116,9.994,12.128],"paint":[2.455,1.009,2.287,1.853,2.005,1.55,2.075,1.923,2.173,1.746,1.383,0.505,2.954,1.684,1.947]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5519618988037109]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.624457359313965]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.6785879135131836]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0083017349243164]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[28.937386512756348]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[22.40234375]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.15234375]}}, -{"f":"elm-v0.19.1-3-non-keyed","b":"43_first-paint","v":{"DEFAULT":[79.9]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"01_run1k","v":{"total":[40.902,45.135,45.812,41.761,48.264,48.62,45.02,43.031,43.903,46.898,46.193,44.738,48.33,46.066,46.5],"script":[2.747,2.895,3.053,2.87,2.927,3,2.98,2.912,2.982,3.111,2.806,2.84,2.792,2.858,2.881],"paint":[33.509,34.169,33.175,33.733,33.675,33.923,33.773,34.159,33.756,34.115,33.918,34.29,34.064,33.714,33.969]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"02_replace1k","v":{"total":[25.375,27.533,29.041,23.867,29.281,27.802,20.879,22.326,24.262,19.841,26.744,28.091,27.448,28.961,28.421],"script":[3.614,4.486,4.066,3.982,3.652,4.386,4.424,4.166,4.388,4.11,4.386,4.416,4.14,4.182,4.498],"paint":[14.449,14.281,14.669,13.804,14.022,14.335,14.53,14.06,14.251,13.694,14.507,14.366,14.669,14.796,14.543]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"03_update10th1k_x16","v":{"total":[20.337,20.089,35.541,19.546,19.288,19.237,35.083,19.312,35.813,19.31,20.569,34.295,22.072,34.616,34.692],"script":[3.207,3.495,4.873,3.169,3.389,3.716,4.207,4.048,4.037,3.895,3.119,3.014,3.952,3.576,3.44],"paint":[14.821,13.981,14.621,15.295,15.082,15.388,14.724,14.169,15.727,14.258,14.391,16.107,15.473,14.875,14.801]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"04_select1k","v":{"total":[8.433,8.49,7.801,10.962,8.367,7.771,8.216,9.243,7.928,8.294,8.302,9.298,7.847,8.797,7.985,11.411,8.633,9.709,8.825,8.813,8.779,8.248,8.024,7.641,8.236],"script":[6.228,6.275,4.704,5.784,5.425,5.558,4.661,5.076,5.158,4.734,5.917,6.201,5.488,6.761,5.717,5.945,6.264,6.132,6.142,5.966,5.871,5.779,5.469,5.407,5.178],"paint":[1.692,1.481,2.089,1.758,2.404,2.104,2.397,1.605,2.663,3.449,2.003,1.63,2.257,1.914,2.062,2.358,2.256,2.104,2.577,2.732,2.098,1.683,2.424,2.128,2.08]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"05_swap1k","v":{"total":[11.985,13.209,28.458,12.379,13.439,27.729999999999997,27.451,11.314,11.745,14.164,27.505000000000003,14.198,13.056,12.018,12.754],"script":[0.834,0.521,1.304,0.249,0.247,1.889,1.076,1.129,1.024,0.653,0.234,1.414,0.261,0.338,1.431],"paint":[10.105,9.749,11.119,11.167,12.166,9.917,10.11,9.804,9.644,10.765,12.026,11.102,11.236,9.802,10.457]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"06_remove-one-1k","v":{"total":[18.725,22.149,16.556,15.776,17.818,17.156,23.671,15.998,20.215,17.177,16.227,15.338,16.562,20.228,19.43],"script":[1.679,1.398,1.409,1.463,1.65,1.395,1.551,1.715,1.722,1.654,1.498,1.556,1.642,1.689,1.439],"paint":[14.159,14.731,13.766,13.666,14.308,13.825,14.469,14.152,13.503,14.616,14.203,13.657,13.579,14.628,13.608]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"07_create10k","v":{"total":[491.093,487.122,483.581,498.88,486.4,483.278,482.04,479.178,494.944,478.057,488.091,477.942,477.648,487.288,479.424],"script":[130.072,131.596,138.384,129.446,139.021,138.375,136.2,135.683,135.016,136.619,131.254,135.152,135.184,127.79,136.333],"paint":[350.145,344.281,331.721,356.874,335.103,335.081,335.303,334.555,346.323,333.906,347.093,335.123,332.513,347.701,333.559]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[60.986,59.597,59.46,59.232,61.846,61.32,61.99,61.411,62.09,62.292,61.772,62.743,62.109,60.395,63.996],"script":[11.813,11.039,11.335,11.486,12.048,12.031,12.205,11.551,12.283,11.77,12.102,11.66,12.101,11.501,12.03],"paint":[39.859,39.626,39.38,38.683,40.07,40.108,40.475,41.3,40.574,41.272,40.429,39.951,40.866,40.175,43.439]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"09_clear1k_x8","v":{"total":[14.339,15.626,15.648,15.276,15.653,18.112,30.455000000000005,14.877,15.519,15.085,15.39,30.966,17.866,15.77,16.621],"script":[12.726,13.608,13.044,13.171,13.322,13.641,12.852,13.309,13.025,12.956,12.46,13.136,12.993,12.461,12.326],"paint":[1.55,1.205,1.781,0.761,1.619,1.847,2.322,1.509,1.481,2.069,1.648,1.835,2.777,1.889,2.716]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6624746322631836]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"22_run-memory","v":{"DEFAULT":[4.240492820739746]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.503320693969727]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.235123634338379]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[35.7040901184082]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[41.4462890625]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[12.2041015625]}}, -{"f":"fast-v2.0.0-beta.26-non-keyed","b":"43_first-paint","v":{"DEFAULT":[80.1]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"01_run1k","v":{"total":[44.67,45.108,59.197,57.066,59.092,56.097,44.96,44.862,45.217,57.118,44.791,44.953,57.861,57.081,46.483],"script":[12.442,12.25,12.127,11.842,12.907,11.458,12.656,12.112,11.379,11.972,12.454,12.024,12.654,11.842,12.85],"paint":[31.979,32.637,33.364,32.561,32.809,32.231,32.079,32.504,33.594,32.759,32.095,32.664,32.785,32.719,33.367]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"02_replace1k","v":{"total":[25.275,23.487,25.396,21.787,23.004,24.338,24.228,22.203,22.195,22.267,24.43,25.127,22.542,25.132,25.768],"script":[7.95,8.32,7.535,7.413,7.4,7.639,8.007,7.841,7.665,7.509,8.009,7.608,7.599,7.086,7.539],"paint":[14.814,14.931,14.614,14.153,14.96,15.814,14.569,14.142,14.308,14.54,14.415,14.708,14.448,14.831,15.75]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"03_update10th1k_x16","v":{"total":[19.87,19.71,18.933,18.128,21.559,18.668,18.301,19.769,21.455,18.446,19.919,18.924,17.937,23.013,18.548],"script":[4.917,3.648,3.735,4.439,4.61,3.814,3.944,4.129,4.428,3.53,3.66,3.938,3.77,4.037,4.299],"paint":[14.603,14.793,15.075,13.57,15.446,14.704,13.653,13.488,16.317,14.137,14.778,13.024,13.637,15.962,13.294]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"04_select1k","v":{"total":[8.251,7.867,15.191,11.925,10.536,6.85,8.91,8.022,8.22,7.111,4.385,6.502,13.381,10.398,4.338,6.752,8.038,3.827,16.201,10.655,4.643,5.719,3.694,3.828,6.77],"script":[2.638,3.133,2.544,1.847,2.257,3.279,1.844,1.787,2.855,1.857,1.535,2.098,1.298,2.774,2.318,3.389,2.751,1.356,3.828,2.92,1.386,1.335,1.232,1.671,2.717],"paint":[4.269,3.793,5.14,4.476,3.211,3.664,4.367,3.933,3.12,2.812,2.728,4.637,3.125,4.054,1.166,3.847,4.77,1.442,4.41,4.208,1.75,2.215,1.812,1.711,3.176]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"05_swap1k","v":{"total":[16.982,13.907,12.199,54.801,54.943,54.238,11.526,56.825,53.182,56.372,12.925,60.407,11.902,54.87,11.983],"script":[2.162,1.326,1.642,2.046,1.536,1.784,1.741,1.494,1.326,1.745,1.421,1.572,2.382,1.042,2.017],"paint":[10.331,10.019,9.71,10.073,10.191,10.03,9.666,11.505,9.079,11.453,9.588,11.433,9.305,11.172,9.196]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"06_remove-one-1k","v":{"total":[44.96,43.346,45.039,46.883,45.113,45.233,45.216,45.736,46.575,45.636,43.768,49.092,44.267,42.367,40.974],"script":[12.299,13.739,37.087,13.436,37.306,37.281,36.737,37.797,12.971,37.479,35.56,13.401,36.491,11.825,12.002],"paint":[31.719,28.941,30.125,29.55,29.67,31.018,30.313,31.631,32.862,30.954,30.468,31.236,29.908,29.539,28.027]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"07_create10k","v":{"total":[1485.217,1472.941,1438.897,1447.172,454.46,455.628,453.914,454.598,1445.447,454.524,1412.313,457.311,456.932,1453.099,452.584],"script":[113.105,113.19,113.6,113.755,117.166,115.277,115.454,114.541,113.306,116.904,113.151,119.084,119.373,111.018,116.022],"paint":[352.615,342.53,353.221,345.97,323.159,325.175,324.31,324.275,344.933,322.916,342.49,323.591,322.638,338.181,322.043]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[54.418,55.659,53.107,55.733,54.282,54.498,54.834,52.608,95.55,55.182,55.126,55.379,56.056,53.967,53.892],"script":[14.394,14.257,12.876,13.938,14.716,14.392,13.954,13.585,14.165,13.71,14.874,14.598,13.909,14.557,13.521],"paint":[39.451,40.076,38.899,40.35,39.212,39.266,40.249,38.026,38.711,40.239,39.594,40.193,40.792,39.038,39.393]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"09_clear1k_x8","v":{"total":[11.93,11.683,11.324,14.232,14.213,13.766,11.602,11.872,14,11.201,12.119,12.076,15.295,11.668,13.847],"script":[10.183,9.984,9.531,10.507,9.883,10.506,9.697,10.03,10.218,9.587,9.785,10.082,10.939,9.634,11.165],"paint":[1.641,1.605,1.384,2.635,3.155,2.474,1.81,1.059,2.843,1.532,2.249,1.907,2.958,1.957,2.462]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5707340240478516]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"22_run-memory","v":{"DEFAULT":[5.72432804107666]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.706169128417969]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0058984756469727]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[49.632941246032715]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[16.8798828125]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.1337890625]}}, -{"f":"frei-hooks-v1.1.9-non-keyed","b":"43_first-paint","v":{"DEFAULT":[85]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"01_run1k","v":{"total":[51.13,50.425,51.025,51.061,51.433,50.607,49.531,48.604,50.686,49.399,51.682,49.536,49.977,49.713,49.979],"script":[15.681,15.245,15.505,15.282,15.599,15.507,14.919,14.997,15.567,14.839,15.338,15.212,15.134,14.58,15.341],"paint":[35.007,34.742,35.09,35.342,35.402,34.674,34.171,33.062,34.679,34.137,35.912,33.898,34.425,34.68,34.215]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"02_replace1k","v":{"total":[24.446,22.555,22.471,22.903,22.165,23.142,23.497,22.431,22.347,22.18,22.815,22.806,22.438,23.53,23.278],"script":[8.167,7.804,7.889,7.953,7.556,8.302,8.399,7.944,7.814,7.557,7.9,7.937,7.969,8.183,7.959],"paint":[15.831,14.331,14.128,14.507,14.161,14.404,14.681,14.046,14.083,14.178,14.464,14.452,14.024,14.937,14.854]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"03_update10th1k_x16","v":{"total":[26.887,25.767,27.896,27.022,25.634,28.002,25.632,26.717,26.047,27.278,26.374,25.232,26.725,26.034,25.866],"script":[10.177,10.209,11.891,10.845,9.264,10.904,10.244,10.07,10.11,10.145,10.126,9.9,9.544,10.199,10.285],"paint":[15.7,13.753,13.238,14.954,14.595,14.356,13.7,14.891,13.853,14.85,14.939,14.007,15.634,13.719,14.336]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"04_select1k","v":{"total":[6.605,6.849,7.131,7.014,7.25,7.56,7.829,6.255,7.483,6.492,6.636,6.851,8.314,7.312,6.575,7.908,7.321,7.062,6.466,6.387,6.837,6.502,6.451,8.072,6.745],"script":[4.444,4.089,4.545,4.269,4.85,4.617,5.266,4.497,5.078,4.344,4.445,4.252,5.089,4.116,4.406,5.117,4.312,4.089,4.422,4.259,4.599,4.554,3.964,4.372,4.778],"paint":[2.034,2.595,0.851,2.216,1.447,1.944,1.638,1.641,2.287,1.343,1.14,2.468,1.934,2.522,1.656,1.961,2.134,2.835,1.924,1.188,2.11,1.589,1.389,3.197,1.846]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"05_swap1k","v":{"total":[15.683,14.703,15.497,15.685,16.039,15.308,15.048,15.811,15.39,16.008,15.695,15.307,14.954,15.128,15.992],"script":[4.844,4.113,4.105,4.497,3.762,4.396,3.953,4.666,4.183,4.849,4.369,4.242,4.158,4.341,4.336],"paint":[9.245,9.473,9.862,9.688,10.491,10.02,9.542,9.257,9.875,9.06,10.518,9.523,8.618,9.832,10.388]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"06_remove-one-1k","v":{"total":[46.016,45.304,46.673,45.073,45.351,45.585,47.943,46.103,46.381,46.62,45.422,45.792,47.377,44.993,47.646],"script":[15.231,14.68,15.008,14.486,14.794,15.391,15.304,14.81,15.106,15.456,14.796,14.877,15.4,14.479,16.112],"paint":[29.976,29.327,30.329,29.72,29.658,29.388,31.814,30.348,29.963,30.028,29.792,29.995,30.75,29.688,30.433]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"07_create10k","v":{"total":[495.692,492.264,492.047,515.328,492.603,492.039,493.399,493.298,495.833,492.905,489.936,515.477,492.517,489.86,494.888],"script":[149.432,150.076,148.369,149.482,148.323,150.068,150.094,149.432,151.169,148.594,148.738,149.63,149.119,146.871,149.738],"paint":[338.248,335.319,336.894,358.889,337.171,335.087,335.938,337.047,337.863,337.492,334.487,358.947,336.576,336.284,337.78]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[58.157,59.201,58.622,58.258,58.665,58.788,59.437,58.285,58.364,59.212,60.408,58.15,58.687,58.546,57.944],"script":[17.474,18.318,17.892,17.662,17.979,17.801,18.375,17.329,17.927,18.411,18.903,17.129,17.291,17.754,17.594],"paint":[39.764,39.96,39.835,39.681,39.798,40.087,40.149,40.063,39.406,39.851,40.568,40.108,40.419,39.89,39.398]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"09_clear1k_x8","v":{"total":[21.666,21.544,20.9,22.137,22.304,22.755,22.175,20.957,21.619,21.467,21.155,20.736,21.375,21.236,21.059],"script":[19.448,19.585,19.265,20.399,19.907,20.817,20.094,19.618,19.384,19.084,19.214,19.07,19.044,19.05,19.246],"paint":[2.089,1.583,1.198,0.774,1.466,1.246,1.99,0.702,2.102,1.786,1.649,0.386,2.231,1.561,1.731]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.621800422668457]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.9554786682128906]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.319791793823242]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.2683067321777344]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.139659881591797]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[63.119140625]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[13.2578125]}}, -{"f":"gyron-v0.0.16-non-keyed","b":"43_first-paint","v":{"DEFAULT":[114.7]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"01_run1k","v":{"total":[49.382,47.263,49.716,46.798,46.977,48.017,49.218,47.316,48.818,47.538,47.991,47.907,48.259,48.973,48.557],"script":[13.18,11.784,12.941,11.366,11.971,11.773,12.979,11.568,11.659,11.757,12.139,12.835,12.133,12.005,12.771],"paint":[35.75,35.047,36.318,34.994,34.564,35.807,35.797,35.327,36.69,35.335,35.416,34.634,35.67,36.525,35.335]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"02_replace1k","v":{"total":[21.147,22.185,20.854,22.163,21.054,21.81,21.703,23.342,23.408,21.963,21.809,22.612,21.753,22.146,22.941],"script":[6.601,7.428,6.45,7.164,6.379,7.312,7.33,7.795,7.177,7.316,7.203,7.518,6.581,7.288,7.482],"paint":[14.111,14.295,13.956,14.554,14.201,14.034,13.9,15.116,15.766,14.176,14.16,14.661,14.734,14.397,14.94]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[37.368,40.36,37.978,40.895,37.046,38.147,38.009,41.529,38.483,41.477,38.909,37.857,38.852,38.3,38.825],"script":[21.113,22.803,21.306,24.712,21.008,22.162,21.809,23.073,22.102,23.872,22.292,21.229,21.862,22.217,21.694],"paint":[14.192,16.321,15.638,14.754,14.554,14.62,14.677,16.436,14.735,16.177,14.363,15.033,14.996,14.926,14.582]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"04_select1k","v":{"total":[23.711,24.341,25.867,23.65,25.653,23.865,24.59,24.771,25.267,25.734,25.247,25.301,24.623,24.394,24.283,24.488,24.491,24.849,25.419,24.12,23.305,24.672,25.971,23.861,23.263],"script":[20.419,20.721,22.015,19.851,21.699,20.936,21.433,21.065,21.575,22.008,21.558,21.896,20.841,21.258,20.456,20.759,21.316,21.517,22.181,20.119,19.852,21.843,22.027,21.058,19.691],"paint":[1.368,2.272,2.437,2.637,2.341,2.017,1.286,3.367,2.514,2.691,2.503,2.766,2.577,2.352,2.115,3.03,2.111,3.13,1.641,3.097,2.376,2.232,3.007,2.122,2.661]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"05_swap1k","v":{"total":[32.467,32.99,33.056,32.141,33.697,32.314,33.277,34.158,31.881,33.174,35.187,34.04,32.1,34.631,32.642],"script":[20.751,21.423,21.88,20.255,22.527,20.571,21.618,21.605,19.977,21.257,22.152,21.13,20.389,21.94,20.941],"paint":[10.283,9.233,9.748,10.207,9.641,9.489,9.87,11.835,9.261,10.441,11.661,10.611,10.28,9.891,9.888]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"06_remove-one-1k","v":{"total":[41.98,44.974,41.646,45.375,41.838,46.12,45.959,45.895,42.563,44.287,42.417,47.041,42.399,42.31,46.837],"script":[11.38,11.797,10.826,10.614,10.927,11.135,11.419,11.793,11.432,11.4,11.195,11.301,11.353,11.314,12.284],"paint":[29.788,32.151,29.88,33.973,29.923,33.902,33.599,33.308,29.982,31.913,30.216,34.673,29.868,30.105,33.489]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"07_create10k","v":{"total":[524.166,509.126,483.177,488.116,479.698,500.896,506.503,509.937,481.998,485.609,498.547,499.606,497.748,484.155,482.353],"script":[134.384,134.595,129.251,130.049,130.799,135.674,133.842,134.28,134.589,135.644,134.68,134.734,134.317,135.18,133.929],"paint":[382.455,367.226,347.043,351.213,341.711,358.336,365.846,368.724,340.586,343.107,357.074,358.071,356.531,342.109,341.631]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[61.612,61.111,62.227,60.97,62.378,62.325,62.342,61.655,62.84,61.566,62.264,62.291,63.724,60.99,61.047],"script":[20.779,20.702,21.191,20.753,21.743,21.832,21.067,20.583,21.139,20.697,21.573,21.707,21.558,20.82,20.473],"paint":[39.904,39.529,40.134,39.284,39.702,39.589,40.264,40.161,40.79,39.916,39.76,39.672,41.219,39.232,39.666]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"09_clear1k_x8","v":{"total":[27.163,25.882,28.059,27.422,28.779,27.82,27.282,27.109,24.943,25.896,27.228,28.135,27.655,24.132,27.716],"script":[25.232,23.717,25.93,25.814,26.411,25.402,25.198,24.955,22.783,24.242,25.325,25.955,25.391,22.708,26.147],"paint":[1.827,1.593,2.02,1.127,1.338,1.845,1.983,2.033,2.057,1.533,1.802,1.675,2.162,0.388,1.451]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.8120155334472656]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[5.879240989685059]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.363706588745117]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[6.155579566955566]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[49.184922218322754]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[152.435546875]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[21.8876953125]}}, -{"f":"halogen-v7.0.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[213.1]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"01_run1k","v":{"total":[56.738,57.335,58.285,57.302,57.19,56.051,56.952,57.487,56.835,56.632,57.652,56.719,57.283,56.546,56.436],"script":[21.852,22.468,22.613,22.295,22.116,21.731,22.246,22.778,22.274,22.713,22.503,22.786,22.158,22.053,21.68],"paint":[34.454,34.421,35.195,34.557,34.561,33.895,34.238,34.256,34.103,33.469,34.676,33.502,34.653,34.043,34.291]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"02_replace1k","v":{"total":[26.049,27.368,26.128,26.159,25.762,26.291,26.809,25.748,26.878,28.693,26.709,26.379,26.738,26.542,25.21],"script":[11.64,12.51,11.767,11.843,11.476,11.919,11.978,11.57,12.146,12.766,11.933,11.936,11.833,11.82,10.688],"paint":[13.976,14.403,13.919,13.882,13.856,13.969,14.393,13.712,14.297,15.474,14.354,14.005,14.478,14.301,14.103]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"03_update10th1k_x16","v":{"total":[17.609,17.525,18.3,17.372,18.103,17.446,17.252,18.434,17.533,16.939,17.556,17.568,18.328,16.864,17.856],"script":[2.367,1.849,1.557,1.331,1.933,2.43,1.082,2.632,1.45,1.961,2.702,1.64,2.437,1.525,2.255],"paint":[13.85,14.182,14.985,14.79,14.491,13.949,14.453,13.629,14.565,13.132,13.467,14.786,14.67,14.327,14.123]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"04_select1k","v":{"total":[5.816,5.939,5.437,6.387,5.926,5.533,5.076,6.006,6.286,5.279,5.859,6.362,5.466,5.89,6.125,6.143,6.008,5.62,5.664,5.514,5.154,6.103,5.39,7.449,5.381],"script":[3.41,3.767,3.102,3.898,3.337,3.284,3.112,2.889,3.352,3.062,3.426,3.982,3.247,2.893,3.589,3.469,2.841,3.704,2.935,3.041,3.093,3.429,3.201,3.787,3.203],"paint":[1.855,2.063,1.351,2.367,1.727,1.434,1.163,2.999,2.225,2.112,1.73,2.262,2.103,2.882,1.586,1.262,2.691,1.456,2.278,1.991,1.955,2.568,2.09,2.427,1.603]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"05_swap1k","v":{"total":[11.584,11.427,11.471,11.593,11.16,11.201,12.393,11.145,11.135,11.782,13.038,11.243,12.146,12.107,11.895],"script":[0.438,0.668,0.118,0.133,0.122,0.12,0.48,0.118,0.116,0.123,0.625,0.22,0.86,0.866,0.826],"paint":[9.357,8.693,9.452,8.634,10.01,8.795,9.741,10.029,9.987,10.302,10.745,8.632,9.073,10.013,10.089]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"06_remove-one-1k","v":{"total":[15.331,15.135,15.284,15.109,15.953,15.505,15.294,15.161,15.405,15.387,15.363,15.368,15.428,15.141,15.261],"script":[0.123,0.343,0.378,0.332,0.37,0.192,0.126,0.119,0.124,0.375,0.464,0.366,0.136,0.123,0.362],"paint":[14.381,13.993,13.939,13.959,14.847,14.626,14.42,14.267,14.586,13.998,14.128,14.256,14.544,13.989,14.232]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"07_create10k","v":{"total":[597.704,591.292,607.641,596.871,612.279,600.482,599.097,596.011,594.347,602.887,595.928,594.205,595.171,606.014,593.887],"script":[231.679,229.865,243.301,234.496,243.019,232.42,237.788,234.296,229.636,242.17,230.993,231.922,229.147,231.124,230.466],"paint":[359.115,354.112,357.493,355.856,361.987,361.067,354.399,354.841,358.201,354.122,358.048,355.421,359.298,368.314,356.718]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[68.594,68.531,68.018,69.772,68.978,68.537,69.318,68.764,69.238,69.753,68.559,69.761,68.73,70.476,69.524],"script":[28.61,29.044,28.635,28.728,28.389,28.6,29.348,28.806,28.262,28.829,28.726,29.399,28.602,28.986,29.202],"paint":[39.082,38.581,38.458,40.137,39.678,39.055,39.094,39.072,40.098,39.835,38.88,39.437,39.167,40.574,39.405]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"09_clear1k_x8","v":{"total":[13.461,13.993,13.854,15.394,13.768,13.873,14.682,13.94,14.257,14.924,13.819,14.113,14.198,14.17,13.517],"script":[11.841,12.114,11.98,12.814,11.636,12.227,12.676,11.839,11.734,12.206,11.381,11.768,11.87,12.36,12.168],"paint":[1.535,1.786,1.134,2.06,2.045,1.365,1.909,1.396,2.108,2.351,2.342,1.213,1.21,1.702,1.256]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5830469131469727]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.9488906860351562]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.04698371887207]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.2535133361816406]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.374146461486816]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[14.775390625]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.0458984375]}}, -{"f":"hydro-js-v1.5.14-non-keyed","b":"43_first-paint","v":{"DEFAULT":[58.5]}}, -{"f":"imba-v1.5.2-non-keyed","b":"01_run1k","v":{"total":[40.197,45.861,46.005,46.105,39.886,42.507,43.221,46.44,45.735,44.429,44.687,40.698,45.774,43.882,39.755],"script":[1.379,1.353,1.404,1.311,1.274,1.286,1.354,1.314,1.372,1.281,1.359,1.367,1.368,1.366,1.208],"paint":[32.674,32.744,33.12,33.029,32.837,33.822,33.006,35.986,33.057,34.402,32.962,32.789,32.907,32.934,33.286]}}, -{"f":"imba-v1.5.2-non-keyed","b":"02_replace1k","v":{"total":[23.749,18.657,15.3,22.703,24.649,18.339,17.078,15.179,16.358,16.034,17.679,19.043,19.583,20.715,21.961],"script":[1.185,1.181,1.068,1.123,1.152,1.158,1.025,1.029,1.07,1.068,1.143,1.159,1.154,1.154,1.207],"paint":[14.221,13.698,13.454,13.68,14.741,14.244,14.344,14.04,15.173,14.173,13.713,14.124,14.046,14.02,13.786]}}, -{"f":"imba-v1.5.2-non-keyed","b":"03_update10th1k_x16","v":{"total":[15.567,15.61,19.041,17.239,16.023,17.529,14.924,15.433,15.952,16.882,16.269,15.876,19.416,16.483,32.117000000000004],"script":[1.62,0.995,1.324,2.082,1.729,0.965,0.838,1.538,0.724,1.965,1.253,1.016,1.085,2.106,1.662],"paint":[13.847,14.268,15.331,13.31,14.198,13.788,12.3,13.03,12.645,14.792,14.466,13.836,15.404,13.439,14.666]}}, -{"f":"imba-v1.5.2-non-keyed","b":"04_select1k","v":{"total":[3.62,3.234,3.492,3.437,3.934,6.405,3.595,4.081,3.997,3.73,6.176,3.383,3.312,3.483,4.191,3.74,3.804,2.952,3.77,3.783,4.455,3.752,3.352,3.639,3.553],"script":[0.778,0.85,1.196,0.974,0.283,1.636,0.973,1.459,1.503,1.031,1.092,1.702,1.123,1.588,1.599,1.752,1.172,1.424,0.293,1.235,1.488,1.588,1.334,1.328,1.206],"paint":[2.364,1.516,1.522,1.916,3.52,2.438,1.649,1.618,2.372,2.601,1.728,1.03,2.07,1.333,2.471,1.412,2.524,1.406,2.409,1.443,2.846,1.659,1.902,1.784,1.203]}}, -{"f":"imba-v1.5.2-non-keyed","b":"05_swap1k","v":{"total":[11.111,11.848,26.837,12.037,11.45,27.026000000000003,26.339,27.123,10.491,11.594,11.638,27,26.369,10.987,26.541999999999998],"script":[0.243,0.243,1.211,0.788,0.202,0.975,1.08,0.928,1.565,0.256,1.366,0.78,0.255,0.219,0.252],"paint":[9.773,9.749,9.587,10.188,10.401,10.312,9.079,10.17,8.826,10.403,9.507,10.169,9.713,9.975,10.248]}}, -{"f":"imba-v1.5.2-non-keyed","b":"06_remove-one-1k","v":{"total":[35.452,30.613,30.518,36.127,30.87,33.675,30.934,30.423,30.132,31.726,31.239,31.241,31.313,31.881,33.925],"script":[2.02,1.676,1.665,1.918,1.485,1.571,1.524,1.408,1.803,1.544,1.754,1.793,1.881,1.598,1.428],"paint":[28.61,28.812,28.727,31.835,28.926,29.806,29.293,28.872,27.979,29.86,28.098,28.568,29.31,28.317,28.367]}}, -{"f":"imba-v1.5.2-non-keyed","b":"07_create10k","v":{"total":[457.909,441.124,462.006,438.113,443.772,459.886,439.032,452.851,458.168,458.345,455.634,455.505,459.189,459.033,445.317],"script":[97.909,98.99,97.902,98.549,97.826,98.163,97.97,96.042,96.326,99.675,96.645,99.021,97.846,96.844,99.069],"paint":[354.839,335.455,351.829,335.079,333.006,350.541,336.148,344.098,348.784,350.822,354.047,345.011,350.093,350.797,334.662]}}, -{"f":"imba-v1.5.2-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[53.944,54.404,53.411,58.965,56.782,60.081,58.142,57.139,58.577,53.28,58.521,54.193,53.882,57.217,54.546],"script":[10.631,10.826,10.391,10.72,10.675,10.673,10.41,10.723,10.534,9.88,10.742,10.635,10.537,11.093,10.448],"paint":[37.547,37.608,37.013,38.124,37.533,38.022,38.007,37.536,36.858,37.586,37.443,37.483,37.36,37.64,37.683]}}, -{"f":"imba-v1.5.2-non-keyed","b":"09_clear1k_x8","v":{"total":[13.507,13.898,14.411,14.268,13.768,30.053000000000004,15.877,13.418,14.21,14.363,13.204,14.825,14.098,13.586,14.452],"script":[11.235,10.764,11.571,12.161,11.465,13.012,13.596,11.476,12.391,12.912,11.11,12.781,11.03,10.741,10.874],"paint":[0.863,2.167,1.81,1.06,1.857,1.047,1.856,1.885,1.756,1.027,1.715,1.06,3.014,1.854,1.841]}}, -{"f":"imba-v1.5.2-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7588653564453125]}}, -{"f":"imba-v1.5.2-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.5638742446899414]}}, -{"f":"imba-v1.5.2-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.7335472106933594]}}, -{"f":"imba-v1.5.2-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.61740779876709]}}, -{"f":"imba-v1.5.2-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[27.33153247833252]}}, -{"f":"imba-v1.5.2-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[64.1015625]}}, -{"f":"imba-v1.5.2-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[15.0302734375]}}, -{"f":"imba-v1.5.2-non-keyed","b":"43_first-paint","v":{"DEFAULT":[107.9]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"01_run1k","v":{"total":[116.107,114.768,115.067,114.976,115.329,115.392,115.041,115.367,115.029,115.348,115.166,115.274,115.239,115.517,115.322],"script":[18.425,17.539,17.597,17.702,17.655,17.783,17.803,18.09,17.859,18.104,17.459,18.317,17.496,18.039,18.005],"paint":[29.784,29.592,29.326,29.584,29.142,29.516,29.765,29.366,29.834,29.517,29.696,29.842,29.614,29.564,29.547]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"02_replace1k","v":{"total":[89.043,89.366,88.639,89.665,88.223,88.703,90.196,88.876,88.471,89.141,89.698,88.705,88.833,88.59,89.676],"script":[16.668,16.276,16.643,16.383,16.33,16.473,16.156,16.142,16.313,16.369,16.25,16.454,16.362,16.728,16.511],"paint":[16.242,14.532,14.653,14.686,15.091,14.492,14.162,14.509,14.481,14.729,15.116,14.484,14.709,14.518,14.394]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[159.931,161.364,158.669,159.19,159.578,160.952,157.384,162.293,159.592,159.668,157.691,160.071,158.095,159.358,157.09],"script":[66.433,67.748,67.283,68.032,68.322,67.075,66.991,67.89,66.544,67.006,67.073,67.582,67.648,66.898,67.572],"paint":[15.1,14.798,16.413,14.844,15.754,14.476,15.881,15.443,15.906,14.244,14.519,16.132,15.531,16.189,16.158]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"04_select1k","v":{"total":[116.94,122.236,124.464,121.475,115.991,124.767,116.104,122.636,122.975,115.921,122.818,113.971,115.071,122.539,123.116,124.945,122.904,123.456,115.033,123.3,123.06,120.827,116.265,122.618,113.553],"script":[61.592,62.557,64.097,62.117,62.17,63.199,61.128,63.354,63.461,63.351,61.71,61.375,62.81,64.029,64.036,64.375,64.95,64.893,62.445,66.007,62.41,66.477,62.604,62.32,61.075],"paint":[2.371,3.608,3.45,4.119,3.558,4.932,3.292,2.214,2.752,3.178,3.377,3.673,2.17,2.583,3.946,1.988,2.269,3.798,3.285,3.638,2.61,4.1,4.235,2.846,3.59]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"05_swap1k","v":{"total":[158.418,159.557,158.941,160.139,159.15,158.489,160.339,161.251,159.768,160.93,158.744,159.625,159.73,157.969,160.774],"script":[65.825,64.781,61.321,64.495,64.419,64.82,64.703,63.984,64.779,65.517,65.401,65.915,63.377,64.787,65.537],"paint":[11.548,11.497,11.593,10.81,11.897,12.227,11.413,9.644,11.808,11.308,12.171,11.538,11.017,11.338,11.53]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"06_remove-one-1k","v":{"total":[117.433,118.198,117.8,118.319,117.158,116.351,116.926,117.549,117.834,119.374,119.493,118.279,120.311,117.149,116.248],"script":[35.589,36.054,35.822,36.133,34.765,34.741,35.114,36.631,35.197,35.508,36.03,34.444,36.285,34.945,35.094],"paint":[29.311,29.281,30.254,29.575,31.246,31.225,30.074,30.906,29.998,30.495,30.363,31.941,29.768,32.306,30.134]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"07_create10k","v":{"total":[940.369,923.64,922.83,914.977,923.489,916.814,923.649,932.152,923.641,922.941,923.786,906.92,940.5,931.576,916.878],"script":[173.289,170.451,170.618,170.521,168.24,165.821,164.833,171.281,170.829,165.294,173.413,164.252,173.881,172.132,163.667],"paint":[348.472,340.862,342.162,338.851,343.811,343.146,344.892,351.409,339.994,347.347,341.989,339.622,350.97,341.166,342.574]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[145.818,145.98,139.187,139.148,139.27,139.077,139.417,139.225,139.128,138.812,139.36,139.337,139.271,138.87,139.139],"script":[33.149,32.413,33.056,32.616,33.372,32.089,33.455,32.93,31.61,32.083,32.21,32.409,33.17,33.041,32.861],"paint":[33.782,34.513,33.25,33.682,33.479,33.577,33.467,33.52,33.398,33.429,33.386,33.238,33.389,33.146,33.593]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"09_clear1k_x8","v":{"total":[66.683,66.833,66.074,66.039,65.748,67.368,67.682,64.398,66.923,68.322,67.225,67.912,66.817,67.684,66.755],"script":[15.509,14.944,16.273,15.651,15.174,16.337,16.257,16.863,17.23,16.239,16.051,16.297,16.74,15.833,17.304],"paint":[3.233,3.141,1.624,2.474,2.434,1.856,1.575,2.199,1.924,2.255,1.591,2.596,2.159,2.396,1.922]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[5.3805694580078125]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[9.009295463562012]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[9.253120422363281]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[5.9250946044921875]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[38.473849296569824]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[946.77734375]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[243.220703125]}}, -{"f":"incr_dom-v0.15.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[1511.6]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"01_run1k","v":{"total":[38.871,38.561,38.689,39.183,39.063,37.975,39.013,39.551,39.459,38.975,39.859,39.752,41.053,40.936,39.409],"script":[5.546,5.4,5.617,5.407,5.581,5.211,5.322,5.805,5.765,5.741,5.567,5.983,5.693,5.462,5.737],"paint":[32.91,32.735,32.665,33.346,33.071,32.349,33.241,33.353,33.284,32.828,33.855,33.333,34.946,35.051,33.259]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"02_replace1k","v":{"total":[15.68,15.2,16.913,14.986,16.509,15.845,15.241,15.28,15.01,15.217,15.178,16.397,15.272,15.405,15.125],"script":[1.397,1.225,1.119,1.179,1.158,1.154,1.1,1.13,1.195,1.187,1.176,1.118,1.157,1.136,1.171],"paint":[13.849,13.567,15.401,13.429,14.947,14.281,13.723,13.774,13.419,13.63,13.599,14.891,13.694,13.905,13.548]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.836,16.115,16.676,15.982,16.637,16.905,16.666,17.051,16.366,16.815,16.292,16.6,16.536,17.199,16.451],"script":[1.852,1.139,1.505,1.456,1.316,1.291,1.647,1.68,1.253,1.072,1.022,1.224,1.259,1.654,1.176],"paint":[13.419,13.459,13.842,13.242,13.492,14.085,13.517,14.298,13.149,14.574,14.326,13.929,13.572,13.426,14.115]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"04_select1k","v":{"total":[3.446,3.22,3.382,2.936,3.138,3.191,6.562,3.041,2.925,3.261,2.676,3.112,5.087,3.101,3.017,3.227,2.562,3.317,3.982,3.023,3.242,4.61,5.579,3.08,4.384],"script":[0.973,0.596,0.91,0.499,0.808,1.102,1.205,0.786,0.506,0.881,0.173,0.888,0.696,0.994,0.669,0.829,0.615,0.913,1.016,0.609,0.173,0.947,1.004,0.863,0.62],"paint":[2.05,2.307,1.771,1.383,2.227,1.498,2.047,2.153,2.328,1.321,2.239,1.467,1.745,2.008,2.249,2.108,1.842,2.288,1.185,2.309,2.797,1.502,1.521,1.359,2.809]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"05_swap1k","v":{"total":[11.531,12.095,12.274,11.643,11.751,11.508,12.18,11.015,12.193,11.747,11.961,11.445,10.831,11.072,11.863],"script":[0.178,0.61,0.877,0.879,1.055,0.751,0.866,0.506,0.85,0.992,0.918,0.172,0.504,0.179,0.293],"paint":[9.921,9.096,10.39,9.007,9.279,8.737,9.686,9.566,9.662,9.005,9.568,10.428,8.965,9.833,10.597]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"06_remove-one-1k","v":{"total":[34.02,32.005,32.206,31.636,31.905,31.416,31.148,31.323,31.967,31.944,32.098,32.293,31.345,31.468,31.639],"script":[2.439,2.475,2.496,2.458,2.426,2.491,2.512,2.432,2.472,2.523,2.399,2.57,2.453,2.461,2.268],"paint":[30.575,28.374,28.783,28.247,28.076,28.06,27.732,28.141,28.789,28.408,28.927,28.656,28.15,28.257,28.47]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"07_create10k","v":{"total":[392.917,397.004,403.445,401.352,396.367,399.827,402.512,398.24,400.437,403.166,397.015,397.669,400.958,395.732,397.168],"script":[56.436,57.187,58.187,58.208,57.44,57.387,58.88,56.836,58.557,59.627,58.579,57.646,56.576,56.911,58.219],"paint":[329.774,332.344,338.5,336.4,332.145,335.682,336.911,334.613,335.175,336.82,331.718,333.333,337.657,332.13,332.162]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[43.627,43.156,44.16,43.63,44.047,43.883,43.451,44.584,42.84,44.671,45.11,44.508,44.216,44.053,46.021],"script":[5.251,5.386,5.114,5.861,5.744,5.482,5.732,5.841,5.416,5.426,5.559,5.771,5.711,5.708,5.591],"paint":[37.527,36.913,38.12,36.895,37.465,37.533,36.884,37.911,36.575,38.33,38.713,37.905,37.664,37.52,39.58]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"09_clear1k_x8","v":{"total":[12.667,12.237,12.181,12.694,12.764,12.704,13.235,13.301,12.685,12.385,13.94,12.679,13.24,12.401,13.209],"script":[10.756,10.613,10.732,10.973,10.695,10.764,11.588,11.432,10.682,10.044,11.603,10.201,10.774,10.453,10.732],"paint":[1.826,1.533,0.367,1.633,1.754,1.651,1.551,1.775,0.797,2.251,1.303,2.002,2.047,1.554,2.347]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5288782119750977]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.686009407043457]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.742860794067383]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7079181671142578]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[21.237048149108887]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[27.158203125]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.9365234375]}}, -{"f":"inferno-v8.2.2-non-keyed","b":"43_first-paint","v":{"DEFAULT":[86.7]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"01_run1k","v":{"total":[40.214,41.276,40.397,40.952,40.315,40.468,40.172,40.083,40.1,40.392,40.557,39.861,40.728,40.66,40.399],"script":[5.811,6.384,6.193,6.116,5.995,6.148,5.909,6.013,5.934,6.039,6.452,5.941,6.471,6.078,5.8],"paint":[33.987,34.455,33.801,34.411,33.941,33.908,33.873,33.642,33.716,33.927,33.69,33.499,33.813,34.166,34.159]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"02_replace1k","v":{"total":[14.636,14.763,15.228,16.504,14.439,14.802,14.715,14.729,15.341,15.569,14.624,14.944,15.484,14.395,15.677],"script":[1.056,1.037,1.024,1.02,1.009,0.97,1.015,1.013,1.085,1.092,0.992,1.086,1.076,1.002,1.046],"paint":[13.221,13.31,13.841,15.075,13.015,13.434,13.321,13.321,13.877,14.115,13.269,13.505,14.038,12.987,14.194]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.483,16.162,16.629,15.966,16.551,16.17,16.352,16.546,16.185,15.956,16.596,17.016,16.426,16.557,15.919],"script":[0.218,0.868,1.292,0.878,0.678,0.822,0.838,0.809,0.574,0.849,0.89,1.392,1.427,1.48,0.905],"paint":[14.531,13.507,13.055,13.536,14.917,14.206,14.207,14.128,13.872,13.836,14.175,14.558,13.494,13.749,13.738]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"04_select1k","v":{"total":[4.669,4.825,2.632,3.066,2.705,2.74,2.435,3.291,2.687,2.26,5.668,4.168,5.447,3.753,5.976,2.505,2.795,2.549,3.901,3.284,2.522,3.328,2.873,2.915,2.988],"script":[0.544,0.07,0.07,0.749,0.307,0.683,0.185,1.061,0.073,0.07,0.886,0.069,0.955,0.071,0.072,0.606,0.071,1.025,0.687,0.859,0.071,0.073,0.084,0.948,0.87],"paint":[1.336,1.275,2.452,1.445,2.289,1.93,1.28,2.12,2.514,2.093,1.708,1.649,2.069,2.528,1.599,1.802,2.62,1.426,3.059,2.327,1.629,3.142,1.852,1.862,1.436]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"05_swap1k","v":{"total":[11.118,11.14,11.646,10.889,11.004,10.94,10.797,11.156,12.715,11.176,10.501,11.299,11.403,11.495,10.902],"script":[0.073,0.089,0.074,0.074,0.32,0.077,0.55,0.069,1.001,0.082,0.328,0.841,0.096,0.556,0.081],"paint":[9.367,9.255,10.27,9.511,9.397,9.129,8.833,8.736,9.591,9.777,8.837,9.508,9.177,9.83,10.087]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"06_remove-one-1k","v":{"total":[31.798,31.961,31.465,31.916,32.387,31.486,31.906,32.592,32.968,33.655,32.998,32.702,31.922,33.979,32.888],"script":[2.294,1.983,1.982,2.326,2.315,1.916,2.191,2.153,2.231,2.263,2.277,2.304,2.311,1.984,1.935],"paint":[28.682,29.224,28.755,28.435,29.315,28.474,28.906,29.392,30.026,30.688,29.588,29.41,28.588,30.552,30.142]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"07_create10k","v":{"total":[422.427,417.874,418.823,424.898,419.933,419.457,420.662,421.95,415.498,417.696,415.273,418.247,418.456,417.127,417.053],"script":[74.08,73.637,71.99,75.761,73.475,73.329,72.039,75.275,74.726,73.027,73.462,74.468,71.998,73.161,73.094],"paint":[341.401,337.439,340.155,342.428,339.625,339.445,341.461,339.801,333.992,337.961,335.167,337.022,339.764,337.285,337.314]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[44.41,44.783,43.784,44.754,44.967,45.134,45.194,45.222,45.789,45.057,45.58,45.457,45.76,45.303,45.47],"script":[5.395,5.451,5.512,5.603,5.522,5.535,5.936,5.555,5.601,5.587,5.49,5.584,5.638,5.659,5.676],"paint":[38.128,38.444,37.382,38.354,38.606,38.735,38.381,38.794,39.331,38.596,39.203,38.985,38.998,38.757,38.939]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"09_clear1k_x8","v":{"total":[12.635,13.467,13.622,13.143,12.599,13.273,13.187,13.019,12.202,13.292,12.959,13.47,14.097,12.478,13.906],"script":[11.195,10.548,11.73,11.137,10.808,11.84,11.493,11.102,10.82,11.619,11.05,11.798,12.179,11.016,11.189],"paint":[1.333,1.925,1.205,1.915,1.702,1.341,0.853,1.825,1.284,1.561,1.066,0.98,1.831,1.374,2.598]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.5972986221313477]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.979879379272461]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.029573440551758]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.8490228652954102]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[15.637201309204102]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[26.1337890625]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[9.73828125]}}, -{"f":"kobold-v0.9.1-non-keyed","b":"43_first-paint","v":{"DEFAULT":[87.9]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"01_run1k","v":{"total":[59.883,58.167,59.303,59.918,60.39,58.294,60.452,58.598,58.587,60.771,58.491,57.77,59.387,59.303,60.918],"script":[23.847,21.626,22.098,22.894,22.881,22.035,23.431,23.514,23.695,23.807,23.349,23.385,24.175,23.278,23.587],"paint":[35.604,36.101,36.755,36.577,37.072,35.823,36.59,34.652,34.46,36.481,34.73,33.975,34.792,35.585,36.882]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"02_replace1k","v":{"total":[35.048,36.367,35.734,37.193,37.274,36.821,38.927,35.854,37.76,35.854,35.656,37.14,36.154,35.469,37.548],"script":[20.355,20.885,20.908,22.166,21.946,21.57,22.665,21.114,21.129,21.094,20.914,21.173,21.395,20.728,22.012],"paint":[14.234,15.076,14.354,14.575,14.877,14.786,15.726,14.293,16.169,14.321,14.282,15.497,14.367,14.287,15.084]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"03_update10th1k_x16","v":{"total":[69.532,69.164,68.43,72.078,69.138,69.578,69.722,70.154,69.565,69.678,69.395,69.1,69.519,70.514,70.899],"script":[53.36,52.521,52.81,54.43,52.669,53.279,53.577,53.6,53.236,52.771,53.532,52.375,52.986,53.409,53.813],"paint":[14.095,14.109,14.21,15.674,15.062,14.064,13.172,14.995,14.969,13.91,14.025,15.516,14.38,15.086,15.595]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"04_select1k","v":{"total":[53.492,53.468,53.295,53.543,54.339,53.633,53.536,53.057,53.577,54.218,53.524,53.547,53.198,52.656,53.477,52.967,53.188,53.017,53.039,52.564,56.037,52.949,58.049,52.554,53.91],"script":[49.953,49.893,50.223,50.498,50.647,50.659,49.706,50.292,50.834,50.978,49.525,50.439,49.964,49.877,49.844,50.451,50.629,49.892,50.013,49.9,51.624,50.118,53.703,50.146,50.395],"paint":[2.035,2.83,2.756,2.178,2.782,2.724,2.85,2.189,2.11,2.728,2.734,2.948,2.363,2.621,3.031,2.355,2.19,2.842,2.859,1.492,3.468,1.585,3.758,1.277,2.656]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"05_swap1k","v":{"total":[62.095,62.748,63.304,62.202,63.073,63.354,62.403,65.179,62.639,62.557,62.129,61.692,62.408,61.903,62.097],"script":[50.845,50.349,50.631,50.644,51.134,50.528,50.133,52.838,50.764,50.824,50.567,49.832,50.699,50.665,50.895],"paint":[9.793,10.746,11.511,10.277,9.981,10.921,10.51,10.844,10.351,10.027,9.843,11.214,9.97,9.953,10.188]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"06_remove-one-1k","v":{"total":[75.604,74.887,75.048,76.31,75.299,74.333,75.723,72.049,74.705,74.648,75.694,75.907,76.047,75.076,74.619],"script":[43.734,42.773,43.742,44.469,42.954,43.13,44.188,40.773,42.085,42.55,42.283,43.404,44.187,43.817,43.366],"paint":[31.031,30.959,30.135,30.693,31.333,30.455,30.524,30.48,31.499,30.927,32.249,31.538,30.856,30.222,30.116]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"07_create10k","v":{"total":[759.748,760.506,765.759,774.155,760.385,780.789,758.149,764.372,743.455,771.971,772.17,775.518,771.183,757.743,763.737],"script":[376.318,374.417,380.857,388.087,374.542,388.904,378.802,379.321,358.15,386.352,386.228,383.831,382.73,369.348,374.93],"paint":[376.758,379.378,378.201,379.279,378.701,385.056,372.558,378.142,378.446,378.747,379.175,384.82,381.444,381.676,382.007]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[85.496,84.64,85.5,84.235,85.012,85.961,84.089,86.24,84.819,84.772,85.805,84.949,86.071,84.71,84.4],"script":[43.028,43.967,44.541,43.469,44.024,44.458,43.677,44.693,44.043,44.234,44.514,44.115,44.774,44.271,43.645],"paint":[41.518,39.794,40.034,39.856,40.065,40.557,39.467,40.616,39.828,39.555,40.358,39.901,40.325,39.479,39.844]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"09_clear1k_x8","v":{"total":[24.828,24.807,23.088,24.872,22.844,24.409,23.325,26.868,24.213,24.878,23.542,23.834,24.515,24.276,24.639],"script":[22.989,22.181,21.145,22.985,20.812,22.489,21.275,24.463,22.035,22.963,21.295,22.309,22.902,22.096,22.551],"paint":[1.159,2.521,1.844,1.454,1.049,1.798,1.943,2.28,1.186,1.821,2.138,1.42,1.03,1.629,1.998]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.6342687606811523]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"22_run-memory","v":{"DEFAULT":[7.279816627502441]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[9.35072135925293]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[5.896078109741211]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[57.041433334350586]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[253.1162109375]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[59.880859375]}}, -{"f":"korvin-v0.2.1-non-keyed","b":"43_first-paint","v":{"DEFAULT":[395.3]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"01_run1k","v":{"total":[50.47,50.551,49.604,50.497,51.283,49.534,50.489,50.187,51.97,49.82,49.442,49.674,50.216,49.88,50.298],"script":[16.851,17.145,16.667,17.412,16.455,16.436,17.202,17.123,18.085,16.982,16.698,16.562,16.686,16.613,17.201],"paint":[33.177,32.965,32.499,32.626,34.319,32.652,32.84,32.622,33.44,32.414,32.301,32.694,33.069,32.84,32.653]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"02_replace1k","v":{"total":[24.238,23.953,24.136,23.769,24.435,24.37,24.609,24.656,23.788,23.962,24.784,24.228,24.305,24.057,24.129],"script":[9.254,9.15,9.6,8.964,9.544,9.753,9.288,9.898,8.811,9.299,10.126,9.528,9.627,9.275,9.413],"paint":[14.559,14.372,14.09,14.387,14.437,14.191,14.86,14.294,14.557,14.217,14.226,14.258,14.243,14.336,14.273]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"03_update10th1k_x16","v":{"total":[23.196,23.325,23.256,23.842,22.947,23.812,22.187,23.497,22.044,21.777,24.111,23.592,23.739,22.828,23.656],"script":[7.501,7.61,7.919,7.18,7.625,6.418,6.468,7.04,6.017,6.212,7.647,6.666,7.24,7.081,6.712],"paint":[14.438,13.609,13.86,15.295,13.562,15.324,14.324,15.528,14.981,14.05,14.717,15.283,15.173,13.781,14.912]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"04_select1k","v":{"total":[4.505,4.752,4.199,5.083,4.454,4.004,5.12,4.757,5.259,4.541,4.736,5.687,4.835,4.6,5.202,4.319,5.04,5.579,5.09,4.985,4.41,6.175,4.49,5.005,5.66],"script":[2.28,2.365,2.196,1.816,2.251,1.747,2.144,1.515,1.678,1.688,1.831,2.733,1.897,1.499,2.385,1.366,2.64,2.721,1.982,2.518,1.422,2.252,2.123,2.434,2.447],"paint":[1.427,2.239,1.888,2.685,1.673,1.165,2.01,2.137,3.45,1.591,1.787,2.103,1.783,2.572,1.606,2.831,2.267,1.938,2.965,1.639,2.631,3.547,2.236,2.433,2.8]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"05_swap1k","v":{"total":[12.786,12.97,13.357,13.973,12.925,13.553,13.181,12.808,13.514,12.9,13.077,13.274,13.232,13.398,13.257],"script":[1.451,1.835,2.175,2.547,2.072,2.653,1.721,2.186,2.238,1.382,2.008,1.672,2.321,1.778,2.424],"paint":[10.599,9.368,9.317,10.33,9.897,8.876,9.858,8.629,9.417,9.307,9.722,10.277,9.446,10.268,8.728]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"06_remove-one-1k","v":{"total":[17.678,18.45,18.029,18.271,18.827,17.826,17.875,17.835,18.021,17.903,18.314,18.532,17.886,17.938,18.517],"script":[3.016,2.823,2.746,3.077,3.012,2.811,2.826,2.656,2.688,2.802,3.038,2.886,3.043,2.611,3.091],"paint":[13.902,14.741,14.53,14.438,14.866,14.133,14.01,14.428,14.601,14.122,14.506,14.866,13.801,14.306,14.26]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"07_create10k","v":{"total":[628.285,619.537,617.793,619.594,622.434,619.5,618.157,621.435,616.969,624.508,619.914,620.357,618.443,619.79,618.283],"script":[268.371,264.595,264.947,266.039,267.534,265.129,264.223,266.866,263.528,265.986,264.42,263.564,265.951,265.936,265.456],"paint":[353.042,348.232,346.238,346.817,348.109,347.508,347.101,347.904,346.568,351.805,348.851,350.101,345.731,347.198,346.207]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[57.677,55.963,56.967,55.998,56.398,57.408,57.253,56.281,56.384,57.122,55.921,56.284,57.952,56.467,57.027],"script":[17.981,16.424,16.75,17.312,16.576,16.681,17.252,16.974,16.522,17.656,16.14,16.223,17.478,16.978,17.265],"paint":[38.762,38.647,39.289,37.79,38.926,39.817,39.091,38.397,38.823,38.515,38.885,39.171,39.579,38.55,38.904]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"09_clear1k_x8","v":{"total":[16.869,16.736,16.73,16.052,17.057,14.732,16.365,15.679,16.083,16.055,16.211,15.865,16.359,15.649,16.006],"script":[14.452,14.749,14.565,13.634,14.654,13.28,14.196,13.818,14.336,13.893,14.288,14.005,14.318,14.118,14.131],"paint":[2.327,0.979,1.099,1.331,2.295,0.395,2.08,1.768,1.654,2.072,0.942,1.465,1.938,1.435,1.781]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.0401029586791992]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"22_run-memory","v":{"DEFAULT":[5.745843887329102]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.331998825073242]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.616761207580566]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[43.734707832336426]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[157.1630859375]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[45.197265625]}}, -{"f":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","b":"43_first-paint","v":{"DEFAULT":[249]}}, -{"f":"lit-v3.0.0-non-keyed","b":"01_run1k","v":{"total":[40.32,40.498,40.799,41.003,42.436,39.638,40.312,40.91,40.663,41.008,40.343,41.032,40.601,39.849,41.775],"script":[6.551,6.538,7.196,7.268,7.273,6.913,6.476,6.968,6.61,6.736,6.522,6.651,6.594,6.549,7.217],"paint":[33.367,33.54,33.205,33.303,34.747,32.298,33.419,33.541,33.627,33.877,33.341,33.968,33.594,32.897,34.151]}}, -{"f":"lit-v3.0.0-non-keyed","b":"02_replace1k","v":{"total":[15.964,16.314,15.993,16.159,16.462,16.074,16.928,15.826,16.172,16.793,15.957,16.182,16.293,16.292,17.015],"script":[1.72,1.718,1.811,1.723,1.807,1.755,1.82,1.68,1.754,1.644,1.743,1.754,1.806,1.819,1.725],"paint":[13.808,14.14,13.758,14.008,14.289,13.861,14.667,13.707,13.981,14.714,13.779,14.05,14.06,14.104,14.845]}}, -{"f":"lit-v3.0.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[17.432,17.188,17.301,16.652,17.27,17.478,18.489,16.95,17.358,17.145,16.592,15.938,17.072,18.992,16.72],"script":[1.939,1.833,1.178,1.75,1.765,1.756,1.819,0.75,1.501,1.851,1.543,1.005,1.699,1.273,1.959],"paint":[14.181,14.034,14.072,13.676,13.262,14.351,15.663,15.019,14.807,14.214,13.721,13.542,14.289,16.105,13.718]}}, -{"f":"lit-v3.0.0-non-keyed","b":"04_select1k","v":{"total":[4.444,4.408,4.493,3.953,3.968,4.17,3.689,4.46,4.741,3.46,3.602,3.788,3.825,3.3,4.181,4.703,4.719,3.824,4.08,4.126,4.397,3.527,4.454,3.747,4.019],"script":[1.724,1.552,0.99,1.314,1.729,0.626,1.008,1.234,1.636,1.302,1.513,1.058,0.987,1.297,1.244,1.516,1.249,0.973,1.287,1.318,1.456,0.981,1.667,1.003,0.641],"paint":[1.888,2.718,2.935,2.499,1.473,3.426,1.703,2.55,2.476,1.49,1.058,2.325,1.814,1.138,1.926,2.903,3.334,2.718,2.296,2.388,1.996,2.172,2.641,1.59,2.613]}}, -{"f":"lit-v3.0.0-non-keyed","b":"05_swap1k","v":{"total":[12.486,12.632,12.207,12.55,12.35,12.464,12.383,11.816,12.19,13.035,11.608,13.202,13.094,13.151,12.42],"script":[1.542,1.702,1.201,1.441,0.982,1.271,1.604,1.039,1.082,1.384,1.484,0.684,1.542,1.301,1.501],"paint":[9.672,9.582,10.057,10.143,10.703,9.641,8.704,9.328,9.605,10.349,7.637,10.338,9.37,10.435,9.185]}}, -{"f":"lit-v3.0.0-non-keyed","b":"06_remove-one-1k","v":{"total":[34.381,32.832,34.302,33.29,32.734,33.6,33.025,34.934,32.981,32.645,33.093,32.513,33.361,33.2,33.163],"script":[2.669,2.985,3.03,3.073,2.693,3.07,3.009,3.073,2.849,2.754,2.615,2.802,3.017,3.046,3.043],"paint":[30.553,28.714,30.215,29.175,29.252,29.719,29.188,31.034,29.364,28.764,29.284,28.7,29.554,29.255,29.387]}}, -{"f":"lit-v3.0.0-non-keyed","b":"07_create10k","v":{"total":[431.317,431.555,426.57,430.646,435.826,425.942,431.683,430.222,433.405,427.8,429.361,427.155,428.271,436.293,426.894],"script":[82.505,83.008,81.855,82.227,84.38,81.218,81.585,83.715,84.04,79.833,82.694,80.706,83.008,81.273,81.765],"paint":[341.999,341.614,337.984,341.703,344.705,337.416,343.387,339.801,342.006,341.242,339.935,339.689,338.44,348.327,338.437]}}, -{"f":"lit-v3.0.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[47.243,46.688,46.706,46.357,46.436,47.276,46.329,48.497,46.742,46.819,47.683,46.868,48.213,46.265,45.586],"script":[6.74,6.926,6.903,6.632,6.713,7.031,6.634,6.823,6.801,6.871,6.987,6.884,6.649,6.631,6.705],"paint":[39.579,38.91,38.933,38.889,38.806,39.406,38.792,40.774,38.93,39.081,39.823,39.11,40.697,38.777,38.017]}}, -{"f":"lit-v3.0.0-non-keyed","b":"09_clear1k_x8","v":{"total":[15.918,15.248,15.408,16.072,15.393,15.575,16.215,15.049,16.172,15.491,15.957,15.507,15.103,15.805,15.943],"script":[13.815,13.79,13.273,13.829,13.234,13.968,14.062,13.358,13.922,12.772,13.998,13.636,12.636,13.488,13.6],"paint":[1.219,1.371,1.392,2.142,2.055,1.518,1.487,1.197,2.083,2.628,1.872,1.044,2.365,2.223,2.24]}}, -{"f":"lit-v3.0.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.570530891418457]}}, -{"f":"lit-v3.0.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.691349983215332]}}, -{"f":"lit-v3.0.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.685105323791504]}}, -{"f":"lit-v3.0.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.8183450698852539]}}, -{"f":"lit-v3.0.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[21.185483932495117]}}, -{"f":"lit-v3.0.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[19.7099609375]}}, -{"f":"lit-v3.0.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.55078125]}}, -{"f":"lit-v3.0.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[57.7]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"01_run1k","v":{"total":[38.499,39.524,38.217,38.338,39.26,39.28,39.769,40.688,40.516,39.218,39.695,40.333,40.391,40.002,39.055],"script":[5.622,5.753,5.666,5.653,5.665,5.785,5.938,6.419,6.219,5.618,5.977,6.128,6.232,6.033,5.715],"paint":[32.473,33.361,32.156,32.293,33.168,33.075,33.431,33.851,33.856,33.202,33.291,33.787,33.739,33.59,32.908]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"02_replace1k","v":{"total":[15.551,15.363,15.214,15.226,16.52,15.346,15.484,15.602,15.669,15.269,15.55,15.859,15.356,15.733,15.336],"script":[1.346,1.221,1.166,1.257,1.235,1.223,1.248,1.195,1.193,1.184,1.16,1.232,1.223,1.194,1.305],"paint":[13.779,13.772,13.648,13.589,14.839,13.72,13.831,14.038,14.102,13.677,14.033,14.262,13.71,14.17,13.625]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.964,17.207,17.082,16.546,16.83,17.512,16.869,16.63,17.493,16.912,16.769,17.216,16.111,17.81,17.185],"script":[1.026,1.749,1.253,0.973,1.771,1.232,0.897,0.907,0.997,1.706,1.677,1.679,1.234,1.624,1.424],"paint":[13.471,14.262,14.715,14.183,13.075,15.304,14.912,14.984,15.17,14.185,13.609,14.126,13.51,14.697,13.965]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"04_select1k","v":{"total":[3.4,3.64,4.502,4.225,3.823,3.178,3.999,3.571,4.064,2.921,3.951,3.173,3.535,4.087,3.602,3.165,3.245,2.78,5.393,4.603,4.491,3.899,3.333,3.839,3.945],"script":[0.192,0.556,0.177,0.822,1.17,0.917,0.753,1.006,1.441,0.709,0.936,0.735,0.675,0.899,0.698,0.903,0.703,0.493,0.942,0.275,1.045,1.117,1.126,1.009,1.101],"paint":[3.101,2.353,2.717,2.147,1.741,2.158,2.566,2.465,2.518,2.106,2.902,2.331,2.752,3.078,2.79,2.158,2.413,2.03,2.659,2.151,2.417,2.381,2.105,2.717,1.668]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"05_swap1k","v":{"total":[11.932,11.692,12.318,12.125,11.549,11.849,11.829,11.22,12.034,11.733,11.971,11.522,11.825,11.6,11.972],"script":[0.323,0.19,0.717,0.909,0.858,0.854,0.641,0.188,0.19,0.188,0.913,0.755,1.199,0.229,0.561],"paint":[9.907,9.875,9.755,9.904,9.208,9.828,9.597,9.651,9.242,9.628,10.262,9.477,9.874,10.105,9.837]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"06_remove-one-1k","v":{"total":[31.23,31.464,31.133,31.203,32.502,32.364,32.399,31.174,31.222,31.304,32.03,31.467,31.57,31.296,31.543],"script":[2.249,1.936,1.874,1.867,1.919,2.149,1.897,1.905,1.879,1.873,2.083,2.043,2.224,1.889,1.892],"paint":[28.218,28.391,28.52,28.584,28.927,29.072,29.679,28.252,28.436,28.171,29.232,28.719,28.574,28.533,28.831]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"07_create10k","v":{"total":[416.578,415.85,413.416,409.053,411.134,412.674,421.039,412.78,415.789,416.254,413.343,418.202,414.446,416.382,418.059],"script":[71.746,70.591,71.004,70.039,69.941,71.052,69.951,71.084,70.111,71.469,74.017,72.99,70.859,72.311,74.316],"paint":[338.008,338.484,335.679,332.188,334.491,334.831,344.339,334.903,338.634,338.05,332.573,336.577,336.844,337.288,336.966]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[45.738,44.196,44.497,45.651,43.566,44.169,45.44,43.969,44.722,45.322,45.494,44.774,44.379,44.194,44.843],"script":[5.814,5.497,5.562,5.804,5.497,5.495,5.754,5.495,5.599,5.65,5.858,5.466,5.402,5.722,5.613],"paint":[38.986,37.803,38.007,38.961,37.191,37.811,38.794,37.567,38.134,38.766,38.776,38.382,38.034,37.575,38.352]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"09_clear1k_x8","v":{"total":[15.737,14.89,15.19,16.267,16.631,15.152,14.82,15.897,16.749,17.132,14.883,15.104,15.399,15.244,15.154],"script":[14.145,13.147,13.34,13.662,14.526,13.213,12.671,13.545,14.885,14.994,13.243,13.534,13.683,13.363,13.277],"paint":[1.501,1.65,1.758,2.485,2.029,1.842,2.056,2.262,1.775,2.024,0.74,1.477,0.914,1.066,1.084]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5777406692504883]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.48476505279541]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.5159683227539062]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7471113204956055]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[19.461997032165527]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[9.7421875]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.7734375]}}, -{"f":"lit-html-v3.0.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[56.8]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"01_run1k","v":{"total":[44.406,45.179,45.665,43.973,44.602,44.586,44.078,43.876,43.778,43.682,43.524,43.698,45.688,44.024,44.65],"script":[9.867,11.016,10.581,9.978,10.134,10.223,10.233,10.159,9.545,9.762,9.583,9.972,10.687,10.42,9.813],"paint":[34.118,33.732,34.658,33.566,34.065,33.95,33.422,33.296,33.805,33.499,33.536,33.334,34.573,33.193,34.441]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"02_replace1k","v":{"total":[25.862,26.155,25.385,25.908,25.856,25.098,27.28,28.109,25.958,26.269,27.57,26.053,27.306,28.41,25.616],"script":[10.554,10.774,10.25,10.551,10.341,10.123,11.135,11.157,10.647,10.74,10.92,10.595,10.917,11.313,10.224],"paint":[14.832,14.904,14.698,14.906,15.029,14.537,15.682,16.475,14.831,15.064,16.185,14.974,15.935,16.613,14.954]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"03_update10th1k_x16","v":{"total":[47.087,47.147,49.786,46.841,46.021,47.217,45.755,47.501,47.997,48.853,47.895,50.254,49.247,50.023,49.931],"script":[29.695,30.469,31.397,29.699,29.463,29.919,29.035,30.069,31.169,31.294,30.329,32.973,32.415,32.992,31.076],"paint":[16.013,14.556,16.533,15.779,14.715,14.678,14.603,15.296,14.488,15.102,15.992,16.102,14.934,15.911,16.364]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"04_select1k","v":{"total":[28.683,30.009,29.252,28.984,28.882,28.016,29.274,30.727,28.62,30.153,28.425,29.685,29.278,29.243,29.522,27.778,28.901,29.622,28.457,29.062,28.253,28.59,29.6,28.619,30.139],"script":[25.912,26.256,25.906,25.808,24.301,25.135,26.416,26.723,25.22,26.749,25.596,26.958,26.167,26.3,25.597,24.824,25.536,26.386,25.879,26.269,25.432,25.402,25.622,25.647,26.726],"paint":[0.981,2.822,2.442,2.495,3.665,2.02,1.856,3.09,2.502,2.606,2.186,2.536,2.523,1.776,3.736,2.066,2.796,2.048,2.394,2.637,1.895,1.79,2.923,1.805,2.553]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"05_swap1k","v":{"total":[37.358,37.186,38.588,37.039,39.108,37.095,38.187,38.16,38.015,38.474,37.443,38.991,37.461,38.888,37.639],"script":[24.639,25.249,27.058,24.729,26.492,25.688,25.727,26.219,25.302,26.439,25.19,26.925,24.974,26.505,25.559],"paint":[11.223,9.492,10.195,10.707,11.182,9.813,10.829,10.382,10.962,10.21,11.225,10.463,11.095,11.379,10.662]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"06_remove-one-1k","v":{"total":[51.992,54.63,55.565,55.844,52.989,51.237,55.824,50.732,55.497,55.721,52.556,56.021,56.309,51.432,51.716],"script":[20.127,21.019,20.431,20.938,19.827,18.985,21.499,18.392,21.032,21.393,20.3,21.297,21.759,19.183,19.335],"paint":[30.683,32.481,34.32,33.764,32.296,31.479,33.268,30.903,33.716,33.51,31.192,33.906,33.54,31.451,31.208]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"07_create10k","v":{"total":[465.957,448.017,454.264,450.534,450.447,458.912,459.493,457.971,460.78,466.806,465.359,464.281,456.911,462.281,463.2],"script":[107.452,106.794,102.37,110.559,108.11,105.102,104.134,107.704,106.065,110.89,109.086,106.409,104.756,106.206,106.983],"paint":[351.736,334.286,344.653,333.242,335.674,347.108,348.649,343.646,348.028,349.258,349.578,351.218,345.513,348.719,349.61]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[60.063,57.534,58.314,58.124,59.19,59.911,59.755,59.672,58.747,59.025,59.175,58.038,58.149,59.272,58.438],"script":[18.091,16.936,18.149,17.857,18.214,18.875,18.75,19.303,18.393,18.632,18.491,18.096,17.382,18.84,18.13],"paint":[41.009,39.724,39.292,39.381,40.042,40.132,40.112,39.463,39.436,39.477,39.772,39.061,39.859,39.551,39.43]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"09_clear1k_x8","v":{"total":[20.579,18.191,17.435,17.491,16.772,16.921,17.547,19.549,18.652,18.37,18.219,17.503,17.173,19.608,17.408],"script":[18.337,16.127,15.575,16.051,14.87,14.971,15.088,17.881,16.74,16.47,15.746,15.114,14.995,17.475,14.861],"paint":[2.138,1.063,1.75,0.385,0.681,0.982,2.352,1.376,1.826,0.362,2.383,2.28,1.291,2.027,1.846]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4665384292602539]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.9551801681518555]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.3450870513916016]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6227302551269531]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[26.29177761077881]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[8.3408203125]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[2.927734375]}}, -{"f":"literaljs-v7.0.2-non-keyed","b":"43_first-paint","v":{"DEFAULT":[46.5]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"01_run1k","v":{"total":[44.846,43.869,51.425,48.991,49.256,49.404,47.454,49.984,52.208,48.486,47.328,49.62,51.311,50.724,50.552],"script":[9.486,9.875,10.478,9.503,9.811,9.38,9.543,9.864,9.995,9.861,9.975,9.628,10.833,9.874,10.106],"paint":[33.251,33.114,35.009,33.092,32.676,32.948,33.495,32.437,32.798,32.964,34.027,33.293,33.407,33.186,33.566]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"02_replace1k","v":{"total":[67.99,66.335,64.7,63.633,66.784,66.934,62.368,66.421,60.552,65.689,59.008,63.855,64.927,61.037,65.432],"script":[20.402,20.258,20.42,20.37,21.277,20.718,20.06,20.7,20.233,20.384,20.674,20.401,20.491,18.739,20.712],"paint":[35.618,36.233,35.537,35.745,35.722,35.633,35.685,34.683,35.823,35.829,35.469,36.046,35.633,33.529,35.87]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[36.764,37.766999999999996,18.568,21.734,18.458,19.392,37.132999999999996,18.796,37.30200000000001,37.23,37.80800000000001,21.148,18.91,19.115,34.97],"script":[5.163,6.308,3.484,4.285,3.004,4.218,6.039,3.788,5.162,5.483,5.719,3.634,4.176,3.597,5.13],"paint":[15.566,15.413,14.965,15.818,14.374,15.064,14.378,13.494,16.072,14.606,16.047,16.341,14.642,13.44,13.8]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"04_select1k","v":{"total":[32.216,32.115,36.05,37.597,35.925,36.124,34.239,31.066,35.914,33.116,32.836,32.318,34.405,40.444,35.706,35.569,36.248,39.925,35.182,38.572,32.194,31.142,35.756,31.622,35.307],"script":[3.825,3.793,4.671,3.77,3.566,3.079,4.049,4.623,4.259,4.177,4.012,4.794,4.049,4.645,4.931,4.289,4.779,4.363,4.197,3.461,3.93,3.813,4.679,4.401,4.413],"paint":[20.236,19.486,19.999,22.182,21.627,22.281,19.557,21.54,21.415,22.012,19.508,20.429,20.463,21.398,20.712,21.283,21.805,20.507,20.69,20.632,20.151,21.72,22.168,19.818,19.89]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"05_swap1k","v":{"total":[213.283,204.436,209.454,195.825,210.171,198.225,197.596,199.118,200.144,184.933,198.648,215.556,185.84,185.713,190.469],"script":[48.244,49.275,47.718,47.779,48.353,47.349,47.812,48.742,50.23,45.559,49.514,47.87,45.134,45.738,46.395],"paint":[148.938,152.284,144.979,144.703,145.725,147.515,147.636,147.894,149.707,138.867,148.956,150.845,139.839,136.962,143.232]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"06_remove-one-1k","v":{"total":[20.531,23.621,32.353,29.492,20.419,21.728,33.303,20.04,33.886,26.754,20.521,34.373,19.127,21.876,26.841],"script":[1.584,1.908,1.889,1.568,1.799,1.699,2.169,1.819,1.932,1.606,1.835,1.801,1.507,1.6,1.669],"paint":[14.734,15.339,15.042,16.3,15.554,15.051,15.904,14.544,15.179,14.976,14.838,15.042,14.689,14.691,14.736]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"07_create10k","v":{"total":[466.879,448.979,453.397,474.75,467.146,488.635,465.534,446.889,468.81,474.376,468.659,446.227,446.404,447.034,454.311],"script":[116.458,110.77,114.901,117.81,113.34,119.71,118.653,109.829,106.644,114.547,109.923,106.545,102.569,107.435,113.477],"paint":[348.193,334.865,330.357,350.23,349.308,358.723,341.724,328.244,356.556,356.325,355.582,334.581,339.407,337.415,336.1]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[60.557,58.584,56.325,54.034,58.24,57.596,53.629,60.564,58.776,54.913,55.093,55.624,54.796,59.756,56.302],"script":[11.156,11.461,10.898,10.772,10.975,11.079,10.819,11.333,10.605,11.116,10.854,10.962,10.925,11.225,11.199],"paint":[38.81,38.064,38.692,37.435,38.194,38.199,36.969,37.744,37.987,37.709,38.198,38.095,37.884,37.969,37.821]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"09_clear1k_x8","v":{"total":[12.727,13.534,28.480999999999998,13.801,12.894,15.787,15.864,14.341,16.072,12.445,13.02,29.427000000000003,16.1,13.733,12.508],"script":[11.286,11.676,10.342,11.498,11.057,11.279,10.687,11.073,10.641,10.791,11.613,11.598,12.049,11.722,11.348],"paint":[1.385,1.79,2.144,1.856,1.77,2.297,0.986,2.046,2.122,1.595,1.348,1.6,2.274,1.951,1.104]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5164823532104492]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.779850959777832]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.7264318466186523]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.8932018280029297]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[21.448715209960938]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[43.798828125]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.3623046875]}}, -{"f":"maquette-v3.3.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[86.9]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"01_run1k","v":{"total":[35.284,35.505,35.642,35.285,35.338,35.274,35.784,35.999,36.558,36.304,36.772,35.831,35.982,36.817,36.174],"script":[2.643,2.542,2.48,2.457,2.463,2.475,2.567,2.598,2.545,2.599,2.569,2.687,2.471,2.607,2.542],"paint":[32.24,32.536,32.737,32.43,32.427,32.387,32.806,33.003,33.605,33.305,33.788,32.744,32.994,33.736,33.222]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"02_replace1k","v":{"total":[14.678,14.281,14.489,14.7,15.471,14.354,14.642,14.97,15.2,14.972,16.11,14.759,14.491,14.99,15.086],"script":[0.648,0.657,0.654,0.654,0.617,0.622,0.653,0.671,0.683,0.647,0.632,0.646,0.647,0.632,0.647],"paint":[13.633,13.232,13.422,13.696,14.444,13.317,13.646,13.947,14.17,13.982,15.084,13.727,13.465,14.017,14.088]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"03_update10th1k_x16","v":{"total":[17.904,15.784,15.168,15.791,15.297,15.437,15.771,16.544,19.214,15.465,15.669,16.319,16.014,15.788,17.728],"script":[1.453,0.87,0.128,0.702,0.76,0.128,0.127,0.818,0.669,0.132,0.137,0.843,0.132,0.602,0.868],"paint":[15.213,13.494,13.463,13.977,13.493,14.055,14.575,14.178,15.985,14.295,14.239,13.939,14.216,14.161,15.445]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"04_select1k","v":{"total":[2.755,2.973,2.997,3.078,2.9,3.74,2.364,4.834,2.464,3.07,6.233,2.904,3.004,2.722,2.847,3.048,2.934,2.608,1.872,4.978,2.413,2.397,2.696,2.356,3.002],"script":[0.078,0.589,0.481,0.077,0.907,0.075,0.292,0.081,0.074,0.821,0.293,0.429,0.577,0.083,0.086,0.086,0.073,0.085,0.262,0.077,0.08,0.08,0.676,0.272,1.008],"paint":[2.578,2.249,2.398,2.892,1.887,2.33,1.975,1.456,2.289,1.698,2.255,1.514,1.879,1.804,2.657,2.567,2.763,2.424,1.098,3.085,1.18,1.693,1.285,1.989,1.282]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"05_swap1k","v":{"total":[11.939,11.42,11.435,10.935,11.022,11.955,11.464,11.403,11.6,11.279,11.185,11.711,10.879,10.536,11.017],"script":[0.899,0.086,0.088,0.41,0.588,0.775,0.737,0.093,0.807,0.083,0.091,0.759,0.098,0.093,0.079],"paint":[8.426,10.127,10.373,9.533,9.405,9.114,9.251,9.563,9.042,9.915,9.889,9.194,9.403,8.648,8.443]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"06_remove-one-1k","v":{"total":[15.384,14.822,16.045,14.819,14.738,15.281,15.349,14.703,15.065,15.214,14.692,14.753,14.709,15.347,14.697],"script":[0.093,0.084,0.08,0.085,0.26,0.292,0.082,0.081,0.093,0.083,0.079,0.094,0.08,0.087,0.08],"paint":[14.496,14.027,15.269,14.012,13.572,14.301,14.609,14.173,14.088,14.423,13.957,13.947,13.881,14.49,13.911]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"07_create10k","v":{"total":[371.908,370.133,369.106,371.33,370.051,365.59,373.13,368.231,367.575,370.467,368.434,367.552,370.547,368.894,372.717],"script":[28.453,28.466,29.03,28.814,29.458,28.382,29.153,29.239,30.073,30.54,29.281,28.048,29.649,28.289,30.83],"paint":[336.868,335.079,333.401,335.61,333.886,330.49,336.77,332.169,330.831,333.24,332.416,332.879,334.198,333.487,335.254]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[39.946,41.807,43.69,40.172,40.145,41.153,40.488,40.513,41.443,42.224,41.203,41.157,41.077,41.393,41.486],"script":[2.483,2.554,2.614,2.35,2.426,2.596,2.398,2.455,2.464,2.474,2.44,2.437,2.421,2.499,2.524],"paint":[36.596,38.239,40.134,36.969,36.833,37.728,37.241,37.242,38.121,38.9,37.933,37.849,37.809,38.151,38.131]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"09_clear1k_x8","v":{"total":[11.816,12.183,12.376,12.085,11.427,12.174,12.2,11.437,12.109,12.274,11.99,12.604,11.814,11.772,12.334],"script":[9.947,10.545,10.385,9.932,9.778,10.383,10.528,9.648,9.523,10.816,10.209,10.723,9.778,9.898,10.694],"paint":[1.797,1.339,1.902,2.068,1.564,1.706,1.565,1.708,2.487,1.359,0.712,1.099,1.952,1.789,1.538]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5064077377319336]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"22_run-memory","v":{"DEFAULT":[1.8316268920898438]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.8668279647827148]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6702022552490234]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[13.353330612182617]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[10.5068359375]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.171875]}}, -{"f":"mikado-v0.8.327-non-keyed","b":"43_first-paint","v":{"DEFAULT":[42.6]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"01_run1k","v":{"total":[47.781,47.27,47.745,48.727,46.785,48.097,48.884,48.411,47.627,48.883,48.861,48.191,47.842,47.741,47.98],"script":[13.454,12.901,12.956,14.112,12.935,13.469,13.951,13.375,13.799,14.253,13.983,13.546,13.17,13.086,13.319],"paint":[33.91,33.962,34.385,34.171,33.405,34.219,34.485,34.604,33.408,34.215,34.453,34.211,34.266,34.249,34.24]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"02_replace1k","v":{"total":[28.154,28.703,27.036,26.723,27.413,29.21,26.206,28.149,26.588,25.792,26.957,27.128,27.128,26.752,27.18],"script":[11.564,13.075,12.031,11.443,12.175,13.208,11.516,12.913,11.069,11.229,11.949,11.131,11.424,11.575,11.77],"paint":[16.128,15.162,14.581,14.817,14.772,15.54,14.228,14.77,15.032,14.101,14.569,15.518,15.245,14.719,14.977]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.77,16.588,16.824,16.098,16.397,16.259,16.243,15.521,16.236,15.494,16.264,17.013,16.813,16.414,15.608],"script":[1.114,0.825,0.21,0.201,0.755,0.937,0.917,0.211,0.939,0.198,0.923,0.937,0.207,0.939,0.591],"paint":[14.356,13.986,15.626,13.438,14.453,14.364,13.969,13.394,14.319,14.132,13.623,14.284,14.73,13.841,12.819]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"04_select1k","v":{"total":[2.901,4.431,3.741,3.057,4.112,2.936,2.725,3.183,2.986,2.772,2.84,2.443,3.052,5.68,2.896,3.818,3.203,3.588,2.801,2.374,4.4,2.929,4.095,2.794,2.558],"script":[0.805,1.234,0.657,0.146,1.292,0.8,0.831,0.899,0.881,0.124,0.129,0.528,0.137,1.047,0.231,0.928,0.856,0.829,0.65,0.125,1.137,0.491,0.564,0.248,0.144],"paint":[1.213,1.685,2.007,2.807,2.696,1.932,1.125,0.679,1.185,2.53,2.047,1.109,2.806,2.159,2.554,1.619,0.78,1.82,1.559,2.148,1.638,1.573,1.711,1.772,2.32]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"05_swap1k","v":{"total":[12.478,12.284,11.824,12.291,11.946,12.365,11.741,11.951,12.023,12.531,11.924,12.384,11.773,11.896,12.019],"script":[1.214,1.557,1.055,1.248,0.614,1.095,1.141,1.28,1.281,1.131,1.179,1.218,1.273,1.028,0.911],"paint":[10.282,9.423,8.965,9.669,9.471,9.17,9.252,9.92,9.255,9.843,9.416,9.277,9.232,8.858,10.408]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"06_remove-one-1k","v":{"total":[15.307,15.355,15.484,15.32,15.765,15.289,15.107,15.314,15.08,14.769,14.988,14.922,15.366,15.316,14.901],"script":[0.501,0.498,0.273,0.484,0.402,0.446,0.394,0.312,0.216,0.429,0.311,0.185,0.505,0.392,0.18],"paint":[14.062,14.028,14.271,13.768,14.196,14.105,13.982,14.158,14.156,13.619,13.717,13.941,14.11,14.102,13.982]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"07_create10k","v":{"total":[467.841,461.739,463.979,473.287,473.671,462.663,469.872,474.534,470.153,478.708,462.109,471.585,468.023,471.882,475.059],"script":[121.293,121.944,122.043,127.113,128.402,120.627,128.481,126.16,127.232,126.893,121.834,126.283,127.113,125.704,129.039],"paint":[339.785,333.046,335.147,339.276,338.545,335.277,334.601,341.55,336.186,345.079,333.636,338.431,334.23,339.424,339.304]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[51.568,52.529,52.394,51.798,50.858,51.437,50.202,51.369,51.257,52.514,50.795,52.526,52.75,50.286,51.948],"script":[11.163,11.618,11.222,11.119,10.946,11.471,11.009,11.12,11.452,11.349,10.923,11.027,11.4,11.069,11.035],"paint":[39.468,39.964,40.215,39.766,39.002,39.036,38.29,39.345,38.788,40.263,38.969,40.572,40.462,38.238,40.015]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"09_clear1k_x8","v":{"total":[14.429,14.567,13.677,13.497,13.792,13.282,13.397,13.939,13.813,14.019,12.909,13.945,13.336,13.557,13.327],"script":[12.544,12.121,11.814,11.564,11.921,11.378,11.749,11.149,11.924,11.927,11.473,11.915,11.996,11.689,11.798],"paint":[1.725,1.535,1.749,0.77,1.775,1.81,0.751,2.691,1.602,1.999,1.342,1.928,0.719,1.64,0.942]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.654205322265625]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.9264116287231445]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.059597015380859]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0473566055297852]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.311805725097656]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[51.15625]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[15.123046875]}}, -{"f":"mimbl-v0.10.4-non-keyed","b":"43_first-paint","v":{"DEFAULT":[94.9]}}, -{"f":"miso-v1.4.0-non-keyed","b":"01_run1k","v":{"total":[61.717,60.165,61.409,60.758,58.764,60.585,59.948,59.942,59.068,59.155,59.44,59.877,59.028,62.15,59.597],"script":[26.713,26.581,26.005,26.002,25.126,26.089,25.84,25.451,25.731,25.754,25.362,25.803,25.144,26.445,25.789],"paint":[34.81,33.393,35.214,34.569,33.47,34.311,33.923,34.309,33.153,33.212,33.898,33.853,33.702,35.524,33.599]}}, -{"f":"miso-v1.4.0-non-keyed","b":"02_replace1k","v":{"total":[35.235,34.703,35.074,34.693,35.329,34.842,35.178,35.328,35.188,34.897,36.06,34.727,34.542,35.675,35.754],"script":[21.212,20.368,20.718,20.313,20.998,20.282,20.464,21.124,20.705,20.633,21.547,20.666,20.564,21.043,21.544],"paint":[13.862,14.166,14.172,14.175,14.164,14.374,14.365,14.032,14.306,14.098,14.338,13.894,13.807,14.453,14.04]}}, -{"f":"miso-v1.4.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[64.39,65.867,62.753,60.921,67.269,60.728,66.17,64.626,65.507,63.482,61.874,59.67,60.655,63.948,60.843],"script":[45.325,48.897,45.699,45.625,48.732,44.959,48.888,47.415,49.478,45.522,45.65,44.649,45.188,46.33,43.548],"paint":[18.61,16.528,16.086,14.486,16.769,15.365,16.681,16.24,15.177,16.338,15.174,14.696,15.316,16.276,14.844]}}, -{"f":"miso-v1.4.0-non-keyed","b":"04_select1k","v":{"total":[45.548,47.2,47.106,45.177,46.569,47.01,47.726,47.721,50.956,47.518,47.837,48.105,54.22,49.446,49.696,46.624,45.912,47.228,50.122,48.398,52.836,47.173,47.822,49.541,48.43],"script":[41.012,40.461,42.079,41.468,40.832,39.667,41.522,42.352,44.075,43.79,42.436,41.847,47.695,44.107,42.733,39.902,41.381,41.511,42.753,41.367,46.849,41.58,41.246,43.111,42.455],"paint":[2.885,5.323,3.896,2.006,4.414,5.535,3.679,3.432,5.367,2.815,4.291,4.423,4.696,4.426,5.101,5.193,2.192,3.592,5.464,4.533,4.537,3.655,4.631,4.559,4.897]}}, -{"f":"miso-v1.4.0-non-keyed","b":"05_swap1k","v":{"total":[57.69,56.759,52.405,51.895,55.068,51.724,52.247,53.135,54.791,51.428,49.849,50.304,50.89,54.847,50.84],"script":[42.955,43.832,40.615,41.987,43.687,40.34,39.133,41.419,43.731,39.473,39.266,38.482,40.267,41.112,39.804],"paint":[13.32,11.011,10.552,9.392,11.116,11.22,11.274,10.899,10.636,10.078,9.161,11.67,9.79,11.27,9.238]}}, -{"f":"miso-v1.4.0-non-keyed","b":"06_remove-one-1k","v":{"total":[54.194,55.531,54.416,50.823,54.678,52.127,54.681,53.74,52.51,51.441,52.069,53.833,52.499,54.113,53.856],"script":[22.592,23.595,23.559,21.514,21.933,22.372,22.899,22.545,21.719,22.197,22.353,22.829,21.769,21.977,23.069],"paint":[30.899,31.776,30.236,29.13,32.554,29.589,31.127,30.8,29.791,29.082,28.674,30.481,30.302,31.872,30.526]}}, -{"f":"miso-v1.4.0-non-keyed","b":"07_create10k","v":{"total":[602.595,596.329,593.687,590.077,600.704,591.378,592.312,592.566,599.019,591.948,590.869,595.645,588.85,606.221,595.554],"script":[247.056,245.577,248.667,244.121,248.056,243.45,242.431,245.275,239.153,247.734,245.453,248.892,245.504,246.715,246.739],"paint":[353.368,348.647,342.868,343.81,350.425,345.783,347.728,345.179,357.689,342.05,343.246,344.638,341.158,357.332,346.699]}}, -{"f":"miso-v1.4.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[75.768,75.589,75.082,75.11,74.999,75.449,76.229,75.52,75.925,75.029,76.321,75.801,77.335,76.44,76.372],"script":[35.021,34.872,34.55,34.985,34.821,34.458,35.76,35.48,35.371,35.372,35.424,35.513,36.055,35.765,35.21],"paint":[40.428,39.842,40.234,39.817,39.879,40.704,40.159,39.559,40.272,39.354,40.606,39.249,40.966,40.371,40.857]}}, -{"f":"miso-v1.4.0-non-keyed","b":"09_clear1k_x8","v":{"total":[27.937,38.647,35.566,34.295,36.238,57.284,35.608,30.799,36.521,57.209,30.51,30.589,57.858,56.086,57.042],"script":[25.874,34.244,29.727,29.404,31.868,27.182,28.878,28.747,30.31,28.523,28.605,28.988,27.921,28.027,29.559],"paint":[1.344,2.559,2.404,2.873,3.231,2.689,2.407,1.394,2.512,3.256,0.429,1.509,2.99,2.635,2.339]}}, -{"f":"miso-v1.4.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[2.748133659362793]}}, -{"f":"miso-v1.4.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[8.610014915466309]}}, -{"f":"miso-v1.4.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.825002670288086]}}, -{"f":"miso-v1.4.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[8.599519729614258]}}, -{"f":"miso-v1.4.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[49.493614196777344]}}, -{"f":"miso-v1.4.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[442.755859375]}}, -{"f":"miso-v1.4.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[90.7958984375]}}, -{"f":"miso-v1.4.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[670.6]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"01_run1k","v":{"total":[40.66,40.224,40.313,39.799,41.189,40.713,40.907,40.848,42.361,40.423,40.016,41.576,40.323,40.34,39.728],"script":[7.085,6.849,6.849,6.78,6.843,6.851,6.807,6.806,7.738,6.92,6.794,6.945,6.814,6.841,6.733],"paint":[33.125,32.914,33.03,32.606,33.946,33.412,33.683,33.628,34.193,33.081,32.773,34.174,33.06,33.036,32.577]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"02_replace1k","v":{"total":[45.743,45.396,45.008,45.905,45.304,45.047,45.005,46.757,44.993,45.702,44.339,44.569,45.695,45.95,46.068],"script":[10.175,10.146,9.942,9.97,9.886,9.905,9.807,11.046,9.937,10.002,9.944,9.733,9.784,10.8,10.652],"paint":[35.107,34.81,34.624,35.474,34.972,34.691,34.774,35.283,34.584,35.28,33.959,34.351,35.467,34.699,34.95]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.844,16.685,17.389,16.034,15.975,16.769,16.122,17.541,15.988,16.468,16.898,16.6,18.259,16.188,17.224],"script":[1.537,0.702,1.277,0.982,1.664,1.776,1.429,1.298,0.986,1.086,1.874,1.104,1.015,0.667,1.252],"paint":[13.795,14.882,15.022,14.037,12.339,12.255,12.696,15.134,14.012,14.411,13.27,13.9,15.232,13.122,13.984]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"04_select1k","v":{"total":[6.034,2.896,4.028,3.844,3.305,2.649,2.837,3.736,2.935,3.281,3.029,3.459,3.402,4.024,2.558,3.255,3.197,3.403,3.622,3.014,3.748,3.122,3.28,3.442,2.985],"script":[1.309,1.002,1.697,0.934,0.915,0.955,0.634,0.909,1.022,0.987,0.656,1.113,0.936,1.3,0.849,0.905,1.131,0.576,0.839,0.876,1.321,0.857,0.87,0.681,0.811],"paint":[1.784,1.79,0.863,2.026,2.271,1.043,1.475,2.711,1.266,2.138,1.888,2.24,1.734,2.603,1.603,1.397,1.96,1.889,1.602,2.039,1.525,2.16,1.729,2.254,2.052]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"05_swap1k","v":{"total":[11.314,11.104,11.1,11.675,11.403,11.048,11.99,11.354,11.916,11.655,11.616,11.076,11.236,11.365,11.174],"script":[0.789,0.209,0.887,0.108,0.522,0.105,0.642,0.658,1.101,0.12,0.932,0.53,0.832,0.105,0.102],"paint":[8.965,9.823,8.666,10.015,9.896,9.147,9.978,9.232,9.85,10.062,9.405,8.643,8.276,9.648,9.556]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"06_remove-one-1k","v":{"total":[15.717,16.047,15.81,16.249,16.176,15.59,15.735,16.407,15.594,15.982,15.966,15.641,15.675,15.795,16.424],"script":[0.673,0.653,0.655,0.888,0.825,0.662,0.642,0.923,0.777,0.642,0.656,0.663,0.638,0.588,0.665],"paint":[14.287,14.166,14.435,14.576,14.464,14.178,14.351,14.723,14.038,14.626,14.26,14.253,14.088,14.476,14.458]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"07_create10k","v":{"total":[641.306,627.21,626.85,632.05,621.852,632.597,632.07,627.021,626.265,629.359,631.28,627.033,630.643,626.836,621.605],"script":[275.245,270.8,271.531,271.414,269.147,273.537,274.235,268.822,271.953,271.939,273.015,270.734,274.512,270.01,267.84],"paint":[359.151,349.68,348.745,353.954,345.953,352.445,350.978,351.499,347.68,350.71,351.595,349.392,349.348,349.885,347.092]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[75.432,75.054,75.85,76.104,76.154,75.387,76.51,75.866,77.696,75.633,76.107,75.953,76.735,75.821,76.314],"script":[35.448,34.993,35.376,35.661,35.253,35.092,35.734,35.222,35.129,35.871,35.454,35.335,36.343,35.498,35.682],"paint":[39.083,39.169,39.576,39.512,39.948,39.379,39.877,39.742,41.632,38.86,39.755,39.694,39.496,39.439,39.719]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"09_clear1k_x8","v":{"total":[19.188,18.679,17.816,18.338,18.605,19.006,20.254,19.485,18.044,18.803,18.645,18.834,19.239,18.152,18.852],"script":[18.05,16.734,15.899,15.984,16.229,17.375,18.095,17.618,15.618,16.904,16.891,17.377,17.084,16.383,16.349],"paint":[0.364,1.842,1.435,1.209,1.352,1.093,2.052,1.762,1.406,1.732,1.664,1.361,2.059,0.907,2.156]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[2.711318016052246]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"22_run-memory","v":{"DEFAULT":[9.763786315917969]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[9.80611515045166]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[10.340601921081543]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[72.76583957672119]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[229.640625]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[65.7919921875]}}, -{"f":"mogwai-v0.6.5-non-keyed","b":"43_first-paint","v":{"DEFAULT":[396.4]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"01_run1k","v":{"total":[57.047,56.498,54.828,56.363,56.101,55.289,55.559,56.362,55.519,56.26,56.012,56.18,56.052,57.109,56.106],"script":[20.91,21,18.977,20.309,19.931,19.696,20.163,20.627,20.438,20.989,20.643,20.68,20.734,21.007,20.941],"paint":[35.674,35.054,35.405,35.601,35.719,35.156,34.936,35.275,34.593,34.815,34.919,35.058,34.876,35.657,34.713]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"02_replace1k","v":{"total":[59.809,58.275,57.525,58.92,58.357,59.009,57.957,58.704,57.693,58.775,58.331,58.868,58.536,59.129,57.856],"script":[22.014,20.658,20.921,21.646,21.796,21.776,21.387,21.479,20.476,22.079,21.732,21.377,22.031,21.906,20.805],"paint":[37.317,37.163,36.136,36.82,36.106,36.79,36.101,36.782,36.756,36.252,36.147,37.061,36.068,36.79,36.586]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[20.803,20.985,20.939,22.69,20.587,20.503,20.041,20.877,20.479,20.617,20.567,21.718,20.255,21.903,22.126],"script":[2.753,2.675,2.148,2.603,2.783,2.331,2.488,2.721,2.803,2.485,2.262,2.286,2.382,2.46,3.162],"paint":[16.178,16.482,17.321,17.645,16.176,16.575,16.061,15.7,16.065,16.392,16.754,17.409,16.035,17.432,17.35]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"04_select1k","v":{"total":[6.431,6.79,6.361,7.648,6.266,6.372,7.493,6.684,5.942,6.21,6.958,6.838,6.019,6.874,6.491,5.986,6.098,6.285,5.925,7.376,6.617,6.504,7.437,5.987,6.944],"script":[3.635,4.52,3.594,4.83,3.997,3.639,4.346,3.408,3.327,3.641,3.957,3.674,3.552,3.982,3.237,3.243,3.155,3.715,3.375,3.993,3.791,4.464,4.561,3.248,4.202],"paint":[2.062,2.14,2.65,2.685,1.487,2.301,2.489,3.156,2.492,2.014,2.838,2.676,1.787,2.366,2.434,2.618,1.902,2.451,2.421,2.976,2.049,1.205,2.285,1.974,1.929]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"05_swap1k","v":{"total":[21.534,23.306,22.31,21.628,21.982,21.824,21.11,21.511,21.173,20.81,21.516,20.607,21.121,20.958,20.928],"script":[0.872,0.914,0.211,0.89,0.696,0.879,0.906,0.897,0.633,0.697,0.718,0.968,1.482,0.203,0.546],"paint":[18.683,19.749,20.01,19.28,19.247,19.51,18.469,18.738,19.088,18.678,19.55,18.26,17.783,19.43,18.676]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"06_remove-one-1k","v":{"total":[16.762,16.765,16.541,16.607,16.992,17.183,17.559,16.743,16.271,17.064,16.781,16.655,16.549,16.68,16.58],"script":[0.162,0.221,0.442,0.12,0.115,0.308,0.369,0.131,0.155,0.111,0.12,0.384,0.447,0.327,0.442],"paint":[15.536,15.754,15.333,15.408,15.886,16.097,16.36,15.485,15.365,15.898,15.553,15.523,15.336,15.419,15.346]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"07_create10k","v":{"total":[581.786,591.965,580.581,586.434,588.927,584.878,576.931,586.809,588.227,570.888,584.89,584.896,589.025,580.514,595.971],"script":[208.187,212.025,208.932,214.148,214.054,212.084,208.248,213.45,213.32,203.855,212.289,212.302,212.671,211.029,211.858],"paint":[366.658,372.98,364.985,365.528,368.035,366.065,361.739,366.447,367.991,360.289,365.904,365.778,369.571,362.385,377.354]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[63.474,63.018,60.021,61.404,59.974,61.975,61.708,61.103,61.468,60.098,61.486,60.937,61.209,59.49,61.142],"script":[20.163,20.526,17.923,20.183,18.708,20.445,19.209,19.494,19.596,18.886,20.097,19.399,19.35,18.412,19.636],"paint":[42.368,41.543,41.205,40.3,40.363,40.579,41.557,40.724,40.946,40.309,40.475,40.615,40.925,40.14,40.588]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"09_clear1k_x8","v":{"total":[20.775,20.827,19.296,18.742,19.818,19.949,20.561,20.059,18.834,20.613,19.58,20.191,18.971,20.687,19.869],"script":[18.573,18.954,16.678,16.526,17.821,17.769,18.371,18.1,16.441,18.34,17.847,17.781,17.19,19.2,18.364],"paint":[1.086,1.606,2.043,1.238,1.385,1.167,2.071,0.973,2.294,2.15,1.627,2.298,1.685,1.358,1.385]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5200681686401367]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[5.407238006591797]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.569584846496582]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.2352485656738281]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[46.202895164489746]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[28.0068359375]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.85546875]}}, -{"f":"mutraction-v0.25.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[82.2]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"01_run1k","v":{"total":[39.726,40.528,40.341,40.487,47.992,40.381,39.875,41.547,40.728,40.431,39.705,40.958,41.337,40.512,40.996],"script":[7.804,8.405,8.285,7.648,8.004,8.398,7.685,8.614,8.159,8.034,7.857,8.398,8.479,7.791,7.974],"paint":[31.756,31.969,31.862,32.662,33.456,31.804,32.054,32.755,32.393,32.127,31.673,32.372,32.712,32.545,32.855]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"02_replace1k","v":{"total":[22.989,25.978,24.342,24.473,24.487,22.754,24.326,24.514,24.09,24.316,24.209,24.24,22.845,24.719,25.773],"script":[9.113,10.486,10.004,9.822,9.86,9.044,9.958,10.142,9.425,10.073,9.651,9.984,9.147,9.758,10.051],"paint":[13.74,15.364,14.209,14.398,14.378,13.568,14.225,14.233,14.398,14.105,14.277,14.129,13.562,14.827,15.587]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[49.362,45.885,45.554,48.481,47.107,48.097,48.934,45.392,46.52,47.147,49.696,46.182,48.247,45.754,45.248],"script":[32.156,31.476,30.115,31.323,30.397,31.916,31.819,30.49,32.021,32.184,32.333,30.876,31.53,30.398,31.294],"paint":[16.519,14.283,13.646,15.17,16.47,13.889,15.855,14.78,14.373,14.825,16.058,15.191,15.972,14.733,13.213]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"04_select1k","v":{"total":[37.226,37.224,38.574,37.029,39.499,39.094,34.388,38.025,38.09,37.135,36.626,37.065,36.885,37.258,37.775,37.086,34.037,37.37,37.867,37.154,37.048,38.006,36.749,36.771,36.825],"script":[30.862,31.745,32.409,31.648,32.783,33.194,31.608,32.419,31.68,32.427,30.606,30.934,32.355,31.356,31.358,31.413,31.174,30.799,31.731,31.64,30.955,31.786,31.14,30.724,30.833],"paint":[4.502,3.902,4.519,3.164,3.968,4.543,2.289,3.055,4.254,3.705,2.834,4.529,3.699,3.076,4.868,3.252,2.694,3.113,2.911,4.092,3.716,3.581,4.054,4.31,3.585]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"05_swap1k","v":{"total":[42.366,41.858,40.914,43.655,43.649,41.582,43.851,43.329,42.712,44.349,41.665,39.821,43.936,43.481,43.45],"script":[31.171,30.415,30.922,31.467,31.081,31.905,30.702,31.54,30.466,31.642,30.63,29.546,32.621,31.946,31.463],"paint":[11.01,10.532,9.186,10.584,10.741,8.926,11.56,10.356,11.832,11.64,10.264,9.56,11.069,10.916,11.741]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"06_remove-one-1k","v":{"total":[47.298,50.737,47.146,53.872,46.672,48.665,50.616,51.304,47.54,47.211,47.016,48.606,49.097,50.931,47.233],"script":[17.558,18.522,17.772,20.364,17.806,18.289,18.348,19.119,17.823,17.811,17.555,18.343,18.063,19.254,17.283],"paint":[28.689,30.964,28.645,32.598,28.458,29.374,31.068,31.275,28.943,28.658,28.478,29.444,29.871,30.556,29.074]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"07_create10k","v":{"total":[419.132,412.465,417.266,415.54,415.413,415.221,418.141,414,418.051,420.821,411.993,415.868,411.681,415.189,411.238],"script":[84.218,85.596,85.855,85.432,86.112,83.868,84.746,84.49,86.346,86.301,85.391,86.229,84.356,85.197,84.101],"paint":[332.804,324.745,329.251,327.911,327.006,329.208,331.139,327.201,329.259,332.287,324.391,327.388,325.22,327.81,325.029]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[52.479,53.568,54.485,52.154,53.68,54.308,53.212,53.232,54.627,53.891,54.009,53.957,54.255,54.931,53.927],"script":[15.667,16.195,16.164,15.549,15.099,16.611,15.715,15.913,15.976,16.367,16.395,15.665,15.249,16.003,16.181],"paint":[36.531,36.975,38.053,36.342,38.307,37.447,37.219,37.051,38.375,37.261,37.341,38.012,38.727,38.382,37.464]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"09_clear1k_x8","v":{"total":[24.966,23.823,23.269,23.695,25.569,23.848,23.947,24.564,24.257,24.605,24.059,23.638,24.565,23.256,24.151],"script":[20.53,20.358,19.87,20.086,21.322,20.509,20.144,19.847,20.41,20.839,19.935,20.112,21.151,19.96,20.445],"paint":[3.051,3.242,2.06,3.389,3.341,2.24,3.575,3.68,2.486,2.998,3.072,2.381,3.181,3.072,2.931]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[3.443222999572754]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[4.948498725891113]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.050936698913574]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[3.918492317199707]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[16.368244171142578]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[885.853515625]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[211.638671875]}}, -{"f":"openui5-v1.120.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[150]}}, -{"f":"quel-v0.9.51-non-keyed","b":"01_run1k","v":{"total":[46.168,44.374,44.973,45.328,46.708,45.692,44.372,45.074,44.767,46.149,44.977,45.243,44.918,44.947,45.878],"script":[10.744,9.971,10.533,10.615,10.546,10.872,10.371,10.47,10.422,10.962,10.529,10.663,10.376,10.368,10.433],"paint":[34.905,33.98,33.948,34.222,35.678,34.353,33.567,34.142,33.859,34.73,33.984,34.095,34.082,34.071,34.99]}}, -{"f":"quel-v0.9.51-non-keyed","b":"02_replace1k","v":{"total":[19.404,20.018,20.027,19.003,19.195,20.237,19.22,19.659,19.976,19.756,19.7,19.021,18.863,18.931,19.294],"script":[4.445,4.582,4.527,4.336,4.478,4.429,4.382,4.555,4.633,4.447,4.496,4.319,4.191,4.28,4.308],"paint":[14.496,14.916,15.036,14.246,14.246,15.305,14.436,14.615,14.808,14.821,14.735,14.283,14.245,14.241,14.519]}}, -{"f":"quel-v0.9.51-non-keyed","b":"03_update10th1k_x16","v":{"total":[21.747,19.993,20.748,19.908,20.607,21.114,19.924,19.418,20.565,19.374,19.785,19.856,19.42,19.967,20.314],"script":[2.953,4.067,3.969,3.724,3.826,3.706,3.731,3.383,3.624,3.703,2.955,3.364,2.887,3.337,3.747],"paint":[16.888,14.852,14.214,14.713,15.699,15.595,14.812,14.684,15.136,14.342,14.152,14.055,15.157,15.321,14.942]}}, -{"f":"quel-v0.9.51-non-keyed","b":"04_select1k","v":{"total":[4.641,4.05,4.346,4.532,3.995,4.674,3.991,4.579,3.696,3.293,3.92,4.855,3.834,4.079,3.475,4.443,4.218,4.697,4.884,4.087,5.29,3.851,4.248,4.096,4.203],"script":[1.618,1.251,1.223,0.934,0.947,1.714,0.639,1.735,1.098,0.934,1.11,1.23,1.011,0.987,1.195,1.336,0.983,1.19,0.895,1.222,1.497,0.61,1.009,1.127,1.012],"paint":[2.903,2.269,2.965,2.925,2.44,2.85,2.801,2.722,1.802,1.463,1.96,2.96,2.703,2.968,2.173,2.225,2.561,3.397,2.779,2.758,2.676,3.122,3.125,2.665,1.818]}}, -{"f":"quel-v0.9.51-non-keyed","b":"05_swap1k","v":{"total":[13.239,14.765,13.026,13.412,13.499,13.177,12.024,12.606,12.489,13.735,12.01,12.08,12.843,11.972,12.722],"script":[1.773,1.651,1.044,0.972,1.734,1.645,1.137,1.092,1.224,1.44,0.675,1.165,1.039,1.048,1.243],"paint":[10.703,11.06,9.547,11.145,9.751,10.843,9.284,9.497,9.963,10.668,9.968,9.941,10.438,9.157,9.344]}}, -{"f":"quel-v0.9.51-non-keyed","b":"06_remove-one-1k","v":{"total":[39.261,39.894,38.611,38.832,39.021,39.365,39.234,39.761,39.842,39.329,39.81,39.275,42.003,39.124,39.27],"script":[8.507,8.981,7.969,8.188,7.97,8.446,8.536,9.075,8.755,8.31,8.144,8.654,8.586,8.427,8.509],"paint":[29.908,29.742,29.854,29.522,30.177,29.844,29.528,29.85,29.96,30.035,30.399,29.483,32.29,29.72,29.944]}}, -{"f":"quel-v0.9.51-non-keyed","b":"07_create10k","v":{"total":[581.739,573.588,569.517,585.152,580.4,569.151,587.029,570.88,581.387,562.901,578.396,571.876,568.063,572.38,590.325],"script":[210.002,205.684,202.348,207.22,205.925,203.289,209.776,203.651,207.423,198.306,208.515,205.119,200.002,202.286,206.061],"paint":[364.722,361.067,360.218,370.853,367.488,358.924,370.01,360.378,366.996,357.75,363.045,359.794,360.471,363.215,377.412]}}, -{"f":"quel-v0.9.51-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[69.992,68.49,68.892,69.331,69.602,69.595,70.532,71.009,68.813,67.677,70.512,69.168,69.265,70.791,71.009],"script":[27.881,26.69,26.754,26.673,27.125,27.142,26.87,27.787,26.485,26.155,28.394,27.165,27.051,27.962,27.541],"paint":[41.166,40.852,41.243,41.705,41.477,41.514,42.744,42.187,41.406,40.598,41.162,41.061,41.266,41.889,42.594]}}, -{"f":"quel-v0.9.51-non-keyed","b":"09_clear1k_x8","v":{"total":[26.431,22.848,24.814,20.657,22.037,20.869,22.92,21.087,22.679,21.98,25.225,23.046,22.318,23.906,23.335],"script":[23.559,21.196,23.056,18.945,19.868,19.394,20.335,19.261,20.26,19.756,23.221,21.282,20.297,21.084,21.321],"paint":[2.747,1.555,0.866,1.623,2.077,1.384,2.456,1.726,2.324,2.115,1.896,1.663,1.424,2.273,1.912]}}, -{"f":"quel-v0.9.51-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.8830146789550781]}}, -{"f":"quel-v0.9.51-non-keyed","b":"22_run-memory","v":{"DEFAULT":[5.188199043273926]}}, -{"f":"quel-v0.9.51-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[5.265582084655762]}}, -{"f":"quel-v0.9.51-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.54459285736084]}}, -{"f":"quel-v0.9.51-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[39.692381858825684]}}, -{"f":"quel-v0.9.51-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[57.80859375]}}, -{"f":"quel-v0.9.51-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[15.017578125]}}, -{"f":"quel-v0.9.51-non-keyed","b":"43_first-paint","v":{"DEFAULT":[100.3]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"01_run1k","v":{"total":[56.795,60.882,59.545,60.982,60.228,59.656,59.54,58.195,59.367,59.779,56.882,58.565,59.027,57.039,59.614],"script":[23.447,25.877,26.059,27.128,26.529,26.289,25.885,25.137,26.117,25.851,24.66,24.797,25.73,23.913,26.025],"paint":[32.887,34.538,33.049,33.413,33.257,32.907,33.196,32.63,32.809,33.462,31.762,33.331,32.857,32.683,33.167]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"02_replace1k","v":{"total":[17.499,17.377,17.186,17.569,17.228,17.131,17.592,17.688,18.54,17.048,17.191,17.541,19.06,17.345,17.36],"script":[3.018,3.018,2.701,2.835,3.025,3.077,2.936,3.107,2.96,3.007,2.872,2.89,3.026,3.002,2.887],"paint":[14.058,13.932,14.032,14.327,13.815,13.667,14.284,14.074,15.142,13.631,13.899,14.281,15.616,13.926,14.106]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"03_update10th1k_x16","v":{"total":[19.799,18.753,19.743,20.404,18.839,19.538,19.506,18.551,19.01,18.978,19.655,18.67,19.076,19.022,19.246],"script":[3.752,3.72,4.036,3.795,3.671,3.598,3.686,3.81,3.646,3.66,3.105,3.553,3.428,3.826,3.478],"paint":[14.476,13.283,13.505,15.358,14.203,13.385,13.99,13.393,13.942,13.799,14.868,14.037,13.644,14.517,13.45]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"04_select1k","v":{"total":[9.151,9.325,8.582,8.333,8.578,7.665,8.338,7.168,7.688,8.621,9.328,8.034,7.286,7.219,8.913,7.73,7.239,7.439,8.742,7.766,7.573,8.006,8.714,8.589,8.42],"script":[5.916,6.913,6.208,5.217,5.79,5.166,5.351,5.125,4.668,6.349,6.406,5.209,4.775,4.958,6.193,4.971,4.716,5.197,6.215,4.705,4.887,5.422,5.763,5.75,5.728],"paint":[2.522,1.999,1.912,1.988,1.913,1.589,1.874,1.184,2.758,1.731,2.05,2.698,1.749,1.704,2.574,2.279,2.328,1.883,1.554,2.034,2.558,1.619,2.811,1.849,1.731]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"05_swap1k","v":{"total":[13.087,12.752,13.075,12.576,12.939,12.499,13.052,13.025,12.896,13.19,12.569,12.77,12.347,12.327,13.154],"script":[1.811,1.44,2.01,1.93,1.604,1.969,1.555,1.101,2.176,2.123,1.671,1.381,1.876,2.014,1.404],"paint":[8.743,9.916,9.555,9.188,10.314,9.048,10.484,9.842,9.143,9.992,9.573,10.077,9.087,9.054,9.928]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"06_remove-one-1k","v":{"total":[35.806,36.649,35.431,35.428,34.997,35.801,35.471,35.715,35.617,35.533,36.35,35.582,35.652,35.573,35.349],"script":[5.537,5.864,5.25,5.528,5.603,5.598,5.6,5.478,5.642,5.597,5.597,5.495,5.421,5.92,5.518],"paint":[29.126,29.827,28.831,29.169,28.521,29.165,28.963,29.482,28.609,28.859,29.854,28.735,29.429,28.537,29.076]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"07_create10k","v":{"total":[574.603,573.359,571.48,570.379,564.348,575.885,576.332,570.429,576.372,576.235,571.601,569.046,567.602,578.049,572.119],"script":[216.894,216.699,217.687,218.789,213.366,217.886,217.711,218.273,218.718,218.357,217.867,217.335,217.363,224.083,219.704],"paint":[350.614,349.812,346.781,344.844,344.12,351.19,351.869,345.431,351.035,351.091,347.037,345.093,343.621,346.953,345.264]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[61.298,61.29,60.458,61.474,61.565,61.549,60.581,61.717,62.346,60.737,61.312,63.599,61.732,64.072,62.002],"script":[21.344,22.312,21.758,22.328,21.314,22.511,21.218,22.11,22.609,21.306,21.824,22.923,21.701,22.342,22.297],"paint":[39.054,38.08,37.877,38.265,39.363,38.18,38.45,38.728,38.833,38.527,38.593,39.789,39.127,40.806,38.833]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"09_clear1k_x8","v":{"total":[28.444,28.691,29.044,27.44,30.61,28.24,27.75,26.49,27.505,28.642,28.228,30.078,29.258,27.94,28.386],"script":[26.066,26.808,26.623,25.094,28.508,25.958,25.657,24.663,25.059,26.252,26.279,27.266,27.339,26.376,26.009],"paint":[2.258,1.768,2.31,2.23,0.933,2.171,1.97,1.716,1.533,2.274,1.842,2.677,1.811,1.454,1.617]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.1113262176513672]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"22_run-memory","v":{"DEFAULT":[8.716071128845215]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[8.882790565490723]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.475168228149414]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[72.92078399658203]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[224.068359375]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[58.767578125]}}, -{"f":"ractive-v1.3.6-non-keyed","b":"43_first-paint","v":{"DEFAULT":[320.9]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"01_run1k","v":{"total":[45.789,46.693,46.271,47.117,46.641,46.602,46.522,47.126,46.992,47.218,47.424,46.87,45.884,47.186,48.014],"script":[12.806,13.011,12.539,12.616,12.899,12.976,12.806,13.663,13.419,13.39,13.206,12.77,12.683,13.426,12.945],"paint":[32.549,33.255,33.307,34.082,33.333,33.212,33.29,33.034,33.144,33.387,33.797,33.675,32.787,33.352,34.658]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"02_replace1k","v":{"total":[19.402,19.256,20.169,19.201,18.656,19.07,19.251,19.007,19.278,19.325,19.649,18.899,19.552,19.193,19.096],"script":[4.77,4.87,4.553,4.72,4.445,4.833,4.845,4.712,4.961,4.644,4.891,4.702,4.581,4.847,4.71],"paint":[14.161,13.975,15.191,14.054,13.79,13.792,13.994,13.867,13.906,14.274,14.284,13.808,14.508,13.939,13.935]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[23.32,21.114,20.387,21.627,21.778,20.923,22.205,21.418,21.076,22.696,21.733,21.494,22.078,21.959,21.613],"script":[6.097,4.578,4.853,5.863,5.849,5.325,5.68,6.014,5.681,5.284,5.841,5.284,5.94,5.505,4.841],"paint":[15.395,15.443,14.183,14.233,14.35,14.663,14.581,13.597,14.042,16.012,14.015,14.426,14.84,15.718,15.215]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"04_select1k","v":{"total":[6.103,5.846,6.348,5.715,5.492,5.101,6.065,5.056,6.57,4.95,6.472,5.298,5.854,5.792,6.146,5.902,5.896,5.891,6.607,6.094,5.872,6.005,5.663,6.34,5.75],"script":[3.247,2.334,2.305,2.346,3.031,2.639,3.188,2.542,3.605,2.553,3.208,2.518,3.346,2.554,3.387,2.536,3.161,2.854,3.266,2.595,3.182,2.834,3.329,2.836,2.948],"paint":[2.005,2.891,3.903,1.831,2.352,2.204,2.725,1.872,2.099,2.283,2.707,2.054,1.57,2.045,2.63,3.21,2.587,2.629,2.665,2.952,1.979,3.043,1.245,2.347,2.654]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"05_swap1k","v":{"total":[13.55,14.195,13.794,13.128,15.028,14.269,14.632,14.643,14.474,14.836,14.495,13.922,14.491,13.835,14.431],"script":[2.175,3.069,2.496,2.079,3.639,2.924,3.538,2.989,3.16,3.165,3.178,2.895,2.792,2.558,3.203],"paint":[10.248,10.397,10.057,9.968,10.172,10.036,10.023,10.339,9.466,9.884,10.317,9.903,9.951,10.271,9.163]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"06_remove-one-1k","v":{"total":[38.877,39.293,38.773,38.568,38.568,38.923,39.478,42.241,38.577,38.903,39.006,41.587,38.572,40.222,41.494],"script":[8.76,8.665,8.592,8.558,8.146,8.47,8.591,8.944,8.374,8.29,8.685,8.617,8.225,9.672,8.58],"paint":[29.316,29.432,29.071,29.348,29.689,29.698,29.662,32.19,29.481,29.889,29.204,32.115,29.606,29.734,31.665]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"07_create10k","v":{"total":[606.847,606.577,607.865,602.148,606.127,603.337,582.096,605.087,602.065,610.372,607.216,599.182,600.756,607.103,602.861],"script":[253.606,253.05,253.419,253.687,254.556,251.811,246.504,252.409,250.634,255.593,254.394,250.049,248.671,254.453,252.488],"paint":[346.097,346.687,347.576,341.688,344.84,344.744,328.871,345.613,344.639,344.668,346.069,342.376,345.343,345.861,343.572]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.541,53.621,51.411,52.679,50.742,51.866,52.597,50.457,51.433,50.277,52.246,52.687,50.717,52.229,51.566],"script":[12.576,13.466,12.541,12.687,12.84,12.774,13.127,12.425,13.084,12.86,13.21,13.367,13.052,13.125,12.874],"paint":[37.063,39.183,37.922,38.887,37.006,38.098,38.555,37.124,37.423,36.491,38.13,38.283,36.746,38.172,37.786]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"09_clear1k_x8","v":{"total":[15.19,15.239,15.195,13.728,15.09,14.999,15.814,15.172,14.97,14.621,15.899,15.73,15.808,14.985,15.316],"script":[13.178,13.067,13.616,11.913,13.408,12.845,13.591,12.8,12.783,12.883,14.402,13.772,13.973,13.212,13.592],"paint":[1.467,1.222,0.917,1.719,0.78,1.168,2.124,2.288,0.996,1.641,1.4,1.866,1.027,1.298,1.624]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.9869413375854492]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[4.39421272277832]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.914580345153809]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.830296516418457]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.720491409301758]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[143.240234375]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[40.1767578125]}}, -{"f":"react-classes-v18.2.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[224.4]}}, -{"f":"redom-v3.29.0-non-keyed","b":"01_run1k","v":{"total":[42.915,43.325,45.094,45.209,43.877,42.762,44.064,44.467,44.007,43.179,43.811,42.914,43.546,42.795,43.015],"script":[9.637,9.59,9.627,10.755,9.967,9.608,9.806,9.786,9.508,9.531,9.784,9.622,9.608,10.231,9.694],"paint":[32.837,33.316,35.044,34.026,33.482,32.72,33.822,34.242,34.009,33.197,33.605,32.878,33.483,32.095,32.852]}}, -{"f":"redom-v3.29.0-non-keyed","b":"02_replace1k","v":{"total":[16.061,16.06,16.648,16.844,15.793,15.662,15.656,15.704,16.644,16.429,16.138,16.021,16.633,16.303,17.547],"script":[1.546,1.492,1.605,1.392,1.398,1.389,1.36,1.414,1.628,1.473,1.498,1.562,1.518,1.488,1.48],"paint":[14.099,14.21,14.571,14.998,13.983,13.845,13.888,13.885,14.567,14.586,14.284,14.096,14.751,14.454,15.641]}}, -{"f":"redom-v3.29.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[17.831,17.219,17.103,17.282,18.237,18.168,17.586,18.021,18.877,18.364,18.483,18.136,17.043,18.513,18.437],"script":[1.913,1.818,1.524,1.029,2.21,1.984,1.409,2.366,1.622,2.018,1.785,1.833,1.588,2.098,2.222],"paint":[14.13,13.883,13.404,15.119,14.005,15.168,15.116,14.276,15.228,14.832,15.199,14.684,13.207,14.351,15.229]}}, -{"f":"redom-v3.29.0-non-keyed","b":"04_select1k","v":{"total":[3.948,2.907,3.446,3.514,3.624,3.327,3.427,3.709,5.776,3.437,3.381,3.104,3.577,4.951,3.053,2.989,2.775,3.585,3.142,3.972,3.996,3.279,2.869,3.673,3.714],"script":[1.305,0.225,0.677,0.891,1.458,0.479,0.922,0.882,0.879,1.251,0.898,0.976,1.755,1.645,0.857,0.922,0.92,1.533,1.203,0.835,1.429,0.222,1.042,1.491,1.703],"paint":[2.531,2.196,2.263,2.527,1.535,1.734,2.396,2.518,2.63,1.321,2.374,1.73,1.307,1.653,0.862,1.486,1.736,1.566,1.125,3.031,1.723,2.519,1.714,2.076,1.23]}}, -{"f":"redom-v3.29.0-non-keyed","b":"05_swap1k","v":{"total":[12.239,12.164,12.682,12.558,12.376,12.626,12.213,12.405,12.279,12.645,13.107,11.836,12.178,13.164,12.493],"script":[0.663,1,1.328,1.37,0.967,1.386,1.699,0.639,1.537,1.205,1.386,0.944,0.94,0.29,1.114],"paint":[10.298,9.737,9.824,9.576,9.773,9.74,8.87,10.238,9.342,9.702,10.732,9.958,9.976,10.695,9.991]}}, -{"f":"redom-v3.29.0-non-keyed","b":"06_remove-one-1k","v":{"total":[33.438,35.758,34.691,33.727,34.762,33.134,33.585,33.819,33.597,35.065,33.634,33.423,33.05,33.685,35.543],"script":[2.797,3.152,2.953,3.054,2.914,2.616,3.044,2.613,3.004,3.067,3.064,2.84,2.948,2.836,3.399],"paint":[29.617,31.748,30.577,29.522,30.77,29.819,29.767,30.258,29.874,30.917,29.777,29.684,29.366,29.732,31.332]}}, -{"f":"redom-v3.29.0-non-keyed","b":"07_create10k","v":{"total":[442.648,444.715,445.112,442.11,444.499,447.417,442.895,445.342,443.22,442.556,445.683,445.968,443.621,446.272,443.688],"script":[103.729,100.756,102.358,101.608,101.38,104.743,102.351,103.397,100.76,102.557,101.573,103.816,101.965,100.794,101.064],"paint":[332.227,337.394,336.24,333.801,336.382,335.994,333.942,335.26,335.835,333.334,337.44,335.452,334.952,338.805,335.947]}}, -{"f":"redom-v3.29.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.983,50.025,49.341,51.131,48.624,49.016,46.699,49.807,49.67,50.278,49.376,49.252,48.927,50.283,49.613],"script":[10.501,11.063,10.85,11.044,10.201,10.372,8.578,10.28,10.984,11.247,10.179,10.643,10.503,10.973,10.297],"paint":[38.58,38.04,37.616,39.149,37.49,37.695,37.217,38.515,37.797,38.097,38.26,37.656,37.471,38.4,38.361]}}, -{"f":"redom-v3.29.0-non-keyed","b":"09_clear1k_x8","v":{"total":[14.096,14.501,14.681,14.431,14.137,13.66,15.462,13.665,14.054,13.785,14.526,14.987,14.282,14.396,14.085],"script":[11.719,12.341,12.661,12.046,11.855,11.914,13.467,11.816,12.292,12.334,12.079,12.791,12.531,12.899,12.253],"paint":[1.98,1.601,1.919,1.887,2.188,1.645,1.295,1.008,0.939,1.354,2.168,2.081,0.867,0.908,1.736]}}, -{"f":"redom-v3.29.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4919414520263672]}}, -{"f":"redom-v3.29.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.445683479309082]}}, -{"f":"redom-v3.29.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.590097427368164]}}, -{"f":"redom-v3.29.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.4091501235961914]}}, -{"f":"redom-v3.29.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[19.20994281768799]}}, -{"f":"redom-v3.29.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[9.4873046875]}}, -{"f":"redom-v3.29.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.2451171875]}}, -{"f":"redom-v3.29.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[54.4]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"01_run1k","v":{"total":[120.522,125.195,119.787,126.959,127.847,120.883,121.636,125.514,119.989,121.095,121.38,121.9,123.604,119.277,124.151],"script":[85.394,88.451,84.14,91.633,92.382,85.012,86.394,88.407,83.795,85.64,86,86.484,88.263,84.072,88.151],"paint":[34.922,36.529,35.445,35.115,35.253,35.654,35.026,36.889,35.971,35.248,35.141,35.192,35.118,34.99,35.788]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"02_replace1k","v":{"total":[136.111,132.144,132.715,132.849,133.991,130.75,129.406,131.536,129.775,129.895,133.1,132.665,131.328,130.133,130.283],"script":[104.67,100.637,101.361,101.466,102.497,98.904,98.192,100.321,98.339,98.36,101.533,101.495,100.105,98.653,98.939],"paint":[31.23,31.296,31.126,31.175,31.277,31.612,31.001,31.004,31.21,31.301,31.353,30.949,30.991,31.26,31.131]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"03_update10th1k_x16","v":{"total":[79.689,75.698,78.988,80.571,79.241,78.142,78.736,79.134,75.526,77.03,74.742,77.088,76.485,79.783,79.147],"script":[44.725,42.718,43.983,46.535,47.236,42.572,45.019,46.958,44.029,45.183,42.954,43.355,44.431,45.534,43.099],"paint":[33.14,30.257,33.617,33.401,31.824,35.036,33.092,31.737,31.085,31.033,31.023,31.631,31.086,32.493,32.038]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"04_select1k","v":{"total":[39.177,39.609,44.868,43.824,41.938,42.109,41.549,37.301,44.783,43.998,41.421,45.737,44.436,41.357,39.749,47.199,39.589,42.9,46.353,40.491,41.809,40.988,45.706,44.899,43.545],"script":[8.34,7.427,7.739,7.773,6.314,6.51,6.412,7.197,7.112,6.409,7.145,6.165,7.271,6.121,5.703,7.514,7.355,7.945,7.186,6.127,6.057,5.918,6.294,7.645,7.676],"paint":[25.124,24.349,24.902,24.997,24.769,24.042,23.636,23.345,26.188,25.541,24.312,26.142,25.868,25.694,26.688,25.584,23.217,24.265,25.081,24.951,25.162,24.389,25.651,24.881,24.409]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"05_swap1k","v":{"total":[24.319,57.761,25.194,24.733,56.957,25.402,25.194,24.809,57.259,24.68,57.145,24.568,56.039,25.629,25.754],"script":[6.522,7.331,6.381,6.686,8.119,6.663,6.257,6.838,7.314,6.32,7.99,6.622,8.699,6.174,6.825],"paint":[16.172,21.323,17.793,17.91,19.364,17.828,17.339,17.572,19.679,18.225,20.009,17.814,19.4,18.691,18.797]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"06_remove-one-1k","v":{"total":[22.499,20.369,24.243,23.155,24.893,24.827,25.501,26.149,23.656,24.376,27.247,20.681,22.514,29.698,24.639],"script":[2.533,2.485,2.274,2.637,2.309,2.811,2.35,3.101,3.053,2.502,2.572,2.206,2.359,2.685,2.445],"paint":[16.475,15.946,16.169,15.665,15.833,16.66,15.367,16.216,15.986,15.059,16.917,15.403,15.643,15.523,15.683]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"07_create10k","v":{"total":[1022.267,1024.341,1018.437,1033.393,994.978,1014.298,1020.556,1040.878,1031.098,1022.003,990.989,996.791,1021.622,1013.051,1021.519],"script":[644.128,641.379,639.991,652.131,629.969,636.955,639.817,662.129,653.251,639.315,626.341,635.187,643.734,632.065,639.359],"paint":[374.883,380.092,375.567,378.504,362.326,374.527,375.492,376.044,375.144,379.527,361.885,358.862,375.221,375.998,377.38]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[114.612,115.788,117.858,116.23,120.506,113.881,115.903,114.03,118.38,114.065,114.135,116.819,119.472,116.735,117.675],"script":[74.407,75.918,76.359,75.944,80.27,74.205,75.933,74.543,75.946,74.462,74.582,76.238,79.124,77.076,77.346],"paint":[39.88,39.55,41.167,39.956,39.917,39.35,39.641,39.17,42.113,39.275,39.236,40.239,40.021,39.306,40.014]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"09_clear1k_x8","v":{"total":[82.541,82.811,83.737,80.477,81.928,81.349,84.048,85.84,81.285,84.436,80.199,80.5,83.144,83.166,82.476],"script":[79.593,81.37,80.122,78.744,79.094,77.59,81.404,80.664,76.722,79.27,77.691,78.694,80.902,78.817,79.962],"paint":[2.818,0.833,3.347,1.617,2.696,3.497,2.286,3.717,3.786,4.151,1.088,1.571,2.12,2.564,1.522]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[8.079695701599121]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"22_run-memory","v":{"DEFAULT":[21.804302215576172]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[25.147835731506348]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[41.19637870788574]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[128.50971794128418]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[2739.7021484375]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[264.0654296875]}}, -{"f":"reflex-dom-v0.4-non-keyed","b":"43_first-paint","v":{"DEFAULT":[3495.6]}}, -{"f":"reken-v0.9.6-non-keyed","b":"01_run1k","v":{"total":[40.356,39.871,39.463,38.526,39.417,38.795,39.131,39.919,39.755,40.304,38.676,38.191,38.874,37.334,39.996],"script":[4.961,4.932,4.724,4.666,4.585,4.662,4.935,4.721,4.949,4.943,4.732,4.904,4.434,4.683,4.879],"paint":[34.971,34.503,34.335,33.431,34.391,33.718,33.764,34.784,34.398,34.944,33.528,32.893,34.01,32.235,34.677]}}, -{"f":"reken-v0.9.6-non-keyed","b":"02_replace1k","v":{"total":[17.803,16.648,16.756,18.12,17.355,16.952,16.843,17.269,17.129,17.371,18.217,17.352,17.056,17.182,17.341],"script":[2.16,2.205,2.226,2.732,2.25,2.35,2.406,2.441,2.459,2.409,2.403,2.461,2.422,2.473,2.434],"paint":[15.155,13.994,14.065,14.889,14.582,14.161,13.984,14.436,14.219,14.57,15.358,14.494,14.251,14.266,14.507]}}, -{"f":"reken-v0.9.6-non-keyed","b":"03_update10th1k_x16","v":{"total":[19.892,20.212,20.148,19.875,20.559,19.155,20.014,22.001,19.476,20.668,20.141,19.678,19.357,21.669,19.852],"script":[3.609,3.814,3.912,4.205,3.974,3.794,4.008,3.964,3.223,3.31,4.195,3.744,3.681,4.537,3.973],"paint":[14.228,13.517,14.633,14.25,15.431,13.732,14.251,15.623,14.861,15.836,14.264,14.637,14.4,14.737,14.534]}}, -{"f":"reken-v0.9.6-non-keyed","b":"04_select1k","v":{"total":[6.214,6.113,6.182,5.92,6.085,6.121,5.608,5.478,5.891,8.363,5.823,6.41,6.635,5.694,5.829,6.126,6.713,5.497,6.429,6.187,6.02,6.29,6.079,5.414,6.652],"script":[3.377,3.363,3.644,3.264,3.393,3.932,2.919,3.279,2.853,4.024,3.398,3.808,4,3.364,3.093,3.099,3.366,3.1,3.617,3.381,3.442,3.394,3.563,3.155,3.605],"paint":[2.717,1.888,2.408,2.208,2.277,2.073,1.878,1.716,2.536,3.338,2.22,2.457,2.488,1.403,1.687,2.901,3.225,2.277,2.658,2.668,1.451,2.758,2.378,1.465,2.902]}}, -{"f":"reken-v0.9.6-non-keyed","b":"05_swap1k","v":{"total":[17.026,14.779,16.55,16.18,17.773,16.203,16.676,17.127,16.979,16.937,16.651,16.824,14.889,15.088,16.07],"script":[5.852,3.028,5.01,4.805,5.118,5.085,4.651,5.18,4.77,5.497,5.107,5.392,3.588,3.141,4.896],"paint":[9.25,9.801,9.303,9.828,10.737,9.92,11.329,10.501,10.758,8.952,9.217,9.955,10.265,10.667,9.581]}}, -{"f":"reken-v0.9.6-non-keyed","b":"06_remove-one-1k","v":{"total":[36.825,35.753,36.131,36.378,36.357,35.054,36.735,39.554,36.727,36.349,36.183,35.97,36.087,36.187,35.504],"script":[5.955,4.799,4.85,4.946,5.105,4.892,5.041,5.55,5.909,5.02,5.374,4.926,4.732,5.061,4.843],"paint":[29.782,29.884,30.311,30.675,30.468,29.031,30.524,33.144,30.002,30.571,29.483,30.287,30.238,29.982,29.586]}}, -{"f":"reken-v0.9.6-non-keyed","b":"07_create10k","v":{"total":[417.519,422.563,414.638,423.79,417.32,420.599,420.813,419.77,416.228,422.921,417.16,417.638,417.751,417.027,418.464],"script":[59.563,62.157,59.102,61.811,61.707,62.875,60.622,60.834,60.737,61.445,60.388,59.299,61.178,57.329,59.016],"paint":[350.348,352.759,348.106,354.355,347.991,349.921,352.72,351.38,347.974,354.076,349.24,350.925,348.986,352.356,352.105]}}, -{"f":"reken-v0.9.6-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[46.42,45.426,47.073,46.43,44.837,45.296,45.254,45.726,45.467,45.43,46.263,45.022,46.963,45.859,45.942],"script":[5.934,5.508,5.831,6.22,5.957,5.991,5.62,6.23,5.679,5.868,5.425,5.831,6.014,5.811,5.855],"paint":[39.507,39.042,40.338,39.257,38.006,38.401,38.831,38.664,38.865,38.604,39.988,38.264,40.052,39.09,39.16]}}, -{"f":"reken-v0.9.6-non-keyed","b":"09_clear1k_x8","v":{"total":[13.165,12.823,12.764,13.13,13.007,13.736,13.767,13.551,12.669,12.75,12.768,12.694,12.876,12.467,13.168],"script":[11.561,11.03,10.807,11.27,11.13,11.366,11.601,11.603,11.309,11.054,11.453,10.771,10.453,10.851,11.72],"paint":[0.366,1.13,1.863,1.773,1.425,1.269,2.071,1.419,0.708,1.585,1.223,1.838,2.329,1.19,1.343]}}, -{"f":"reken-v0.9.6-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.6938457489013672]}}, -{"f":"reken-v0.9.6-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.06345272064209]}}, -{"f":"reken-v0.9.6-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.9527387619018555]}}, -{"f":"reken-v0.9.6-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9288501739501953]}}, -{"f":"reken-v0.9.6-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[20.566624641418457]}}, -{"f":"reken-v0.9.6-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[32.2421875]}}, -{"f":"reken-v0.9.6-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.921875]}}, -{"f":"reken-v0.9.6-non-keyed","b":"43_first-paint","v":{"DEFAULT":[87.7]}}, -{"f":"riot-v7.1.0-non-keyed","b":"01_run1k","v":{"total":[45.787,44.963,45.747,47.019,46.04,46.426,47.122,46.284,46.004,46.952,46.352,45.696,46.554,45.568,44.947],"script":[12.099,11.641,12.112,12.205,11.866,12.77,12.691,12.23,12.438,12.606,12.492,12.632,12.867,11.829,12.833],"paint":[33.26,32.905,33.186,34.372,33.72,33.237,33.998,33.64,33.137,33.92,33.435,32.642,33.271,33.285,31.69]}}, -{"f":"riot-v7.1.0-non-keyed","b":"02_replace1k","v":{"total":[16.709,16.531,16.496,16.775,16.846,18.243,16.766,18.369,17.22,18.042,18.127,16.765,17.975,17.909,17.355],"script":[2.266,2.267,2.356,2.345,2.374,2.463,2.344,2.472,2.361,2.43,2.389,2.325,2.45,2.428,2.422],"paint":[13.991,13.857,13.723,14.007,14.025,15.333,14.005,15.472,14.49,15.185,15.306,13.999,15.122,15.036,14.502]}}, -{"f":"riot-v7.1.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[20.921,22.19,22.361,21.052,22.096,21.336,20.963,20.608,20.586,22.302,20.712,21.889,21.709,21.519,21.911],"script":[5.3,5.838,6.106,5.39,5.687,6.308,5.317,5.429,5.279,6.176,5.277,5.534,5.83,6.183,6.109],"paint":[14.572,15.021,15.595,14.596,14.94,14.051,13.615,13.654,13.413,14.608,14.185,14.039,13.573,13.202,14.327]}}, -{"f":"riot-v7.1.0-non-keyed","b":"04_select1k","v":{"total":[9.228,6.889,8.085,7.781,8.791,7.814,7.259,8.649,7.978,7.739,7.939,8.133,8.188,8.385,7.603,7.848,8.454,7.334,8.355,7.897,7.71,8.104,8.603,7.726,8.19],"script":[6.058,4.742,4.958,5.138,6.099,5.87,4.957,5.375,5.247,5.521,5.329,5.649,4.952,5.724,5.12,5.416,5.015,5.504,5.795,4.931,4.905,5.514,5.418,4.975,5.713],"paint":[2.38,1.601,2.853,2.498,2.523,1.468,2.186,2.663,2.578,1.433,1.669,2.354,2.948,1.64,1.945,2.282,2.881,1.568,0.952,1.945,2.047,2.454,1.843,1.98,1.915]}}, -{"f":"riot-v7.1.0-non-keyed","b":"05_swap1k","v":{"total":[16.85,16.769,16.019,16.321,16.4,16.923,17.327,16.431,17.061,16.574,16.339,17.096,16.502,16.366,16.622],"script":[5.6,5.672,5.276,5.454,5.113,5.302,5.979,5.659,5.8,5.267,5.416,5.482,4.967,5.279,5.709],"paint":[9.538,9.968,9.512,8.682,9.697,9.283,9.488,9.223,10.267,10.239,9.589,9.943,10.086,8.864,9.924]}}, -{"f":"riot-v7.1.0-non-keyed","b":"06_remove-one-1k","v":{"total":[34.724,33.783,34.271,33.781,33.253,34.935,33.223,34.544,33.407,33.288,33.397,34.045,33.511,33.832,33.926],"script":[4.174,4.21,4.168,4.143,3.699,4.105,3.58,4.309,3.757,3.86,3.801,3.948,3.735,3.825,3.808],"paint":[29.538,28.5,29.322,28.83,28.777,30.02,28.809,29.51,28.655,28.66,28.869,29.13,29.025,29.276,29.078]}}, -{"f":"riot-v7.1.0-non-keyed","b":"07_create10k","v":{"total":[483.971,477.114,479.621,479.915,488.237,478.459,483.42,480.317,482.97,484.148,488.677,478.606,483.432,487.89,478.022],"script":[134.018,131.513,132.728,133.801,133.691,129.982,134.224,133.706,133.953,133.618,135.546,132.02,134.888,137.001,131.901],"paint":[342.222,338.777,340.178,339.141,347.689,341.745,342.402,339.869,342.1,343.799,346.364,339.809,341.644,343.814,339.344]}}, -{"f":"riot-v7.1.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[55.152,55.451,55.277,57.602,55.451,54.706,53.606,54.554,56.692,54.356,50.94,51.538,52.124,56.078,51.964],"script":[14.042,13.389,13.805,15.406,14.212,13.035,12.821,13.089,13.1,13.826,12.229,12.439,13.1,12.994,12.446],"paint":[40.107,41.192,40.493,41.282,40.286,40.804,39.823,40.518,42.657,39.531,37.779,38.169,38.18,42.109,38.288]}}, -{"f":"riot-v7.1.0-non-keyed","b":"09_clear1k_x8","v":{"total":[22.808,25.109,24.042,24.986,23.982,22.828,24.341,26.709,21.507,21.381,23.82,23.289,22.822,24.239,23.291],"script":[20.418,22.673,22.277,23.159,21.612,21.23,22.409,24.367,19.483,19.695,21.896,21.074,20.642,22.023,21.389],"paint":[2.274,1.916,1.669,1.002,2.259,0.688,1.82,2.206,1.891,1.585,0.735,2.11,1.217,2.099,1.769]}}, -{"f":"riot-v7.1.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5330419540405273]}}, -{"f":"riot-v7.1.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.581083297729492]}}, -{"f":"riot-v7.1.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.6073036193847656]}}, -{"f":"riot-v7.1.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9135637283325195]}}, -{"f":"riot-v7.1.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[30.22905445098877]}}, -{"f":"riot-v7.1.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[19.9033203125]}}, -{"f":"riot-v7.1.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[6.41796875]}}, -{"f":"riot-v7.1.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[55.8]}}, -{"f":"san-v3.12.2-non-keyed","b":"01_run1k","v":{"total":[40.241,39.559,39.992,39.578,39.77,40.11,39.602,40.252,40.657,43.194,41.35,40.282,39.405,39.078,40.014],"script":[7.163,6.761,6.677,6.641,6.731,6.548,6.573,7.248,7.355,6.863,7.147,7.076,6.74,6.65,7.224],"paint":[32.659,32.396,32.914,32.511,32.62,33.172,32.617,32.608,32.897,35.86,33.777,32.802,32.269,32.029,32.373]}}, -{"f":"san-v3.12.2-non-keyed","b":"02_replace1k","v":{"total":[17.158,17.2,16.623,17.869,18.014,18.102,18.551,17.553,17.913,17.927,17.226,18.699,18.03,18.261,17.244],"script":[2.635,2.641,2.34,2.433,2.397,2.53,2.711,3,2.701,2.451,2.85,2.579,2.475,2.534,2.418],"paint":[14.105,14.117,13.879,15.018,15.208,15.143,15.44,14.107,14.777,15.047,13.938,15.702,15.154,15.333,14.434]}}, -{"f":"san-v3.12.2-non-keyed","b":"03_update10th1k_x16","v":{"total":[18.163,19.161,18.376,17.765,18.669,17.866,17.641,18.085,17.775,17.318,17.746,17.668,19.002,17.841,16.701],"script":[2.876,2.885,2.791,2.276,2.462,1.944,2.379,2.771,1.91,2.597,2.793,2.448,2.541,2.351,1.732],"paint":[14.305,14.428,13.832,12.955,14.665,14.791,13.067,13.971,14.767,13.737,13.42,13.903,15.032,13.537,13.159]}}, -{"f":"san-v3.12.2-non-keyed","b":"04_select1k","v":{"total":[5.004,3.613,4.451,3.567,3.779,3.898,2.845,3.709,6.869,4.016,3.256,5.38,3.3,5.229,3.709,3.427,3.348,3.148,2.774,3.906,3.637,4.932,3.681,3.723,3.083],"script":[1.292,0.943,1.217,0.624,1.574,1.977,1.333,1.213,1.28,1.772,1.19,1.231,1.29,0.942,1.235,1.348,1.156,1.26,0.815,1.56,0.973,1.545,1.484,1.428,1.254],"paint":[1.829,1.168,3.121,2.837,2.101,1.813,1.066,0.54,2.554,1.353,1.248,2.963,1.219,1.53,2.368,1.981,1.614,1.113,0.998,1.492,2.561,1.294,1.424,1.287,1.431]}}, -{"f":"san-v3.12.2-non-keyed","b":"05_swap1k","v":{"total":[12.231,12.054,12.163,12.424,12.707,11.452,12.51,11.689,11.846,12.294,11.664,12.533,11.991,11.968,12.29],"script":[1.515,1.366,1.054,0.889,1.273,1.591,1.565,0.58,1.357,1.468,0.609,0.587,0.921,0.894,1.428],"paint":[9.341,8.962,9.666,9.763,10.219,7.708,9.339,9.254,8.727,9.416,9.742,10.396,10.035,9.225,9.637]}}, -{"f":"san-v3.12.2-non-keyed","b":"06_remove-one-1k","v":{"total":[40.743,38.093,35.557,37.442,34.651,37.411,34.916,34.446,35.328,35.657,33.95,35.854,34.583,35.502,34.665],"script":[4.708,4.63,4.741,4.544,4.892,4.383,4.913,4.774,4.947,4.422,4.9,4.99,4.532,5.419,4.923],"paint":[34.895,32.327,29.854,31.952,28.713,32.237,28.891,28.706,29.441,30.152,28.302,29.45,28.871,29.288,28.971]}}, -{"f":"san-v3.12.2-non-keyed","b":"07_create10k","v":{"total":[417.879,418.063,422.917,401.709,419.015,401.202,404.001,426.011,404.706,421.39,422.863,420.157,418.607,418.193,425.13],"script":[79.225,79.138,81.544,73.255,78.233,76.39,75.393,84.117,75.66,80.286,80.719,79.542,78.918,75.503,80.978],"paint":[332.02,332.342,334.555,321.828,333.776,318.253,322.004,334.519,322.242,334.353,335.55,333.902,332.378,336.086,337.452]}}, -{"f":"san-v3.12.2-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[47.556,45.203,45.398,44.872,46.745,45.12,45.977,46.172,45.815,46.542,45.194,45.139,46.008,45.357,46.605],"script":[8.016,6.946,7.217,7.128,7.627,7.078,7.021,7.544,7.07,7.188,7.01,7.019,7.601,7.137,7.257],"paint":[38.643,37.383,37.331,36.941,38.222,37.228,38.15,37.738,37.848,38.464,37.302,37.233,37.554,37.248,38.47]}}, -{"f":"san-v3.12.2-non-keyed","b":"09_clear1k_x8","v":{"total":[15.609,16.043,15.902,16.213,16.379,15.255,15.902,15.537,15.69,15.984,15.144,16.598,15.452,16.309,16.519],"script":[13.73,14.153,14.091,14.039,14.153,13.989,13.831,14.375,14.214,14.654,13.84,14.301,13.801,14.695,14.825],"paint":[1.782,1.791,1.634,2.077,1.332,0.381,1.982,0.389,1.373,1.249,0.684,1.248,1.199,1.173,1.6]}}, -{"f":"san-v3.12.2-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.8001441955566406]}}, -{"f":"san-v3.12.2-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.4340925216674805]}}, -{"f":"san-v3.12.2-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.633708953857422]}}, -{"f":"san-v3.12.2-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.1238336563110352]}}, -{"f":"san-v3.12.2-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[26.059785842895508]}}, -{"f":"san-v3.12.2-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[71.0341796875]}}, -{"f":"san-v3.12.2-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[17.8583984375]}}, -{"f":"san-v3.12.2-non-keyed","b":"43_first-paint","v":{"DEFAULT":[117.1]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"01_run1k","v":{"total":[42.053,42.905,43.24,43.407,42.636,42.601,42.865,42.709,42.291,42.597,41.74,44.187,42.957,42.651,43.194],"script":[7.679,8.266,8.169,8.234,8.211,8.53,8.109,8.271,7.496,8.267,7.476,8.056,8.267,8.307,8.383],"paint":[33.914,34.18,34.612,34.7,33.989,33.624,34.312,33.94,34.333,33.882,33.828,35.654,34.241,33.908,34.357]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"02_replace1k","v":{"total":[23.068,15.82,16.417,18.549,21.955,17.908,16.984,15.763,17.765,17.911,19.169,22.305,16.335,16.793,21.217],"script":[1.685,1.54,1.509,1.623,1.609,1.574,1.533,1.518,1.532,1.639,1.67,1.694,1.646,1.577,1.625],"paint":[13.781,13.541,13.576,13.792,13.51,14.196,14.02,13.863,14.088,14.655,14.15,14.402,14.286,15.072,13.645]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"03_update10th1k_x16","v":{"total":[17.566,19.774,18.939,32.572,16.509,18.421,19.285,18.219,18.622,18.306,17.624,17.131,18.149,17.263,17.165],"script":[2.191,2.724,1.108,1.854,1.62,1.207,1.104,1.953,1.578,1.561,1.32,1.246,1.489,1.883,2.349],"paint":[15.258,14.275,16.525,14.452,13.854,15.835,16.372,15.272,15.031,14.785,15.116,15.391,15.275,15.248,14.701]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"04_select1k","v":{"total":[3.31,4.351,3.95,3.913,3.643,2.448,3.189,3.18,3.748,3.7,3.423,3.982,3.356,3.213,3.619,4.198,5.405,4.924,3.302,4.975,3.832,3.477,4.164,7.202,2.763],"script":[1.022,1.157,0.557,1.319,1.114,0.218,0.901,0.85,0.949,1.424,0.913,0.956,0.623,0.323,0.961,1.175,0.355,1.181,0.218,0.22,0.87,0.682,0.996,0.221,0.218],"paint":[1.788,2.107,2.377,2.307,2.407,2.116,2.184,1.24,2.072,2.155,1.607,2.065,2.614,2.161,2.543,1.876,2.714,2.947,1.696,1.438,2.837,1.391,2.538,2.466,2.423]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"05_swap1k","v":{"total":[26.893,26.72,12.739,12.676,11.201,11.943,11.549,11.865,13.742,11.539,13.749,12.07,27.312,12.13,26.946],"script":[0.615,0.208,0.882,0.982,0.321,1.581,0.823,0.299,0.863,0.184,0.91,1.104,0.842,0.724,0.573],"paint":[10.232,10.758,10.119,9.769,9.287,9.284,10.587,10.134,11.103,9.503,10.634,9.985,10.426,10.775,10.278]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"06_remove-one-1k","v":{"total":[16.128,16.367,16.292,16.263,16.15,16.103,16.008,16.066,15.681,15.627,16.125,16.419,16.35,16.136,16.201],"script":[0.377,0.382,0.571,0.597,0.586,0.567,0.33,0.289,0.332,0.26,0.561,0.603,0.426,0.581,0.332],"paint":[14.726,14.831,14.57,14.679,14.728,14.773,14.842,15.014,14.546,14.009,14.544,14.662,15.316,14.804,14.641]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"07_create10k","v":{"total":[434.82,434.112,434.782,432.195,433.639,437.217,436.545,439.152,445.337,442.128,438.683,445.022,444.534,437.834,432.919],"script":[90.259,88.56,89.327,89.623,90.27,95.595,90.542,89.83,100.424,96.422,91.365,100.203,89.236,89.363,89.687],"paint":[336.951,338.191,337.995,335.258,336.143,334.263,338.573,341.726,337.358,338.305,339.933,337.483,347.938,341.088,335.878]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[47.211,47.458,47.757,48.019,47.556,49.472,48.929,47.71,46.583,48.044,49.097,48.64,49.063,46.941,49.293],"script":[7.394,6.996,7.088,7.153,7.072,7.747,7.627,7.759,6.975,7.126,7.715,7.724,7.622,7.056,7.724],"paint":[38.85,39.492,39.711,39.955,39.535,40.759,40.377,39.092,38.675,39.962,40.431,39.952,40.533,38.954,40.651]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"09_clear1k_x8","v":{"total":[13.701,14.246,15.067,15.134,13.835,13.789,14.242,13.936,14.353,13.887,14.332,15.717,13.692,13.905,13.886],"script":[11.793,11.79,12.649,12.554,11.399,11.604,11.877,11.793,11.87,11.918,12.461,13.368,11.622,11.482,12.372],"paint":[1.579,2.326,1.506,1.615,2.35,2.097,1.518,1.552,1.869,1.666,1.082,1.482,1.962,1.727,1.417]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.8547477722167969]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"22_run-memory","v":{"DEFAULT":[4.1051740646362305]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.267002105712891]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.2412567138671875]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[31.617819786071777]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[117.6025390625]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[30.4853515625]}}, -{"f":"scarlets-frame-v0.34.6-non-keyed","b":"43_first-paint","v":{"DEFAULT":[160.9]}}, -{"f":"seed-v0.8.0-non-keyed","b":"01_run1k","v":{"total":[58.333,55.089,56.308,58.26,57.679,58.519,53.862,57.684,54.266,57.192,58.11,57.008,58.667,57.891,56.994],"script":[21.454,21.028,21.988,21.938,21.352,22.407,20.779,20.969,20.807,21.722,22.593,21.888,22.786,22.028,21.514],"paint":[36.431,33.651,33.887,35.877,35.852,35.664,32.685,36.272,33.05,35.024,35.094,34.699,35.457,35.422,35.036]}}, -{"f":"seed-v0.8.0-non-keyed","b":"02_replace1k","v":{"total":[28.607,30.219,29.431,29.879,30.757,30.639,29.696,30.378,30.035,29.431,28.45,30.127,28.466,30.201,30.229],"script":[14.412,15.921,15.202,15.278,16.138,16.25,15.288,15.663,15.501,15.096,14.451,15.469,14.415,15.441,15.7],"paint":[13.738,13.919,13.839,14.188,14.248,13.993,14.016,14.342,14.062,13.927,13.559,14.266,13.594,14.366,14.149]}}, -{"f":"seed-v0.8.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[70.004,67.644,67.207,67.492,69.069,67.722,72.009,67.504,67.898,67.362,73.566,68.031,70.647,67.018,67.406],"script":[52.097,51.64,51.245,51.369,51.77,51.097,55.64,51.45,51.333,51.017,57.198,51.787,53.091,50.932,51.323],"paint":[15.794,14.862,13.617,15.052,15.24,14.257,14.337,13.4,15.459,14.189,14.571,14.857,15.175,14.348,14.164]}}, -{"f":"seed-v0.8.0-non-keyed","b":"04_select1k","v":{"total":[53.869,59.357,53.638,55.919,54.364,54.969,54.11,53.953,54.386,53.224,56.909,53.06,59.901,55.421,53.81,60.517,53.461,55.008,53.642,61.43,53.902,54.579,60.438,53.896,54.023],"script":[50.21,55.844,50.529,52.029,50.556,50.518,49.946,50.871,51.522,49.504,53.098,49.68,56.453,52.311,50.357,57.758,50.315,51.6,50.498,57.747,50.717,50.278,56.65,50.694,50.561],"paint":[2.59,3.06,2.277,3.054,2.89,3.824,3.592,1.801,2.188,3.106,2.861,2.779,2.143,2.926,2.719,1.761,2.773,2.58,2.317,2.779,2.165,3.166,2.626,3.018,3.267]}}, -{"f":"seed-v0.8.0-non-keyed","b":"05_swap1k","v":{"total":[62.417,60.969,64.056,61.985,60.445,60.713,68.89,62.129,61.49,61.608,61.632,61.514,61.565,62.031,62.229],"script":[50.983,49.638,52.79,50.594,49.913,49.672,56.203,51.053,50.152,50.302,49.756,49.838,50.118,50.649,50.799],"paint":[9.578,10.33,10.302,9.554,8.69,8.956,11.412,9.384,10.956,9.597,10.513,10.33,10.658,9.804,10.084]}}, -{"f":"seed-v0.8.0-non-keyed","b":"06_remove-one-1k","v":{"total":[60.308,57.912,59.482,60.066,59.66,59.029,60.979,60.048,58.804,60.569,58.259,59.374,60.575,60.84,59.013],"script":[29.611,28.44,29.818,29.956,29.422,28.807,30.371,29.332,28.823,30.228,28.713,29.968,30.226,29.999,29.014],"paint":[29.931,28.678,28.648,28.904,29.308,29.066,29.518,29.734,29.17,29.505,28.375,28.655,29.02,30.061,29.029]}}, -{"f":"seed-v0.8.0-non-keyed","b":"07_create10k","v":{"total":[649.361,639.451,648.434,647.75,655.799,651.848,655.074,651.183,643.86,644.778,631.296,629.97,648.615,646.719,637.589],"script":[285.675,280.221,284.076,286.946,287.898,287.566,291.158,284.251,277.152,282.519,271.091,274.552,287.779,283.903,277.297],"paint":[356.905,352.553,357.656,354.078,361.088,357.334,357.221,360.229,359.84,355.447,353.376,348.672,354.056,355.927,353.69]}}, -{"f":"seed-v0.8.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[83.947,84.786,84.417,82.87,84.241,83.158,83.373,84.486,84.254,85.432,83.287,83.719,84.952,85.045,82.847],"script":[43.297,43.811,43.962,43.014,43.075,41.388,42.569,43.41,44.118,44.325,43.531,43.793,44.011,43.75,42.461],"paint":[39.762,40.095,39.561,38.965,40.277,40.959,39.903,40.157,39.252,40.188,38.871,39.036,40.035,40.394,39.49]}}, -{"f":"seed-v0.8.0-non-keyed","b":"09_clear1k_x8","v":{"total":[26.934,29.077,28.402,26.796,30.368,28.332,27.495,27.16,28.943,27.925,29.296,30.115,27.366,26.935,29.957],"script":[25.443,27.292,26.317,25.107,28.413,26.464,25.532,24.982,26.835,26.369,26.941,27.967,25.407,25.09,27.502],"paint":[1.381,1.666,1.975,1.575,1.182,1.756,1.095,2.075,2.003,1.452,2.258,1.869,0.792,1.096,2.333]}}, -{"f":"seed-v0.8.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.7524213790893555]}}, -{"f":"seed-v0.8.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[10.869088172912598]}}, -{"f":"seed-v0.8.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[19.192293167114258]}}, -{"f":"seed-v0.8.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[10.136829376220703]}}, -{"f":"seed-v0.8.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[93.31236839294434]}}, -{"f":"seed-v0.8.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[436.837890625]}}, -{"f":"seed-v0.8.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[127.9482421875]}}, -{"f":"seed-v0.8.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[772.4]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"01_run1k","v":{"total":[36.188,36.509,36.228,36.189,35.755,36.459,35.588,36.062,35.652,35.396,35.247,35.708,36.703,35.527,36.102],"script":[1.923,2.061,1.871,1.878,1.903,1.876,1.892,1.906,1.952,1.95,2.011,1.882,2.055,1.979,1.871],"paint":[33.829,34.013,33.904,33.901,33.434,34.139,33.279,33.727,33.271,33.009,32.786,33.36,34.218,33.101,33.778]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"02_replace1k","v":{"total":[17.739,16.586,16.813,15.734,16.024,15.737,16.264,16.834,15.719,15.805,16.964,15.522,15.456,15.513,15.761],"script":[1.391,1.287,1.303,1.41,1.376,1.352,1.245,1.223,1.281,1.364,1.312,1.211,1.164,1.227,1.309],"paint":[15.746,14.832,14.946,13.921,14.21,13.943,14.593,15.172,14.057,14.008,15.179,13.928,13.867,13.911,14.022]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"03_update10th1k_x16","v":{"total":[17.222,16.939,17.216,18.838,17.238,17.723,17.17,18.309,18.005,18.023,17.397,17.344,17.357,17.428,16.971],"script":[1.853,1.97,1.06,1.963,1.447,2.175,1.911,1.917,1.93,2.223,1.82,1.311,1.191,1.314,1.285],"paint":[13.006,13.186,14.963,14.718,14.597,14.251,13.246,14.538,14.795,14.432,14.595,14.732,14.16,14.566,14.974]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"04_select1k","v":{"total":[3.917,3.08,3.999,3.595,4.073,3.843,3.472,4.253,3.531,4.802,4.404,3.697,3.274,3.604,3.42,3.896,4.033,4.656,3.782,4.095,3.355,3.562,3.479,4.149,3.787],"script":[0.924,0.66,1.741,1.302,1.225,0.981,1.712,1.549,1.212,1.03,1.641,0.697,1.153,1.221,0.91,1.765,1.629,1.022,0.999,1.325,0.728,1.499,1.328,1.655,1.075],"paint":[2.288,2.31,1.326,2.173,1.829,2.746,1.645,1.887,1.735,1.94,1.605,2.138,0.459,2.279,1.377,1.42,2.285,2.137,1.918,2.018,2.512,1.947,1.464,2.391,2.256]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"05_swap1k","v":{"total":[11.674,11.823,11.62,10.857,11.46,11.754,11.443,11.638,11.836,11.929,11.281,10.908,11.194,11.475,12.036],"script":[0.836,0.569,0.553,0.101,0.588,0.528,0.212,0.093,0.439,0.496,0.101,0.102,0.1,0.109,0.096],"paint":[10.066,9.341,8.952,8.938,9.583,9.347,10.175,10.505,10.127,9.499,9.818,9.616,10.056,9.427,10.653]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"06_remove-one-1k","v":{"total":[32.538,31.896,32.062,32.094,31.515,30.871,33.792,32.08,31.846,33.781,32.873,32.805,32.491,32.545,32.915],"script":[2.154,2.435,2.152,2.114,2.086,1.983,2.491,2.155,2.375,2.577,2.072,2.414,2.431,2.166,2.438],"paint":[29.617,28.514,28.866,28.998,28.359,28.104,30.129,29.183,28.43,30.352,29.675,29.526,29.26,29.419,29.759]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"07_create10k","v":{"total":[563.272,543.996,543.452,559.948,547.575,563.676,560.563,558.776,541.819,542.703,556.418,558.456,546.212,539.355,537.012],"script":[192.372,193.737,194.582,195.695,196.777,197.724,193.76,193.238,193.188,194.401,192.827,194.03,190.833,189.813,191.253],"paint":[363.943,343.459,342.068,357.414,344.007,358.966,359.969,358.725,341.886,341.54,356.685,357.54,348.32,342.745,338.284]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[62.825,63.376,63.83,64.504,63.788,65.681,64.856,63.104,66.045,62.947,64.625,64.094,65.478,64.815,64.266],"script":[21.857,21.707,21.78,22.433,22.614,23.462,23.122,21.484,23.255,21.43,23.085,21.979,22.499,22.303,22.909],"paint":[40.036,40.712,41.172,41.141,40.245,41.32,40.824,40.696,41.869,40.587,40.644,41.183,42.025,41.602,40.446]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"09_clear1k_x8","v":{"total":[13.815,14.684,14.453,14.361,14.383,14.298,14.022,13.832,13.684,13.563,14.801,13.378,13.569,14.161,14.193],"script":[11.719,12.377,12.313,11.807,12.375,12.489,12.352,12.194,12.02,11.831,11.827,11.879,11.974,11.411,12.135],"paint":[1.954,2.147,1.73,1.592,0.807,1.68,1.523,0.399,0.872,0.791,1.408,0.405,1.484,1.987,1.811]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5660123825073242]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.9245643615722656]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.0659990310668945]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[4.123658180236816]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[33.59217548370361]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[14.3828125]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.9580078125]}}, -{"f":"slim-js-v5.0.8-non-keyed","b":"43_first-paint","v":{"DEFAULT":[62.8]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"01_run1k","v":{"total":[41.652,41.621,42.287,42.222,42.096,41.479,42.444,40.827,41.421,42.579,43.043,42.442,43.619,43.129,42.607],"script":[6.069,5.945,6.595,6.806,6.26,6.11,6.145,6.223,6.129,6.636,6.632,6.155,6.471,6.188,6.787],"paint":[35.153,35.256,35.245,34.999,35.418,34.946,35.872,34.166,34.874,35.511,35.963,35.824,36.719,36.498,35.39]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"02_replace1k","v":{"total":[18.803,19.72,18.618,20.063,18.809,18.344,18.669,18.871,20.021,18.996,17.975,18.849,19.929,18.207,18.448],"script":[3.385,3.277,3.336,3.368,3.437,3.203,3.31,3.397,3.311,3.388,3.14,3.367,3.318,3.301,3.279],"paint":[14.973,15.954,14.874,16.236,14.985,14.69,14.969,15.089,16.254,15.224,14.409,15.074,16.164,14.486,14.782]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"03_update10th1k_x16","v":{"total":[22.705,21.737,22.323,24.096,22.188,25.924,22.738,24.87,21.597,21.73,21.746,21.847,22.484,21.234,21.73],"script":[6.524,5.552,6.291,8.225,5.741,6.855,6.341,8.385,5.289,6.058,5.827,5.14,5.51,6.012,5.644],"paint":[14.59,14.311,13.801,14.768,15.153,17.71,15.2,15.471,14.732,14.055,14.416,15.103,15.092,14.191,14.736]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"04_select1k","v":{"total":[10.185,9.638,9.305,9.554,10.353,9.644,8.526,8.756,8.801,9.906,10.469,9.644,10.202,9.944,9.396,11.173,9.58,9.471,9.787,9.978,8.987,11.661,9.492,9.172,9.921],"script":[6.261,6.129,6.03,5.984,6.716,6.075,6.167,5.828,5.823,6.414,5.957,6.913,6.675,6.404,6.012,7.001,6.431,6.09,6.446,6.31,5.367,7.399,6.064,6.234,6.22],"paint":[3.12,3.337,2.347,2.412,3.469,3.381,1.567,2.005,1.411,3.201,3.504,1.837,3.316,2.699,2.42,3.499,2.829,3.215,2.64,2.776,3.094,2.61,2.825,2.783,2.709]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"05_swap1k","v":{"total":[18.048,16.821,17.639,17.358,17.437,16.977,17.564,16.841,17.38,17.634,18.76,17.054,17.008,16.429,16.396],"script":[6.078,5.557,5.759,5.818,5.868,5.042,6.215,5.225,5.796,5.761,6.27,5.942,5.66,5.334,5.5],"paint":[10.937,10.277,9.48,10.25,10.508,10.222,10.053,10.547,10.008,10.517,10.229,9.66,9.637,9.831,9.312]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"06_remove-one-1k","v":{"total":[42.559,40.966,41.434,41.083,42.114,41.943,43.355,41.555,42.523,41.776,42.051,40.805,42.366,40.945,42.063],"script":[8.609,8.103,8.099,7.974,9.059,8.443,8.069,8.005,8.053,8.558,8.089,8.104,8.546,8.08,8.371],"paint":[33.123,31.681,32.449,31.5,32.102,32.346,34.425,32.595,33.397,32.11,33.14,31.87,32.661,31.886,32.53]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"07_create10k","v":{"total":[438.128,442.566,441.688,440.012,437.686,442.308,441.877,436.885,439.442,439.104,441.99,438.803,430.415,428.889,430.291],"script":[84.5,84.157,85.577,85.86,85.566,84.749,83.421,84.391,84.233,84.714,85.531,84.991,81.555,79.553,78.673],"paint":[346.766,351.679,349.04,347.361,345.318,350.807,351.5,345.754,348.327,347.435,349.711,347.061,342.311,342.555,344.808]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[50.828,47.393,51.168,50.205,50.461,50.214,51.474,50.594,49.989,51.455,52.271,50.56,51.077,50.109,50.86],"script":[8.541,8.183,8.854,8.59,8.451,8.885,8.863,8.454,8.344,9,8.937,8.397,9.096,8.302,8.841],"paint":[41.391,38.303,41.43,40.703,41.03,40.376,41.694,41.181,40.734,41.428,42.3,41.254,41.044,40.913,40.959]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"09_clear1k_x8","v":{"total":[13.583,13.293,13.45,12.712,12.975,13.252,12.842,13.605,12.641,13.375,12.399,12.851,12.668,13.074,12.546],"script":[11.835,11.107,11.744,10.749,11.585,11.845,10.514,11.745,11.035,11.061,10.839,10.647,10.68,11.006,10.419],"paint":[0.935,1.493,1.6,1.868,1.294,0.856,1.307,1.761,1.51,2.014,1.454,2.114,1.892,1.063,1.816]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5187244415283203]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.1248531341552734]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.1228208541870117]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.6917409896850586]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[14.177468299865723]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[31.6689453125]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[8.552734375]}}, -{"f":"slingjs-v21.0.1-non-keyed","b":"43_first-paint","v":{"DEFAULT":[75.4]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"01_run1k","v":{"total":[67.497,68.743,68.209,68.911,69.193,71.276,68.64,70.164,67.196,68.575,68.165,70.87,70.217,68.758,68.84],"script":[30.655,31.055,30.382,30.42,30.653,32.292,31,32.228,29.987,30.295,30.208,32.948,31.538,30.634,30.776],"paint":[36.35,37.2,37.342,37.994,38.029,38.478,37.147,37.446,36.737,37.776,37.474,37.442,38.179,37.631,37.58]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"02_replace1k","v":{"total":[21.359,19.291,20.956,19.207,19.836,19.313,20.604,18.939,18.736,20.43,18.611,19.473,19.301,19.322,21.164],"script":[3.703,3.563,3.327,3.629,4.013,3.747,3.233,3.783,3.208,3.174,3.126,3.863,3.698,3.893,3.377],"paint":[17.084,15.204,17.064,15.057,15.268,15.073,16.83,14.664,15.059,16.706,15.036,15.09,15.073,14.906,17.263]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"03_update10th1k_x16","v":{"total":[19.397,19.384,18.958,19.452,19.938,19.275,18.792,18.788,19.199,20.404,19.583,20.679,20.4,19.359,18.933],"script":[1.858,1.762,1.742,1.583,2.178,2.323,1.61,1.94,1.403,1.64,2.358,2.611,1.839,1.81,2.019],"paint":[16.53,16.282,16.29,15.74,15.979,15.578,15.651,15.037,16.311,17.427,15.334,15.778,15.451,15.842,15.332]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"04_select1k","v":{"total":[10.031,9.085,9.246,9.585,9.574,9.301,9.255,8.786,8.745,7.537,8.151,8.238,8.712,8.206,8.203,8.429,7.747,9.6,8.191,7.793,7.613,8.668,8.428,7.361,9.048],"script":[5.822,5.384,6.356,5.878,6.719,6.518,6.318,6.131,5.762,4.324,5.717,5.547,5.688,4.984,5.515,6.151,5.107,6.706,5.643,5.126,4.787,6.178,5.615,5.092,6.287],"paint":[3.478,2.29,1.752,3.374,0.897,2.005,1.84,1.913,2.8,2.931,2.305,1.934,2.847,2.937,2.56,2.091,2.499,1.449,2.184,1.851,2.701,2.301,1.683,1.51,2.577]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"05_swap1k","v":{"total":[14.002,13.43,12.874,13.861,13.489,12.072,12.768,13.419,14.199,12.065,14.019,12.939,13.411,13.223,13.476],"script":[1.122,0.582,0.111,0.45,0.418,0.524,0.102,0.768,0.866,0.55,0.928,0.637,0.928,0.355,0.758],"paint":[11.823,10.486,11.113,12.375,12.371,9.972,10.91,11.298,11.844,9.922,11.563,11.195,10.774,11.902,10.8]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"06_remove-one-1k","v":{"total":[39.444,40.842,39.189,38.686,39.134,38.241,38.903,39.828,38.547,38.441,38.974,39.441,39.097,38.776,38.361],"script":[6.659,6.638,6.1,5.77,6.687,6.436,6.634,6.095,6.038,6.119,6.58,6.004,6.434,6.483,6.544],"paint":[31.364,33.004,31.957,31.723,31.318,30.563,31.126,32.612,31.675,30.834,31.226,32.209,31.615,31.149,30.979]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"07_create10k","v":{"total":[696.349,673.516,686.477,680.719,685.308,686.047,679.052,683.619,680.05,674.155,679.841,665.451,679.423,674.631,674.969],"script":[277.984,273.809,279.589,280.093,284.276,279.613,275.681,278.949,278.843,276.843,281.029,270.468,279.262,274.843,276.836],"paint":[410.767,392.058,399.163,392.996,393.356,399.094,394.889,397.226,393.501,389.825,390.998,387.406,392.458,392.061,390.622]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[77.164,74.027,73.121,73.636,74.011,73.216,74.857,74.391,74.617,74.531,74.56,75.407,73.917,75.018,74.164],"script":[31.018,31.612,30.723,30.658,30.973,30.649,31.998,31.655,31.123,31.282,31.513,32.434,31.231,31.742,31.969],"paint":[44.556,41.471,41.473,41.977,42.09,41.597,41.911,41.771,42.515,42.292,42.093,41.986,41.706,42.315,41.236]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"09_clear1k_x8","v":{"total":[28.465,29.319,27.278,28.186,29.572,26.156,28.178,27.681,27.657,27.547,29.063,28.455,27.852,28.26,27.352],"script":[26.721,26.963,25.728,26.575,27.533,23.835,25.871,25.809,25.983,26.072,26.867,25.915,26.469,26.653,24.543],"paint":[0.88,2.25,1.446,1.518,1.135,1.642,2.056,1.769,0.807,1.378,2.081,1.866,1.286,1.505,2.123]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5639715194702148]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"22_run-memory","v":{"DEFAULT":[6.263603210449219]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[6.405727386474609]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.9573202133178711]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[56.64607048034668]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[16.3017578125]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.6376953125]}}, -{"f":"sprae-v8.1.2-non-keyed","b":"43_first-paint","v":{"DEFAULT":[47.4]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"01_run1k","v":{"total":[45.914,46.694,48.038,47.192,46.035,46.798,46.126,47.464,48.091,47.76,48.72,47.293,46.252,46.473,46.815],"script":[12.825,13.223,14.067,13.996,13.156,13.68,13.543,13.522,14.215,13.275,13.318,13.799,12.924,12.985,13.579],"paint":[32.669,33.037,33.553,32.759,32.466,32.718,32.17,33.527,33.463,34.072,34.975,33.057,32.893,33.075,32.816]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"02_replace1k","v":{"total":[18.831,19.012,19.028,19.056,19.056,18.904,20.458,19.433,19.629,20.788,19.203,19.538,19.129,20.581,19.001],"script":[4.295,4.254,4.307,4.41,4.319,4.311,4.763,4.628,4.669,4.722,4.556,4.321,4.456,4.799,4.243],"paint":[14.144,14.36,14.315,14.221,14.323,14.147,15.28,14.352,14.569,15.604,14.218,14.715,14.291,15.279,14.334]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.58,16.646,16.118,16.755,16.415,16.637,17.174,16.787,17.122,16.844,16.29,16.817,17.315,15.985,16.201],"script":[0.969,1.378,0.918,1.217,0.298,1.569,1.637,0.974,1.373,1.301,0.971,1.214,1.462,1.259,0.734],"paint":[13.049,13.907,13.389,14.576,14.597,14.378,13.994,14.521,14.195,14.476,14.341,13.563,14.293,13.4,13.65]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"04_select1k","v":{"total":[3.055,2.734,3.029,2.738,2.964,2.724,4.411,4.179,2.837,3.013,3.375,4.635,2.277,2.55,2.592,5.539,2.658,4.704,3.132,3.115,2.926,2.769,2.786,2.321,3.049],"script":[0.911,0.105,0.104,0.281,0.764,0.68,1.079,0.601,0.097,0.833,0.851,0.834,0.117,0.782,0.104,0.407,0.771,0.839,0.862,0.105,0.103,0.103,0.779,0.12,0.578],"paint":[2.046,2.532,2.209,2.363,2.103,1.916,1.845,2.317,2.646,1.43,1.087,1.691,1.886,1.668,1.599,1.286,1.783,1.07,1.601,2.915,2.43,1.801,1.038,2.094,2.376]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"05_swap1k","v":{"total":[11.905,12.088,12.24,12.154,11.421,11.462,10.938,11.375,11.848,12.023,11.332,12.25,11.731,11.738,12.007],"script":[1.094,0.845,0.728,0.635,0.112,0.097,0.102,0.997,0.1,0.101,0.457,0.456,0.763,0.323,0.45],"paint":[9.103,9.74,10.782,10.272,10.311,10.071,9.571,8.715,11.065,10.971,9.428,10.445,10.462,9.661,10.051]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"06_remove-one-1k","v":{"total":[40.461,40.217,40.537,40.094,40.27,41.118,40.274,41.927,39.69,40.504,41.028,39.01,39.915,39.746,40.252],"script":[9.152,9.442,9.282,9.078,9.098,9.333,9.826,10.417,9.128,9.673,10.17,8.584,9.238,9.085,9.551],"paint":[30.441,29.905,30.282,30.284,30.385,30.906,29.72,30.621,29.737,29.769,30.138,29.654,29.892,29.546,29.976]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"07_create10k","v":{"total":[437.705,436.179,439.893,441.467,444.61,435.004,445.129,441.799,441.06,435.486,439.381,440.906,437.685,438.437,443.58],"script":[102.375,98.114,100.717,100.787,105.646,99.132,104.131,100.713,100.783,100.539,99.939,101.566,99.206,100.192,102.549],"paint":[328.129,331.227,332.463,333.049,332.232,329.071,333.948,334.335,333.302,327.781,332.74,332.611,331.677,331.525,334.302]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[48.636,49.242,47.264,49.029,49.044,46.678,48.649,48.766,49.077,47.211,47.803,48.873,47.515,48.018,47.872],"script":[10.127,10.172,9.326,10.231,9.732,9.302,9.453,9.669,9.846,9.44,9.682,10.292,9.623,9.959,9.691],"paint":[37.588,38.208,37.059,37.924,38.5,36.469,38.276,38.242,38.385,36.915,37.271,37.691,36.999,37.233,37.135]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"09_clear1k_x8","v":{"total":[17.401,18.377,18.415,18.072,18.069,17.681,17.992,17.327,17.105,16.899,17.671,18.754,18.062,19.875,18.014],"script":[15.481,15.875,16.848,15.972,16.339,15.334,15.933,15.551,15.019,15.509,15.899,16.587,16.415,17.93,16.072],"paint":[1.817,1.641,1.481,1.181,1.639,2.258,1.892,1.014,1.998,1.254,0.89,2.085,1.565,1.857,1.224]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[1.650343894958496]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.120978355407715]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.1730194091796875]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[2.224123001098633]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[16.521735191345215]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[123.3427734375]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[32.9970703125]}}, -{"f":"stdweb-v0.4.17-non-keyed","b":"43_first-paint","v":{"DEFAULT":[85.7]}}, -{"f":"strve-v5.6.2-non-keyed","b":"01_run1k","v":{"total":[49.066,46.972,46.601,46.361,46.095,47.573,47.373,48.714,46.594,46.956,48.95,47.093,47.146,46.709,47.114],"script":[13.542,14.115,13.205,13.34,12.721,14.135,14.01,14.051,13.914,13.621,14.426,13.804,13.815,13.272,13.671],"paint":[35.093,32.465,32.962,32.602,32.952,33.029,32.958,34.234,32.247,32.944,34.101,32.866,32.913,33.008,33.026]}}, -{"f":"strve-v5.6.2-non-keyed","b":"02_replace1k","v":{"total":[25.327,25.594,26.775,25.928,25.98,28.321,26.688,26.409,26.533,26.02,25.775,25.368,26.106,26.152,26.65],"script":[10.077,10.218,10.594,10.233,10.461,11.396,11.015,10.573,10.858,10.413,10.29,10.136,10.673,10.441,10.861],"paint":[14.829,14.947,15.692,15.251,15.068,16.473,15.249,15.42,15.223,15.195,15.03,14.79,14.981,15.238,15.355]}}, -{"f":"strve-v5.6.2-non-keyed","b":"03_update10th1k_x16","v":{"total":[46.335,46.257,46.769,43.444,47.295,44.892,44.607,45.39,44.339,48.123,45.086,45.837,46.725,45.558,44.609],"script":[28.839,29.075,30.273,26.442,29.272,28.199,27.718,28.095,27.979,30.914,27.559,29.438,28.76,28.426,28.229],"paint":[16.409,15.467,14.27,15.533,16.769,14.805,14.88,15.341,15.274,14.575,15.913,14.504,15.986,15.475,14.896]}}, -{"f":"strve-v5.6.2-non-keyed","b":"04_select1k","v":{"total":[29.792,30.352,29.744,29.984,31.29,30.641,31.316,29.712,29.007,33.239,29.462,31.127,29.608,29.503,31.107,30.105,29.499,29.775,29.431,30.19,27.753,30.47,29.159,27.877,29.883],"script":[26.565,26.328,26.251,27.033,28.361,26.825,27.882,25.909,25.803,29.475,26.263,27.177,26.45,25.72,28.622,26.669,26.629,26.361,26.404,26.827,24.703,26.619,25.757,25.152,26.993],"paint":[2.338,1.603,3.3,2.764,2.555,3.61,2.47,3.624,2.249,2.332,2.383,2.225,2.044,2.145,1.672,2.494,1.97,2.86,2.84,2.141,2.512,3.045,2.844,1.563,2.671]}}, -{"f":"strve-v5.6.2-non-keyed","b":"05_swap1k","v":{"total":[38.329,39.044,38.426,37.82,39.354,36.518,39.235,37.517,39.085,40.245,38.418,38.692,37.433,39.444,39.031],"script":[25.928,26.74,26.589,26.355,26.294,24.836,27.323,25.953,26.876,28.162,26.393,26.432,25.848,27.172,26.027],"paint":[10.484,10.86,10.198,9.903,11.412,9.707,10.293,9.988,11.378,10.375,10.585,10.31,10.306,10.917,11.467]}}, -{"f":"strve-v5.6.2-non-keyed","b":"06_remove-one-1k","v":{"total":[51.397,56.38,52.208,51.901,51.929,51.378,51.678,51.707,51.805,55.678,50.961,56.905,51.496,56.562,51.403],"script":[19.655,21.617,19.801,19.96,19.631,20.024,19.419,19.9,19.729,21.607,19.137,21.924,20.116,22.069,19.522],"paint":[30.776,33.971,31.28,31.036,31.498,30.253,31.432,30.806,30.911,33.285,30.792,34.176,30.228,33.57,30.794]}}, -{"f":"strve-v5.6.2-non-keyed","b":"07_create10k","v":{"total":[471.686,470.804,477.063,474.46,472.913,470.796,474.821,472.041,479.923,473.252,471.895,468.666,468.99,470.187,476.511],"script":[131.375,136.404,132.189,136.92,136.158,132.839,134.826,135.886,135.429,135.426,134.341,135.644,135.044,135.198,139.199],"paint":[333.543,327.559,337.866,330.941,330.008,331.232,333.014,329.142,337.793,331.14,331,326.48,327.284,328.07,330.58]}}, -{"f":"strve-v5.6.2-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[60.763,60.555,60.058,60.969,59.985,59.555,60.979,60.871,60.313,60.567,60.378,59.621,60.212,59.754,60.611],"script":[20.812,20.229,20.2,20.958,20.076,20.021,20.778,20.566,20.245,20.803,20.715,20.283,20.207,20.34,20.412],"paint":[39.032,39.459,38.993,39.109,39.04,38.664,39.275,39.403,39.018,38.889,38.771,38.472,39.105,38.505,39.319]}}, -{"f":"strve-v5.6.2-non-keyed","b":"09_clear1k_x8","v":{"total":[12.087,12.377,13.024,11.991,13.471,12.661,12.317,12.28,12.468,13.355,12.723,12.246,12.045,11.963,12.727],"script":[10.29,10.338,11.256,10.436,11.861,10.93,10.489,10.631,10.941,11.551,10.42,9.897,10.615,9.735,10.441],"paint":[1.562,1.942,0.959,0.907,1.498,1.644,1.743,0.742,1.431,1.701,2.21,1.47,1.332,2.148,2.199]}}, -{"f":"strve-v5.6.2-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.4891061782836914]}}, -{"f":"strve-v5.6.2-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.6115541458129883]}}, -{"f":"strve-v5.6.2-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.639925003051758]}}, -{"f":"strve-v5.6.2-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7423667907714844]}}, -{"f":"strve-v5.6.2-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[19.950050354003906]}}, -{"f":"strve-v5.6.2-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11.0947265625]}}, -{"f":"strve-v5.6.2-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.9716796875]}}, -{"f":"strve-v5.6.2-non-keyed","b":"43_first-paint","v":{"DEFAULT":[59.1]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"01_run1k","v":{"total":[39.269,36.935,38.006,38.334,38.118,37.59,37.64,37.407,38.914,40.132,37.5,38.258,37.651,38.25,38.214],"script":[5.091,4.796,4.997,5.076,5.147,5.141,5.196,4.755,5.126,5.116,4.766,4.997,5.087,5.074,5.088],"paint":[33.768,31.736,32.599,32.833,32.554,32.036,32.051,32.235,33.364,34.606,32.335,32.82,32.16,32.739,32.697]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"02_replace1k","v":{"total":[14.797,15.708,15.15,14.657,14.714,15.326,14.861,15.27,16.672,14.669,15.163,14.782,14.664,15.358,15.312],"script":[0.839,0.852,0.896,0.81,0.803,0.831,0.87,0.858,0.821,0.859,0.834,0.848,0.857,0.839,0.826],"paint":[13.556,14.427,13.909,13.439,13.523,14.156,13.64,14.063,15.455,13.437,13.96,13.548,13.436,14.177,14.131]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.963,16.2,17.6,17.227,17.227,17.144,17.65,17.434,17.032,17.014,18.949,17.148,17.254,18.912,17.322],"script":[1.411,1.935,2.068,1.945,1.565,2.149,1.714,1.926,2.13,1.826,2.443,1.954,1.846,2.078,1.43],"paint":[13.761,12.426,14.063,14.007,14.039,14.017,14.719,13.517,13.523,13.886,14.463,14.153,14.136,15.608,14.825]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"04_select1k","v":{"total":[3.34,3.701,3.098,3.745,3.451,3.373,3.229,3.521,3.127,3.653,3.383,3.7,3.736,3.798,3.281,3.7,3.398,6.284,3.117,4.898,3.932,3.441,4.126,3.522,4.14],"script":[0.864,1.281,1.341,0.945,1.291,1.209,1.141,0.967,1.25,0.647,1.204,0.928,1.213,1.362,0.994,1.696,1.182,1.277,0.97,1.583,1.298,0.98,1.684,1.2,0.914],"paint":[1.4,2.165,1.655,2.675,2.038,2.067,1.523,1.268,1.123,2.633,1.185,2.649,1.456,1.652,1.671,1.883,2.112,2.143,2.046,2.321,2.035,2.36,2.349,1.391,1.658]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"05_swap1k","v":{"total":[11.764,11.92,11.811,11.9,12.174,11.831,12.28,11.327,12.183,12.4,12.549,12.014,12.497,12.05,11.929],"script":[1.246,0.858,0.601,0.636,0.928,0.289,1.527,1.152,1.053,1.25,1.598,0.928,1.517,1.263,1.154],"paint":[9.578,9.191,9.365,9.746,9.597,9.881,9.45,8.712,9.925,9.876,10.003,9.502,10.114,10.117,9.817]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"06_remove-one-1k","v":{"total":[30.704,30.661,31.502,32.005,30.638,30.628,30.574,30.629,31.651,30.548,31.165,30.998,30.148,31.132,31.485],"script":[1.355,1.699,1.608,1.325,1.557,1.662,1.676,1.573,1.771,1.615,1.747,1.652,1.512,1.736,1.527],"paint":[28.626,28.185,29.201,29.195,28.32,27.865,28.118,28.231,29.194,28.148,28.605,28.576,27.861,28.353,28.996]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"07_create10k","v":{"total":[407.307,392.446,396.066,394.461,399.615,395.874,393.944,397.96,396.637,396.747,396.31,392.704,397.748,391.408,397.755],"script":[56.947,52.817,53.902,53.959,54.089,53.409,53.897,53.293,54.09,54.053,55.65,55.176,53.848,55.024,53.556],"paint":[343.535,332.93,335.5,333.832,338.655,335.785,333.287,337.735,335.758,335.875,333.87,330.837,337.198,329.529,337.47]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[43.754,43.355,44.004,44.33,44.84,43.459,43.996,44.591,45.154,43.886,43.026,43.094,44.831,43.12,43.29],"script":[5.266,5.229,5.506,5.586,5.622,5.167,5.472,5.573,5.511,5.669,5.234,5.195,5.584,5.213,5.132],"paint":[37.617,37.269,37.655,37.875,38.375,37.431,37.675,38.16,38.657,37.379,36.959,37.124,38.27,37.055,37.311]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"09_clear1k_x8","v":{"total":[12.499,12.502,12.385,12.545,12.856,12.352,12.211,12.336,12.048,12.922,12.62,12.024,12.656,11.877,12.628],"script":[10.387,10.406,10.614,10.871,10.691,10.059,10.42,10.542,10.382,10.71,10.4,10.582,10.788,10.13,10.331],"paint":[2.022,2.014,1.092,0.725,2.073,2.199,1.12,1.704,1.577,1.636,1.848,1.351,1.387,1.655,2.202]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.49310779571533203]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.7478513717651367]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.760061264038086]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.3034963607788086]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[20.899914741516113]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[15.6357421875]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[5.96875]}}, -{"f":"svelte-classic-v5.0.0-next.64-non-keyed","b":"43_first-paint","v":{"DEFAULT":[56.4]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"01_run1k","v":{"total":[42.169,39.87,39.639,40.402,42.417,41.53,41.162,41.577,41.075,41.096,42.515,41.884,41.783,41.262,41.61],"script":[8.019,7.831,7.749,8.099,8.062,7.97,8.014,8.108,7.7,7.63,8.336,8.102,7.92,8.057,8.01],"paint":[33.702,31.615,31.425,31.907,33.904,33.129,32.735,33.014,32.913,33.041,33.753,33.328,33.424,32.778,33.156]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"02_replace1k","v":{"total":[19.144,19.359,19.135,19.731,19.268,20.525,19.216,18.965,19.43,19.386,19.303,18.952,20.387,19.256,19.884],"script":[4.348,4.558,4.412,4.486,4.439,4.407,4.312,4.372,4.442,4.376,4.416,4.248,4.308,4.41,4.51],"paint":[14.32,14.338,14.301,14.813,14.407,15.649,14.465,14.164,14.53,14.56,14.428,14.277,15.616,14.4,14.93]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.695,16.403,16.257,16.483,16.751,16.22,16.715,15.776,15.917,17.017,16.67,16.631,16.61,16.626,16.657],"script":[0.572,1.167,1.184,0.988,0.873,0.832,0.196,0.731,0.201,0.935,1.303,1.494,1.016,1.078,0.772],"paint":[15.186,14.233,14.089,14.461,14.612,14.205,15.383,13.558,14.218,15.199,14.047,14.092,14.152,13.999,13.757]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"04_select1k","v":{"total":[2.25,4.019,2.792,3.325,3.271,2.551,2.379,2.844,6.152,2.623,2.606,3.459,3.456,3.035,3.927,2.535,2.326,4.41,1.941,3.57,2.562,3.109,2.482,3.956,2.604],"script":[0.075,0.723,0.918,0.993,0.842,0.08,0.071,0.457,0.635,0.068,0.42,0.07,0.428,0.61,0.499,0.067,0.078,0.206,0.08,0.075,0.505,0.796,0.527,0.471,0.07],"paint":[2.074,1.539,1.434,2.226,1.523,1.705,0.96,2.083,1.53,1.592,2.085,1.561,1.577,1.458,1.425,2.034,1.52,1.921,1.117,1.494,1.153,1.442,1.377,1.2,2.27]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"05_swap1k","v":{"total":[19.316,18.645,17.338,18.668,18.094,19.31,17.219,18.659,18.201,17.973,17.577,18.838,17.381,18.748,17.678],"script":[7.643,7.192,6.195,7.183,7.087,7.716,5.781,6.949,6.925,6.157,5.907,6.592,5.748,7.076,5.866],"paint":[10.319,9.154,9.317,9.538,9.689,10.062,10.053,10.995,9.496,10.731,9.259,10.604,9.798,9.792,10.556]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"06_remove-one-1k","v":{"total":[38.023,37.889,39.122,37.29,37.948,37.687,37.232,37.485,41.286,39.711,37.83,39.475,38.274,37.348,40.608],"script":[7.017,7.286,7.279,7.204,7.371,7.08,6.821,6.92,7.394,7.305,7.209,7.562,7.389,6.821,7.027],"paint":[29.496,29.476,30.627,29.286,29.471,29.667,29.609,29.651,32.798,31.19,29.805,30.974,30.031,29.397,32.168]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"07_create10k","v":{"total":[421.413,424.97,422.107,421.687,421.29,422.303,421.441,424.701,424.02,422.646,424.735,425.089,421.44,421.994,418.764],"script":[91.53,86.441,91.38,87.399,90.717,90.752,90.418,90.573,88.21,90.865,92.618,89.431,91.814,91.097,89.948],"paint":[322.957,331.566,323.878,327.496,323.812,324.645,324.172,327.376,329.07,324.885,325.318,328.903,322.819,323.97,322.111]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[49.785,49.308,49.25,48.828,49.46,49.607,50.563,51.032,49.575,49.686,49.978,50.413,50.486,49.194,50.326],"script":[10.296,10.212,10.262,10.37,10.104,10.104,10.878,10.428,10.537,10.652,10.179,10.297,10.467,10.056,10.513],"paint":[38.611,38.177,38.118,37.602,38.471,38.606,38.754,39.724,38.165,38.15,38.885,39.22,39.092,38.279,38.892]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"09_clear1k_x8","v":{"total":[13.263,13.171,13.138,12.371,12.99,13.745,13.041,12.844,12.713,13.672,13.758,13.095,12.245,13.509,13.203],"script":[11.658,11.361,11.099,11.23,10.705,12.004,11.662,11.185,11.122,11.386,11.863,10.801,10.853,11.305,11.339],"paint":[1.09,1.558,1.307,0.365,2.189,1.655,1.296,0.766,1.503,1.912,1.285,2.212,0.378,2.123,1.06]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5326509475708008]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.794438362121582]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.682803153991699]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7857933044433594]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[21.811501502990723]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[12.85546875]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[4.7021484375]}}, -{"f":"udomsay-esx-v0.4.9-non-keyed","b":"43_first-paint","v":{"DEFAULT":[87.2]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"01_run1k","v":{"total":[36.879,36.82,37.304,37.864,36.499,37.126,36.999,36.649,37.202,37.977,37.06,36.424,37.008,37.191,37.104],"script":[3.821,4.036,3.933,3.944,3.796,3.908,4.209,3.928,3.907,3.905,3.993,3.701,3.912,3.935,3.956],"paint":[32.632,32.363,32.947,33.488,32.28,32.798,32.379,32.282,32.88,33.658,32.644,32.303,32.686,32.823,32.719]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"02_replace1k","v":{"total":[15.94,15.341,15.326,15.285,15.369,15.673,15.593,16.341,16.279,15.414,15.899,15.692,15.702,16.138,15.617],"script":[1.261,1.299,1.218,1.273,1.213,1.23,1.224,1.239,1.206,1.319,1.236,1.201,1.212,1.266,1.338],"paint":[14.211,13.613,13.723,13.603,13.757,14.062,13.986,14.655,14.62,13.671,14.296,14.127,14.132,14.502,13.839]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.496,16.795,17.227,18.717,18.14,18.798,17.99,18.313,19.554,16.39,18.426,16.972,17.158,17.278,17.51],"script":[1.469,1.508,1.639,1.516,1.766,1.828,1.536,1.337,2.323,2.033,2.175,1.048,1.396,1.332,1.742],"paint":[14.048,14.125,14.178,14.733,14.391,15.135,15.173,15.691,15.666,13.392,14.46,14.413,14.244,14.822,14.362]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"04_select1k","v":{"total":[4.725,3.862,4.031,3.847,5.161,4.002,4.787,4.803,3.993,4.67,4.331,6.115,5.679,3.838,3.399,3.662,3.538,4.388,3.895,3.719,3.487,3.934,3.892,3.447,5.91],"script":[1.807,1.996,1.72,2.414,1.673,1.243,2.032,1.255,0.974,1.558,1.517,1.889,2.258,1.892,1.211,1.538,1.065,1.815,1.329,1.763,1.265,1.079,1.169,0.957,1.731],"paint":[1.496,1.765,0.987,0.808,1.606,2.399,2.6,2.879,2.396,2.985,2.693,2.203,2.239,1.825,1.643,2.024,2.353,2.45,1.714,1.109,1.96,2.74,1.85,1.535,1.932]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"05_swap1k","v":{"total":[13.042,12.92,12.437,12.342,12.839,12.389,12.724,12.156,12.833,11.627,12.627,12.093,13.706,12.268,12.945],"script":[1.999,2.215,1.442,1.064,1.499,1.276,1.59,0.972,1.642,1.627,2.089,1.495,1.496,1.12,2.01],"paint":[10.03,9.595,8.833,9.796,9.316,9.547,9.131,8.904,9.433,8.196,9.862,9.069,9.9,9.479,9.372]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"06_remove-one-1k","v":{"total":[35.245,32.205,33.2,32.184,31.732,32.346,31.764,32.911,32.286,32.335,32.24,32.367,30.822,31.253,31.492],"script":[2.161,2.41,2.186,2.195,2.202,2.444,2.404,2.391,2.431,2.249,2.372,2.374,1.911,2.271,2.234],"paint":[32.052,28.937,29.475,29.001,28.272,28.809,28.304,29.746,29.074,29.357,29.077,29.174,27.722,28.204,28.393]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"07_create10k","v":{"total":[404.456,402.577,403.826,402.295,404.272,402.954,411.012,404.653,400.478,399.994,402.278,403.623,400.294,402.359,401.25],"script":[65.392,62.117,64.574,61.709,64.574,62.757,62.132,64.733,62.432,61.566,62.332,63.795,62.023,63.867,62.228],"paint":[332.128,333.601,332.241,333.679,332.908,333.358,342.029,333.187,331.286,331.6,333.163,333,331.458,331.692,332.247]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[42.11,41.826,42.674,41.624,40.807,40.817,42.126,44.143,42.331,43.087,42.252,43.307,42.924,43.554,43.671],"script":[4.354,4.401,4.212,4.361,4.388,4.264,4.353,4.636,4.584,4.715,4.377,4.919,4.867,4.719,4.733],"paint":[36.874,36.543,37.57,36.39,35.541,35.694,36.764,38.576,36.889,37.521,37.012,37.443,37.107,37.977,38.062]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"09_clear1k_x8","v":{"total":[13.128,13.422,13.11,13.757,13.721,13.855,13.56,13.291,13.882,13.633,13.25,12.926,13.438,13.468,13.988],"script":[11.118,11.022,11.981,11.425,11.609,12.367,11.121,11.1,12.139,11.538,11.113,11.418,11.873,11.288,11.914],"paint":[1.926,2.307,1.047,2.251,2.019,1.386,2.133,2.102,1.59,2.014,1.394,0.672,1.475,2.083,1.98]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.5001192092895508]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"22_run-memory","v":{"DEFAULT":[2.131106376647949]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.0895309448242188]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.7178659439086914]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[16.251532554626465]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[9.5576171875]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[3.9609375]}}, -{"f":"uhtml-v4.4.1-non-keyed","b":"43_first-paint","v":{"DEFAULT":[46.9]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"01_run1k","v":{"total":[41.144,46.815,48.024,47.181,49.295,47.017,47.3,41.114,41.472,48.357,40.664,48.369,41.7,40.185,42.032],"script":[7.514,7.598,8.393,7.283,7.252,7.359,7.12,7.114,7.602,7.278,7.268,7.462,7.423,7.291,7.199],"paint":[32.949,33.989,32.778,32.568,32.635,33.708,32.52,32.742,33.719,32.594,32.491,34.051,33.424,32.604,32.808]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"02_replace1k","v":{"total":[25.886,16.662,18.242,20.362,17.15,17.356,20.627,24.021,22.196,17.549,17.462,22.988,22.987,16.114,18.087],"script":[2.262,2.231,2.373,2.214,2.191,2.167,2.138,2.212,2.153,2.121,2.339,2.243,2.202,2.225,2.161],"paint":[13.808,14.304,15.744,13.956,14.044,14.151,14.424,14.016,14.424,14.271,14.775,14.852,14.027,13.774,14.296]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"03_update10th1k_x16","v":{"total":[32.761,20.366,20.961,19.835,19.08,21.302,34.856,19.671,17.648,19.604,16.966,20.687,19.258,35.323,34.257],"script":[2.412,3.399,4.337,3.364,4.833,2.849,3.848,3.003,3.13,3.836,3.01,3.517,3.145,3.743,3.543],"paint":[14.317,14.276,13.554,14.871,13.491,15.102,15.854,13.966,13.768,15.662,13.854,14.619,13.166,15.539,15.071]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"04_select1k","v":{"total":[6.204,6.077,5.438,6.369,5.285,5.97,7.094,5.527,6.772,6.603,5.856,6.003,5.679,6.308,7.182,7.606,5.98,7.03,6.131,6.235,5.34,5.754,5.676,5.262,5.652],"script":[3.303,3.349,2.891,3.32,3.311,2.861,3.074,2.786,3.662,3.793,3.08,3.223,2.957,3.286,3.874,2.9,2.861,4.046,2.602,3.468,1.966,2.979,3.51,2.977,1.571],"paint":[2.253,2.308,1.77,1.713,1.85,2.136,3.001,2.26,2.957,2.669,2.654,2.658,1.937,1.994,1.836,2.197,2.996,2.508,3.38,1.679,2.287,1.911,1.51,2.16,2.503]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"05_swap1k","v":{"total":[12.349,13.941,13.291,29.116,13.004,13.583,14.219,12.701,29.21,14.816,12.259,28.733999999999995,14.164,16.489,12.249],"script":[2.954,2.363,2.713,3.013,3.404,2.376,2.459,3.092,2.578,2.319,2.075,2.263,2.187,3.371,1.637],"paint":[8.792,9.394,10.466,9.558,9.495,9.473,9.441,9.444,10.591,9.565,9.65,9.919,9.733,9.211,10.501]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"06_remove-one-1k","v":{"total":[33.218,36.075,35.471,37.05,33.148,33.122,39.584,32.108,33.292,36.943,32.542,32.99,34.377,32.521,39.406],"script":[3.92,3.523,3.762,3.98,3.746,3.441,3.884,3.772,3.678,3.514,3.724,3.766,3.815,3.737,4.065],"paint":[29.15,29.005,28.579,29.811,29.275,29.331,28.272,28.149,29.185,29.183,28.691,28.955,29.945,28.351,32.588]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"07_create10k","v":{"total":[438.324,442.033,423.654,425.186,442.424,422.05,446.29,418.195,430.673,419.322,424.64,438.069,423.247,421.597,425.969],"script":[84.196,82.992,81.742,83.004,82.587,82.686,85.321,81.952,84.182,81.204,82.083,83.449,81.386,82.022,82.843],"paint":[343.975,351.352,338.168,337.995,351.64,336.915,355.659,333.72,337.577,335.299,340.468,351.611,339.351,335.749,340.945]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[57.974,56.439,56.233,57.738,57.844,57.612,56.087,56.464,57.973,57.806,58.665,56.622,58.569,56.771,57.694],"script":[7.361,7.043,7.007,7.166,7.122,7.376,7.144,7.33,7.429,7.11,7.144,7.367,7.639,7.167,7.324],"paint":[38.111,37.718,37.852,37.826,38.221,38.502,37.745,37.841,38.29,38.181,39.81,38.069,38.922,37.934,37.704]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"09_clear1k_x8","v":{"total":[15.182,15.37,16.843,13.611,14.542,15.091,30.662,16.113,16.932,14.835,15.813,14.998,13.956,13.643,14.984],"script":[12.372,12.984,14.037,12.493,13.4,13.152,12.792,12.645,12.861,13.45,13.245,13.137,12.963,12.317,13.336],"paint":[1.887,1.454,1.539,1.057,1.087,1.877,1.875,1.873,1.794,1.335,1.586,1.798,0.941,0.409,1.588]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7092838287353516]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.038762092590332]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[2.9942636489868164]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.0808849334716797]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[21.797054290771484]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[48.9345703125]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[14.712890625]}}, -{"f":"ui5-webcomponents-v1.3.1-non-keyed","b":"43_first-paint","v":{"DEFAULT":[94.5]}}, -{"f":"vanillajs-non-keyed","b":"01_run1k","v":{"total":[36.693,34.725,34.461,35.293,35.012,35.64,36.507,35.166,35.055,36.029,35.145,35.816,35.061,35.499,35.611],"script":[2.49,2.424,2.424,2.398,2.393,2.68,2.421,2.426,2.544,2.631,2.47,2.524,2.426,2.502,2.509],"paint":[33.757,31.925,31.645,32.468,32.258,32.562,33.683,32.352,32.113,32.971,32.269,32.888,32.23,32.604,32.742]}}, -{"f":"vanillajs-non-keyed","b":"02_replace1k","v":{"total":[16.341,18.133,16.312,16.26,16.453,16.536,16.391,16.098,16.219,16.453,16.512,16.644,16.709,16.272,16.555],"script":[1.872,1.976,1.93,1.908,2.019,1.962,2.081,1.869,1.948,1.976,1.986,1.976,1.993,1.903,1.884],"paint":[14.065,15.749,14.029,13.963,13.99,14.152,13.873,13.836,13.877,14.073,14.104,14.301,14.283,13.964,14.298]}}, -{"f":"vanillajs-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.309,15.765,17.017,16.025,16.242,15.903,16.515,16.572,15.932,15.935,17.323,15.953,16.212,16.598,15.942],"script":[0.192,0.923,1.209,0.768,1.221,0.483,0.355,0.812,0.791,0.498,0.659,0.162,1.094,1.13,0.906],"paint":[14.864,13.109,14.272,14.499,13.305,14.323,14.482,14.438,13.808,13.301,14,14.524,13.634,14.484,13.76]}}, -{"f":"vanillajs-non-keyed","b":"04_select1k","v":{"total":[2.575,2.734,2.452,4.573,3.159,2.732,2.291,2.872,2.19,3.091,2.149,2.589,3.646,3.161,2.451,2.707,1.993,2.169,4.136,2.545,2.495,3.713,2.59,2.489,2.217],"script":[0.057,0.055,0.529,0.058,0.056,0.06,0.056,0.06,0.526,0.743,0.054,0.063,0.172,0.704,0.062,0.799,0.207,0.054,0.057,0.059,0.516,0.054,0.054,0.634,0.6],"paint":[0.567,2.321,1.833,2.403,1.848,2.571,1.346,2.718,0.983,2.247,1.997,2.431,0.825,2.359,2.048,1.135,1.588,2.015,2.154,2.385,1.304,1.894,1.958,1.761,1.254]}}, -{"f":"vanillajs-non-keyed","b":"05_swap1k","v":{"total":[11.834,10.96,11.52,11.373,10.769,11.55,11.834,11.232,11.815,11.289,11.105,10.512,11.253,11.095,11.89],"script":[0.377,0.485,1.136,0.094,0.375,1.058,0.731,0.087,0.092,0.48,0.083,0.081,0.094,0.415,0.872],"paint":[10.172,9.454,9.188,10.065,9.144,9.425,8.938,9.855,9.998,9.88,9.806,9.119,9.894,9.958,9.751]}}, -{"f":"vanillajs-non-keyed","b":"06_remove-one-1k","v":{"total":[35.414,33.41,34.172,33.662,34.029,34.737,33.776,34.221,33.724,33.684,35.236,34.214,33.618,34.78,33.864],"script":[3.127,3.163,3.497,3.61,3.548,3.514,3.16,3.409,3.22,3.216,3.368,3.195,3.447,3.751,3.404],"paint":[31.417,29.514,29.954,28.971,29.456,30.481,29.873,29.819,29.655,29.754,30.739,30.297,29.109,30.126,29.512]}}, -{"f":"vanillajs-non-keyed","b":"07_create10k","v":{"total":[375.232,369.314,368.358,371.014,367.053,372.506,368.12,370.965,367.269,368.978,370.483,367.436,370.465,373.447,367.239],"script":[29.694,27.277,27.356,30.012,30.719,28.886,30.034,28.13,28.387,29.203,30.132,29.874,28.991,29.276,27.418],"paint":[338.879,335.357,334.396,334.265,329.699,336.844,331.543,336.215,332.268,333.11,333.784,330.93,334.18,337.462,333.224]}}, -{"f":"vanillajs-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[40.541,40.083,39.33,39.209,40.598,39.799,39.649,40.37,41.835,40.075,40.558,40.037,41.178,39.33,40.389],"script":[2.58,2.495,2.422,2.472,2.455,2.473,2.458,2.617,2.555,2.582,2.639,2.581,2.65,2.448,2.603],"paint":[37.108,36.805,36.135,35.971,37.269,36.524,36.384,36.931,38.447,36.662,37.097,36.635,37.68,36.046,36.971]}}, -{"f":"vanillajs-non-keyed","b":"09_clear1k_x8","v":{"total":[12.073,12.025,12.024,12.464,11.943,10.843,12.03,11.66,11.462,12.007,11.719,11.452,11.384,11.043,11.589],"script":[10.104,10.363,10.081,10.167,9.563,9.843,10.071,10.261,9.331,10.308,9.617,9.837,9.563,9.918,9.697],"paint":[0.977,0.764,0.986,1.412,1.855,0.578,1.641,1.317,0.546,1.037,2.022,0.718,1.744,1.043,0.918]}}, -{"f":"vanillajs-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.44146156311035156]}}, -{"f":"vanillajs-non-keyed","b":"22_run-memory","v":{"DEFAULT":[1.7387580871582031]}}, -{"f":"vanillajs-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.676844596862793]}}, -{"f":"vanillajs-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.619450569152832]}}, -{"f":"vanillajs-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[12.175838470458984]}}, -{"f":"vanillajs-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[11.9794921875]}}, -{"f":"vanillajs-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[2.4296875]}}, -{"f":"vanillajs-non-keyed","b":"43_first-paint","v":{"DEFAULT":[54.9]}}, -{"f":"vanillajs-1-non-keyed","b":"01_run1k","v":{"total":[35.457,36.128,34.692,34.252,35.914,34.282,34.357,35.491,35.024,34.883,34.507,35.37,35.585,35.426,35.639],"script":[2.449,2.558,2.397,2.388,2.472,2.344,2.328,2.439,2.413,2.41,2.347,2.479,2.357,2.51,2.463],"paint":[32.555,33.174,31.886,31.458,33.049,31.545,31.649,32.694,32.222,32.069,31.775,32.503,32.82,32.547,32.782]}}, -{"f":"vanillajs-1-non-keyed","b":"02_replace1k","v":{"total":[15.851,15.783,15.743,16.23,16.255,15.843,15.955,15.797,16.255,16.111,15.861,16.321,16.217,15.971,16.078],"script":[1.585,1.632,1.563,1.644,1.727,1.698,1.593,1.622,1.738,1.687,1.58,1.674,1.582,1.699,1.602],"paint":[13.87,13.786,13.796,14.178,14.114,13.737,13.921,13.795,14.105,14.018,13.875,14.258,14.244,13.917,14.064]}}, -{"f":"vanillajs-1-non-keyed","b":"03_update10th1k_x16","v":{"total":[15.355,15.174,16.225,15.543,15.957,15.692,16.922,15.288,15.445,16.046,15.725,15.115,15.653,15.091,15.663],"script":[0.667,0.161,1.358,0.659,0.184,0.183,0.866,0.577,0.976,0.582,0.167,0.153,0.803,0.543,0.156],"paint":[13.039,13.251,13.388,13.561,14.499,14.503,13.655,13.242,12.86,13.846,14.565,14.051,13.222,13.382,14.522]}}, -{"f":"vanillajs-1-non-keyed","b":"04_select1k","v":{"total":[2.424,4.158,2.323,2.912,3.037,2.228,2.704,2.194,2.211,2.225,2.336,2.33,2.19,5.827,2.478,3.473,2.897,4.66,4.442,2.477,2.321,2.193,2.434,2.557,2.657],"script":[0.373,0.056,0.119,0.393,0.818,0.059,0.057,0.058,0.059,0.059,0.059,0.065,0.06,0.529,0.057,0.963,0.406,0.065,0.055,0.061,0.299,0.056,0.578,0.061,0.056],"paint":[1.134,1.202,2.109,2.422,1.425,1.301,1.921,2.038,2.054,2.065,2.179,1.185,0.506,2.03,1.509,1.868,2.396,1.708,2.503,2.308,1.612,2.046,1.765,1.709,0.834]}}, -{"f":"vanillajs-1-non-keyed","b":"05_swap1k","v":{"total":[11.425,11.945,11.77,11.863,11.404,11.707,11.512,11.119,10.722,11.114,11.394,11.092,11.355,11.529,11.534],"script":[0.688,0.568,0.271,0.754,0.561,0.831,0.589,0.122,0.439,0.615,0.126,0.123,0.614,0.74,1.256],"paint":[9.35,9.777,9.376,10.175,9.075,9.866,9.091,9.392,8.774,9.307,10.333,9.287,8.625,8.66,8.804]}}, -{"f":"vanillajs-1-non-keyed","b":"06_remove-one-1k","v":{"total":[33.84,33.47,33.022,33.244,32.887,33.339,33.663,33.79,33.552,32.818,33.268,33.457,33.502,33.144,33.62],"script":[2.677,2.844,3.011,2.783,2.929,2.654,3.022,3.141,2.95,2.809,2.743,2.595,2.81,3.007,2.708],"paint":[30.431,29.802,29.273,29.559,29.227,29.712,29.592,29.872,29.891,29.039,29.83,29.789,29.989,29.347,29.784]}}, -{"f":"vanillajs-1-non-keyed","b":"07_create10k","v":{"total":[368.313,377.388,372.447,364.153,366.881,363.819,368.347,366.248,365.535,366.487,365.691,365.468,378.29,367.91,366.087],"script":[27.221,27.738,27.765,27.552,27.455,28.133,27.148,27.203,27.22,28.923,27.134,27.287,28.6,27.721,27.371],"paint":[334.405,342.964,338.068,329.547,332.831,329.057,334.584,332.436,331.608,330.743,331.918,331.564,342.754,333.622,332.158]}}, -{"f":"vanillajs-1-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[41.496,39.832,40.122,39.775,39.805,40.744,39.908,40.219,39.663,39.718,39.757,40.029,40.348,40.838,41.114],"script":[2.553,2.516,2.535,2.662,2.547,2.508,2.508,2.429,2.476,2.549,2.508,2.571,2.569,2.645,2.644],"paint":[38.095,36.475,36.769,36.272,36.41,37.395,36.517,36.887,36.376,36.287,36.433,36.581,37,37.315,37.625]}}, -{"f":"vanillajs-1-non-keyed","b":"09_clear1k_x8","v":{"total":[12.514,11.759,11.646,12.41,11.963,11.183,11.574,11.963,11.923,12.448,11.594,12.117,11.607,11.891,12.175],"script":[10.411,10.116,9.952,10.233,9.45,9.319,10.168,9.972,10.5,10.593,9.54,10.62,10.001,9.668,10.578],"paint":[1.279,1.565,0.851,1.691,1.528,1.083,0.395,1.265,1.334,1.76,1.178,0.556,1.301,2.138,1.516]}}, -{"f":"vanillajs-1-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.43665218353271484]}}, -{"f":"vanillajs-1-non-keyed","b":"22_run-memory","v":{"DEFAULT":[1.7241792678833008]}}, -{"f":"vanillajs-1-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[1.6646442413330078]}}, -{"f":"vanillajs-1-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[0.5123929977416992]}}, -{"f":"vanillajs-1-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[11.99890422821045]}}, -{"f":"vanillajs-1-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[10.0205078125]}}, -{"f":"vanillajs-1-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[2.1767578125]}}, -{"f":"vanillajs-1-non-keyed","b":"43_first-paint","v":{"DEFAULT":[54.5]}}, -{"f":"voby-v0.48.0-non-keyed","b":"01_run1k","v":{"total":[36.106,33.809,35.417,33.539,35.235,35.353,35.782,35.458,36.289,34.764,35.745,34.869,36.682,34.926,35.544],"script":[2.687,2.426,2.586,2.558,2.617,2.577,2.46,2.464,2.631,2.55,2.724,2.464,2.639,2.479,2.423],"paint":[32.963,30.966,32.409,30.574,32.219,32.373,32.833,32.578,33.148,31.811,32.616,32.04,33.668,32.033,32.713]}}, -{"f":"voby-v0.48.0-non-keyed","b":"02_replace1k","v":{"total":[16.226,17.425,16.123,15.833,16.451,16.046,17.061,15.9,16.105,16.413,15.946,16.066,16.097,16.091,16.289],"script":[2.17,2.128,2.174,2.122,2.167,2.111,2.197,2.058,2.085,2.156,2.09,2.134,2.129,2.082,2.24],"paint":[13.646,14.889,13.552,13.315,13.87,13.528,14.444,13.435,13.579,13.86,13.453,13.52,13.535,13.603,13.662]}}, -{"f":"voby-v0.48.0-non-keyed","b":"03_update10th1k_x16","v":{"total":[16.549,17.055,16.838,16.626,16.847,16.398,16.777,16.588,17.002,16.112,17.484,16.409,16.608,16.232,16.257],"script":[1.774,0.939,1.7,1.303,2.058,1.468,1.748,1.405,1.659,1.594,1.471,1.319,1.505,1.396,1.511],"paint":[13.447,13.927,14.177,13.546,13.757,12.849,12.92,13.514,13.937,13.197,14.241,14.067,13.52,13.858,13.468]}}, -{"f":"voby-v0.48.0-non-keyed","b":"04_select1k","v":{"total":[3.745,3.794,4.084,3.365,3.117,3.478,3.039,3.103,3.89,3.634,4.199,3.618,3.074,2.966,3.336,3.729,3.394,3.345,4.07,3.343,3.154,3.541,2.89,3.26,3.976],"script":[1.464,0.901,1.198,0.996,0.572,1.055,1.254,1.174,0.912,1.459,1.871,1.591,1.167,1.14,1.291,1.022,0.936,1.29,0.929,0.916,1.567,0.257,0.772,1.084,1.779],"paint":[2.171,2.625,1.758,1.537,1.499,2.312,1.342,1.834,2.862,0.555,1.843,1.843,1.299,1.716,1.223,2.235,2.351,1.947,2.098,1.509,0.967,3.184,1.617,1.34,2.039]}}, -{"f":"voby-v0.48.0-non-keyed","b":"05_swap1k","v":{"total":[19.814,20.411,19.597,20.422,19.512,19.085,19.989,19.858,19.593,19.103,19.811,20.219,19.281,19.202,19.122],"script":[1.846,2.176,1.465,1.578,1.482,1.039,1.869,1.964,1.207,1.468,1.903,1.406,0.979,1.617,1.294],"paint":[16.775,16.481,16.665,17.68,16.648,16.342,16.661,16.545,17.39,16.629,16.637,17.091,17.297,16.522,17.136]}}, -{"f":"voby-v0.48.0-non-keyed","b":"06_remove-one-1k","v":{"total":[15.725,15.468,15.39,15.95,15.836,15.689,15.477,15.429,15.709,15.406,15.532,15.549,16.22,16.222,15.738],"script":[0.711,0.738,0.699,0.696,0.955,0.719,0.709,0.693,0.701,0.703,0.825,0.692,0.898,0.771,0.706],"paint":[14.243,13.992,13.664,14.303,14.177,14.141,13.744,13.73,14.088,13.67,13.989,14.181,14.65,14.742,14.272]}}, -{"f":"voby-v0.48.0-non-keyed","b":"07_create10k","v":{"total":[426.944,421.015,420.993,417.161,418.851,419.688,418.093,417.226,420.929,422.115,418.942,422.004,416.482,419.755,420.389],"script":[89.238,92.343,91.407,90.209,90.434,93.374,87.712,90.683,90.767,95.633,92.716,92.705,89.745,91.294,89.46],"paint":[330.975,322.063,322.89,320.298,321.537,319.593,323.712,319.761,323.76,319.597,319.637,322.409,320.13,321.625,324.053]}}, -{"f":"voby-v0.48.0-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[47.807,47.708,47.367,47.845,47.532,47.838,47.545,47.533,47.181,47.325,49.076,47.08,47.876,47.541,47.554],"script":[9.78,9.475,9.408,9.609,9.817,9.698,9.702,9.565,9.685,9.48,9.395,9.663,9.724,9.533,9.795],"paint":[37.116,37.325,37.082,37.387,36.821,37.282,36.949,37.062,36.634,36.99,38.796,36.563,37.166,37.165,36.868]}}, -{"f":"voby-v0.48.0-non-keyed","b":"09_clear1k_x8","v":{"total":[14.762,13.844,13.891,14.373,14.856,14.246,15.04,14.578,13.505,14.253,14.608,14.45,14.242,14.164,14.357],"script":[12.916,12.131,11.585,12.173,12.35,12.496,12.827,12.491,11.88,12.421,12.603,13.018,12.339,12.511,12.258],"paint":[1.739,1.186,2.21,1.064,2.408,1.659,1.852,1.994,0.705,1.044,1.341,1.339,1.804,0.715,0.979]}}, -{"f":"voby-v0.48.0-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7299995422363281]}}, -{"f":"voby-v0.48.0-non-keyed","b":"22_run-memory","v":{"DEFAULT":[4.890883445739746]}}, -{"f":"voby-v0.48.0-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[4.992438316345215]}}, -{"f":"voby-v0.48.0-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[5.204547882080078]}}, -{"f":"voby-v0.48.0-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[40.10545349121094]}}, -{"f":"voby-v0.48.0-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[33.0810546875]}}, -{"f":"voby-v0.48.0-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[11.67578125]}}, -{"f":"voby-v0.48.0-non-keyed","b":"43_first-paint","v":{"DEFAULT":[85.5]}}, -{"f":"vue-v3.4.18-non-keyed","b":"01_run1k","v":{"total":[44.509,42.564,44.117,42.935,43.065,42.068,42.5,43.074,43.619,43.203,43.065,42.575,42.839,41.887,42.781],"script":[9.726,8.935,9.203,8.997,8.912,9.076,9,9.278,9.195,8.974,9.384,8.862,9.132,8.572,8.857],"paint":[34.362,33.203,34.237,33.535,33.744,32.603,33.092,33.401,34.005,33.81,33.265,33.305,33.315,32.912,33.509]}}, -{"f":"vue-v3.4.18-non-keyed","b":"02_replace1k","v":{"total":[19.971,20.382,18.77,18.841,18.809,18.453,18.435,20.032,19.182,19.305,19.5,18.702,19.173,19.368,19.404],"script":[4.662,4.855,4.243,4.235,4.217,3.752,4.053,4.755,4.34,4.315,4.427,4.185,4.236,4.12,4.418],"paint":[14.893,15.094,14.094,14.156,14.136,14.261,14.004,14.796,14.391,14.582,14.671,14.071,14.504,14.83,14.584]}}, -{"f":"vue-v3.4.18-non-keyed","b":"03_update10th1k_x16","v":{"total":[20.207,19.577,18.744,20.858,20.514,19.979,20.427,20.328,18.593,19.497,19.65,20.932,18.454,18.535,18.994],"script":[3.527,3.892,3.054,3.385,3.749,3.117,3.802,3.461,2.326,3.56,3.399,3.969,2.712,3.241,3.516],"paint":[14.512,13.547,13.784,15.486,14.884,15.802,15.333,14.948,15.036,14.38,14.73,15.221,14.401,13.871,13.625]}}, -{"f":"vue-v3.4.18-non-keyed","b":"04_select1k","v":{"total":[4.221,3.689,3.756,3.826,4.299,3.968,4.022,4.321,4.591,4.609,5.488,3.182,4.013,4.167,3.882,4.436,4.233,3.899,4.668,4.755,3.545,3.866,4.511,5.328,3.502],"script":[1.885,1.404,1.314,1.549,1.554,1.016,1.551,2.031,1.416,2.02,1.776,1.426,1.7,2.039,1.459,1.504,1.759,1.511,1.769,2.149,1.242,1.747,1.728,1.481,1.08],"paint":[2.205,2.137,1.417,1.334,2.645,2.637,1.765,1.393,2.184,1.657,2.58,1.648,1.313,2.016,2.134,1.619,2.386,2.277,2.025,2.507,2.192,1.58,1.703,1.261,1.945]}}, -{"f":"vue-v3.4.18-non-keyed","b":"05_swap1k","v":{"total":[13.557,12.66,12.569,13.045,13.62,12.764,13.247,12.427,12.071,13.157,12.976,12.265,12.288,12.517,13.24],"script":[1.83,1.568,1.201,1.499,1.559,1.569,1.312,1.179,1.759,1.976,1.826,1.583,1.487,1.759,1.844],"paint":[10.977,9.832,10.091,9.839,10.944,10.176,9.689,9.082,9.303,9.544,9.855,9.362,9.426,9.217,10.384]}}, -{"f":"vue-v3.4.18-non-keyed","b":"06_remove-one-1k","v":{"total":[38.461,38.681,37.732,38.131,37.752,38.075,37.805,37.397,37.863,37.401,41.81,38.762,41.589,37.506,37.89],"script":[7.283,7.557,6.826,7.054,6.929,7.16,7.193,6.743,6.875,6.709,7.568,7.373,7.53,6.864,7.247],"paint":[30.192,30.289,29.783,29.682,30.038,29.863,29.448,29.826,29.972,29.305,33.466,30.422,33.14,29.542,29.873]}}, -{"f":"vue-v3.4.18-non-keyed","b":"07_create10k","v":{"total":[438.945,443.713,444.26,443.231,442.341,444.149,440.802,432.604,440.847,436.557,439.472,441.341,444.032,439.147,440.829],"script":[94.4,95.904,99.786,97.792,98.101,99.411,98.408,97.263,96.29,97.732,95.501,98.454,100.263,92.298,95.586],"paint":[337.674,340.842,337.299,338.695,337.525,338.097,335.66,328.61,337.815,331.931,337.246,335.935,336.988,340.056,338.379]}}, -{"f":"vue-v3.4.18-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[48.643,48.151,48.201,49.924,49.341,48.467,48.68,49.17,47.968,48.053,48.262,48.288,49.316,48.555,48.178],"script":[8.764,8.396,8.329,9.124,8.988,8.398,8.485,8.496,7.999,8.397,8.471,8.603,8.564,8.625,8.108],"paint":[39.026,38.865,39.003,39.94,39.521,39.186,39.308,39.697,39.085,38.801,38.931,38.798,39.912,38.975,39.196]}}, -{"f":"vue-v3.4.18-non-keyed","b":"09_clear1k_x8","v":{"total":[15.952,14.584,15.519,16.14,15.765,15.397,15.928,16.309,14.863,14.354,15.764,15.411,14.884,15.348,15.68],"script":[14.054,12.88,13.438,14.08,14.007,12.918,14.109,14.226,12.708,12.171,14.124,13.773,12.205,13.351,13.872],"paint":[1.112,0.819,1.59,1.205,1.657,2.38,1.718,1.236,1.294,1.186,1.412,1.483,1.88,1.904,1.705]}}, -{"f":"vue-v3.4.18-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.7202816009521484]}}, -{"f":"vue-v3.4.18-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.754087448120117]}}, -{"f":"vue-v3.4.18-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.783806800842285]}}, -{"f":"vue-v3.4.18-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.1860589981079102]}}, -{"f":"vue-v3.4.18-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[28.259394645690918]}}, -{"f":"vue-v3.4.18-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[55.755859375]}}, -{"f":"vue-v3.4.18-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[20.46484375]}}, -{"f":"vue-v3.4.18-non-keyed","b":"43_first-paint","v":{"DEFAULT":[101.6]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"01_run1k","v":{"total":[44.498,43.699,43.187,44.379,44.408,43.188,44.31,44.245,45.438,43.625,42.666,42.65,44.727,44.123,42.998],"script":[10.15,9.676,9.566,9.628,10.057,9.614,10.174,10.015,9.964,9.683,9.53,9.469,10.323,10.025,9.451],"paint":[33.9,33.56,33.178,34.24,33.887,33.105,33.679,33.768,34.984,33.483,32.684,32.713,33.955,33.616,33.082]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"02_replace1k","v":{"total":[17.669,17.42,17.722,17.559,17.296,17.519,17.583,17.491,17.548,18.258,17.582,17.593,17.479,17.58,17.397],"script":[2.71,2.642,2.771,2.635,2.631,2.614,2.729,2.675,2.68,2.719,2.676,2.661,2.64,2.665,2.627],"paint":[14.513,14.337,14.552,14.531,14.295,14.48,14.389,14.423,14.481,15.078,14.474,14.477,14.451,14.528,14.372]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"03_update10th1k_x16","v":{"total":[19.668,19.662,19.486,19.478,19.644,19.794,21.349,19.526,19.987,20.331,19.923,21.448,19.995,20.959,20.164],"script":[3.655,4.074,3.828,3.827,3.595,3.995,3.633,3.858,3.421,3.841,3.866,3.807,3.993,4.272,4.153],"paint":[14.669,13.433,13.703,14.265,13.501,14.479,15.804,13.413,15.247,14.601,13.3,15.81,13.359,14.778,14.803]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"04_select1k","v":{"total":[6.975,6.178,7.258,6.763,5.679,5.797,6.742,5.883,5.893,6.941,5.609,5.8,6.547,5.887,5.57,6.662,6.327,6.053,5.419,5.57,6.606,6.223,5.975,5.787,6.28],"script":[4.446,3.95,4.188,4.197,2.899,3.255,3.952,3.392,3.129,3.925,3.709,3.843,3.71,3.879,3.243,3.945,3.712,3.547,3.048,3.336,3.771,3.935,3.81,3.332,3.492],"paint":[1.958,1.936,2.058,1.365,2.046,1.493,2.285,1.237,2.488,2.885,1.794,1.369,2.7,1.218,2.224,1.862,2.321,1.726,1.229,1.653,2.696,1.507,1.453,2.022,2.649]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"05_swap1k","v":{"total":[13.194,13.698,12.994,13.986,12.38,13.292,13.542,13.372,13.56,13.31,13.422,13.234,12.94,13.523,13.155],"script":[2.177,1.569,1.394,2.209,1.826,2.24,1.818,2.388,1.884,1.808,1.797,1.495,1.782,1.891,2.028],"paint":[10.356,10.628,10.009,10.761,9.502,9.73,9.483,9.719,10.236,10.006,10.282,10.197,9.576,9.587,9.885]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"06_remove-one-1k","v":{"total":[35.055,36.19,35.641,35.758,33.989,34.929,34.634,37.369,37.095,36.981,34.972,37.431,37.295,36.116,35.553],"script":[3.831,4.59,4.333,4.486,3.794,4.032,3.759,4.811,4.54,4.451,4.113,4.777,4.438,4.766,4.64],"paint":[30.463,30.547,30.164,30.456,29.142,29.549,30.077,31.713,31.386,31.69,29.659,31.492,31.661,30.523,29.515]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"07_create10k","v":{"total":[459.936,451.241,454.737,455.893,451.749,453.983,454.31,456.343,445.134,456.024,450.98,447.172,452.903,457.207,443.966],"script":[105.795,105.059,103.394,103.665,107.542,102.885,102.755,104.33,106.167,105.42,103.748,102.446,102.598,103.484,105.83],"paint":[347.223,339.369,344.443,345.315,337.018,344.236,344.738,345.192,332.15,343.72,340.425,337.825,343.435,346.924,331.321]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"08_create1k-after1k_x2","v":{"total":[51.126,49.345,49.969,49.924,49.932,49.968,50.641,49.269,50.72,50.646,51.137,50.667,50.64,50.622,50.606],"script":[9.555,9.317,9.625,9.505,9.408,9.795,10.05,9.414,9.656,10.303,10.307,10.316,9.931,10.242,9.811],"paint":[40.648,39.17,39.418,39.471,39.606,39.26,39.709,38.989,40.095,39.427,39.904,39.463,39.831,39.432,39.866]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"09_clear1k_x8","v":{"total":[20.135,19.389,19.519,19.419,19.341,18.602,19.112,18.064,19.48,18.318,17.791,18.586,19.247,18.878,19.748],"script":[17.391,17.617,17.599,17.854,16.929,16.845,17.495,15.702,17.781,16.675,15.866,16.727,17.048,16.564,17.614],"paint":[2.045,1.644,1.053,1.456,2.3,1.647,1.506,2.081,1.359,1.545,1.654,1.756,1.619,1.783,1.999]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"21_ready-memory","v":{"DEFAULT":[0.559361457824707]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"22_run-memory","v":{"DEFAULT":[3.609344482421875]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"23_update5-memory","v":{"DEFAULT":[3.6329355239868164]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"25_run-clear-memory","v":{"DEFAULT":[1.2088680267333984]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"26_run-10k-memory","v":{"DEFAULT":[28.76487922668457]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"41_size-uncompressed","v":{"DEFAULT":[29.119140625]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"42_size-compressed","v":{"DEFAULT":[10.8701171875]}}, -{"f":"vue-vapor-v3.2024.0-66cea4b-non-keyed","b":"43_first-paint","v":{"DEFAULT":[81.9]}},]; -export const frameworks = [{"name":"alpine-v3.12.0-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v17.0.2-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-cf-nozone-v17.0.2-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-cf-signals-v17.0.2-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v17.0.2-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"apprun-v3.30.2-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"better-react-v1.1.3-keyed","dir":"keyed/better-react","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/better-react"},{"name":"blazor-wasm-v8.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v8.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.28-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.6.0-keyed","dir":"keyed/bobril","keyed":true,"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.0-alpha.12-keyed","dir":"keyed/cample","keyed":true,"frameworkHomeURL":"https://camplejs.github.io"},{"name":"crank-v0.4.1-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.0.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"dioxus-v0.4.0-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-alpha.36-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dlightjs-subview-v1.0.0-alpha.36-keyed","dir":"keyed/dlightjs-subview","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://doohtml.com"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://doohtml.com"},{"name":"doz-v5-preview-keyed","dir":"keyed/doz","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v5.3.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"fntags-v0.3.3-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"fre-v2.5.5-keyed","dir":"keyed/fre","keyed":true,"frameworkHomeURL":"https://fre.deno.dev"},{"name":"frei-hooks-v1.1.9-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"goui-v0.1.2-keyed","dir":"keyed/goui","keyed":true,"frameworkHomeURL":"https://github.com/twharmon/goui"},{"name":"gxt-v0.0.37-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hydro-js-v1.5.14-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v3.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v2.0.0-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.16.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.6.3-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.0.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.0.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v3.0.1-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marko-v5.31.12-keyed","dir":"keyed/marko","keyed":true,"frameworkHomeURL":"https://markojs.com/"},{"name":"maverick-v0.23.1-keyed","dir":"keyed/maverick","keyed":true,"frameworkHomeURL":"https://github.com/maverick-js/maverick"},{"name":"metron-v0.0.2-keyed","dir":"keyed/metron","keyed":true,"frameworkHomeURL":"https://github.com/robbiespeed/metron"},{"name":"michijs-v1.1.7-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://github.com/michijs/michijs"},{"name":"michijs-map-v1.1.7-keyed","dir":"keyed/michijs-map","keyed":true,"frameworkHomeURL":"https://github.com/michijs/michijs"},{"name":"mikado-v0.8.327-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.327-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"million-v2.3.3-keyed","dir":"keyed/million","keyed":true,"issues":[801],"frameworkHomeURL":"https://github.com/aidenybai/million"},{"name":"mimbl-v0.10.4-keyed","dir":"keyed/mimbl","keyed":true,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.14.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.2.6-keyed","dir":"keyed/owl","keyed":true,"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v5.3.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.9.98-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.19.3-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.19.3-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-signals-v10.19.3 + 1.2.2-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"qwik-v1.3.0-keyed","dir":"keyed/qwik","keyed":true,"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.3.6-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"rax-v0.6.7-keyed","dir":"keyed/rax","keyed":true,"frameworkHomeURL":"https://github.com/alibaba/rax"},{"name":"react-classes-v18.2.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org"},{"name":"react-diagon-v18.2.0 + 0.14.3-keyed","dir":"keyed/react-diagon","keyed":true,"frameworkHomeURL":"https://www.diagon.dev/"},{"name":"react-focal-v18.2.0 + 0.9.0-keyed","dir":"keyed/react-focal","keyed":true,"frameworkHomeURL":"https://github.com/grammarly/focal"},{"name":"react-hooks-v18.2.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v18.2.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-jotai-v17.0.1 + 1.7.2-keyed","dir":"keyed/react-jotai","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/jotai"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v18.2.0 + 6.9.0-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-recoil-v18.2.0 + 0.7.7-keyed","dir":"keyed/react-recoil","keyed":true,"frameworkHomeURL":"https://recoiljs.org/"},{"name":"react-redux-v18.2.0 + 8.0.5-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v18.2.0 + 0.10.4-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-signalis-v18.2.0 + 0.0.8-keyed","dir":"keyed/react-signalis","keyed":true,"frameworkHomeURL":"https://github.com/cafreeman/signalis"},{"name":"react-starbeam-v18.2.0 + 0.6.0-keyed","dir":"keyed/react-starbeam","keyed":true,"frameworkHomeURL":"https://www.starbeamjs.com/"},{"name":"react-tagged-state-v18.2.0 + 1.23.2-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v18.2.0 + 1.7.11-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v18.2.0 + 4.3.6-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v3.29.0-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"rendrjs-v0.2.50-keyed","dir":"keyed/rendrjs","keyed":true,"frameworkHomeURL":"https://rendrjs.com"},{"name":"rendrjs-atoms-v0.2.50-keyed","dir":"keyed/rendrjs-atoms","keyed":true,"frameworkHomeURL":"https://rendrjs.com"},{"name":"rescript-react-v0.10.3-keyed","dir":"keyed/rescript-react","keyed":true,"frameworkHomeURL":"https://rescript-lang.org/"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v7.1.0-keyed","dir":"keyed/riot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://riot.js.org/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.12.2 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.12.2 + 2.2.1-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.57.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"scarlets-frame-v0.34.6-keyed","dir":"keyed/scarlets-frame","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"silkenweb-v0.6.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.6.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io"},{"name":"solid-v1.8.0-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.5.4-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.11.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"strve-v6.6.6-keyed","dir":"keyed/strve","keyed":true,"frameworkHomeURL":"https://strvejs.github.io/strve-doc/"},{"name":"strve-reactivity-v1.5.0-keyed","dir":"keyed/strve-reactivity","keyed":true,"frameworkHomeURL":"https://strvejs.github.io/strve-doc/"},{"name":"svelte-v5.0.0-next.64-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.0.0-next.64-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v4.4.1-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v1.3.1-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"unis-v1.2.2-keyed","dir":"keyed/unis","keyed":true,"frameworkHomeURL":"https://www.github.com/anuoua/unis"},{"name":"valtio-v18.2.0 + 1.10.3-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-keyed","dir":"keyed/vanillajs-1","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.1.0-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"voby-v0.48.0-keyed","dir":"keyed/voby","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vobyjs/voby"},{"name":"vue-v3.4.18-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.4.0-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-pinia-v3.4.18 + 2.1.7-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.2024.0-66cea4b-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.2.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"whatsup-v2.6.0-keyed","dir":"keyed/whatsup","keyed":true,"frameworkHomeURL":"https://github.com/whatsup/whatsup"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.30.2-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v0.1.7-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.3.0-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.39.0-non-keyed","dir":"non-keyed/bau","keyed":false,"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v20.4.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.8-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-alpha.36-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v4.0.3-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.0-beta.26-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.1.9-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.5.14-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.0.0-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.0.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v3.3.0-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.327-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.25.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.9.51-non-keyed","dir":"non-keyed/quel","keyed":false,"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.3.6-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"react-classes-v18.2.0-non-keyed","dir":"non-keyed/react-classes","keyed":false,"frameworkHomeURL":"https://www.reactjs.org"},{"name":"redom-v3.29.0-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev"},{"name":"riot-v7.1.0-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.12.2-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.34.6-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"slingjs-v21.0.1-non-keyed","dir":"non-keyed/slingjs","keyed":false,"frameworkHomeURL":"https://github.com/puckowski/Sling.js"},{"name":"sprae-v8.1.2-non-keyed","dir":"non-keyed/sprae","keyed":false,"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"strve-v5.6.2-non-keyed","dir":"non-keyed/strve","keyed":false,"frameworkHomeURL":"https://maomincoding.github.io/strve-doc/"},{"name":"svelte-classic-v5.0.0-next.64-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v4.4.1-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[801],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v1.3.1-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"voby-v0.48.0-non-keyed","dir":"non-keyed/voby","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/vobyjs/voby"},{"name":"vue-v3.4.18-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.2024.0-66cea4b-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; +{"f":0,"b":[{"b":0,"v":{"total":[103.6,102.3,102.6,103.2,103.9,107.9,106.9,106.2,109.4,107.7,105.5,106.1,106.3,106.4,107.2],"script":[68.9,67.4,67.5,68,68.9,69.5,70.2,69.6,71.9,70.2,69.3,69.7,69.9,70.1,70.9],"paint":[34.2,34.4,34.7,34.8,34.6,37.9,36.1,36,37,37,35.7,36,35.9,35.8,35.9]}},{"b":1,"v":{"total":[125.7,126.6,125.5,126.4,127.9,129.5,128.2,126.2,128.6,128.3,128.2,126,126,127.1,126],"script":[90.4,93.9,91.4,92.3,94.5,95.4,95.3,91.9,93.7,95.6,95.2,91.9,92.2,94.3,93.1],"paint":[34.7,32,33.5,33.6,32.9,33.6,32.3,33.8,34.4,32.1,32.5,33.5,33.2,32.3,32.4]}},{"b":2,"v":{"total":[22.2,22.4,22.1,24.1,22.3,22.6,22.2,22,26,22.7,22.5,21.6,22.8,21.6,22.3],"script":[5.2,4.8,4.9,4.8,4.5,5.2,4.7,4.8,4.8,4.7,5,4.7,5.1,4.9,4.9],"paint":[15.5,15.4,15.8,17.8,16.3,15.7,16.1,15.9,19,16,15.9,15.5,16.1,14.7,15]}},{"b":3,"v":{"total":[36.7,36.7,34.1,34,36.8,33.6,36.6,40.2,37.6,35.3,36.8,37,36.8,34.4,33.2,36.3,34.1,34.9,33.8,34.5,34,33.7,35.6,34,32.6],"script":[29.3,30.7,29.8,30.5,29.3,29.6,29.7,32.3,31.5,30.7,31.8,32.7,32.8,30.7,30.4,30,30.7,31.6,30.3,30.8,30.7,30.7,31.8,30.6,29.5],"paint":[6.2,5.5,3.3,2.6,5.7,3.2,5.8,6.9,5.1,4.3,3.2,2.8,2.7,2.8,1.6,5.3,2.6,2.4,2.3,2.7,2,2.2,2.3,3.2,2.1]}},{"b":4,"v":{"total":[36,33.6,32.1,33.1,33.5,32.6,33.1,34.3,32.8,34.4,34.2,34,32.6,33.6,33.5],"script":[12.6,13.3,12.4,13,12.9,12.1,12.3,13.7,12.5,12.7,13.3,13,12.1,13.4,13.1],"paint":[20.9,19,18.4,18.2,18.8,18.5,19.5,18.7,18.1,19.2,18.2,19.2,19,18.8,18.7]}},{"b":5,"v":{"total":[24.7,25,24.3,24.2,24.4,24,24.1,24.3,24.4,24.2,25,24,23.9,24.2,26.6],"script":[8.6,8.4,8.4,8.3,8.1,8.2,8.1,8.2,8,8.3,8.3,8,7.5,8.2,8.3],"paint":[14.8,15.5,14.9,14.9,15.4,14.8,15.2,15.1,15.6,14.7,15.7,15.1,15.3,14.9,17.5]}},{"b":6,"v":{"total":[947.3,941.1,939.4,941.7,936.2,932.4,943.1,943.1,942.3,939.2,935.5,918,917.3,948.9,935.1],"script":[583.4,589.4,589.9,588.5,585.7,581.7,591.7,590.3,584.8,588.1,584.9,565.9,567.5,591.8,581.7],"paint":[356.9,344.8,342.4,346.4,343.6,343.8,344.5,345.1,350.7,344.2,343.7,345.2,342.9,350.2,346.6]}},{"b":7,"v":{"total":[119.1,122.6,118.2,119.3,119.2,119.2,117.9,119.3,118.9,118.9,118.6,118.3,119.1,119.6,119.2],"script":[80.5,83,80.5,81.7,80.9,80.4,80.2,82.1,82.3,82.1,81,81.2,81.5,80.2,81.8],"paint":[37.7,38.7,36.7,36.6,37.4,37.8,36.7,36.2,35.7,35.9,36.6,36.2,36.6,38.2,36.4]}},{"b":8,"v":{"total":[53.8,52.8,52.8,53,52.3,53.3,52.7,52.5,52.4,51.4,50.8,50.9,51.9,54.9,51.6],"script":[51.6,50,50.8,50.8,50.4,51.2,50.7,50,50.2,48.8,48.6,49.3,49.8,52,50],"paint":[1.2,1.6,1.4,2.1,1.3,2,1.5,2.3,1.5,1.7,2.1,1.5,1.4,1.5,0.9]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[13.9]}},{"b":11,"v":{"DEFAULT":[14]}},{"b":12,"v":{"DEFAULT":[1.5]}},{"b":13,"v":{"DEFAULT":[128.8]}},{"b":14,"v":{"DEFAULT":[43.8]}},{"b":15,"v":{"DEFAULT":[13.6]}},{"b":16,"v":{"DEFAULT":[76.9]}}]}, +{"f":1,"b":[{"b":0,"v":{"total":[54.4,55.4,56.2,57.7,56.2,57,57.1,57.8,57.7,57.5,56.6,55.3,56.6,55.7,55.9],"script":[19.8,21.3,20.8,22.1,20.7,21.4,21.4,21.5,21.9,20.6,21.5,19.6,21.3,20.8,20.9],"paint":[34.2,33.7,35,35.2,35,35.1,35.3,35.8,35.4,36.5,34.8,35.2,34.9,34.5,34.5]}},{"b":1,"v":{"total":[68.3,70.9,66.8,69.1,68.2,67.3,68,66.8,69.7,71.7,70.4,69.6,70.7,70.6,67.2],"script":[31.3,33.5,31.3,32.3,30.9,31.4,31.4,30.5,31.1,32.9,31.3,31.3,31.3,31.9,31.4],"paint":[36.5,37,35,36.4,36.9,35.4,36.2,35.9,38.2,38.4,38.6,37.9,38.9,38.3,35.3]}},{"b":2,"v":{"total":[29.6,28.3,27.1,27.5,26.3,28.2,26.2,26.2,29.9,28.2,27.7,26.1,28,28.1,26.7],"script":[10.8,10.7,10.3,10.5,10.4,10.6,10.2,10,11.3,10.9,10.5,10.4,10.3,10.9,10.6],"paint":[17.2,16,14.2,15.7,13.8,16.3,14.1,15.3,16.2,15.2,16.2,14.6,16.4,15.7,14.5]}},{"b":3,"v":{"total":[11.8,11.7,11.3,10.8,11.6,11.4,12.1,11.8,12.4,11.1,11.7,12.4,11.4,10.9,12.3,12.1,11.9,12.4,11.8,12.2,10.9,11.5,12,11.8,12.3],"script":[8.8,8.3,8.5,8.2,9.2,9.3,8.7,8.7,8.8,8.7,8.7,8.5,8.7,8.7,9.1,9.3,8.6,8.4,9,9.5,8.8,9,9.3,9,9.2],"paint":[2.1,3.3,2,2.4,1.3,1.1,2.9,2.7,3,1.4,2.5,3.7,2.2,2.1,2.6,2,3.1,3.2,2.6,2.2,1.2,1.9,2.6,1.7,3]}},{"b":4,"v":{"total":[28.3,27.8,27.9,27.7,27.7,29,28.5,28.6,27.8,28.1,27.9,27.9,27.7,31.6,27.9],"script":[9.2,9.1,8.7,8.5,9.2,9.1,9.5,8.8,9,9.5,9.5,9.5,9.3,10.4,8.9],"paint":[17.2,17.7,17.1,18.5,17.6,17.9,17.9,18,17.1,17.1,16.9,17.1,16.8,19.9,17.2]}},{"b":5,"v":{"total":[109.7,106.5,109.5,107.5,108.4,108.9,107.6,108.5,108.5,107,107.7,106.7,107.6,108.5,108.4],"script":[36.2,35.7,37.2,36.2,36,35.9,36.8,36.7,36.1,35.5,36.3,35.3,36.5,36.3,35.9],"paint":[72,69.6,71.4,69.9,71.2,71.8,69.9,70.3,71.1,70.2,70.2,70.1,69.9,71,71.2]}},{"b":6,"v":{"total":[601.5,610.3,600.6,603.3,602.3,599.2,603.7,614.4,618.4,588.9,601.5,593.6,602.8,598.9,595.3],"script":[235.4,243.8,235,245.2,238.1,235.8,241.8,247,252.1,229.1,234.4,234.6,241.8,234.6,237.4],"paint":[359.3,359.8,358.9,351.1,357.6,356.7,355.3,360.8,359.4,353.2,360.3,352.3,354.4,357.7,351.2]}},{"b":7,"v":{"total":[71.2,71.2,69.9,69.8,70.6,70.1,69.7,69.9,69.8,70.3,70.9,69.9,70.4,69.3,70.6],"script":[30.6,31,30.5,30.3,31.2,29.9,30.2,30.4,30.5,30.4,31.2,30.2,31.2,29.9,31],"paint":[39.7,39.3,38.5,38.5,38.6,39.3,38.7,38.6,38.4,39,38.8,38.8,38.3,38.5,38.7]}},{"b":8,"v":{"total":[17.9,18.2,18.4,19.5,17.8,19.6,18.6,17.1,17.8,18.8,19.1,17.1,17.4,19.8,18.5],"script":[15.6,16.6,16.7,17,15.6,17.8,16.6,14.8,15.9,17.2,17.2,15.2,15.5,17.2,16.9],"paint":[1.3,1.1,1.2,1.8,1.4,1.6,1.6,1.9,1.3,1.5,1.4,1.6,1.1,2.5,1.5]}},{"b":9,"v":{"DEFAULT":[0.4]}},{"b":10,"v":{"DEFAULT":[6.6]}},{"b":11,"v":{"DEFAULT":[8.5]}},{"b":12,"v":{"DEFAULT":[4.8]}},{"b":13,"v":{"DEFAULT":[47.6]}},{"b":14,"v":{"DEFAULT":[257.1]}},{"b":15,"v":{"DEFAULT":[73.5]}},{"b":16,"v":{"DEFAULT":[41.4]}}]}, +{"f":2,"b":[{"b":0,"v":{"total":[44.9,44,45.9,44.7,44.8,45.4,46,44.8,44.6,44.1,43.7,45.9,43.3,46.7,44.3],"script":[9.7,9.3,10.2,10.1,10.2,10.3,9.9,9.7,9.4,9.1,8.9,10.4,9.1,9.8,9.5],"paint":[34.8,34.4,35.3,34.2,34.2,34.7,35.7,34.7,34.7,34.5,34.4,35.1,33.8,36.4,34.4]}},{"b":1,"v":{"total":[56,53.9,55.2,54.4,54.1,54.8,54.8,54.2,55.7,55.8,55.5,54.1,54.1,54,54.4],"script":[16.9,16.1,16.4,16,15.9,16,16.2,16.1,16.4,17.3,16.7,15.9,16.3,16.1,16.4],"paint":[38.6,37.3,38.3,37.8,37.6,38.3,38.1,37.6,38.9,38.1,38.3,37.7,37.3,37.4,37.5]}},{"b":2,"v":{"total":[17.9,17.2,17.3,19.2,17.3,17,17.3,17.7,18.2,18.1,18.6,18,17.5,16.6,17.5],"script":[1.5,1.5,1.8,2.7,2,1.4,1.5,2.3,1.8,1.8,2.1,2.3,2.1,1,2],"paint":[14.5,14.7,14,15,14.3,14.2,13.7,13.8,13.5,14.5,15.4,13.6,13.7,14.6,14]}},{"b":3,"v":{"total":[3.7,3.9,3.9,3.5,3.9,3.5,3.4,3.8,4.1,3.9,3.8,4.6,4,4.3,3.3,3.9,3.9,4.2,3.7,3.7,4.2,3.8,3.7,4.9,3.9],"script":[1.3,1.5,1.5,1,0.6,1.3,0.9,1.1,1.5,1.6,1.3,1.3,1.3,0.9,1.1,1.3,1.1,1.3,1.2,1.7,1.3,1.4,0.7,1.9,1.3],"paint":[2.3,2.3,1.9,1.8,3.2,1.3,2.4,2.3,2.1,2.1,2.4,2.9,2.6,3.3,2.1,1.7,2.7,2.4,2,1.9,1.9,1.8,3,2.8,1.7]}},{"b":4,"v":{"total":[20.4,19.7,19.8,19.9,21.8,19.5,20.5,19.7,20,20.3,20,20,21.4,19.4,20.2],"script":[1.8,1.1,1.7,1.5,1.7,1,1.6,1.3,1.6,1.4,2.1,1.4,1,1.3,1.7],"paint":[16.4,17.1,17.4,17.7,18.6,17,17.5,16.7,17.2,17.3,16.7,16.7,17.9,16.8,17.5]}},{"b":5,"v":{"total":[16,16.1,15.9,15.9,15.7,15.9,15.5,15.8,17.4,15.5,15.9,16.1,15.9,16,16.2],"script":[1.1,1.1,1.1,1.1,0.9,1,0.8,1,1,0.8,1.1,0.8,1,1.1,1.1],"paint":[14.2,14,14.1,14.2,14.1,14,13.8,14.1,15.3,13.8,14.1,14.5,14.2,14.2,14.2]}},{"b":6,"v":{"total":[452.8,446,452.3,445,444.6,445.8,447.8,447.1,449,442.7,449.8,447.4,445.3,444.1,444.3],"script":[101.4,102.4,106.8,100.8,100.8,102,101.9,102,101.5,100.5,103.6,103,101.6,100.3,101.8],"paint":[344.6,336.7,338.5,337.4,337.1,337,338.6,338,340.5,335.4,339.5,337.7,337,337.1,335.8]}},{"b":7,"v":{"total":[48.2,47.8,47.6,48.4,49.8,47.3,48.1,48.4,47.9,49.1,49,48.8,49,49.2,49.7],"script":[8.4,8.6,8.3,8.5,9,8.3,8.3,8.3,8.6,8.7,8.4,8.3,8.5,8.5,8.7],"paint":[38.9,38.3,38.4,39.1,39.9,38.1,38.9,39.3,38.4,39.5,39.6,39.5,39.5,39.7,40]}},{"b":8,"v":{"total":[24.4,24.2,24.3,24.1,24.9,25.5,24,24.1,24.3,25.1,23.4,24.3,23.7,22.7,23.4],"script":[22.6,22.4,22.3,21.9,22.9,24,21.9,22.4,22.4,23,21.3,22.2,22.1,20.9,21.5],"paint":[0.9,1.7,1.8,2.1,1.8,1.4,1.3,1.4,1,2,1.7,2,0.7,0.8,1.8]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[4.7]}},{"b":11,"v":{"DEFAULT":[4.9]}},{"b":12,"v":{"DEFAULT":[2.2]}},{"b":13,"v":{"DEFAULT":[29.8]}},{"b":14,"v":{"DEFAULT":[137.7]}},{"b":15,"v":{"DEFAULT":[43]}},{"b":16,"v":{"DEFAULT":[198.2]}}]}, +{"f":3,"b":[{"b":0,"v":{"total":[45.1,44.2,45.4,45.3,44.4,44.2,44.1,44,44.1,44.1,44.1,44,44.7,44.1,44.9],"script":[9.1,8.5,9.1,9.4,8.7,8.5,8.6,8.7,8.8,8.8,8.8,8.9,8.7,9,9],"paint":[35.5,35.3,35.9,35.4,35.3,35.3,35.1,34.9,34.8,34.8,34.9,34.7,35.5,34.7,35.5]}},{"b":1,"v":{"total":[51.1,50.6,50.4,51.6,50.8,51.2,51.6,51.4,51.3,51.3,52.8,50.6,52,51.1,50.9],"script":[14.5,14.2,14.5,14.5,14.3,14.2,14,14.4,14.6,14,15.1,13.5,14.3,14.4,14.1],"paint":[36.2,36,35.4,36.7,36,36.5,37.2,36.6,36.2,36.8,37.2,36.6,37.3,36.3,36.3]}},{"b":2,"v":{"total":[18,18.6,17.2,17.5,17.3,17.2,16.7,17.9,17.9,17.5,17.3,17.4,17.4,17.6,16.9],"script":[2.4,1.9,1.6,1.9,2.2,2.1,1.3,2.5,1.9,1.6,1.6,1.9,1.5,2.1,1.6],"paint":[13.2,14.5,14.2,13.8,13.8,13.4,14.1,13.8,14.5,14.6,13.4,14.1,14.6,12.4,14.2]}},{"b":3,"v":{"total":[3.9,4.5,3.7,3.7,3.7,4,4.7,4,3.8,3.5,4.1,3.7,4.7,3.8,4.2,4.4,4.6,3.5,3.9,4.3,3.5,4,3.3,3.9,4.2],"script":[1.6,1.3,1,1.3,0.9,1.5,1.5,0.9,1.3,1.2,1.9,1.7,1.7,1,1.6,1.5,1.5,1,1.5,1.9,1.5,1.9,1.1,1.5,1.3],"paint":[1.6,3.2,2.3,2.2,2.7,1.6,2.9,2.5,2.4,1.4,1.8,1.9,2.9,1.7,2,2.7,2,1.6,2.4,2.2,1.8,2,2.1,2.2,2.9]}},{"b":4,"v":{"total":[20.6,20.3,21.3,19.8,20.5,20.7,21.7,19.7,19.2,19.5,19.9,19.9,21.3,19.7,19.8],"script":[1.8,1.8,2.3,1.3,2,1.7,1,1.6,1.1,1.6,1.6,1.4,1.6,1.8,1.5],"paint":[17.1,17.2,17,17.5,17.5,17.7,19.3,16.7,17,16.4,17,17.4,17.9,16.4,16.7]}},{"b":5,"v":{"total":[15.7,16,15.9,15.8,16.3,15.9,16,15.9,16,15.7,15.9,16.7,16,16,16],"script":[0.9,0.9,1,1,0.8,1.1,0.9,1.1,0.7,0.9,1,0.8,1,1,1],"paint":[14,14.4,14.2,14.1,14.6,13.9,14.4,14.1,14.5,14.2,14.2,15,14.3,14.2,14.2]}},{"b":6,"v":{"total":[441.1,442.8,445.9,446.5,450.3,443.6,440.5,442.6,440.6,446,442.3,445.3,451,444.5,440.3],"script":[91,91.9,92.6,91.6,92.3,92.7,91.7,92,91.6,91.7,91.9,93.8,93.2,92.2,91.3],"paint":[343.5,344.1,346.3,348.3,351.1,344.1,342.2,343.9,342.3,347.4,343.8,344.8,351.2,345.7,342.3]}},{"b":7,"v":{"total":[49.2,48.2,49,48.8,48.9,48.6,48.3,49.1,49.3,49.9,48.4,48.5,48.9,47.5,47.1],"script":[8.8,7.9,8.1,8.1,7.8,8,7.8,8.4,7.9,8.3,8.2,8,8.3,7.8,7.8],"paint":[39.5,39.4,39.9,39.7,40.2,39.7,39.6,39.7,40.4,40.7,39.3,39.5,39.5,38.8,38.4]}},{"b":8,"v":{"total":[21.9,20.6,22.4,20.8,21.7,24.1,20.9,20.9,21.8,21.1,20.2,21.6,19.5,21.2,21.7],"script":[20,18.9,19.8,18.8,19.9,20.8,19.4,18.7,20.3,18.9,18.7,19.6,17.8,18.8,19.2],"paint":[1.2,1.6,2.5,2,1.7,2.6,1.4,2.1,1.4,1.9,1.4,1.8,1.6,2.4,2.5]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1.6]}},{"b":13,"v":{"DEFAULT":[23.2]}},{"b":14,"v":{"DEFAULT":[105.8]}},{"b":15,"v":{"DEFAULT":[32.5]}},{"b":16,"v":{"DEFAULT":[151.2]}}]}, +{"f":4,"b":[{"b":0,"v":{"total":[44.3,44.5,43.1,44.9,43.6,42.8,42.4,44.1,44.4,46,45.2,43.1,45.2,43.5,45.2],"script":[9.6,9.9,9.5,10.1,9.4,9,9.1,9.2,9.8,9.8,9.6,9.4,9.5,9.3,9.8],"paint":[34.3,34.2,33.2,34.4,33.8,33.4,32.8,34.4,34.3,35.8,35,33.3,35.2,33.9,34.9]}},{"b":1,"v":{"total":[55,55,54.4,54.6,54.9,54.5,54.3,54.5,55.4,54.8,54.6,54.4,55.1,55.1,55.6],"script":[16.8,16.9,16.2,16.2,16.5,16.4,16.5,16.8,16.9,16.6,16.5,16.5,16.6,16.8,17.1],"paint":[37.7,37.7,37.7,37.9,38,37.6,37.3,37.2,38,37.8,37.6,37.5,38,37.9,38]}},{"b":2,"v":{"total":[18.3,18.3,18.1,17.6,17.4,17.9,17.4,17.9,17.3,18.9,18.2,17.6,19,17.7,18.1],"script":[2.3,2.7,2.4,2,1.5,3.3,2.8,2.6,2.3,3,2.4,2.7,2.4,2.3,2.9],"paint":[14.2,14.7,14.6,12.8,14.1,12.4,13.6,13.7,13.8,14.6,14.2,12.9,13.8,14.4,13.8]}},{"b":3,"v":{"total":[5.7,5.2,5,6.1,5.4,5.8,5.4,7,5.7,5.2,5.3,5.6,5.7,5.3,5.8,6,5.8,6.3,6.1,5.9,5.9,5.5,6.1,5,5.8],"script":[2.2,2.3,1.9,2.5,2.3,1.5,2.4,3.1,2.5,2.2,2.3,2.2,2.3,2.3,2.5,2.8,2.4,2.9,2.5,2.2,2.7,2.4,2.6,1.6,2.6],"paint":[2.3,2.2,2.5,2.5,2.1,3.2,2.9,3.8,3,2.8,2.2,2.8,2.9,2.9,3.1,3,3.1,2.7,3,2.8,1.9,3,3.4,2.1,3]}},{"b":4,"v":{"total":[21.5,20.3,19.4,20.6,21.2,19.4,19.4,19.8,19.5,19.1,18.9,20,19.7,18.8,19.9],"script":[1.8,1.1,1.2,1.3,1.4,1.8,1.3,1,1.7,1.5,1.1,1.4,1.4,1.2,1.8],"paint":[18.1,18.1,16.5,18.1,18,16.5,16.6,17.1,16.8,16.2,16,17.1,17.3,15.9,16.9]}},{"b":5,"v":{"total":[17.1,17.6,16.9,18.4,17,17.6,17.7,17.3,18.1,19.3,18.7,18.1,18.2,18.6,18],"script":[1.3,1.5,1.3,1.3,1.4,1.3,1.6,1.3,1.4,1.6,1.5,1.3,1.5,1.6,1.2],"paint":[15,15,14.8,16.2,14.8,15.2,15,15,15.9,16.6,16.3,15.7,15.3,16,16]}},{"b":6,"v":{"total":[450.6,451.6,448.2,452.5,450.7,453.7,450.6,454.6,451.2,450.3,457,459.1,452.9,449.2,450.1],"script":[103.3,104.6,103.5,104.2,104.7,104.1,103.9,106.4,104.3,105.2,110.1,111.2,103.3,103.2,104.3],"paint":[340.4,340.3,337.8,341.5,339.3,342.3,340,341.5,340.3,338.2,340,341,342.7,339.1,338.9]}},{"b":7,"v":{"total":[49.7,49.6,50.6,49.1,51,49.5,49.9,48.7,51.3,48.6,49.4,50,49.4,49.5,51.4],"script":[9.1,8.9,9,8.9,9.8,9.2,9.1,9.1,9.8,9.1,9,9.4,9.1,9.1,9.4],"paint":[39.8,39.8,40.6,39.2,40.2,39.4,39.9,38.7,40.5,38.6,39.5,39.7,39.3,39.6,41]}},{"b":8,"v":{"total":[24,24.6,24.4,24.5,23.8,24.2,24.8,23.4,23.7,24.4,25,23.9,24.6,25.3,23.9],"script":[21.5,22.7,22,22.9,21.7,22.2,22.5,21.2,21.6,22.8,23.1,21.9,22.5,23.4,22.3],"paint":[1.8,1.8,2,1.5,2,1.8,1.5,2.1,1.4,0.7,1.3,1.5,1.7,1.8,1.1]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[4.8]}},{"b":11,"v":{"DEFAULT":[4.9]}},{"b":12,"v":{"DEFAULT":[2.3]}},{"b":13,"v":{"DEFAULT":[30]}},{"b":14,"v":{"DEFAULT":[139.2]}},{"b":15,"v":{"DEFAULT":[43.4]}},{"b":16,"v":{"DEFAULT":[198.2]}}]}, +{"f":5,"b":[{"b":0,"v":{"total":[45.4,47.5,45.1,46.3,45.7,45.6,45.2,47.1,45.5,45.8,44.4,46,45.8,45.5,45.6],"script":[10.1,11.1,10.6,10.2,10.5,10.7,10.7,11,10.4,10.4,10.7,10.5,10.5,10.5,11.1],"paint":[34.8,36,34.1,35.3,34.7,34.4,34.1,35.6,34.7,35,33.2,35.1,34.8,34.6,34.1]}},{"b":1,"v":{"total":[54.6,55.2,54.8,54.5,53.8,55,55.3,56.3,55.6,54.5,54.8,54.9,55,54,55.3],"script":[16.5,17.3,16.5,16.4,16.6,16.9,16.4,16.4,16.5,16.5,16.6,16.8,16.4,16.4,16.3],"paint":[37.6,37.5,37.9,37.6,36.8,37.6,38.4,39.5,38.6,37.6,37.7,37.6,38.1,37.2,38.5]}},{"b":2,"v":{"total":[18.6,17,19.9,17.5,17.7,17.9,17.8,17.4,16.7,19,18.3,18.7,16.8,17.2,17.6],"script":[1.7,1.8,2.1,2.3,2.2,1.2,1.2,1.6,1.8,2.1,2.2,2,1.5,1.9,2.1],"paint":[16,14.3,16.1,13.9,14.6,15.3,15,14.5,13.4,15.5,14.4,15.2,13.7,14.1,13.9]}},{"b":3,"v":{"total":[3.9,4.3,3.9,3.7,3.9,4.2,4.4,4.1,4.3,4.4,3.9,3.7,4.1,4.2,3.7,4.9,4.3,3.7,3.9,3.9,3.8,3.9,3.9,3.5,3.5],"script":[1.6,1.7,1.2,1.4,1.3,1.5,1.8,1.5,1.6,1.7,0.8,0.9,1.2,1.5,1.4,1.6,2,1.2,1.8,1.4,1,1.1,1.4,1,1],"paint":[2.2,1.8,2.2,1.8,2.5,2,2.5,2.5,2.6,1.3,2.8,1.7,1.9,2.6,1.6,2.8,1.7,2.4,2,2.4,2.4,2.7,2.4,2.1,2.4]}},{"b":4,"v":{"total":[174.2,169,171.8,170.2,169,169.8,170.1,168.4,169.8,170,169.5,170.3,175.3,174.9,173.7],"script":[28.3,27.9,28.5,27.3,27.6,28,28.2,28.2,27.6,28.5,27.3,27.7,28.2,29.2,28.1],"paint":[143.7,139.5,142.5,140.8,139.4,140.2,140.1,138.3,140.2,138.9,139.9,141,144.1,144.6,143.2]}},{"b":5,"v":{"total":[16.6,16.2,16,16,16.3,16.3,16.9,16,15.9,16,16.1,15.9,16,15.9,16],"script":[1,1.1,0.9,0.8,0.9,0.8,1.1,1,0.8,0.9,0.9,1.1,0.9,1.1,1.1],"paint":[14.1,14.4,14.4,14.2,14.7,14.7,14.7,14.3,14.5,14.4,14.4,13.9,14.1,13.8,13.9]}},{"b":6,"v":{"total":[454,452,451.2,453.3,456.2,451.4,448.8,450.3,456.8,449.7,452.1,451.2,449.1,450.8,457.1],"script":[102.7,104,103.9,108.4,109,107.1,103.6,107.9,106,103.1,106.1,103.8,103.9,102.3,110],"paint":[344.4,341,340.4,338.1,340.5,337.6,338.2,335.6,343.9,339.6,339.1,340.1,338.2,341.4,340.3]}},{"b":7,"v":{"total":[50.5,48.7,49.6,50.9,49.1,50.5,48.4,50,50.4,49.1,49,49.5,51.5,49.7,49.7],"script":[9.1,8.9,9,9.4,8.9,9.4,9,9.2,9.7,9,9,9.3,9.8,9,9.3],"paint":[40.5,38.9,39.8,40.6,39.3,40.2,38.5,39.9,39.8,39.2,39.1,39.2,40.8,39.7,39.5]}},{"b":8,"v":{"total":[26.7,25.9,25.6,26.2,25.9,25.7,25.3,26.1,26.1,27.1,26.4,27.2,27.4,27.1,26.9],"script":[24.5,24,23.4,24.5,24,23.8,24,24.6,24.3,25,24.2,25.2,24.3,24.3,24.6],"paint":[2.1,1.3,2,1.3,1.8,1.8,0.8,1.4,0.8,1.9,0.8,1.7,1.4,2.6,1.9]}},{"b":9,"v":{"DEFAULT":[1.5]}},{"b":10,"v":{"DEFAULT":[4.9]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[31.3]}},{"b":14,"v":{"DEFAULT":[147.1]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[205.4]}}]}, +{"f":6,"b":[{"b":0,"v":{"total":[46.9,47.2,44.8,46.5,44.2,44.4,45.7,46.6,44.8,46,46.2,46.3,46.3,47.4,45.5],"script":[11.2,11.4,10.3,12,10.2,10.4,11.1,11.1,10.8,11.1,10.9,10.9,11.1,11.2,10.5],"paint":[35.3,35.3,34,34,33.6,33.6,34.1,35,33.6,34.4,34.9,35,34.7,35.7,34.6]}},{"b":1,"v":{"total":[52.6,52.6,54.2,53.9,54.3,53.7,53.8,55.2,55.7,52.5,54,53.8,54.5,54.9,54.6],"script":[17,16.5,17.2,17.7,16.9,17.4,17.6,17.7,17.9,16.6,17.7,17.4,17.8,18.4,16.5],"paint":[35.1,35.6,36.6,35.8,36.9,35.8,35.7,37.1,37.3,35.4,35.9,35.9,36.2,36,37.7]}},{"b":2,"v":{"total":[56.9,56.2,56.1,56.3,55.5,55.2,54.3,55.9,56.1,56.6,56.2,53.9,55.1,59.6,55.9],"script":[40.5,39.2,39.4,38.9,39.2,38,37.5,39.2,39.2,38.3,39.3,37.6,38.2,40.8,38],"paint":[14.7,15.5,14.7,16,14.4,15.8,15.4,15.3,15.4,16.8,14.9,14.8,15.7,16.6,15.9]}},{"b":3,"v":{"total":[40.9,39.8,40.8,39.7,41.6,40.5,38.7,38.9,39.8,40.2,38.8,40.7,39.7,39.6,39.5,40.8,38.3,38.4,39,40.5,39.2,36.6,40.2,40.4,41.7],"script":[36.8,36.5,37,36.1,37.4,37.1,34.4,35,35.6,36.3,34.8,36.6,35.7,35.2,35.3,36.8,34.9,35.2,34.3,36.8,35.8,32.9,36.5,36.6,38.3],"paint":[2.6,2,2.7,2.3,3.1,2.7,2.5,2.6,3.6,3.1,3.3,2.9,2.8,2.2,3.2,3,2.4,2.1,3.5,2.7,2.2,2.7,2.5,2.8,2.7]}},{"b":4,"v":{"total":[55.5,56.2,56.2,53.6,53.7,56,55.1,54.6,54.9,55,54.7,55.4,54.7,54.7,53.8],"script":[36.2,36.6,37.4,34.8,34.4,36.3,34.6,35.2,35.6,36.6,35.4,36.1,35.8,34.9,35.1],"paint":[17.6,18.4,17.7,17.7,17,18.3,19.2,18.1,17.7,16.6,17.4,17.7,16.7,17.7,17.5]}},{"b":5,"v":{"total":[123.2,122.7,122.1,119.8,120.8,120.6,122,120,120.4,122.9,120.3,121.2,121.1,121.9,124.1],"script":[49.1,51.3,49.8,48.2,48.6,48.4,50.5,48.5,48.4,50.9,48.5,49,49.6,49.8,49],"paint":[72.7,70.6,71.1,70.5,70.7,70.8,70,70.5,70.8,71.1,70.7,70.8,70.3,70.7,73.8]}},{"b":6,"v":{"total":[488.5,491.7,488,474,489.7,489,491.4,488.4,488.7,489.7,497.1,488.9,491.2,492.7,473.2],"script":[138.3,139.8,140.2,139.9,138.9,139.5,141.2,138.4,139.6,142.4,142.9,141.1,140.3,140.7,139.7],"paint":[343.5,344.8,340.9,327.5,344.1,342.8,343.3,343.4,342.2,340.6,347.4,340.8,343.7,345.2,326.8]}},{"b":7,"v":{"total":[62.9,62.9,62.8,62.1,62.8,62.5,63.2,62.6,64.2,62.3,63.1,60.5,62.6,63.3,62.5],"script":[21.9,21.7,21.3,21.1,22.4,22.1,22.6,22.4,23.1,21.9,22.6,20.7,21.5,22.2,21.9],"paint":[40.1,40.2,40.5,40.2,39.5,39.5,39.7,39.3,40.2,39.6,39.6,38.9,40.2,40,39.7]}},{"b":8,"v":{"total":[16.9,15.5,16.4,18.3,15.4,16.9,15.6,17,15.5,17.3,16.5,16.7,17.4,16,15.4],"script":[15.2,13.5,14.7,16.4,13.4,15.5,13.5,15.2,13.6,15.5,14.6,14.9,15.6,14.6,13.6],"paint":[1.7,1.9,0.8,0.9,1,0.9,1.8,1,0.9,1.8,1.6,0.9,1.7,0.4,1.7]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[8.8]}},{"b":13,"v":{"DEFAULT":[18]}},{"b":14,"v":{"DEFAULT":[18.2]}},{"b":15,"v":{"DEFAULT":[5.9]}},{"b":16,"v":{"DEFAULT":[66]}}]}, +{"f":7,"b":[{"b":0,"v":{"total":[99.7,98.6,98.5,99.4,98.8,98.9,98.1,98.3,97,99.1,97.3,100.3,99.6,100.3,99.9],"script":[62.4,61.2,60.2,61,61.5,61.5,60.5,60.3,60.2,61.8,60.6,62.7,61.4,62.3,61.9],"paint":[37.1,37.2,38.1,38.2,37,37.1,37.3,37.8,36.5,37.1,36.5,37.4,38,37.7,37.7]}},{"b":1,"v":{"total":[105.9,105.1,105.1,105.1,95.8,107,103.1,104.9,105.5,105.3,103.8,106.7,103.6,107,103.8],"script":[66.5,67,66.7,70.5,60.5,67.6,65.4,66.5,66.8,66.4,65.9,66.6,65.4,67.2,65.7],"paint":[39.1,37.9,38.2,34.2,35.2,38.9,37.4,38.2,38.5,38.7,37.7,39.9,38,39.4,37.9]}},{"b":2,"v":{"total":[45.7,50.8,50.6,51.9,51.3,50.8,49.1,47.6,48,48.1,49.4,47,49.9,47.8,47.7],"script":[29.6,31.7,31.9,32.9,33.4,32,33.1,31.3,30.9,32.1,30.7,30.2,31.8,31.5,31.4],"paint":[15.9,16.9,17.4,18.6,17.6,17.8,15.9,16.1,16.1,15.9,16.9,16.6,17.4,16,16.1]}},{"b":3,"v":{"total":[14.5,13.9,16.4,13.8,11.3,14,13.8,15.1,15.4,14.2,13.9,14.6,14.2,12.4,16.7,15.1,13.7,17,14,14.3,14.2,15.7,14.2,14.3,14],"script":[8.3,8.2,8.6,8.1,8.3,8.1,8.4,8.8,9.5,7.8,9.2,8.7,8.2,7.1,9.5,8.8,9,8.6,7.5,8.5,8.2,9.6,8.4,7.7,8.5],"paint":[4.3,4.8,4.5,4.4,2.8,3.6,4.4,4.2,4.8,4.3,3.2,3.7,4.9,5.1,5.7,5.8,4.4,7.1,3.7,3.7,5.2,4.3,5.3,4.6,3.2]}},{"b":4,"v":{"total":[54.9,53,53.2,53.8,53.8,54.9,53.3,54.7,54.7,54.9,55.9,53.5,54.9,55,52.8],"script":[32.7,30.6,30.9,30.9,31.8,32.5,31.4,33.2,32.5,33.3,31.6,33.3,32.9,31.5,30.8],"paint":[21,20.9,20.6,20.8,19.8,19.2,20.4,20.8,21.8,20.3,22.4,20.1,18.9,22.2,21.2]}},{"b":5,"v":{"total":[97.8,98.3,100.9,98.8,97.2,96.2,94.5,96.5,99.2,98.6,95.6,96.1,96.4,98.7,96.8],"script":[22.5,22,21.6,21.3,22.1,22.1,21.2,22,22.2,22.4,21.5,21.5,22.1,21.8,21.1],"paint":[73.8,73.8,77.5,76.2,74,72.3,71.8,73,75,74.1,73,73.5,73,75.4,74.5]}},{"b":6,"v":{"total":[824.7,836.6,830.5,823.3,818.3,826.7,835.3,828.2,825.7,835.9,831.5,819.2,834,826,829],"script":[459.9,469.7,466.6,455.6,454.8,461.9,467.3,466.2,460.6,467.8,463.1,454.9,469,458.4,463.8],"paint":[361.1,363.2,360,364.1,359.5,361,364.3,358.3,361.3,364.2,364.4,360.4,361.3,364,361.2]}},{"b":7,"v":{"total":[110.2,112.8,110.8,113.3,111.3,114.3,113.2,113.1,114.5,113,111.6,114,112.8,108.4,111.7],"script":[71.4,74.7,73,75,73.5,73.6,75.2,73.3,73.5,74.3,73.3,74.6,73.3,70.1,73.3],"paint":[38.4,37.7,37.4,37.9,37.4,40.2,37.6,39.5,40.4,38.3,37.9,38.7,39,37.9,38]}},{"b":8,"v":{"total":[25.7,21.8,19.2,24.9,23.4,25.1,22,21.4,23,21.8,25.7,25.4,22.5,22.7,25.3],"script":[22.5,19.5,17.1,20.6,18.8,20.4,20.7,19.4,18.2,19.5,20.9,19.8,21,18.1,20.5],"paint":[2.2,2.2,2,2.9,3.4,3.6,1.3,2,4.2,1.5,2.6,2.9,1.4,3.4,3.2]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[11]}},{"b":11,"v":{"DEFAULT":[10.9]}},{"b":12,"v":{"DEFAULT":[50.9]}},{"b":13,"v":{"DEFAULT":[101.1]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[74.6]}}]}, +{"f":8,"b":[{"b":0,"v":{"total":[43.8,42.7,43,44.5,43.6,44.5,43,43,43.8,44.8,45.4,45.4,44.1,43,44],"script":[10.3,9.9,9.8,11,10,10.3,9.9,10,10.6,10.1,10.8,10.7,9.8,10,10.8],"paint":[33.3,32.6,32.9,33.4,33.3,34.1,32.8,32.8,33.1,34.6,34.5,34.6,34.1,32.8,33]}},{"b":1,"v":{"total":[46.9,46.4,47.4,45.6,47.5,45.5,46.7,46.3,45.1,45.5,47,46.4,46.9,47.2,47.3],"script":[12.6,12,12.3,11.6,11.8,11.6,12.1,11.7,11.6,11.7,11.6,11.8,11.9,12,12.1],"paint":[34.1,34.2,34.9,33.8,34.8,33.7,34.3,34.4,33.3,33.6,35.1,34.4,34.8,35,35.1]}},{"b":2,"v":{"total":[22,20.8,20.6,21.9,21,20.7,21.3,21.8,21.6,22.7,22.6,23.9,22,24.3,20.9],"script":[7,6.7,6.3,6.8,7.3,6.8,6.8,7.1,6.2,6.8,6.3,6.9,8,7.2,6],"paint":[14.7,13.5,14.2,14.9,13.5,13.8,13.7,13.9,14.4,15.4,14.2,16.1,13.3,16.8,14.1]}},{"b":3,"v":{"total":[10.8,8.4,5.3,8.7,8.5,8.9,5.2,9.2,10.5,5.6,5.3,10.5,7.6,11.1,6,11.9,9,5.3,6.5,9.4,14.9,4.8,8.4,9,6.1],"script":[4,3.9,2.3,2.9,2.8,3.9,2.5,3.2,3.9,2.9,2.8,3.3,2.6,3.5,3.1,4.4,4.5,2.3,2.6,3.3,3.8,2.8,2.6,3,3],"paint":[4.5,3,1.7,4.6,3.9,4.1,2.6,4,3.4,1.9,1.8,4.2,2.6,4.1,2.7,3.5,5.2,2.7,1.8,3.4,4,1.9,2.5,4.7,2.5]}},{"b":4,"v":{"total":[23.6,25.9,20.7,22.2,40.6,39.4,20.9,42.6,25.5,20.9,20.1,27.6,45.4,43.7,21.5],"script":[3.6,2.1,2.2,3.3,1.8,2.7,1.9,2.4,2.1,3.1,2.4,2.6,3.5,2.2,3.3],"paint":[17.9,19.8,17,17,17.1,17.1,16.9,20,19.7,17.7,17.6,22.2,20,20.4,17.3]}},{"b":5,"v":{"total":[18.6,16.8,17.1,16.7,17.7,17.5,16.7,16.6,17.2,16.2,16.1,17.5,16.5,18.5,16.7],"script":[1.3,1.1,1.3,1.1,1.3,1.6,1.6,1.3,1.3,1.3,1.3,1,1.3,1.3,1.1],"paint":[15.3,14.4,14.8,14.3,14.8,14.6,13.8,14.1,14.6,14.2,14.1,14.9,14.1,15.4,14.1]}},{"b":6,"v":{"total":[434.7,431.9,433.2,430.9,427.8,431.4,428,437.2,434.3,431.5,433.9,435.2,429.8,432.7,431.7],"script":[101.1,101.4,101.2,100.9,100.4,97.6,98.7,102.5,101.4,99.1,102,102.4,99.6,100.7,99.7],"paint":[331.4,328.3,329.9,327.7,325.2,331.7,327.2,332.3,330.8,330.2,329.8,330.6,328,329.9,329.9]}},{"b":7,"v":{"total":[49.7,48.9,50.4,48.8,50.5,49.6,49.2,48.8,49.6,48.9,49,48.7,50,66.2,49.3],"script":[9.7,9.8,10.7,9.9,9.8,10.4,9.8,9.8,9.8,10,10.3,9.6,9.8,9.7,9.8],"paint":[39.7,38.9,39.4,38.6,40.4,38.9,39,38.7,38.9,38.4,38.4,38.8,39.9,38.6,39.2]}},{"b":8,"v":{"total":[11.9,12.3,12.5,12.3,12.5,16.3,14.7,14.8,12.5,15.3,12.3,12.4,15.5,12.4,12.4],"script":[10.9,10.1,10.6,9.8,9.4,11.5,10.7,11.3,10,11,11,11,11.1,11,9.9],"paint":[1,1,0.5,1.6,1.5,2.7,1.7,2.4,1.8,4,0.7,1.3,2.9,1.3,2.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[31.9]}},{"b":14,"v":{"DEFAULT":[14.3]}},{"b":15,"v":{"DEFAULT":[4.6]}},{"b":16,"v":{"DEFAULT":[48.5]}}]}, +{"f":9,"b":[{"b":0,"v":{"total":[61.8,61.5,60.8,62.5,61,63.6,61.6,60.5,62.3,60.5,61.5,61,62.4,62.2,61.6],"script":[24.5,24.1,24.6,24,24.4,26.3,23.9,23.2,24.9,24.1,25.1,23.8,24.8,25,24.7],"paint":[36.9,37.1,36,36.8,36.4,36.9,37.4,37,37,36.2,36.1,36.9,36.3,36.8,36.5]}},{"b":1,"v":{"total":[67.3,66.7,66.1,68.5,66.9,66.2,66.4,67.1,66.7,66.9,66.6,65.6,66.3,67.7,66.6],"script":[29.7,28.9,29.1,29.8,29.6,29.1,29.1,29.1,28.7,29.5,28.9,27.9,29,29.1,28.8],"paint":[37.1,37.2,36.7,38.2,36.8,36.8,36.9,37.5,37.5,36.9,37.2,37.1,37.1,38.1,37.2]}},{"b":2,"v":{"total":[63.5,64.3,63.1,64.3,63.7,63.3,63.8,64.9,62.9,63.8,63.6,62.8,64.8,63.8,63.8],"script":[45.7,44.9,45.1,45.6,44.5,45.2,45.7,47.5,44.9,45.7,46.1,45.4,46.6,45.6,45.1],"paint":[17.4,18,15.9,17.5,18.2,15.5,16.3,17,17.4,16,14.8,15.8,17.6,16.6,17.4]}},{"b":3,"v":{"total":[42.4,42.7,41.2,40,39.9,38.9,38.6,39.7,40.7,40.3,42.1,40.5,41.3,43.1,40.9,42.3,40.1,41.2,41.5,41.7,42.4,40.4,42,43.5,41.3],"script":[35.2,36.8,35.2,34.5,34.3,32.6,32.4,33.7,34.4,34.4,36.8,34.3,35,37.2,33.8,36.7,33.9,34.5,34.7,35.5,35.3,34.4,34,37.7,35.3],"paint":[4.7,4.2,5.1,4.2,3.8,4.4,4.8,3.9,4.6,4.5,4.6,4,3.7,3.9,5.5,3.3,3.6,4.5,4.4,5,4,4.6,5.2,4.6,5.2]}},{"b":4,"v":{"total":[194.5,193.6,190.6,191.9,193.7,191.8,195.9,193.6,195.2,194.7,195.2,195.1,195.7,195.2,193.3],"script":[50.3,50,50.7,50.3,50.3,49.3,52.3,53.5,51.4,50.6,50.9,50.7,49.1,50.6,51.3],"paint":[142.7,143,138.1,139.5,141.3,139.2,141.4,138.4,142.3,141.6,143.5,142.6,143.5,142.9,141.5]}},{"b":5,"v":{"total":[35.4,35.2,35.5,35.3,35,35.1,34.5,35.3,35.6,36,36,36.7,35.5,34.9,35.9],"script":[17,17.3,17.6,17.4,17.5,17.5,17.3,17.8,17.5,17.7,17.2,17.7,17.4,17.4,18],"paint":[16.3,16.3,15.7,16.4,16.4,15.7,16.2,15.5,16.1,15.8,16,16.9,16.5,16.3,16.3]}},{"b":6,"v":{"total":[563.2,557.5,559.7,559.3,556.4,559.1,561.4,557.6,554.1,555.7,554.5,570.3,560.6,563.4,563.6],"script":[211.8,208,208.6,209.9,207.2,212.8,211.9,211.3,207.8,207.9,207,212.8,211.1,211.5,211.5],"paint":[345.3,343.5,345,343.6,342.9,340.5,343.7,340.5,340.7,341.9,341.7,351.1,343.4,345.9,346.1]}},{"b":7,"v":{"total":[77.6,78.7,76.6,76.8,78.4,79.9,78.5,79,78.3,79,76.1,76.4,77.6,79.4,77.1],"script":[34.9,34.8,34.6,35,35.1,34.9,35.2,35.4,35.6,35.6,34.9,34.5,34.7,35,34.5],"paint":[42.1,43.2,41.3,41.2,42.6,44.3,42.7,43,41.9,42.6,40.6,41.2,42.2,43.6,41.9]}},{"b":8,"v":{"total":[21,19.8,19.6,20.3,21.2,20.8,19.9,21.3,19.8,20,20.8,21.3,20.6,20.1,19.9],"script":[18.3,17.9,17.4,18.6,19.7,18.5,18.3,19.1,17.7,17.8,19.1,19.3,19.3,18.2,18],"paint":[1,1.2,1.2,0.8,1.4,1.6,0.5,2.1,1.6,2.1,0.7,1.9,0.8,1.8,0.4]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[7.5]}},{"b":11,"v":{"DEFAULT":[7.8]}},{"b":12,"v":{"DEFAULT":[32.2]}},{"b":13,"v":{"DEFAULT":[65.4]}},{"b":14,"v":{"DEFAULT":[23.1]}},{"b":15,"v":{"DEFAULT":[7.5]}},{"b":16,"v":{"DEFAULT":[74.7]}}]}, +{"f":10,"b":[{"b":0,"v":{"total":[123.5,121.7,123.2,122.1,123.5,122.9,122.8,123.6,124.4,122.4,124.5,120.2,122.4,123.4,123.2],"script":[85.1,83.9,84.4,83.8,85.2,84,84.7,85.3,84.6,83.8,85.6,81.9,84,84.7,84.6],"paint":[37.9,37.4,38.3,37.8,37.8,38.4,37.7,37.8,39.3,38.1,38.5,37.8,37.9,38.3,38.1]}},{"b":1,"v":{"total":[135.9,134.8,135,134.2,133.5,136.4,134.9,135.1,137.5,134.1,135.7,136.9,137.3,138.3,135.6],"script":[100.9,100,100.3,99.6,99,101.3,100.3,100.3,101.4,99.3,100.6,101.2,101.1,102.8,101.1],"paint":[34.5,34.2,34.2,34.1,34.1,34.6,34.1,34.3,35.6,34.4,34.6,35.2,35.8,35.1,34.1]}},{"b":2,"v":{"total":[87.3,84.4,86.4,85.2,87.1,85,85.8,86.2,87.2,85.7,85,86.6,85,87,85.4],"script":[68.8,66.4,67.7,66.5,68,67,67.6,68.2,67.8,67,67.1,67.9,66.6,68,67.7],"paint":[16.7,16.2,17.2,17.5,17.2,16.6,16.7,15.5,17.6,16.3,16.1,17.5,16.6,17.1,15.5]}},{"b":3,"v":{"total":[67.9,66,67.3,66.1,66.4,66.6,65.9,66.4,65.9,66.5,68.2,66.1,65.2,65.9,66.3,67.3,66.8,69.3,65.7,66.6,66.6,67.3,66,67.7,66.9],"script":[62.3,62.5,63,61.7,62.2,62.8,61.9,63.3,62.9,63,63.8,62.5,62.5,63,62.8,63.2,62.5,62.7,62.1,63.2,62.6,63.1,63,63.7,63.5],"paint":[5.4,2.4,3.7,3.2,2.9,3,3.9,3,2.8,3.3,3.2,3.3,1.6,3.5,1.3,3,4,6,3.4,2,3,3.6,2.8,3.2,2.3]}},{"b":4,"v":{"total":[87.3,84.4,84.1,84.9,83.5,83.9,86.3,85.8,83.2,84.7,83.4,86.1,85.4,85.8,83.1],"script":[65.2,62.9,63.3,63.6,63.5,62.8,62.6,63.7,63,62.9,63,62.9,63.6,62.8,61.9],"paint":[20.6,19.3,18.7,19.9,18.6,19.1,20.6,20.4,18.9,20.5,18,21.1,19.7,19.6,19.2]}},{"b":5,"v":{"total":[46.8,47.2,47.3,47,47.1,49.8,47.3,47.8,46.7,47.1,47.5,47.8,49.1,47.8,47.3],"script":[30.7,31.2,31.2,30.9,31.1,31.5,30.8,31.8,31.1,31.1,31.3,30.9,32.2,31.2,30.7],"paint":[15.3,15.1,15.1,15.5,15,17.1,15.3,15.5,15.1,15.3,15.4,16.1,15.9,15.3,15.8]}},{"b":6,"v":{"total":[1143.7,1150.6,1129.9,1142.6,1150.9,1142.5,1194.7,1136.8,1131.2,1173.6,1144.9,1131,1129.9,1140.5,1131],"script":[766.9,774.1,718.8,759.5,753.1,765.4,759.5,757.7,752.9,776,766.3,752.7,750.7,750.7,754.3],"paint":[370.1,369.7,404.2,375.9,390.9,370.3,428.3,372.3,371.6,390.9,371.8,371.5,372.5,382.9,369.9]}},{"b":7,"v":{"total":[144.3,146.2,141.3,142.7,148.9,144.1,145.2,143.8,144.3,148,145.8,141.2,145.8,144,145.1],"script":[98.8,99.8,97.2,97.5,102.1,99.1,100,99.7,100,101.5,99.8,97,101.1,99.3,99.4],"paint":[44.5,45.4,43.1,44.2,45.8,44,44.2,43.2,43.3,45.5,45.1,43.3,43.8,43.7,44.8]}},{"b":8,"v":{"total":[36.7,37.6,38.2,35.9,37.1,39.5,36.7,40.4,36.6,39.2,37.6,37.9,36.9,39,39.8],"script":[34.7,35.7,36.6,34,35.2,37.3,34.9,37.9,34.6,36.4,34.8,35,34.6,37.5,37.3],"paint":[1.8,1.4,1.5,1.2,1.8,2.1,0.8,1.9,2.3,2.6,2.7,2.8,1.2,1.4,2.2]}},{"b":9,"v":{"DEFAULT":[44.3]}},{"b":10,"v":{"DEFAULT":[56.7]}},{"b":11,"v":{"DEFAULT":[57]}},{"b":12,"v":{"DEFAULT":[53.2]}},{"b":13,"v":{"DEFAULT":[126.1]}},{"b":14,"v":{"DEFAULT":[3728]}},{"b":15,"v":{"DEFAULT":[1224.4]}},{"b":16,"v":{"DEFAULT":[80.8]}}]}, +{"f":11,"b":[{"b":0,"v":{"total":[110.9,111.8,111.4,110.2,112.3,109.2,108,108.7,108.3,107.4,109.2,111.2,111.5,114,112.3],"script":[72,71.4,72.4,71.5,73.3,71.3,69.8,70,69.9,69.2,70.2,72.6,72.7,73.9,73.5],"paint":[38.5,39.8,38.5,38.2,38.6,37.4,37.7,38,38,37.7,38.5,38.1,38.3,39.7,38.4]}},{"b":1,"v":{"total":[119.5,122.1,119.6,115.2,124.6,119,119.2,120.3,117.8,117.9,115.7,117,116.9,119.9,116.9],"script":[84.7,85.1,85,80.9,87.5,84.3,83.6,82.5,81.5,82.2,81,81.5,82.2,85.1,82.5],"paint":[34.3,36.5,34.1,33.8,36.5,34.2,35.1,37.3,35.8,35.2,34.2,35.1,34.3,34.3,33.9]}},{"b":2,"v":{"total":[33.5,33.2,33.1,33.3,33.9,32.6,33.3,33.5,33.1,33.4,34,33.3,32.7,33.6,33],"script":[16.4,15.4,15.6,15.9,15.4,15.4,15.7,15.8,15.2,15.6,15.7,15.7,14.9,16.1,15.7],"paint":[15.7,15.5,15.4,16.1,17.2,15.7,16.1,16.1,16.4,15.8,16.6,15,16,16.7,15.7]}},{"b":3,"v":{"total":[17.4,16.2,17,16.4,15.9,17.1,16.8,17,16.9,16.9,17.7,16.5,16.6,16.8,17.9,17.1,17.1,17.8,17.3,16.7,17.1,17,17,16.7,17.1],"script":[14.7,13.8,14.4,13.5,13.4,14,13.8,13.3,13.4,13.9,13.2,14,13.7,14.1,13.8,13.3,13.8,14.5,14.3,13.5,13.8,13.9,14,13.3,14.2],"paint":[2.6,2.3,1.7,1.7,2,2.2,2.8,3,3,2.2,3.4,1.6,2.3,2.6,3.3,3.6,3.1,3.1,2.1,3,2.2,2.5,2.3,3.3,2.8]}},{"b":4,"v":{"total":[34.2,33.6,37.4,34.8,33.3,33.3,34.7,34,34,33.8,34.4,34.5,34.3,33.9,35.2],"script":[14.4,14,13.7,14.3,13.9,13.4,13.8,14.3,13.9,13.4,13.7,13.5,14,13.9,14.6],"paint":[18.5,18.3,20.6,19.3,17.8,18.5,19.9,18.3,18.6,18.4,19.3,18.5,18.1,18,19.8]}},{"b":5,"v":{"total":[23.1,23.4,22.8,23,23,23,23.3,22.9,23,23.7,23.5,22.9,22.9,23.2,23.7],"script":[7.2,6.8,6.9,6.9,7.2,6.9,7.2,6.9,7,7.2,7,6.9,7.1,7.2,7.2],"paint":[15.4,15.3,14.9,15.1,14.9,15.3,15.4,15.3,15.2,15.7,15.7,14.6,15,14.9,15.7]}},{"b":6,"v":{"total":[1035.1,1050.7,1063.2,1068.4,1050.8,1065.7,1064.4,1054.8,1075,1048.8,1058,1050.4,1065.3,1050.5,1057.7],"script":[651.6,657.4,668.4,652.5,674.4,652.5,674.9,661.3,674.3,672.9,678.5,658.5,679.1,668.4,668.3],"paint":[376.7,386.4,388,409,369.6,406.2,382.4,386.7,394,369.2,372.7,385,379.4,375.3,382.2]}},{"b":7,"v":{"total":[118.6,119.8,119.3,118,119.7,119.7,118.9,119.9,120.5,118.9,123.5,119.7,119.7,117,120],"script":[73.7,75.1,75.4,73.9,75.4,75.6,74.5,74.6,75.8,74.7,77.3,75.2,74.2,73.1,75.4],"paint":[43.7,43.7,43,43.1,43.3,43.1,43.4,44.1,43.7,43.3,45.3,43.6,44.5,42.9,43.6]}},{"b":8,"v":{"total":[26,26.5,26.1,26.6,26.9,26.2,25.5,26.2,26.6,25.9,26,25,25.1,25.7,25.9],"script":[23.6,24.6,24.5,24.2,24.2,23.5,23.6,24,23.9,23.8,23.6,23.2,23.8,23.7,23.9],"paint":[1.2,1.8,1,1.4,2.5,2.1,1.2,1.2,1.8,1.2,2.3,0.8,0.6,1.7,1.9]}},{"b":9,"v":{"DEFAULT":[41.4]}},{"b":10,"v":{"DEFAULT":[52.9]}},{"b":11,"v":{"DEFAULT":[53]}},{"b":12,"v":{"DEFAULT":[49.3]}},{"b":13,"v":{"DEFAULT":[134.1]}},{"b":14,"v":{"DEFAULT":[11023.6]}},{"b":15,"v":{"DEFAULT":[2813.1]}},{"b":16,"v":{"DEFAULT":[86.3]}}]}, +{"f":12,"b":[{"b":0,"v":{"total":[36.4,37.8,37.1,37.3,36.6,36.8,36.2,36.2,36,35.9,36.4,35.7,35.8,36.5,36.7],"script":[3.6,3.8,3.7,3.6,3.6,3.7,3.6,3.5,3.6,3.5,3.6,3.5,3.6,3.7,3.6],"paint":[32.4,33.7,33,33.4,32.5,32.7,32.2,32.3,32,32,32.4,31.7,31.8,32.4,32.7]}},{"b":1,"v":{"total":[41.5,41.4,40.3,41.5,40.3,41.7,40.7,40.2,40.9,41.9,41.8,40.3,40.5,41.2,40.8],"script":[6.9,6.9,6.2,6.4,6.5,6.2,6.4,6.2,6.2,6.5,6.4,6.2,6.3,6.6,6.5],"paint":[34.1,34.1,33.7,34.6,33.4,35,33.9,33.5,34.2,35,35,33.7,33.7,34.1,33.9]}},{"b":2,"v":{"total":[16.6,16.5,16.4,16.7,15.9,16.5,16.4,16,16,16.5,16,20.1,16.3,16.2,15.5],"script":[1.4,2.1,1,1.2,1.4,1.8,1,1.4,1.3,1.3,1.3,1.1,0.9,1.2,1.2],"paint":[13.5,12.7,13.8,14.1,13.2,12.9,14.1,13.1,13.3,13.7,13,17.1,13.6,13.8,12.5]}},{"b":3,"v":{"total":[2.9,2.8,3.3,2.8,3.5,3.1,3.8,2.9,3.5,4,3.8,4.1,3.2,3.6,3.4,4.4,4,2.8,2.8,3.1,3.7,3.5,3.3,3.2,3.2],"script":[0.9,0.8,1.3,0.6,0.8,0.2,1.2,1.2,1.4,0.9,0.9,0.2,0.2,1.1,0.9,0.6,1,0.7,0.7,1.1,1.2,0.8,1,0.2,0.9],"paint":[1.8,1.9,1.1,2,1.5,2.6,2.4,1.1,2,1.6,2.8,2.6,2.9,1.5,1.6,1.6,2.5,2,1.6,1.9,2.4,1.6,1.4,2,2.2]}},{"b":4,"v":{"total":[18.9,19.5,19.3,19,18.8,19,18.9,19,18.8,18.8,19.1,18.7,18.5,19,18.6],"script":[0.6,1.2,1.2,0.8,0.9,0.8,0.6,0.9,0.9,0.8,0.9,0.9,0.2,0.6,0.5],"paint":[17.3,16.8,16.7,17.5,16.6,16.6,16.8,16.6,17.1,16.8,16.6,16.5,17.4,17.4,16.5]}},{"b":5,"v":{"total":[15.2,15.3,15.5,15.2,15.1,15.3,15.4,15.3,15.2,15.3,15.2,15.3,15.1,15.2,15.3],"script":[0.4,0.2,0.3,0.4,0.2,0.5,0.3,0.3,0.5,0.5,0.2,0.5,0.4,0.2,0.5],"paint":[14,14.4,14.2,14,14.2,14.1,14.1,14,14,14.1,14.3,14.1,13.9,14,14.1]}},{"b":6,"v":{"total":[385.5,383.9,380,388.5,383.8,381.7,387.8,391.4,391.7,386.2,386.9,393.3,386,389.2,393.5],"script":[45.1,45.9,45,45.8,45.8,45.4,45.4,44.6,46.6,45.3,46.1,46.4,44.8,45.1,46.1],"paint":[333.6,331.3,328.2,336.1,331.4,329.5,335.8,340.1,338.4,334.2,334.1,340.3,334.5,337.5,340.4]}},{"b":7,"v":{"total":[42.4,41.5,42.1,42.4,40.8,42.8,40.5,41.4,42.1,41,40.9,40.7,41.5,40.8,43.7],"script":[3.4,3.3,3.5,3.5,3.5,3.6,3.2,3.2,3.8,3.3,3.4,3.2,3.5,3.3,3.7],"paint":[38.1,37.3,37.7,38,36.4,38.3,36.4,37.2,37.5,36.8,36.7,36.7,37.1,36.6,39.1]}},{"b":8,"v":{"total":[12.5,12.2,11.7,11.7,11.4,11.8,12.5,11.5,11.6,11.8,12.3,11.3,11.6,11.7,11.9],"script":[9.9,10,9.3,9.5,9.5,9.6,10.3,10,10,9.8,10.7,10.1,10.1,9.9,10.1],"paint":[2.5,2.1,2.3,1.9,1.2,2.1,2.1,1.2,1.2,1.9,1.1,1.1,1,1.7,1.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.5]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[18.2]}},{"b":14,"v":{"DEFAULT":[17]}},{"b":15,"v":{"DEFAULT":[5.3]}},{"b":16,"v":{"DEFAULT":[48.8]}}]}, +{"f":13,"b":[{"b":0,"v":{"total":[54.6,45,48.4,44.1,45.2,48.2,48.9,48.3,48.5,46,44.3,49.3,41.8,46.1,48.3],"script":[9.1,8.8,9.9,9.9,9,9.9,10,9.9,8.9,8.9,9.3,9.5,8.5,9.3,9],"paint":[33.2,33.9,33.3,32.6,32.6,33.7,32.9,33.6,32.4,32.5,32.1,33,32.6,33.9,33.2]}},{"b":1,"v":{"total":[58.2,59.7,55.8,53.2,53,59.2,51.6,58.3,56.6,57.9,55,54,55.5,53,51.2],"script":[13.7,13.9,13.4,13.8,13.8,13.9,13.6,14,13.7,13.8,13.7,13.6,13.3,13.9,14.2],"paint":[33.9,35.4,34.3,34.4,33.8,35.7,34,34,34.1,33.8,33.6,34.4,34,34.8,34.2]}},{"b":2,"v":{"total":[21.8,19.5,19.3,20,21.4,20.3,22.4,19.9,19.9,19.7,19.2,19.3,19.7,20.4,18.7],"script":[4.9,3.9,4.5,4.8,3.9,5,4.6,4.7,4.7,4.1,3.6,4.6,5.1,4,4.8],"paint":[15,14.9,13.8,14.5,14.7,14.2,15.7,14.7,15.1,14.6,14.7,14.6,14.5,15.6,13.8]}},{"b":3,"v":{"total":[4.3,4,4,4.3,4.5,4.7,4.8,4.5,4.6,4.6,4.6,4.6,4.5,4.7,5,4.1,4.9,4.7,4.7,4.4,4.5,4.4,4.2,4.2,3.5],"script":[1.8,1.9,2.1,1.2,2,2,1.2,1.8,1.4,1.5,2,2.3,2,2.4,2.2,1.6,2.2,2.3,2.3,1.5,2.4,1.4,0.8,1.4,1.3],"paint":[2.5,1.9,1.7,2.3,2.3,1.6,2.4,2.5,2.6,2.9,2.5,2.2,1,1.7,2.3,2.3,2.3,1.8,2.2,2.8,2,2.8,2.8,2.4,1.7]}},{"b":4,"v":{"total":[19.5,22,20.3,19.1,20.5,19.9,34.8,19.8,19.4,18.8,19.3,20.8,19.5,19.6,35.5],"script":[1.2,2.1,1.7,2,1.7,1.9,1.7,1.7,2.4,1.9,1.8,2.7,2.1,1.4,2.6],"paint":[18.2,16.8,17,16.8,17.7,17.8,17.8,15.3,16.8,16.8,16.8,17.9,17.3,17.4,16.9]}},{"b":5,"v":{"total":[14.6,14.1,15.5,17.9,15.2,14.7,17.9,13.9,14.1,14.2,15.4,14.8,14.3,19.1,14.1],"script":[1.1,1.1,0.9,1.1,1.1,1.1,1,0.8,1.1,0.8,0.9,0.8,0.8,1.1,0.9],"paint":[13.3,12.6,13.2,13.3,13.7,13.5,13.3,12.8,12.3,13.2,12.8,13.3,12.7,13.3,12.8]}},{"b":6,"v":{"total":[464.4,447,464.1,445.9,454.5,456.3,452.4,451.2,459.8,457.8,466.1,454.8,447.4,457.4,461.9],"script":[103.7,110.3,107,106.1,104.3,103.3,106.5,109.6,111.3,104,112.7,106.3,102.3,110.1,108.1],"paint":[347.7,329.1,351.3,334.8,344.4,350.3,342.1,338.3,343.6,347.8,344,345.4,343,342.9,348]}},{"b":7,"v":{"total":[57.1,53.8,58,54.9,54.4,56.1,53.7,49.5,53.1,54.2,53.7,56.4,57,58.7,53.2],"script":[11.5,10.4,10,10.5,10.3,10.3,10.6,10.9,10.5,11,10.3,11.6,9.9,10.6,10.6],"paint":[37.2,37.7,37.3,38,37.5,37.7,37.3,38,36.8,36.9,36.7,39,37.6,37.7,37]}},{"b":8,"v":{"total":[14.6,13.9,13.6,13,14.3,13.7,13,13.7,13.6,14,14.2,13.2,14.6,14.1,13.5],"script":[12.3,11.9,11.6,11.5,12.4,12,11.2,12.5,11.5,12.1,11.7,12,12.7,12.6,12.3],"paint":[1.6,1.2,1.9,1.4,1.9,1.7,1.7,1.2,2,1.8,1.3,1.2,1.9,1.5,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[1.6]}},{"b":13,"v":{"DEFAULT":[28.2]}},{"b":14,"v":{"DEFAULT":[48.1]}},{"b":15,"v":{"DEFAULT":[15.6]}},{"b":16,"v":{"DEFAULT":[80.6]}}]}, +{"f":14,"b":[{"b":0,"v":{"total":[36.3,36.1,37,35.8,36.5,36.1,36.5,37.9,37,37.1,36.4,37,36.9,36.5,37],"script":[3.1,3,3.1,3.1,3,3,3.2,3.2,3.2,3.3,3.2,3.2,3.1,3,3.2],"paint":[32.8,32.6,33.5,32.3,33,32.7,32.9,34.3,33.5,33.4,32.8,33.5,33.3,33.1,33.4]}},{"b":1,"v":{"total":[41.8,41.7,41.5,41.9,40.9,41.9,41.4,40.4,42.6,40.9,40.8,40.7,40.8,41.4,40.7],"script":[5.9,6,5.9,6.6,6,6,6.1,5.8,6.1,6,6,5.9,6,6.1,6],"paint":[35.4,35.2,35.1,34.8,34.4,35.4,34.8,34.2,36.1,34.4,34.3,34.4,34.3,34.9,34.2]}},{"b":2,"v":{"total":[16.7,17.9,18.4,17.7,16.7,17.7,17.3,18.3,17.3,17,16.9,16.8,17.6,17.3,16.3],"script":[1.6,1.5,2.1,1.7,1.3,2.2,1.6,1.8,1.3,1.8,1.6,1.3,2,1.7,1.2],"paint":[14,15.2,15,14.9,14.2,14.1,14.1,15.2,14.9,13.7,12.6,13.8,14.1,14.6,13.9]}},{"b":3,"v":{"total":[3.6,4.3,3.3,3.7,4.1,3.7,3.6,4.3,4,3.9,3.1,4.1,4.8,3.9,3.4,4.1,4.5,3.5,4.2,3.7,3.4,4.8,3.5,4.7,4],"script":[1.4,1.9,1.3,1.6,1.7,0.9,1.4,1.9,1.5,1.5,1.1,1.4,2,1,1.6,0.9,1.5,1.2,1.7,1.3,1.4,1.8,1.2,1.5,1.7],"paint":[2.1,1.2,2,1.7,1.6,2.7,2.1,1.6,1.9,2.3,2,1.4,1.7,2.5,1.7,3.1,2.8,1.8,1.7,1.7,1.3,2.5,2,3,1.1]}},{"b":4,"v":{"total":[19.6,19.6,20.2,20.3,20.2,20,21.3,19.9,20.7,20.1,19.4,20.3,19.4,19.7,19.9],"script":[1.4,1.6,1.7,0.9,1.7,1.5,1.9,1.5,1.2,1.7,1.3,1.5,1.1,1.4,0.9],"paint":[17.1,16.6,17,18.1,17.4,17,16.6,17.2,18.1,17.1,17,16.6,16.8,16.8,17.9]}},{"b":5,"v":{"total":[15.9,16.6,15.9,15.6,16.5,15.7,15.5,17,15.5,16.2,15.9,15.5,15.4,17.2,15.8],"script":[0.7,0.9,0.9,0.8,1,0.7,0.6,0.8,0.6,0.8,1,0.6,0.6,0.9,0.8],"paint":[14.5,14.3,14.3,14.1,14.5,14.2,14,15.2,14.1,14.4,14.2,14.2,14.1,15.4,14.2]}},{"b":6,"v":{"total":[393.5,391.1,393.5,384.9,389.1,388.1,386.5,405,393.1,409.6,415.3,420.1,411.6,407.7,409.6],"script":[46.8,47.6,44.4,43.8,45.7,46.4,42.8,47.7,45.3,48.4,48.2,51.4,50.2,47.4,48.5],"paint":[339.8,336.6,342.1,334.3,336.7,334.9,337.1,350.1,340.4,353.9,359.7,361.4,353.9,353,354]}},{"b":7,"v":{"total":[42.2,42.6,42.2,42.6,41.6,41.8,43.3,42.4,43.9,42.3,42.6,42.7,43.8,42.5,43.7],"script":[3.4,3.3,3.3,3.4,3.4,3.4,3.4,3.4,3.3,3.5,3.5,3.4,3.5,3.5,3.3],"paint":[37.9,38.4,38,38.3,37.4,37.6,39,38,39.7,38,38.3,38.4,39.4,38.1,39.5]}},{"b":8,"v":{"total":[12.1,12.4,12.4,12.4,12.5,12.8,12.1,12.9,12,11.6,12.3,11.7,12.6,12.4,13.1],"script":[10.5,10.5,11.1,10.5,10.8,11,10.5,10.7,10.4,10.4,10.8,10.2,10.7,10.7,11.2],"paint":[1.6,1.8,1.2,1.8,1,1.1,0.8,1.9,1.5,1.2,1.4,1.4,1.8,1.1,1.5]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.5]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[16.4]}},{"b":14,"v":{"DEFAULT":[50.6]}},{"b":15,"v":{"DEFAULT":[13.9]}},{"b":16,"v":{"DEFAULT":[110.5]}}]}, +{"f":15,"b":[{"b":0,"v":{"total":[42.8,44.4,43.5,43.5,44.4,43.5,43.4,45.1,44.4,45.5,44.1,43.7,45,44.4,45.2],"script":[10.1,10.4,10.3,10.1,10.4,10.1,10.4,11,10.6,10.5,10.1,10.2,11.4,11.1,10.3],"paint":[32.2,33.5,32.7,32.9,33.6,32.9,32.5,33.6,33.3,34.4,33.5,33,33.2,32.8,34.5]}},{"b":1,"v":{"total":[46.6,46.5,45.5,45.5,47.1,45.7,46.1,47.4,47.8,46,46.4,48,46.1,47.4,45.9],"script":[12,12.2,12,11.7,12.5,11.9,12,13.1,12.6,11.8,11.8,13.1,11.7,11.9,11.9],"paint":[34.1,33.9,33.1,33.3,34.2,33.4,33.7,33.8,34.8,33.8,34.2,34.5,34,35,33.6]}},{"b":2,"v":{"total":[24.1,21.3,22.3,20.9,21.7,21.6,21.9,21.3,21.9,22.4,21.1,23.7,22.3,21.2,21.5],"script":[7.3,6.5,6.4,6.4,6.2,5.8,5.8,6.1,6,6.8,5.8,5.9,6.5,5.8,6.2],"paint":[15.2,13.5,14.5,13.5,14.2,14.3,14.6,13.8,14.4,13.5,14,15.3,14.3,13.9,14.2]}},{"b":3,"v":{"total":[5.9,5.9,5.7,5.8,4.9,5.1,5.3,5.2,5,5.9,5.7,4.5,5.4,5,5.3,4.5,5.4,5.2,5,5.5,5,4.5,5.5,4.4,5.2],"script":[3,3.2,3.3,2.9,2.5,2.5,2.4,2.2,2.6,2.8,2.5,2.4,3.1,2.3,1.9,2.5,2.8,2.8,2.8,3.1,2.5,2.3,3.1,2.1,2.8],"paint":[1.9,1.7,1.8,1.7,2.3,2.3,1.6,2.9,2,3,2.1,2,1.9,2.3,3.3,1.9,2.5,2.2,1.4,1.7,2.4,2.1,2.3,1.1,2.2]}},{"b":4,"v":{"total":[21.4,21.8,21.1,21.8,21.2,21.3,21.2,23.3,21.1,22,20.9,21.5,21.2,21.1,21.8],"script":[2.7,3.6,3.3,3.8,3.1,2.7,2.6,3.9,3.2,3.8,3.2,3.7,3.2,2.8,3],"paint":[17.7,16.6,16.1,16.1,16.4,17.1,17.3,18.1,16.1,16.3,16.4,16.8,16.9,16.5,17.8]}},{"b":5,"v":{"total":[16.6,16.7,16.9,17,16.5,16.6,17,17.4,16.6,16.5,16.6,16.9,16.5,16.6,16.6],"script":[1.4,1.7,1.7,1.8,1.6,1.6,1.4,1.8,1.8,1.4,1.7,1.6,1.5,1.4,1.7],"paint":[14.4,13.9,14.3,14.2,14,14.1,14.3,14.9,14.1,14.4,14.2,14.5,14.1,14.1,13.9]}},{"b":6,"v":{"total":[457.6,459.9,449.3,452.9,458.4,454.9,451.3,449.1,463.4,457.9,455.1,457.9,462.3,460.3,454.9],"script":[117.6,117.3,115.8,115.6,117.7,116.5,115.3,115.7,117.1,116.8,116.7,118.4,116.7,116,116.7],"paint":[333.2,335.9,326.6,330.6,334.1,331.7,329.1,326.5,339.7,334.4,331.7,332.8,338.9,333.8,331.3]}},{"b":7,"v":{"total":[50.7,50.8,50.5,49.8,52,51,50.7,50.4,51.5,51,51.4,51.3,51.2,51.1,51.9],"script":[11.7,11.7,11.8,11.3,11.8,12,11.5,11.8,11.7,11.7,11.7,12.2,12.1,12,11.6],"paint":[38.1,38.2,37.8,37.6,39.3,38.1,38.3,37.6,38.8,38.4,38.8,38.3,38.3,38.2,39.3]}},{"b":8,"v":{"total":[12.9,12.5,12.1,12.7,12.6,12.1,12.6,12.9,12.2,12.5,12,12.3,12.4,12.3,12],"script":[11.1,10.7,10.2,10.7,11,10.6,10.1,10.4,10.5,10.6,10.6,10.6,10.2,10.9,10.9],"paint":[1.8,1.2,1.2,1.1,1.6,1.4,2,2.1,1.6,1.1,1.3,1.7,1.6,1.3,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[30.6]}},{"b":14,"v":{"DEFAULT":[20.4]}},{"b":15,"v":{"DEFAULT":[6.4]}},{"b":16,"v":{"DEFAULT":[67.1]}}]}, +{"f":16,"b":[{"b":0,"v":{"total":[47.1,47.5,46.9,48.2,47.6,48.6,47.4,47,47.1,47.5,47.7,47.9,49.1,48.4,47.1],"script":[14.3,14.6,14,15.1,13.8,15.2,14.3,14.3,14.3,14.2,14.8,15.1,14.9,15.5,14],"paint":[32.4,32.5,32.5,32.6,33.3,33,32.7,32.2,32.4,32.8,32.5,32.4,33.8,32.5,32.7]}},{"b":1,"v":{"total":[55.6,55.6,53.8,54.3,55.5,53.9,55.2,55.5,54.4,55.1,55.2,55.9,55.2,54.7,55.1],"script":[19.2,18.9,18.3,18.6,18.5,18.3,18.5,18.6,18.4,18.6,18.5,18.7,18.7,18.3,18.6],"paint":[35.9,36.2,35,35.3,36.5,35.2,36.2,36.4,35.5,36.1,36.2,36.7,36.1,36,36]}},{"b":2,"v":{"total":[20.1,19.2,18.6,18.7,17.6,18.9,18.2,18.4,18.4,18.1,18.7,18.5,18.4,18.4,19],"script":[3.9,3.1,3.2,3.4,2.9,3.3,3.6,3.1,3.4,3.4,3,3.4,3.1,3.5,3.4],"paint":[14.8,12.8,13.9,13.5,13.4,13.6,13.1,14.2,13.2,13,14.2,12.9,13.9,13.2,14.3]}},{"b":3,"v":{"total":[4,2.9,3.2,5.6,3.7,3.1,3.1,3.5,2.8,3.2,3.5,4.3,2.9,3.1,3.6,3.7,3.4,3.5,2.9,3.5,3.4,3.2,3.6,2.7,3.8],"script":[1.2,1.4,0.6,1.2,1.2,0.7,0.5,0.8,0.6,1,0.9,1.2,1.1,0.9,1,0.9,0.9,1.1,0.9,0.9,0.9,1.1,0.9,1.2,0.6],"paint":[1.9,1.4,1.6,1.6,2.4,2.3,2.5,1.4,2.1,2.1,1.6,2.9,1.7,2.1,2.3,2.7,1.5,1.7,1.2,2.1,1.6,1.8,2.4,1.4,2.6]}},{"b":4,"v":{"total":[21.7,21.5,21.6,22.2,21.4,20.9,22.5,21.5,22.5,21.7,22.5,21.2,21.3,21.9,21.1],"script":[2.8,2.5,3.3,3.5,3.1,3.4,3.4,3,3.7,2.9,3.7,3.1,2.6,3.2,3.3],"paint":[16.9,17.2,16.6,17.3,17.2,15.6,17.5,17,16.8,17.5,16.2,16.4,18,17.4,16.4]}},{"b":5,"v":{"total":[16.5,16.5,16.2,16.6,16.3,17.1,16.6,16.6,16.1,16.8,16.2,16.6,16.6,17.3,16.2],"script":[1.4,1.4,1.4,1.4,1.5,1.4,1.4,1.4,1.4,1.4,1.5,1.4,1.8,1.7,1.7],"paint":[14.1,14.4,13.7,14.1,14,14.4,14.2,14.4,14,14.7,13.7,14.4,14,14.4,13.6]}},{"b":6,"v":{"total":[494.4,480.3,482.2,488.1,492.7,492.7,487.7,493,508,496.7,509.9,489.6,492.3,498.3,510.8],"script":[151.5,153.4,149.6,151.4,151.6,148.9,153.7,153.3,155.8,153.1,154.9,154.6,150.5,155.9,155.6],"paint":[335.2,319.8,325.1,329.7,333.9,336.8,327,332.8,345.3,336.7,348.1,327.9,334.9,335.5,348.3]}},{"b":7,"v":{"total":[57.6,54.6,54.9,56,55.2,55.6,54,55.1,56,55.6,54.5,56.3,54.5,56,54.8],"script":[15.6,15.1,14.6,15.9,15.1,15.2,14.9,15.2,15.1,14.9,14.5,15.2,15.2,15.1,15.4],"paint":[40.6,38.2,38.8,38.8,38.8,39.1,37.7,38.6,39.6,39.5,38.6,40.2,38.1,40,38.3]}},{"b":8,"v":{"total":[12.9,13.8,13.9,13.5,12.4,12.8,13.5,13.6,12.6,13.4,12.2,13.4,13.7,13,13.2],"script":[10.8,11.3,11.3,11.9,11,10.9,11.9,11.5,10.7,11.5,10.6,11.5,11.3,11.3,11.5],"paint":[2.1,2.3,2.5,1.5,1.3,1.6,1.3,2,1.8,1.4,1.1,0.9,2.3,1.5,0.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.9]}},{"b":11,"v":{"DEFAULT":[4.8]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[38.8]}},{"b":14,"v":{"DEFAULT":[35.6]}},{"b":15,"v":{"DEFAULT":[11.5]}},{"b":16,"v":{"DEFAULT":[71.7]}}]}, +{"f":17,"b":[{"b":0,"v":{"total":[38.6,38.8,40.3,38.9,38.6,38.6,38.9,39.7,39.8,39,38.4,39.2,38.8,38.9,39.2],"script":[5.3,5.4,5.4,5.3,5.2,5.4,5.3,5.5,5.4,5.3,5.5,5.4,5.3,5.3,5.4],"paint":[32.9,33,34.5,33.2,32.9,32.9,33.1,33.8,34,33.2,32.5,33.4,33,33.2,33.3]}},{"b":1,"v":{"total":[43.9,42.8,44,44.7,43.3,42.6,45.2,43.4,43.3,43.4,43.8,43.3,44.6,42.9,43.2],"script":[9.1,8.5,8.9,9,8.5,8.8,8.8,8.5,8.8,8.8,8.8,8.6,9.1,8.6,8.5],"paint":[34.3,33.8,34.6,35.3,34.4,33.4,36,34.4,34,34.2,34.5,34.3,35.1,33.9,34.3]}},{"b":2,"v":{"total":[16.3,18.1,16.5,16.6,16.7,17.2,17,16.4,16.9,17.3,17.4,16.6,16.9,17.3,16.5],"script":[1,1.6,1.5,1.5,1.7,1.3,1.7,1.2,1.8,1.3,2,1.2,1.9,2.1,1.7],"paint":[13.9,15,13.2,14.1,13.6,14.5,13.7,13.4,12.8,15.3,13.4,14.3,14.6,12.6,13.4]}},{"b":3,"v":{"total":[3.3,2.9,5.9,3.1,5.2,2.9,2.8,3.1,3.2,3.7,3.4,3.8,5.6,3,3.5,3.9,3,3.4,3,2.9,3.5,3.7,3.6,3.3,3],"script":[0.8,0.8,1,0.9,1,0.9,1,0.8,0.2,0.9,1.1,0.6,0.6,0.8,1.4,0.2,0.7,1,0.2,0.5,1,1.3,1.1,0.9,0.3],"paint":[2.4,1.9,1.9,1.5,2.3,1.1,1.7,2.2,2,0.8,2.1,1.5,1.1,2.1,1.5,1.6,2.1,1.8,1.6,2.3,1.7,2.3,1.6,1.7,1.7]}},{"b":4,"v":{"total":[20.3,19.7,20.4,20.4,19.3,20.4,20.6,20.9,20.5,20.2,19.7,20.9,19.6,19.6,20.2],"script":[1.8,1.7,1.9,2.6,1.9,1.6,2.2,1.9,1.9,1.6,2,2.4,1.6,1.6,2.1],"paint":[17.5,16.1,16.7,15.7,15.9,17.3,16.8,17.7,17.5,17.3,16.2,16.5,16,16.3,16.1]}},{"b":5,"v":{"total":[15.5,16.5,15.9,15.6,15.4,15.4,15.8,16,15.7,15.8,15.4,15.8,15.8,15.8,15.4],"script":[0.7,0.7,0.7,0.9,0.7,0.7,1,0.7,0.7,0.7,0.7,1,0.7,0.7,0.8],"paint":[14,14.8,14.4,13.9,13.8,14,14.1,14.5,14.1,14.2,14,14.1,14.3,14.3,13.7]}},{"b":6,"v":{"total":[402.3,403.4,400.3,406,405,402.6,405.1,402.1,401,404.8,404.2,399.5,403.6,399.5,397.4],"script":[59,60.8,57.7,60.4,60.6,59.5,61.7,58.6,57.7,58.4,62,58.5,58,59.9,57.4],"paint":[336.6,335.8,336,338.9,337.8,336.6,336.8,337,336.7,339.7,335.6,334.3,338.3,332.8,333.4]}},{"b":7,"v":{"total":[43.2,44.2,44.9,44.8,44.5,46.7,44.5,44.8,44.9,44.7,46.1,45.9,46,45.2,46.4],"script":[5.9,6,6.1,6,6,6.1,6.3,6.2,6.2,6.1,6.4,6.3,6.2,6.3,6.3],"paint":[36.4,37.3,38,37.8,37.6,39.7,37.3,37.8,37.8,37.7,38.9,38.6,39,37.9,39.2]}},{"b":8,"v":{"total":[16.3,15.5,15.1,15.3,18.2,15.5,16.1,15.4,16.4,15.1,16.2,16,15.7,15.7,16],"script":[14,13.9,13.8,13.2,16.1,14.4,14.1,14,14.1,13.4,14.3,13.8,13.7,13.9,14.1],"paint":[1.4,0.7,0.9,2,2,0.4,1.8,0.4,2.2,1.7,1.8,1.1,1.9,1.1,1.1]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[5.6]}},{"b":11,"v":{"DEFAULT":[5.5]}},{"b":12,"v":{"DEFAULT":[6.7]}},{"b":13,"v":{"DEFAULT":[39.3]}},{"b":14,"v":{"DEFAULT":[317.3]}},{"b":15,"v":{"DEFAULT":[92.9]}},{"b":16,"v":{"DEFAULT":[555.5]}}]}, +{"f":18,"b":[{"b":0,"v":{"total":[37.9,36.2,38.4,37.7,39.8,38.5,37.3,37.4,37.3,40.2,40.1,39.4,39.8,39.6,39.9],"script":[4.2,4.1,4.4,4,4.2,4.1,4.2,4.3,3.9,4,4.4,4.1,4.3,4.3,4.3],"paint":[33.3,31.7,33.6,33.3,35.3,34,32.6,32.8,33,35.7,35.3,34.8,35.1,34.9,35.2]}},{"b":1,"v":{"total":[42.2,42.9,42.3,41.7,42.7,44.1,43,42.2,42.8,43.7,42.7,43.5,42.3,44.2,42.9],"script":[7.4,7.4,7.3,7.2,7.4,7.4,7.4,7.2,7.3,7.2,7.3,7.3,7.2,7.3,7.2],"paint":[34.3,35.1,34.5,34,34.8,36.2,35.1,34.7,35.1,36.1,34.9,35.7,34.7,36.4,35.3]}},{"b":2,"v":{"total":[17.5,17.5,18,17.8,18,17.9,18.8,17.9,17.8,17.7,17.8,17.8,17.8,17.9,17.4],"script":[1.7,1.9,2.3,1.5,2,2.1,1.8,2,2,2,1.4,2,2.1,1.8,1.9],"paint":[14.4,14.1,14.6,14.8,14.8,14.4,15,14.8,14.1,13.8,14,13.8,14.2,14.6,14.1]}},{"b":3,"v":{"total":[3,2.7,4,3.3,3.1,3.1,2.9,3.1,3.1,3.5,3.7,3.6,3.1,3.5,3.3,4.9,3.1,2.6,3.1,2.5,2.8,3.5,5.2,3.8,3.2],"script":[0.1,0.5,1,0.1,1.1,0.7,0.1,0.9,0.2,1,0.9,0.1,0.4,0.1,0.1,0.1,0.1,0.2,0.1,0.5,0.8,0.1,1.4,0.9,0.7],"paint":[2.7,1.8,1.1,2,1.1,1.7,2.1,2.1,2.7,1.8,2.7,2.4,1.8,2.4,1.3,2.4,2.7,2.3,2.9,1.5,1.9,2.3,2.1,1.7,1.7]}},{"b":4,"v":{"total":[21.3,21.8,20.1,21,20.9,20.4,20.5,20.9,20.9,20.6,20.9,22.2,21.6,21.8,21.4],"script":[2.8,2.6,2.4,2.7,2.7,2,2.8,2.4,2.5,2.3,2.6,2.4,2.3,2.7,2.5],"paint":[17.3,18.3,16.8,17,16.9,16.9,16.5,17.2,17,16.3,16.7,17.8,17.6,17.5,18]}},{"b":5,"v":{"total":[16.4,15.9,16.6,16.3,16.2,17.4,16.7,16.1,16.5,16.5,16.6,16.7,17.2,16.2,16.6],"script":[1.4,1,1.1,1.1,1,1.5,1.1,1,1.1,1,1,1.1,1.1,1,1],"paint":[14.1,14,14.5,14.5,13.9,15.2,14.7,14.3,14.7,14.4,14.7,14.4,15.1,14.5,14.7]}},{"b":6,"v":{"total":[391.9,387.3,387,402.4,390.6,392.8,392.8,393.3,395.4,395.5,398.7,389.1,393.8,393.3,395.5],"script":[47.3,44.9,45.2,44.2,45,44.8,46.3,45.2,46.6,46.2,47.1,45.8,45.3,45.9,47.2],"paint":[337.9,335.7,335,351.3,338.9,341.2,339.8,341.3,342.1,342.5,344.8,336.6,341.7,340.6,341.5]}},{"b":7,"v":{"total":[43.6,43.8,43.1,43.8,44.3,43,42.9,42.2,43.4,42.7,45.3,42.3,42.8,42.2,43.1],"script":[4.8,4.8,4.8,5,5.1,4.7,4.7,4.7,5,4.8,5,4.6,4.6,4.7,4.8],"paint":[37.9,38.2,37.4,37.9,38.3,37.5,37.3,36.5,37.5,37.1,39.4,36.8,37.3,36.7,37.4]}},{"b":8,"v":{"total":[12.5,12.4,12.1,12.5,12,12.3,12.1,12.1,12.1,13.4,11.9,12.8,14,12.2,12.2],"script":[10.7,10.7,10.6,10.7,10.5,10.4,11,10.8,10.8,11.2,10.2,10.7,12,10.3,10.7],"paint":[1.7,1.6,1.4,1.7,0.6,1.9,0.4,0.4,0.8,1.9,1.6,2,1.1,1.8,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2.1]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[15.4]}},{"b":14,"v":{"DEFAULT":[18.2]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[58.9]}}]}, +{"f":19,"b":[{"b":0,"v":{"total":[69.3,65,60.7,63,66,64.4,68,69.8,70.8,66.7,64.5,62.2,68.5,63.5,65.8],"script":[27.2,29.1,27.9,28.4,28.5,29.3,28.6,29.1,28.6,28,30,26.8,28.6,28.6,28.7],"paint":[32.8,33,32.3,32.3,34.2,34.1,33.1,33.1,32.5,33.1,32.8,34.5,34.4,34.8,33.4]}},{"b":1,"v":{"total":[79.9,74.2,75.9,75.1,82.6,82.3,80,80.8,81.1,75.7,81.1,79.4,76.7,78.7,77.1],"script":[34.2,35.6,34.7,34.3,33.8,35,34.2,34.2,36.2,32.8,33.8,35.3,33.5,35.1,33.9],"paint":[37.4,35.6,36.6,35.9,36.7,36.9,36.2,37.1,36.5,36.1,35.7,35.7,36.1,35.3,37]}},{"b":2,"v":{"total":[40.4,41.4,41.5,24.7,41.9,25.4,28.1,40.8,27.1,39.9,24.3,25.2,26.1,25.1,24.6],"script":[9.9,10.1,10.5,9.3,10.9,10.5,11.1,10.7,10.6,9.1,9.6,10.6,9.6,10.7,10.1],"paint":[14.5,15,14.9,14.8,14.9,13.2,16.8,13.5,16,15.4,14.7,14.4,14.3,14.4,13.2]}},{"b":3,"v":{"total":[4.8,2.9,3.4,5.7,3.5,3.6,4.4,3.2,6.3,3.2,2.9,5.9,3.3,3.4,4.3,3.2,3.4,3.9,3.8,3.5,3.2,3.5,3.4,3.4,2.9],"script":[0.9,0.7,0.4,0.7,1.1,0.9,0.3,0.8,0.3,0.9,1.1,1.5,0.6,1.2,1.2,1.2,1.5,1.5,1.6,1,1.2,0.3,0.7,0.7,1.4],"paint":[1.9,1.2,1.9,2,2.3,1.9,1.7,1.4,2.8,1.8,1.7,1.8,2.5,2,2.7,1.9,1.8,2.3,1.5,2.4,1.3,1.6,1.4,2.6,1.4]}},{"b":4,"v":{"total":[45.7,46,46,31.7,30.4,32,46,29.5,29.4,32.1,29.2,28.6,30.3,32.2,32.3],"script":[12.4,13.3,12.1,12.9,11.8,11.5,12.8,12.7,12.4,12,12.2,11.9,12.7,12.7,12.4],"paint":[18.2,16.9,17.9,16.2,18.5,17.6,17.2,16.7,16.3,17.3,16.9,16.5,16,17.2,17.1]}},{"b":5,"v":{"total":[22.2,21.7,18.3,24,23.3,23.5,15.9,16,20.2,18.1,18,16.4,21.7,17.8,16.5],"script":[0.3,0.4,0.3,0.5,0.6,0.7,0.5,0.3,0.5,0.7,0.4,0.4,0.5,0.5,0.4],"paint":[14.6,14.8,14.5,14.6,15.5,14.6,14.4,14.1,14.5,14.2,14.3,14.4,14.7,14.4,14.2]}},{"b":6,"v":{"total":[611,602.7,601.4,607.8,601.9,603,609.7,601.3,606.9,609.6,592.4,590.2,603.8,601.3,613.7],"script":[255.9,252.3,250.7,257.8,252.8,253.5,256.7,253.6,254.5,255.7,245.5,241.4,249.3,250.8,256],"paint":[348.7,346,347.2,346.3,346,346.6,345.6,344.8,349.6,350.8,344.1,346,351.7,346.9,351.7]}},{"b":7,"v":{"total":[75.5,75.5,75.7,76.6,79.5,80.4,75.2,76.8,77.9,75.4,74.6,76.1,78.4,80.1,76],"script":[27.1,27.5,28,27.8,28.5,28.6,28.4,27.6,28.3,27.6,27.4,29,29.2,27.5,27.7],"paint":[41.8,41.7,41.9,43.2,41.7,42,41.4,43.1,42.2,42.4,41.8,41.7,41.9,42.2,42.7]}},{"b":8,"v":{"total":[22.1,22.6,22.9,22.8,22.3,22.1,23.4,23.4,23,22.7,24,21.4,22.4,23.1,23.5],"script":[20.1,20.6,19.8,21.3,19.6,19.1,19.7,19.8,21.1,20.6,21.4,19.5,19.6,20.2,21.2],"paint":[1.5,1.8,1.9,1.3,1.1,2.9,1.4,3.4,1.8,2,1.9,1.1,2,1.9,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[7.3]}},{"b":11,"v":{"DEFAULT":[7.4]}},{"b":12,"v":{"DEFAULT":[1.5]}},{"b":13,"v":{"DEFAULT":[63.7]}},{"b":14,"v":{"DEFAULT":[43.7]}},{"b":15,"v":{"DEFAULT":[13.5]}},{"b":16,"v":{"DEFAULT":[79.6]}}]}, +{"f":20,"b":[{"b":0,"v":{"total":[44,43.9,43.5,43.2,44.1,44.9,43.4,44.1,45.4,46.4,43.6,43.8,45.6,43.8,44.1],"script":[10.4,10.3,10.5,9.9,10.4,11.1,10.3,10.3,11.2,11.7,10.3,10.4,11.5,10.4,10.4],"paint":[33.2,33.1,32.6,32.9,33.3,33.3,32.8,33.4,33.7,34.3,32.9,33,33.7,33,33.3]}},{"b":1,"v":{"total":[49.6,50.9,50.3,51,49.8,50.2,49.9,49.9,50.4,49.6,51.6,51.6,50.1,50.2,50.7],"script":[14.8,15.3,15,15.3,14.6,14.8,14.9,14.7,14.7,14.8,15.1,15.3,14.7,14.7,15.1],"paint":[34.4,35.2,34.9,35.2,34.7,35,34.6,34.8,35.2,34.4,36.1,35.8,34.9,35,35.1]}},{"b":2,"v":{"total":[16.6,17.8,16.6,16.2,16.9,16.8,17.2,16.5,16.8,17,16.6,17.5,17.2,16.1,17.2],"script":[1.5,1,1.2,1.2,1.2,1.4,1.6,1.5,0.9,1.6,1.8,1.2,2.1,1,1.4],"paint":[14,15,13.8,13.7,14.3,13.9,14.6,14.2,14.8,14.5,14.5,14.5,14.2,14.4,14.2]}},{"b":3,"v":{"total":[3.3,3.3,3.6,4.8,4.3,3.6,3.6,3.7,4.1,3.7,3.1,4.2,3.6,3.7,3.2,6,3.4,3.5,2.8,3.6,3.7,2.8,3,3.9,3.2],"script":[0.9,0.9,1,1.1,1.5,1.2,1.3,1,0.2,1.5,1,1.2,1.4,1.4,1,1.2,1.1,1.1,0.9,1.3,1.3,0.7,0.8,1.1,0.6],"paint":[2,2.3,1.4,1.4,1.9,2.3,2.1,2.6,2.8,1.6,1.6,1.6,1.6,2.2,1.7,1.6,1.8,2.3,1.1,2.1,2.3,1.6,2.1,1.6,1.1]}},{"b":4,"v":{"total":[19.1,18.6,19.4,18.7,18.6,18.7,19.2,19.2,18.4,17.7,18.7,18.8,18.7,18.7,19.1],"script":[1,0.8,0.1,1.3,0.1,0.6,0.8,0.1,0.9,0.1,0.8,0.5,0.1,0.7,0.3],"paint":[16.3,16.5,18.1,16.2,17.4,15.7,17.3,17.7,16.2,16.5,16.2,17.3,16,16.5,17.4]}},{"b":5,"v":{"total":[15.2,14.8,15.2,14.8,14.7,14.9,15.1,14.8,14.9,15.3,15.1,15.2,15.3,14.8,15],"script":[0.5,0.5,0.5,0.5,0.3,0.3,0.5,0.4,0.5,0.5,0.4,0.5,0.4,0.5,0.3],"paint":[13.9,13.6,13.9,13.6,13.7,13.8,13.9,13.7,13.6,13.7,13.8,13.6,14,13.6,13.9]}},{"b":6,"v":{"total":[464.6,479.5,465.1,471.5,467.8,465.1,467,475.6,471,470.9,469.3,479.3,472.2,471,472.2],"script":[120.7,130.7,121.3,126.5,122.5,123.1,122.1,124.9,125.9,123.4,122.5,130.3,125.7,122.6,128.6],"paint":[336.7,341.4,337,337.1,338.1,335.2,338,342.8,338.4,340.8,339.9,342,339.8,341.6,336.9]}},{"b":7,"v":{"total":[51.7,51.2,52.1,52.9,52.3,51.9,51.4,50.2,51.6,53.4,52.1,53.9,51.4,51,51.5],"script":[11,11.1,11.7,11.9,11.8,11.2,11,11,11,11.9,11,12,11.1,11.1,11.1],"paint":[39.8,39.2,39.5,40.1,39.6,39.8,39.5,38.3,39.7,40.7,40.2,40.9,39.3,38.9,39.4]}},{"b":8,"v":{"total":[17.7,16.5,17.7,17,17.2,16.9,17.6,17.4,17.7,17.6,17.1,16.5,17.2,17.2,17.1],"script":[15.8,15.2,15.6,15.5,15,15.1,15.5,15.6,15.3,15.7,15.3,14.9,15.2,16,15.3],"paint":[1.8,0.8,2,1.3,2,1.8,2,1.7,1.9,1.8,1.2,1.5,1.2,1.1,1.7]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[2.6]}},{"b":13,"v":{"DEFAULT":[23.7]}},{"b":14,"v":{"DEFAULT":[135.4]}},{"b":15,"v":{"DEFAULT":[40.1]}},{"b":16,"v":{"DEFAULT":[219.5]}}]}, +{"f":21,"b":[{"b":0,"v":{"total":[35.1,37.1,35.5,37.1,34.9,35.8,35.3,35.4,35.5,36,35.8,36.5,37,36.9,36.1],"script":[2.3,2.3,2.3,2.4,2.2,2.2,2.4,2.4,2.2,2.3,2.3,2.4,2.4,2.4,2.3],"paint":[32.4,34.3,32.8,34.3,32.2,33.1,32.6,32.6,32.9,33.2,33.1,33.8,34.1,34.1,33.4]}},{"b":1,"v":{"total":[39.4,40.9,40.5,38.9,39.8,39,40.3,39,39.2,40.6,39.2,40.2,41.2,39.6,40.4],"script":[4.8,5.1,5.2,4.8,4.9,4.8,5.1,4.8,4.8,5,4.8,5,5.2,4.9,5.1],"paint":[34.1,35.3,34.8,33.7,34.4,33.7,34.8,33.9,33.9,35.1,34,34.8,35.6,34.3,34.9]}},{"b":2,"v":{"total":[17.5,16.8,17.4,16.3,16.4,17.1,16.7,16.5,16.8,17.2,16.1,17.1,16.1,16.3,16.3],"script":[1.4,0.7,0.6,0.9,1,1.5,1,0.9,1.4,1,0.9,1.2,0.2,0.7,1],"paint":[15,14.4,15.3,14.7,13.3,14.1,14.4,14.9,13.2,15.2,13.9,13.3,14.6,13.8,13.8]}},{"b":3,"v":{"total":[2.8,2.7,2.7,2.5,3,2.7,2.8,3,2.9,3.1,2.9,3.9,2.5,2.2,3.5,2.8,2.6,2.5,2.5,2.7,3.7,2.5,3.3,3,2.8],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,1,0.1,0.8,0.5,0.8,0.1,0.1,0.6,0.5,0.1,0.1,0.1,0.3,1,0.1,0.1,0.7,0.8],"paint":[2.1,2.5,1.9,1.6,2.8,1.9,2.6,1.8,2.7,1.4,2.1,3,1.9,2.1,2.3,2.2,2.5,2.4,2.3,1.9,2.5,1.6,2.7,2.2,1.3]}},{"b":4,"v":{"total":[18.3,18.4,18.7,18.3,18.8,18.5,19,18.5,19.2,18.5,18.6,18,17.9,18.1,18.2],"script":[0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.1,0.1,0.1,0.5,0.2,0.1,0.3,0.1],"paint":[16.4,17.3,17,17,16.3,16.2,17.9,16.5,17.3,16.2,16.8,16.8,16.6,15.6,16.8]}},{"b":5,"v":{"total":[14.8,15.2,15.2,14.7,15,15.1,15.1,15.1,15.2,14.8,15.2,15.1,14.8,15.2,16.3],"script":[0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.2,0.3,0.1,0.1,0.3,0.1,0.1,0.4],"paint":[13.7,14.1,14.1,13.9,14.3,14.3,13.8,14.2,13.8,14,14.1,14.1,13.7,14.4,15.1]}},{"b":6,"v":{"total":[368.2,371.7,370.5,371.9,372.4,371,371.6,367.5,369.4,373.5,373.3,370.8,372.6,374.4,370.7],"script":[25.6,25.8,25,26,24.8,25,26.1,24.2,23.9,26.5,25.1,24.2,26.2,25.9,25.7],"paint":[336,338.7,338.7,339.2,340.9,339.4,338.7,336.7,338.8,340.4,341.6,340,339.8,341.9,338.3]}},{"b":7,"v":{"total":[42,41.2,40.6,41.2,41.4,40.4,40.6,40.2,39.7,40.3,41.6,39.7,41.7,39.9,40.9],"script":[2.5,2.3,2.3,2.4,2.5,2.2,2.4,2.3,2.3,2.2,2.4,2.3,2.4,2.3,2.4],"paint":[38.6,38.1,37.4,38,38,37.3,37.4,37,36.6,37.2,38.3,36.6,38.5,36.8,37.7]}},{"b":8,"v":{"total":[12.6,12.3,13.1,12.1,12.3,12.4,12.5,12.9,13.1,12.6,13.1,12.5,12.7,12.9,12.4],"script":[10.7,10.7,11,10.7,10.7,10.4,10.5,11,11,10.8,11.1,10.7,10.6,10.5,10.8],"paint":[1.3,1.6,2,1.3,1.5,1.4,1.9,1.1,2,1.7,1,1.7,1.3,1.8,1.6]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.7]}},{"b":11,"v":{"DEFAULT":[1.7]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.2]}},{"b":14,"v":{"DEFAULT":[16.4]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[68.9]}}]}, +{"f":22,"b":[{"b":0,"v":{"total":[34.9,36.8,36.8,34.9,34.9,35.9,36,36.3,35,34.4,36.2,37.4,35.4,34.8,35.9],"script":[2.4,2.3,2.5,2.2,2.3,2.3,2.2,2.4,2.2,2.3,2.5,2.3,2.3,2.4,2.4],"paint":[32.1,34,33.9,32.3,32.3,33.2,33.3,33.5,32.4,31.7,33.3,34.7,32.7,32,33.1]}},{"b":1,"v":{"total":[40.7,40.6,39,38.7,39.1,40.3,38.7,40.6,39.2,39,39.1,38.6,39.9,38.6,38.6],"script":[5.1,4.9,4.7,4.7,4.7,4.7,4.7,4.9,4.6,4.7,4.6,4.6,4.7,4.8,4.6],"paint":[35.1,35.2,33.9,33.5,34,35.1,33.7,35.3,34.1,34,34.1,33.5,34.5,33.3,33.6]}},{"b":2,"v":{"total":[16.9,16,16.5,16.7,15.9,16,17,16.3,15.9,16.8,16.6,16.9,16.2,15.8,16.6],"script":[1,0.8,0.8,0.9,1.1,0.2,0.9,0.5,0.6,1.4,0.9,0.7,0.2,1.1,1.4],"paint":[14.4,13.5,14.2,14.4,13.6,14.3,14.4,14.6,14.1,13.6,14.2,14.9,14.8,12.9,13.6]}},{"b":3,"v":{"total":[3.8,2.5,2.5,2.8,2.6,2.5,2,1.8,2.8,2.5,2.9,3.2,3,4.3,2.7,2.5,2.6,2.5,4.1,2.7,4.1,2.8,2.3,2.8,2.4],"script":[0.1,0.1,0.9,0.1,0.8,0.1,0.1,0.1,1.1,0.1,0.1,0.1,0.1,1.1,0.8,0.1,0.1,0.1,0.8,0.2,0.9,0.1,0.1,0.1,0.1],"paint":[1.6,2.2,1.1,2.6,1.7,2.3,1.5,1.7,1.6,0.6,2.8,1.7,2.8,1.9,1.1,2.3,2.5,2.3,1.2,1.9,1.6,2.6,1.2,1.5,2.3]}},{"b":4,"v":{"total":[17.9,18.4,18.2,18.1,18.6,17.9,19.8,17.6,17.8,17.5,17.8,18.3,18.8,17.9,17.8],"script":[0.1,0.7,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.1,0.7,0.5,0.1,0.1],"paint":[16.6,16.7,16.8,16.5,16.4,16.4,18.6,15.6,16.3,16.5,16,15.9,16.1,16.4,16.6]}},{"b":5,"v":{"total":[15.3,15.2,14.8,14.7,15.2,14.8,14.5,14.8,15.2,14.7,14.7,14.7,14.9,15.6,15.1],"script":[0.3,0.4,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[14.2,14,13.7,13.6,14.1,13.6,13.7,14,14.2,13.9,13.9,13.9,14.1,14.7,14]}},{"b":6,"v":{"total":[364.7,375.6,364.7,365.1,365.8,367.2,364.2,366.8,366,364.1,367.6,362.9,366.4,370.3,376.1],"script":[25.4,25.5,24.7,23.7,24.2,24.3,24.4,24.7,25.9,24.1,24.2,24.7,25.3,25.6,25.2],"paint":[332.5,343.5,333.4,334.4,334.9,336.3,333.2,335.5,333.4,333.4,336.8,331.7,334.5,338.2,344.4]}},{"b":7,"v":{"total":[40.2,40.1,40.4,41.2,40.4,39.6,42.5,40.7,40.1,40.4,40,40.5,40.2,40.9,40.2],"script":[2.3,2.3,2.3,2.4,2.3,2.3,2.5,2.3,2.3,2.3,2.3,2.3,2.3,2.3,2.3],"paint":[37,36.9,37.3,37.9,37.2,36.5,39.2,37.6,37,37.3,36.9,37.4,37.1,37.7,37.1]}},{"b":8,"v":{"total":[11.4,11.6,12.1,12.3,11.7,11.4,11.8,11.9,11.9,11.5,11.7,11.2,11.6,11.2,12],"script":[9.5,9.8,9.7,10.6,9.8,9.9,9.7,9.9,10.3,9.5,10.6,9.9,10.1,10.1,10.1],"paint":[1.8,1,2.3,1.6,1.8,1.4,2,1.9,1.6,1.9,1.1,1.2,1.4,0.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.7]}},{"b":11,"v":{"DEFAULT":[1.7]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.2]}},{"b":14,"v":{"DEFAULT":[16.3]}},{"b":15,"v":{"DEFAULT":[4.9]}},{"b":16,"v":{"DEFAULT":[51.6]}}]}, +{"f":23,"b":[{"b":0,"v":{"total":[59.2,60.2,60.9,60.3,59.9,60.7,60.3,61.4,59.8,59.3,59.6,60.7,59.2,60.6,59.8],"script":[25.5,25.8,26.4,26.4,25.9,26,25.9,26.1,25.5,25.4,26.1,26.1,25.8,26.4,26.4],"paint":[33.3,33.9,34.1,33.4,33.6,34.3,33.9,34.8,33.9,33.5,33.1,34.1,33,33.8,32.9]}},{"b":1,"v":{"total":[62.8,63,62.6,63.6,62.6,62.5,62.3,63.2,62.2,62.8,62.6,62,61.9,62.4,63.4],"script":[27.6,27.6,27.2,27.6,27.2,27.3,27.2,27.8,27.2,27.1,27.3,27.4,26.8,27.6,27.5],"paint":[34.8,35,35,35.5,35,34.8,34.6,35,34.6,35.3,34.8,34.2,34.6,34.3,35.4]}},{"b":2,"v":{"total":[29.2,29,28.8,28,29.3,29.4,29.6,29.5,28.3,28.7,29.9,28,28.8,29.7,28.8],"script":[11.8,11.8,12.6,12,12.9,11.1,11.7,11.1,10.9,11.5,11.9,12,11.1,11.5,12.6],"paint":[16,16.3,14.5,13.8,14.3,16.7,16.5,17.2,16,15.9,16.5,14.2,15.8,16.8,14.7]}},{"b":3,"v":{"total":[8.7,9.1,9.3,8.8,9.4,9.1,9.5,8.5,9.1,9,9.3,8.4,8.4,9.1,8.1,8.1,9.2,9.5,9.4,8.2,9.3,8.4,9,9.4,9],"script":[5.8,6.8,5.9,6.1,6.4,6,6.8,5.9,6.4,6.3,6.3,6,6.1,6.3,6.4,6.3,6.2,6.1,6.7,6.1,6.6,6.2,6,6.2,6.2],"paint":[2.3,1.6,1.5,2.5,2.5,2.4,2.1,2.1,1.9,1,2.9,1.7,1.6,2,1.4,1.1,2.9,2.3,2,1.7,1.8,2,2.9,2.1,1.9]}},{"b":4,"v":{"total":[25.3,25.7,25.6,25.2,24.9,24.3,24.9,25.6,26.9,27.4,25.8,27.2,24.7,26.5,24.7],"script":[6.6,6.7,7.2,6.2,6.2,6.8,5.8,6.2,5.9,6.7,6.9,6.8,6.1,6,5.8],"paint":[16.2,17.5,16.4,16.8,17.1,15.8,17.4,17.3,19.9,19,17.6,18.9,17.6,18.6,17.6]}},{"b":5,"v":{"total":[21.5,20.9,20.7,20.3,20.4,20.5,20.4,20.5,20.9,20.7,21.3,20.7,20.5,20.4,20.5],"script":[5.6,5.6,5.9,5.5,5.5,5.5,5.5,5.6,5.6,5.6,5.9,5.5,5.5,5.5,5.7],"paint":[15.1,14.6,14.4,13.5,13.8,13.8,14.1,14.2,14.5,14.4,14.7,14.5,14.1,13.8,14.1]}},{"b":6,"v":{"total":[679,682.4,677.2,677.8,676,680.7,688.8,682.4,683,675.8,671,675.8,677.3,676,676.5],"script":[322.3,323.8,323.3,324.7,324.7,322.4,325.3,322.8,323.2,322.4,322.7,321.9,324.6,322.5,320.9],"paint":[350,352,347.3,346.5,344.5,351.6,356.8,353,353.3,346.8,341.7,347.2,346.1,346.9,349]}},{"b":7,"v":{"total":[115.5,117.1,118.3,114,114.9,115.3,115.5,114.5,113.6,117.9,113.3,114.8,117.5,118,117.9],"script":[44.8,46.6,43.6,43.6,44.6,44.7,45.4,45,43.6,44,43.9,44.1,44.7,45.4,45.5],"paint":[69.8,69.6,73.8,69.5,69.5,69.7,69.1,68.6,69.1,73,68.6,69.8,71.9,71.6,71.5]}},{"b":8,"v":{"total":[16.4,16.5,17.8,16.7,16.4,16.4,17.5,16.6,15.4,15.7,15.9,16.5,15.9,16.3,15.1],"script":[14.2,14.3,15.5,15,14.5,14,14.8,14.4,13.9,14,14.2,14.6,13.8,14.6,13.7],"paint":[1.8,1.9,2.2,1.7,1.7,1.9,2.1,2.1,1.5,1.2,1.7,1.8,2,0.8,1.4]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4.5]}},{"b":11,"v":{"DEFAULT":[5.2]}},{"b":12,"v":{"DEFAULT":[8.8]}},{"b":13,"v":{"DEFAULT":[35.9]}},{"b":14,"v":{"DEFAULT":[73]}},{"b":15,"v":{"DEFAULT":[19.1]}},{"b":16,"v":{"DEFAULT":[107.3]}}]}, +{"f":24,"b":[{"b":0,"v":{"total":[49.9,49,48,48.2,49.7,50.1,49.6,48.4,48.9,49.7,50.6,48,48.1,49.7,48.5],"script":[14.6,14.7,13.9,14,14.4,14.7,14.3,14.4,14.3,14.4,14.8,14.3,14.3,14.3,14.1],"paint":[34.9,33.9,33.6,33.7,34.8,35,34.9,33.6,34.1,34.9,35.4,33.2,33.4,34.9,34]}},{"b":1,"v":{"total":[53.8,53.1,53.9,52.9,55,53.8,54.9,52,52.1,51.8,53.1,51.3,51.8,53.7,52.6],"script":[16.9,16.2,16.4,16.2,17.5,16.6,17.1,16.3,16.1,16.2,15.9,16.1,15.9,16.8,15.9],"paint":[36.4,36.4,37,36.3,37,36.8,37.3,35.2,35.5,35.1,36.7,34.8,35.4,36.4,36.2]}},{"b":2,"v":{"total":[15.8,16,16.5,16.1,16.3,16.9,16.5,16.1,15.8,16.2,16.6,18.1,15.8,16.2,16.2],"script":[0.7,1.8,1.1,1,0.6,1.1,0.6,0.9,1.3,1.3,1.1,1,0.2,0.9,0.9],"paint":[13.5,12,14,13.5,14,14,14.3,13.4,13.6,13.9,14.1,16,14.4,13.9,13.7]}},{"b":3,"v":{"total":[3.1,2.8,5.9,3,2.9,2.3,2.5,2.5,3,3.1,3.4,2.9,3.2,2.7,3.3,3,4.9,5.9,3.1,2.5,3.7,7.2,2.9,3,2.8],"script":[0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.9,0.9,0.9,0.1,0.5,0.1,0.8,0.6,0.9,0.8,0.9,0.7,0.1,0.7,0.1,1.1,0.1],"paint":[2.9,2.2,2.6,1.7,2.7,2.1,2.4,2.3,1.6,2.1,2.3,2.7,1.6,1.5,2.4,2.3,1.8,1.9,1.4,1.8,1.2,1.3,2,1.8,1]}},{"b":4,"v":{"total":[19.7,18.8,19,18.6,19.3,18.5,19.1,19.3,17.9,18.9,18.5,19.4,18.7,18.4,18.9],"script":[0.4,0.7,0.1,1,0.1,0.5,1.1,0.1,0.1,0.1,0.1,1,0.9,0.6,1],"paint":[17.7,16.3,16.3,16.2,18.1,16.1,16.3,17.8,16.3,17.5,17.3,17,16.4,16.1,15.6]}},{"b":5,"v":{"total":[15,14.9,14.7,14.8,15.1,14.9,15,14.8,14.7,14.8,14.7,14.9,14.8,15.2,14.8],"script":[0.2,0.5,0.3,0.1,0.3,0.1,0.2,0.1,0.4,0.1,0.1,0.1,0.1,0.5,0.3],"paint":[14.2,13.4,13.7,13.9,13.9,14,14,13.9,13.2,14,13.6,13.9,13.9,14,13.7]}},{"b":6,"v":{"total":[491.7,492.2,490.9,486.9,490.9,485.7,491.2,490.5,488.7,488.4,487.9,496.7,489,492.4,490.6],"script":[145.9,145.2,148,145.5,147.6,146.4,146,146.6,144.9,147.8,144.8,145.7,147.1,149.8,149.1],"paint":[337.9,340.3,336.2,334.6,336.5,332.5,338.6,337.1,337.2,333.9,336.4,344.3,335.2,335.8,334.9]}},{"b":7,"v":{"total":[52.4,51.1,51.6,51,52.9,53,51.5,52.6,50.4,52.6,51.5,51.1,52.9,51.8,50.8],"script":[11.6,11.7,11.7,11.9,11.9,12.6,12,12.1,11.7,12.7,11.8,11.7,12.4,12.2,11.7],"paint":[39.7,38.5,39,38.2,40,39.5,38.6,39.5,37.8,39,38.7,38.4,39.6,38.7,38.2]}},{"b":8,"v":{"total":[17.2,15.8,17.6,16,17,16.6,16.9,16.8,17.4,16.2,17.3,16.9,16.9,17.1,17.5],"script":[15.2,14.3,15.2,14.4,15,14.7,14.8,14.9,15.5,14.3,15.1,15.2,15,15.3,15.8],"paint":[1.3,1.3,1.3,1.4,1.9,1.8,1.4,1.8,1.2,1.8,1.9,1.6,1,1.8,0.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.6]}},{"b":11,"v":{"DEFAULT":[4.7]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[38.7]}},{"b":14,"v":{"DEFAULT":[24.7]}},{"b":15,"v":{"DEFAULT":[8.1]}},{"b":16,"v":{"DEFAULT":[67.2]}}]}, +{"f":25,"b":[{"b":0,"v":{"total":[50.5,43.7,52.1,42.5,48.8,46.8,44.1,51.2,43.7,42.5,51.6,42.5,50.6,48.7,44.4],"script":[9.4,9.1,9.8,9.2,9.4,9.2,9.8,9.2,9.4,9.1,9.6,8.9,9.5,9.5,9.1],"paint":[33.6,32.6,33.6,32.8,32.2,33.4,33.5,32.7,32.7,32.9,32.6,33.1,33.6,33.3,34.6]}},{"b":1,"v":{"total":[50.3,56.9,57.5,55,54.5,54.7,50,54.5,58.2,51.1,59,50.4,56.6,59.6,56.9],"script":[11.3,12.1,12.6,11.8,12.4,12.2,11,11.4,12.3,11.5,12.3,11.8,11.8,12.9,12.2],"paint":[35.8,36.3,36,37.1,36.3,36.2,36.6,35.8,36,35.6,36.2,35.9,36.6,36.1,35.4]}},{"b":2,"v":{"total":[43.8,19.3,40.2,22.1,19.7,20,19.8,23.5,44.4,44.4,22.1,44.5,20.4,46.4,20.9],"script":[4.8,4.3,2.8,4.8,4.4,3.1,3.2,4.6,4.8,4.2,4,3.6,3.6,3.2,3.6],"paint":[13.8,14.3,15.7,15.5,13.8,15.9,13.3,14.5,14.2,13.5,13.7,14.1,13.7,17.2,15.8]}},{"b":3,"v":{"total":[10.1,5.8,10.4,11.6,7.5,7.9,9.2,10.8,8.9,8.9,9.6,6.1,8.3,6,6.9,7,9.4,6.9,6.9,4.8,4.8,9.4,10.6,5.9,8.2],"script":[0.8,1.4,1.7,1.4,1.2,1.4,1.1,2.1,2,0.7,0.8,1.1,1.9,1.1,1.9,0.4,0.4,1.6,1.5,1.7,1.8,2.1,0.4,1.3,1.5],"paint":[2.6,2.5,2,2.3,1.7,2.5,2.4,2,1.4,1.7,2.2,2.4,2.4,1.8,2.4,2.7,3.1,3,2.2,2.6,1.4,1.1,2.4,2.4,1.7]}},{"b":4,"v":{"total":[43.4,20.8,24.7,21.9,21,20.4,20,41.3,20.7,40.3,22.4,40.3,42.3,42.6,43.5],"script":[1.6,1.9,0.4,1,1.7,1.1,1.5,1.4,1.3,1.1,1.2,1.6,2.1,2.3,2.9],"paint":[17.4,17,18.5,18.1,16.1,18.3,16.8,17.5,15.8,17.3,19.6,16.7,17.3,17.6,17.9]}},{"b":5,"v":{"total":[22.2,23.9,18.5,22.9,23.2,23.8,21.7,17,17.3,18.5,20.9,17.7,24.2,22.4,21.1],"script":[1,0.8,1.1,1,0.7,1,0.9,0.7,0.7,1,0.8,0.7,1,1.1,0.7],"paint":[14.7,15,15.1,14.7,15.3,15,14.9,14.9,15.1,14.5,14.9,15.2,15.2,14.8,15.1]}},{"b":6,"v":{"total":[458.2,455.7,458.7,456.7,439.6,454.3,455.9,456.1,452.6,439.5,456.2,455.6,455.3,453.9,456.7],"script":[101.3,100.4,102,103.3,100.2,100.6,100.9,99.4,99.6,101.8,100.9,101.6,103.4,101.6,100.4],"paint":[347.7,346.5,347.8,344.6,330.1,345.2,345.5,347.5,344,330.1,346.3,344.6,342.5,343.1,344.1]}},{"b":7,"v":{"total":[53.1,58.1,53.1,52.6,57.6,52.2,55.1,54.2,53.5,52.7,54.9,53,56.8,52.3,52.5],"script":[8.3,8.6,8.3,8.3,8.7,8.1,9.5,8.7,8.4,8.2,8.1,8.1,8.1,7.9,8.2],"paint":[37.7,38.6,38,37.9,38.6,37.3,38.8,38,38.3,37.9,37.8,38.2,38,37.6,37.7]}},{"b":8,"v":{"total":[16.7,38.4,13.2,15,37.3,14.7,14.5,14.2,13.8,14.8,14.2,15.1,15,14,37.1],"script":[12.3,11.4,12.1,10.5,12.3,12.1,11.6,10.7,10.6,11.8,12.3,10.3,11.1,12.1,11.6],"paint":[1.5,2.2,1,2.6,1.1,0.8,1.5,1.9,1,0.9,1.8,2.5,1.7,1.8,2.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[29.3]}},{"b":14,"v":{"DEFAULT":[22.5]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[67.9]}}]}, +{"f":26,"b":[{"b":0,"v":{"total":[66.7,69.1,69.2,66.5,66.6,68.6,68.6,69,68,68.4,66.6,69.3,67.4,67.2,67.4],"script":[32,33.3,33,31.5,31.6,33.3,32.5,34,32.7,33,31.9,33.7,31.7,32.3,31.9],"paint":[34.2,35.4,35.7,34.6,34.6,34.8,35.6,34.6,34.8,34.9,34.2,35.2,35.2,34.5,35]}},{"b":1,"v":{"total":[84.4,83.1,82.2,81.3,81.6,82.4,83.8,83.8,82.6,83.7,83.3,83.8,82.9,84.1,84.8],"script":[44.4,45,44.2,42.6,43.6,44.5,45.3,43.8,44.6,45,44.9,45.2,44.7,45.9,44.3],"paint":[39.5,37.6,37.4,38.2,37.5,37.4,38,39.5,37.5,38.2,37.9,38.1,37.8,37.7,39.8]}},{"b":2,"v":{"total":[24.5,24.1,25.1,24.2,25.7,24.3,23.4,23.6,23.5,24,24.1,24.6,23.1,23.1,23.2],"script":[8.4,7.8,7.2,7.8,7.5,8.2,7.7,7.6,8,8,7.6,8.7,7.7,7.4,7.5],"paint":[14.6,13.9,16.7,14.4,16.4,14.4,14.5,14.5,13.9,14.7,15.2,12.7,14.2,14.3,14.1]}},{"b":3,"v":{"total":[18.2,18.5,17.1,18,19.7,18.6,17.6,18.9,18,17.1,17.3,17.5,17.3,17.9,18.2,17.7,17.6,18,18.3,18.1,16.7,17.6,20.4,18,17],"script":[14.6,14.7,13.9,15,14.6,15.1,14.5,15.7,14.8,13.9,14.5,14,14.4,15,14.5,14.4,14.5,14.2,14.6,14.9,14,14.2,16,15,14.5],"paint":[2.5,2.8,2.2,2.4,3.4,2.9,2.1,2.6,1.4,2.5,1.9,3,2.3,2.7,3.1,3.1,2.1,3.1,3.5,2.5,1.3,3.2,3.3,1.4,2.3]}},{"b":4,"v":{"total":[30.6,28.7,28.1,29.3,28.9,30.9,29.2,29.3,28.9,29.3,29.2,28.8,28.5,28.5,29.9],"script":[9.1,9.5,9.1,10.2,9.1,9.2,10.1,9.6,9,9.7,8.5,9.7,8.9,9.6,10.6],"paint":[20,16.6,17.7,16.9,18.8,19.7,17.7,17.8,18.5,17.4,19.6,17.5,18.3,17.5,17.9]}},{"b":5,"v":{"total":[24.7,25,24.7,24.5,24.6,24.3,24.5,24.3,25.3,24.3,24.4,24.4,24.4,24.6,24.5],"script":[9,9.1,9.2,8.8,8.8,8.9,9,8.9,8.9,8.9,8.9,8.6,9,8.9,8.8],"paint":[15,15,14.7,14.8,14.6,14.6,14.7,14.3,15.1,14.1,14.1,15,14.3,14.7,15]}},{"b":6,"v":{"total":[611,603,598.5,599.9,603.3,611.1,610.9,608.8,616.2,610.7,610.7,614.5,601.7,620.7,606],"script":[247.1,238.7,235,238.9,242.3,251.7,249,248.2,248.2,247.3,249.6,251.1,245.3,248.3,244.8],"paint":[356.8,357,355.9,353.8,353.7,352.2,354.8,353.5,360.9,355.8,354,356.2,349.3,364.9,354.1]}},{"b":7,"v":{"total":[78.7,79.1,80.2,78.1,80.3,79.4,79.4,81,81.3,80,79.7,79.1,80.9,79.8,80.7],"script":[37.6,38,38.8,37.2,39,37.9,37.5,37.9,39,38.2,37.5,37.7,38.4,37.9,38.7],"paint":[40.2,40.1,40.5,40,40.4,40.6,41,42.1,41.4,40.8,41.2,40.5,41.3,40.9,41.1]}},{"b":8,"v":{"total":[21,21.9,20,21.5,20.6,21.6,21.9,21,20.7,20.6,21.1,22.9,20.7,21.6,21.6],"script":[19.4,20.2,18.6,19.3,18.7,19.3,19.3,18.9,18.8,18.3,19,20.9,18.6,19.4,19.9],"paint":[1.5,1.7,1.3,1.4,1.1,1.9,1.2,1.4,1,2.1,1.2,1.7,1.8,2.1,1]}},{"b":9,"v":{"DEFAULT":[6.8]}},{"b":10,"v":{"DEFAULT":[12.5]}},{"b":11,"v":{"DEFAULT":[12.6]}},{"b":12,"v":{"DEFAULT":[8]}},{"b":13,"v":{"DEFAULT":[58.8]}},{"b":14,"v":{"DEFAULT":[433.8]}},{"b":15,"v":{"DEFAULT":[103.9]}},{"b":16,"v":{"DEFAULT":[588.5]}}]}, +{"f":27,"b":[{"b":0,"v":{"total":[47.9,47.3,47.5,49.1,48.3,49.8,49.4,48.9,47.7,46.8,50,48.2,47.9,49.1,47.3],"script":[11.7,11.1,11.1,12.1,11.8,12.7,12.4,12.3,11.3,11.3,12.8,11.8,11.2,12.3,11.1],"paint":[35.7,35.7,36,36.5,36,36.6,36.5,36.1,36,35.1,36.8,36,36.3,36.4,35.8]}},{"b":1,"v":{"total":[54.5,52.7,53.1,53.8,54,52.9,54.1,54.3,55,54.3,52.7,52.1,53.2,53.9,52.9],"script":[16.6,15.1,15.3,15.5,16.4,15.5,15.6,15.4,15.9,16.4,15.4,15.4,15.6,15.4,15.2],"paint":[37.4,37.1,37.4,37.8,37.2,37,38.1,38.5,38.6,37.4,36.9,36.2,37.2,38,37.3]}},{"b":2,"v":{"total":[17.7,18.4,17,16.9,17,19.5,17.3,16.6,17,17.1,16.9,16.5,16.2,16.5,16.6],"script":[0.9,1.2,0.9,1.2,1,1,1.1,1.2,0.3,1,0.6,1.2,0.3,0.6,1.2],"paint":[15.2,16.1,14.2,14.4,14.3,16,14.3,13.7,15.6,14.6,14.7,14.1,14.9,14.4,14.1]}},{"b":3,"v":{"total":[2.4,4.1,2.6,2.2,3.2,2.8,3.6,2.8,2.8,2.8,2.6,3.1,2.6,3.5,2.2,2.2,2.8,2.9,4.9,3.9,5,2.4,4.3,2.8,2.5],"script":[0.1,0.1,0.5,0.1,0.8,0.1,0.9,0.1,0.1,0.7,0.1,0.9,0.1,0.8,0.1,0.1,0.1,0.1,1,0.1,0.1,0.1,0.1,0.1,0.4],"paint":[2.2,1.4,1.6,1.1,2.4,2.6,2.4,2.7,2.5,2,2.4,1.7,2.4,2,2.1,1.2,1.8,1.8,1.8,1.4,2,2.3,2,2.6,2]}},{"b":4,"v":{"total":[20.6,21.2,19.8,21,19.9,19.7,20.2,20.3,20.7,20.4,19.5,19.2,20.1,19.9,21.2],"script":[1,1.5,0.9,1.5,0.6,0.7,1.1,0.8,0.9,1.1,1.3,1,1.5,1,1.3],"paint":[18.1,18.6,17,18.5,18.5,17.6,16.9,17.6,18.1,17.6,16.8,17.1,16.7,17.9,18.4]}},{"b":5,"v":{"total":[16,16,16,16,16,15.9,15.9,16.3,15.7,15.9,17,15.9,16.4,15.7,16],"script":[0.6,0.6,0.4,0.6,0.6,0.6,0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.5,0.6],"paint":[14.9,14.6,14.8,14.4,14.9,14.8,14.4,14.6,14.3,14.6,15.3,14,14.9,14.4,14.6]}},{"b":6,"v":{"total":[481.6,476.5,481.9,482.1,477,477.7,471,478.4,474.1,477.1,476.9,476.5,482.1,479,482.6],"script":[123.9,125.2,124.7,123.2,122.7,125.2,120.4,124,124.2,124.9,123.4,125.6,127.7,122.4,128.5],"paint":[350.9,344.4,350.5,352.2,347.6,345.8,343.8,347.5,343.2,345.6,346.7,344.2,347.6,349.5,347.4]}},{"b":7,"v":{"total":[53.7,55,53.6,53.7,54.8,52.8,53.1,54.6,53,53,52.4,52.1,54.9,53.1,52.9],"script":[10.8,11.6,10.7,10.7,11.4,10.5,11.1,11.6,10.8,11,10.4,10.7,11.5,10.5,11],"paint":[42,42.4,42,42.1,42.5,41.4,41.1,42.1,41.3,41.1,41,40.6,42.6,41.7,40.9]}},{"b":8,"v":{"total":[12.1,12.3,12.4,11.8,12.4,12,12.9,12.4,12,12.4,13.6,12,12.5,11.9,11.8],"script":[10.6,10.5,10.6,10,10.7,9.7,11,10.4,10.6,11.2,10.8,10.4,10.7,10.4,9.9],"paint":[1.3,1.6,0.8,1.8,1.6,1.4,1.6,1.8,1.3,0.4,2.2,1.5,1.7,1.4,1.7]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.9]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[24.1]}},{"b":14,"v":{"DEFAULT":[11.2]}},{"b":15,"v":{"DEFAULT":[3.9]}},{"b":16,"v":{"DEFAULT":[49.1]}}]}, +{"f":28,"b":[{"b":0,"v":{"total":[55,53.7,61.8,60.9,53.9,60.4,53.2,54.3,55.1,63.8,56.3,61.8,63.9,66,66],"script":[16.8,16.9,17.9,17.9,16.9,17.6,17.3,16.6,17.5,18.3,17.7,17.4,17.3,18.9,19.3],"paint":[36.9,36.3,36.8,36,36.6,36.2,35.6,36.6,36.7,37.4,37.5,37.5,37.4,37.9,38]}},{"b":1,"v":{"total":[61.2,61.5,62.3,62.2,60.8,61.2,62.8,63.8,63.9,63,61.7,62.4,62.4,64,61.8],"script":[23.5,23.5,22.8,22.7,23,22.5,23.1,23.4,24.1,22.3,22.7,22.2,22.7,22.3,22.6],"paint":[37,37.5,38.7,38.2,37.2,38.1,39,38.9,39.1,39.6,38.4,39.4,38.6,39.1,38.5]}},{"b":2,"v":{"total":[50,50.3,50.4,28.8,48.5,27.4,24.8,29,49.1,50.7,28.6,47.9,49.7,50.6,29.5],"script":[11.7,10,9.6,9.5,8.7,8.8,10,10.8,10.7,11.1,10.5,10.2,10.5,10.6,8.7],"paint":[17.3,17,16.2,16.7,16.3,17.1,14.6,17.1,15.7,16,16.1,16.6,17.2,17.7,17.3]}},{"b":3,"v":{"total":[9.4,11,15.2,5.7,5.4,10.5,9.2,9,8.1,13.3,17.7,16,9.8,5.9,5.5,5.4,16.6,6.4,9.6,5.3,4.8,9.3,13.7,17.1,13.2],"script":[4.7,3.7,4,2.8,2.9,3.4,4.2,4.6,3.1,3,5.3,3.2,3.8,2.2,2.8,2.5,5,3.7,3.5,2.8,3.1,3.9,3.6,4.4,3.8],"paint":[4.4,2.5,2.9,2.7,2,4.5,3.4,3.8,3,3.9,4.1,3.6,4,2.7,1.8,2.7,4.6,1.9,3.5,2.3,1.6,3.8,4.1,5.1,4.7]}},{"b":4,"v":{"total":[22.7,21.9,48.9,22.7,21.4,23.2,21.9,21.7,23.4,43.5,21.5,21.8,21.7,27,23.3],"script":[3.7,4.2,4.2,4.4,3.5,3.2,4.4,3.9,3.6,4.2,4.2,3.5,4.8,4.2,3.2],"paint":[18.9,17.6,19.6,17.6,17.8,17.9,17.4,17.4,19,17.4,17.1,18.1,16.8,19.7,17.9]}},{"b":5,"v":{"total":[17.8,17.3,16.9,19.8,20.6,17.3,17.2,17.6,17.7,17.2,19.3,17.2,16.9,17.2,19.9],"script":[1.7,1.6,1.6,1.7,1.5,1.7,1.6,1.7,1.8,1.4,1.6,1.6,1.7,1.4,1.6],"paint":[15.3,13.9,14.6,16.3,17,14.5,14.5,14.7,14.9,14.5,15.9,15.1,14.3,14.6,16.2]}},{"b":6,"v":{"total":[537.6,532.4,536.7,536.2,537.4,532.7,534.7,534.2,538.3,536.1,531.7,530.3,535.4,536.6,536.3],"script":[166.9,167.4,164.6,164.4,167.4,167,169.8,165.7,171,171.1,163.9,165.3,167.3,168.7,169.8],"paint":[363,358.2,359.3,362,361.1,358.2,358.2,358.2,359.1,358.2,360.6,358.3,359,361.1,359.7]}},{"b":7,"v":{"total":[82.4,82.3,82.9,62.8,81.4,79.2,82.6,81.7,82.8,61.3,64.1,83.3,61.8,81.9,78.7],"script":[20.7,20,20.4,19.9,19.6,19.6,18.8,20.1,19.3,19.5,20.4,20,18.9,20.1,19.3],"paint":[43.4,41.6,41.8,42.3,41.7,41.2,43.1,41.7,43.2,41.1,41.8,42.9,41.7,43,41]}},{"b":8,"v":{"total":[21.4,21.4,18.5,21.5,19.6,18.3,18.7,22,19,19,22.9,21.6,18.6,21.2,21.8],"script":[17.4,17.1,16.3,17.5,17.7,16,17.5,18.4,16.5,16.9,18.6,17.2,16.6,17.6,17.9],"paint":[3.4,3.3,1.1,3.7,1.1,2.2,1.1,3.1,1.6,1.3,2.2,3.5,1.8,2.7,3.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[15.9]}},{"b":13,"v":{"DEFAULT":[31.6]}},{"b":14,"v":{"DEFAULT":[10.3]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[45.5]}}]}, +{"f":29,"b":[{"b":0,"v":{"total":[56.8,44.7,44.9,57.8,59.4,59.3,45.6,58.8,58.2,45.7,44.7,45.5,45.5,57,44.7],"script":[11.6,12.4,11.9,11.1,11.9,12.5,12.2,12.3,12.1,11.8,11.8,12.5,11.6,12,12.2],"paint":[32.8,32.1,32.7,33.2,33.4,34.3,32.9,33.5,33.4,33.6,32.7,32.8,33.6,32.8,32.3]}},{"b":1,"v":{"total":[52.4,52.7,52.5,52.6,53.1,51.7,54.8,52.6,53.1,52.3,53.6,52.9,53.4,52.7,52.9],"script":[17.3,16.5,17.4,16.7,17.2,17.2,17.4,16.5,17.5,17.6,17.8,16.9,17.4,17.2,16.8],"paint":[34.9,36,34.8,35.6,35.7,34.2,36.8,35.9,35.3,34.4,35.5,35.8,35.8,35.2,35.6]}},{"b":2,"v":{"total":[19.4,18.3,18.7,18.1,18.2,18.8,22.6,19.7,22,19.9,21.7,19.2,62.8,58.5,19.3],"script":[4,4.1,4,4.4,3.8,4.2,4.5,4.6,5.3,4.8,4.4,3.3,3.4,3.6,3.8],"paint":[13,13.7,14.6,13.3,14.3,14,15.4,13.5,15.7,15,16.2,13.7,16.4,14,13.4]}},{"b":3,"v":{"total":[7.6,8.9,5.9,8,4.2,7.7,8.7,6.6,9.8,7.5,5.6,7.3,7.4,7.4,9.8,12.7,8.4,4.7,16.7,4.4,13.4,7.6,6.7,15.6,15],"script":[2.6,2.2,1.8,2,1.2,2.6,3.7,1.5,2.8,1.9,0.7,3.1,2.5,1.5,3,3.3,1.7,1.2,2,1.4,2.3,2.2,1.9,2.6,3.1],"paint":[3.7,4.6,2.9,4.8,2,2.8,4.1,2.7,4.8,3.5,2.8,4.5,4.4,4.2,4.3,4,3.2,2.5,2.7,2.4,4.3,3.6,3.4,3.3,3.7]}},{"b":4,"v":{"total":[62,62.2,20.2,62.5,24.5,20.9,66.5,24.9,61.4,66.3,66.9,19.4,67.5,63.3,19.4],"script":[1.7,1.9,2.1,1.7,2.1,1.8,2.2,2.6,2.2,2.1,3.2,1.8,2.6,1.5,1.9],"paint":[17.3,18.1,16.5,16.7,18.3,16.8,18.9,19,16.4,18.6,19.2,16.9,19.6,17.4,17.4]}},{"b":5,"v":{"total":[16.3,18.5,16.3,16.1,16.3,16.1,16.1,16.7,16.2,16,18.2,18.1,16.1,18.1,15.4],"script":[1,0.9,1,0.8,0.8,0.8,0.8,1.2,0.9,1,1.1,0.8,1.1,0.9,1.1],"paint":[14.2,15.8,14.2,14.3,14.2,14,14.4,14.5,14.4,13.9,15.3,15.1,13.7,15.4,13.6]}},{"b":6,"v":{"total":[1440.4,1471.9,1420.4,1426.4,455.9,454.9,457.2,1420.9,1433.7,1426.6,1419.8,1411.5,450,1432.1,452.9],"script":[119.5,109.3,115.9,113.8,119.3,118.4,118.6,116,111.9,113.7,112.9,115.7,114.9,110.8,115.7],"paint":[346.3,349.1,344.2,347.4,322,321.9,324,343.5,341,349.5,347.6,338.2,320,341.6,322.9]}},{"b":7,"v":{"total":[54.2,53.7,53.3,53.3,53.3,53.7,51.2,52.5,52.3,52.2,52.1,50.6,51.1,51.6,53.9],"script":[14.5,13.3,13.9,14.7,13.5,13.8,13.4,13.8,14.3,14,13.4,13.5,13.4,13.9,13.9],"paint":[39.1,39.2,39,38.2,38.9,38.9,37.4,38.3,37.7,37.6,38.3,36.7,36.4,37.4,39.4]}},{"b":8,"v":{"total":[15.1,11.7,15.2,11.9,14.3,11.3,14.4,11.5,11.3,14.8,14.4,14.1,14.2,11.5,14.5],"script":[10.3,10.4,11.3,9.7,10.5,9.6,11.2,10.2,9.6,10.5,10.1,10.2,10.2,10.1,10.5],"paint":[4.6,1.1,3.3,1.8,2.9,1.6,2.6,1.2,1.3,3.5,3.4,3,1.5,1.3,2.5]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[5.7]}},{"b":11,"v":{"DEFAULT":[5.7]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[49.6]}},{"b":14,"v":{"DEFAULT":[16.9]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[49.1]}}]}, +{"f":30,"b":[{"b":0,"v":{"total":[69.4,69.7,71.5,68.9,68.4,70,70.8,69.3,72.6,71.3,70.2,68.9,70.5,71.8,72.6],"script":[36,36.2,37.7,35.5,35.1,36.2,36.8,35.9,37.8,36.9,36.5,35.6,37.1,38.2,38],"paint":[33.2,33.4,33.6,33.3,33.1,33.7,33.8,33.3,34.6,34.2,33.5,33.1,33.3,33.4,34.5]}},{"b":1,"v":{"total":[85.3,84.9,84.6,83.9,83,84.4,85.5,85,84.6,85.7,85.1,85.4,86.5,86,84],"script":[48.5,48.1,47.9,47.8,46.7,47.5,49.2,48.3,47.5,48.9,48.4,48.7,48.3,48.5,47.9],"paint":[36.6,36.6,36.6,35.9,36.1,36.7,36.1,36.5,36.8,36.6,36.5,36.5,38,37.2,35.9]}},{"b":2,"v":{"total":[21.1,26.3,21.7,20.8,21,22,20.4,21.8,21.5,23.7,20.9,20.8,24.1,21,20.9],"script":[6.1,7.3,7.3,5.9,6.9,6.8,5.5,7.1,6.8,6.1,5.5,7,6.9,7.2,6.9],"paint":[14.8,17.8,14.3,14.7,13.9,14.1,13.9,14,14.1,17,14.3,13.7,16.7,13.3,13.8]}},{"b":3,"v":{"total":[22.2,20.6,22.4,17.7,20.2,20.6,21.5,20.3,20.8,20.8,20.6,18.4,21.7,19.5,20.1,21.5,21.4,17.5,21.5,19,20.5,20.3,21.2,21.1,19.9],"script":[16.6,14.5,15.7,15,15.2,15.5,16.6,15.3,15.2,15.1,14.7,14.7,16,13.3,14.6,15.3,15.9,14.5,15.9,15.3,15,15.7,16.1,15.8,14.3],"paint":[4,4,4,2.4,4.5,4.6,3.1,3.9,4.7,3.2,5.2,2.3,3.7,5.3,3.9,4.4,4.1,2.5,3.7,2.5,4.2,3.4,3.5,4.4,5.2]}},{"b":4,"v":{"total":[24.2,28.6,24.1,24.6,25,25.3,27.9,23.9,27,23.7,29,24,23.8,24.7,27.3],"script":[6.3,6.9,6.8,6.5,6.9,7,6.8,6,7.1,6.2,7,6.7,6.2,6.1,6.3],"paint":[17.8,20.1,16.8,16.9,17.5,18.2,20,17.8,19.2,17.4,20.6,17.1,17.1,17.9,19.2]}},{"b":5,"v":{"total":[23.8,23.5,25.6,24.1,23.9,23.8,24.1,26.4,24.6,23.6,24.2,27,23.6,23.3,24.3],"script":[8.4,8.6,8.8,8.8,8.7,8.6,8.7,9,9.2,8.8,8.9,9.7,8.8,8.4,8.8],"paint":[14.4,13.9,15.7,14.6,13.9,14.6,14.7,15.5,14.5,14,14.6,16.3,14.1,14.2,14.4]}},{"b":6,"v":{"total":[618.5,611.2,618.9,624.3,611.8,620.9,623.6,621.6,610.5,622.4,618.7,605.4,621.1,619,609],"script":[260,258.7,266.3,263.2,261.5,263.3,264,262.5,260.1,265,259.8,260.7,263.8,259.7,260.9],"paint":[355.8,349.7,349.9,358.2,347.2,354.4,356.7,356.1,347.5,354.5,356,341.9,354.4,356.5,345.1]}},{"b":7,"v":{"total":[81.1,82,80.9,81.8,81.2,80.6,80.1,82.4,81.1,83.3,81.5,81.2,82.5,80.4,79.5],"script":[42,42.5,41.6,42.6,41.3,41.8,41.2,42,42.6,43.1,42.2,42.1,42.1,41.2,40.4],"paint":[38.8,39.2,39,38.9,39.5,38.5,38.6,40.1,38.2,39.9,39.1,38.8,40.1,38.9,38.9]}},{"b":8,"v":{"total":[27.1,28.1,25.3,26.8,28.7,27.6,27,27.7,23.8,22.3,26.4,26.2,27.8,27.7,27.6],"script":[22.9,23.4,23.9,22.6,24.8,23.9,23.9,24.5,20.9,20.7,22.3,22.2,24.5,24.1,23.9],"paint":[2.6,3.7,1.3,3.1,3.3,3.5,2.8,2.2,2.9,1.6,2.7,3,2.4,3.3,3.4]}},{"b":9,"v":{"DEFAULT":[5.2]}},{"b":10,"v":{"DEFAULT":[11.5]}},{"b":11,"v":{"DEFAULT":[11.6]}},{"b":12,"v":{"DEFAULT":[6.7]}},{"b":13,"v":{"DEFAULT":[61.2]}},{"b":14,"v":{"DEFAULT":[111.9]}},{"b":15,"v":{"DEFAULT":[28.9]}},{"b":16,"v":{"DEFAULT":[149.9]}}]}, +{"f":31,"b":[{"b":0,"v":{"total":[44.1,44.4,48.2,44.4,46.9,44.2,45,46.8,44.4,44.7,46.6,47.2,44.4,47.2,46.3],"script":[11.2,11.5,12.5,11.4,11.5,11.3,11.8,12.6,11.3,11.5,12.8,12.9,11.6,12.2,12.7],"paint":[32.5,32.5,35.2,32.6,34.9,32.5,32.9,33.8,32.7,32.9,33.4,33.9,32.4,34.6,33.2]}},{"b":1,"v":{"total":[58.9,56.6,56.7,59.3,56.4,56.3,56.1,56.8,57.5,55.5,55.1,58,55.9,55.2,57.3],"script":[23.2,21.4,21.8,23.7,21.5,21.4,21.6,21.8,22.9,20.8,21,23.1,21.4,21.1,22.6],"paint":[35.1,34.8,34.5,35.2,34.5,34.5,34.1,34.5,34.2,34.3,33.7,34.5,34.1,33.7,34.3]}},{"b":2,"v":{"total":[18.6,18.1,18.7,18.2,17.7,18,17,18,18.4,19.8,18.1,17.7,17.3,18.9,18.2],"script":[2.2,3,3.2,2.6,2.9,2.7,2.7,3.3,3.2,2.4,2.5,2.5,2.2,3.1,3.2],"paint":[15.2,12.9,14,15,13.1,14.2,13.4,12.9,13.7,16,14.4,14,14,13.7,14.1]}},{"b":3,"v":{"total":[3.8,4,4,4.1,3.8,4,4.3,3.7,4.2,4.3,4,4,3.8,3.9,3.8,3.5,4.1,4.5,3.2,4.5,4,3.4,3.8,3.9,5.6],"script":[1.4,1.5,1.4,1.1,0.7,1.3,2.1,1,1.8,1.7,1.8,1.8,1.3,1.3,1.8,1.6,1.6,1.7,1,1.2,1.3,0.7,1.4,1.5,1.7],"paint":[2.3,1.2,2.1,2,3,2.6,1.1,2.5,1.8,1.6,1.5,2.2,2.4,2.5,1.8,1.5,2,1.9,1.4,1.3,1.7,2.5,2.3,1.7,1.8]}},{"b":4,"v":{"total":[19.6,19.9,19,19.1,21.9,19.3,19.3,19.6,19.1,19.4,19.3,19.9,20.3,18.9,19.5],"script":[1.8,1.3,1.3,1.2,2,1.2,1.2,1.5,2.2,0.7,1.3,2.1,2.1,1.1,1.1],"paint":[16.4,17,16.5,16.5,17.2,17.1,16.8,16.7,15.9,17,16.4,16.1,16.4,16.4,16.5]}},{"b":5,"v":{"total":[15.7,15.9,16,16.2,16.3,15.6,15.4,15.4,15.4,15.5,15.8,15.4,15.4,15.5,15.8],"script":[0.7,0.9,0.7,0.7,0.9,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.7],"paint":[14.5,14.3,14.5,14.7,14.5,13.8,14,13.9,13.7,13.8,14.3,14,13.7,14.1,14.4]}},{"b":6,"v":{"total":[488.3,485.7,487.8,483,486.5,487.7,500.4,479.9,485.7,485.9,495.4,489.2,482.9,491.1,484.6],"script":[150.1,149.5,147.1,145.8,151.5,153.3,148.6,146.8,150,151.1,151.3,145.4,147.6,148,149.3],"paint":[330.5,329.6,334,330.4,328.2,327.7,345.1,326.4,329.1,328.1,337.5,337.1,328.6,336.4,328.7]}},{"b":7,"v":{"total":[52.4,51.9,54.1,52.4,52.8,51.8,52.7,53.1,52.9,51.2,52.6,51.2,52.3,52.2,51.8],"script":[13.4,13.3,13.2,13.6,13.1,13.4,13.3,13,13.2,12.9,13.4,12.9,13.4,13.1,13.2],"paint":[38.2,37.8,40.1,38,38.7,37.5,38.5,39.1,38.8,37.5,38.4,37.4,38,38.2,37.8]}},{"b":8,"v":{"total":[17.9,17.8,18.1,17.8,17.9,17.2,17.7,17.5,17.4,17.7,17.6,17.7,17.2,17.4,17.5],"script":[16,16.5,15.8,16.1,15.9,15.4,15.8,15.6,15.6,15.6,16.2,15.9,15.7,15.9,15.9],"paint":[1.9,0.3,0.5,0.4,1.9,1.8,1.8,1.8,0.9,1.1,0.4,1.6,1.4,1.4,1.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[6.2]}},{"b":11,"v":{"DEFAULT":[10.3]}},{"b":12,"v":{"DEFAULT":[16.7]}},{"b":13,"v":{"DEFAULT":[49.9]}},{"b":14,"v":{"DEFAULT":[90.3]}},{"b":15,"v":{"DEFAULT":[30.5]}},{"b":16,"v":{"DEFAULT":[149.2]}}]}, +{"f":32,"b":[{"b":0,"v":{"total":[51.4,51.6,51.1,50,51.2,51.3,50.9,50.2,51.8,52.4,52.4,52.6,51.1,50,49.2],"script":[17.4,16.3,16.4,16.4,17.3,16.4,16.6,16.9,17,16.5,16.5,16.9,16.3,16.7,16],"paint":[33.6,34.9,34.3,33.2,33.4,34.5,33.9,32.9,34.5,35.2,35.5,35.2,34.3,32.8,32.8]}},{"b":1,"v":{"total":[58.7,57.7,58.2,58.2,58.4,58.2,57.4,56.8,58,57.8,58.4,58.5,57.8,57.7,58.9],"script":[21,20.4,20.9,20.3,20.7,20.8,20.2,20.2,20.2,20.4,20.5,20.7,20.6,20.1,21],"paint":[37.3,36.8,36.8,37.4,37.3,36.9,36.7,36.1,37.3,37,37.5,37.3,36.7,37.1,37.4]}},{"b":2,"v":{"total":[17.4,19,17.5,18.4,17.4,16.9,17.1,17.6,17.6,17.3,17.6,17.4,17.1,17.8,17.6],"script":[1.6,1.8,1.3,2.4,1.8,1.6,1.1,1.9,1.4,1.3,1.6,1.6,1.7,1.6,1.9],"paint":[14.3,15.4,14.6,14.7,14.3,14.1,14.9,14.1,14.7,14.5,14.5,13.9,14.1,15,14.5]}},{"b":3,"v":{"total":[5.3,5,5,5.4,4.3,4.7,5.1,5.5,5.3,5.2,5.6,5.1,5.4,5.3,4.5,5.4,5.1,4.8,6.4,5.2,4.5,5.3,5.5,5.3,5],"script":[2.6,2.4,2.2,2.6,2,2.2,2.6,2.1,2.4,3,2.6,2.2,2.4,2.6,2,3.1,2.7,2.4,3.2,2.8,2.5,2.8,2.2,2.8,2.3],"paint":[2.1,2.5,2.1,2.7,1.2,2.4,2.4,2.5,1.9,2.1,2.9,2.8,1.9,2.6,2.1,2.2,1.8,1.5,3.1,1.9,1.3,0.8,3.2,2.3,2.2]}},{"b":4,"v":{"total":[19.7,19.9,19.5,19.5,20.3,20.3,20.2,20.2,21.1,20.2,19.9,20,20.3,20.5,20.3],"script":[1.6,1.2,1.4,0.6,1.4,1.5,1.8,1.8,1.5,2.1,0.7,1,1.8,1.8,0.9],"paint":[16.8,17.1,17,17.6,17.3,17.2,16.9,16.5,17.8,16.6,17.8,17,17.6,17.5,18.5]}},{"b":5,"v":{"total":[15.8,15.7,15.7,16,16,15.8,16,16,15.8,16,15.4,15.8,16.5,15.8,15.8],"script":[0.7,0.8,0.7,0.7,0.7,0.7,0.9,0.7,0.9,0.9,0.7,0.7,0.7,0.8,0.7],"paint":[14.1,13.9,14.3,14.2,14.5,14.4,13.9,14.5,14.2,14.1,13.4,14.4,15.1,14,14.1]}},{"b":6,"v":{"total":[505.9,527.9,499,499.5,496.4,519,502.5,505.1,503.2,493.9,492.5,490.6,488.7,490.1,495.7],"script":[159.1,160.9,158.1,155.9,155.8,157.9,155.6,159.6,157.4,155.2,154.3,153.2,153.8,153.3,150.6],"paint":[339.8,360.1,334.2,337,333.9,354.4,340.3,338.6,339,331.9,331.4,330.8,328.1,329.8,338.3]}},{"b":7,"v":{"total":[55.2,56.3,54.6,55.5,55,56.2,56.6,54.3,55.5,57,57,55.5,56.2,55.8,55.1],"script":[15.1,16,15.3,15.1,15.5,16.2,15.4,15.2,15.6,16.2,15.7,15.9,15.7,15.8,15.2],"paint":[39.1,39.3,38.4,39.5,38.6,39,40.3,38.2,39,39.9,40.4,38.7,39.6,39,39]}},{"b":8,"v":{"total":[22,23.1,21.9,22.3,21.3,21.6,22.7,22.4,22.3,21.6,23.1,22.4,22.1,21.2,23],"script":[20.1,21.2,20,20,19.3,20.2,21.1,20.6,20.1,19.7,20.6,20.3,20.6,19.9,20.6],"paint":[1.8,1.2,1.4,2.1,1.2,1.3,0.7,1.3,2,1.8,2.4,2.1,0.4,1.2,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[4.3]}},{"b":11,"v":{"DEFAULT":[4.5]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[35.7]}},{"b":14,"v":{"DEFAULT":[12.1]}},{"b":15,"v":{"DEFAULT":[4.4]}},{"b":16,"v":{"DEFAULT":[48.6]}}]}, +{"f":33,"b":[{"b":0,"v":{"total":[50.4,50.4,50.6,50.5,49.5,51.1,51.5,49.8,50.8,51.9,50.3,52.8,51.4,52.3,49.6],"script":[15.1,15.2,16.1,15.2,15.2,15.7,15.6,15.1,16.1,16.5,15.2,16.5,15.6,16.9,14.8],"paint":[34.8,34.8,34.1,34.9,33.8,34.9,35.5,34.3,34.3,34.9,34.7,35.9,35.3,34.9,34.4]}},{"b":1,"v":{"total":[56.8,55.8,55.2,58,55.5,56.7,56.6,56,56.2,57.3,55.6,57,57.3,58,56.1],"script":[20.3,19.4,19.4,20.8,19.5,20.2,20,19.4,19.5,19.8,19.5,20.3,19.8,20.9,19.9],"paint":[36.1,35.8,35.4,36.8,35.6,36,36.1,36.2,36.3,37.1,35.6,36.3,37.1,36.6,35.8]}},{"b":2,"v":{"total":[28,27.4,26.2,26.2,27.2,25.5,26.3,26.9,26.6,27.3,27.5,26.4,25.1,26.9,27],"script":[11.9,10.2,10.5,10.6,11.1,9.6,10.6,10.8,10.7,11.8,10.5,11.1,9.8,10.7,12.3],"paint":[14.7,15,14.2,14,14,14.1,14.2,14.5,14.4,14.3,14.8,14,13.7,13.2,13]}},{"b":3,"v":{"total":[7.6,9.1,9.2,10.1,8.7,8.6,9.4,8.4,9,8.9,8.7,9,9.1,8.3,10.3,10.4,9.7,9,9.2,8.6,9.3,9.7,8.6,8.5,8.9],"script":[5,6.5,5.9,6.5,6.5,5.8,6.2,5.6,6.5,6.4,5.6,6.1,6.1,6.2,6.7,6.8,6.6,7,6.3,5.3,6.3,6.7,6.2,5.7,6.3],"paint":[1.5,1.8,3,2.9,1.7,1.4,2.5,2.2,1.8,1.1,2.4,1.8,2.4,1.2,3.4,3.4,2.9,1.1,2,2.7,2.3,2.9,1.3,1.8,1.6]}},{"b":4,"v":{"total":[24.3,24.4,24.9,24,25.5,23.7,22.9,23.2,24.1,23,22.7,23.8,23.4,24.3,23.6],"script":[4.8,6,5.4,5,5.9,5.5,4.6,5.6,5.3,5.1,4.9,5.7,4.7,6.3,5.8],"paint":[18,17.1,18.6,18,18.3,16.3,16.6,16.4,17.7,17.1,16.5,15.9,17.1,16.4,16.4]}},{"b":5,"v":{"total":[20.7,20.5,20.5,20.6,20.3,20.5,20.4,20.5,20.4,20.4,21,20.5,21.7,20.9,20.6],"script":[5.6,5.7,5.7,5.5,5.6,5.6,5.6,5.7,5.6,5.7,5.8,5.7,5.7,5.7,5.6],"paint":[14.3,14,13.7,14.3,13.9,13.9,14.1,14,14,14,14.4,13.8,14.8,14.4,14.3]}},{"b":6,"v":{"total":[497.4,512.5,496.8,496.3,495.6,513.7,491.2,510,497.1,509.5,496.5,498.3,490.4,510.7,489.8],"script":[150.8,152.9,151.5,151.4,149.5,150.8,150.1,149.2,152,149.4,151.2,154.4,149.7,153,147.5],"paint":[338.7,352.8,337.7,337.3,339.2,356.1,334.4,353.9,338.3,353.1,338.5,337.1,333.9,350.9,335.6]}},{"b":7,"v":{"total":[58.8,58.9,59.6,59.4,59.5,59.6,58.1,59.4,60.6,59.2,59.5,59,58.5,59.7,58.5],"script":[18.4,17.8,18.3,18.3,18.2,17.9,17.6,18.1,18.2,18.5,17.8,18.6,18.4,19.1,17.9],"paint":[39.5,40.2,40.4,40.2,40.2,40.8,39.5,40.4,41.4,39.8,40.8,39.5,39.2,39.6,39.8]}},{"b":8,"v":{"total":[22.1,22.7,22,21.4,22.7,21.4,21.8,21.4,21.7,21.7,22.3,22.1,21.1,20.9,22],"script":[19.8,20.3,20,19.8,20.3,19.3,19.9,20.3,20.6,19.8,20.3,20.2,19.6,19,20.3],"paint":[2.3,2.2,1.6,0.7,2.3,1.9,1.8,0.4,0.4,1.8,1.9,0.9,1.5,0.6,1.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.1]}},{"b":11,"v":{"DEFAULT":[4.2]}},{"b":12,"v":{"DEFAULT":[2.3]}},{"b":13,"v":{"DEFAULT":[31.2]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[102.2]}}]}, +{"f":34,"b":[{"b":0,"v":{"total":[47.3,46.6,45.2,47.6,47.9,45.5,45.4,45.5,47.7,46.1,45.6,46.2,44.8,46,46.7],"script":[13.3,12.4,11.9,13.1,13.5,12.2,12.4,12.3,13.3,12.4,12.2,12.5,12.3,12.3,12.8],"paint":[33.5,33.7,32.9,34.1,34,32.9,32.6,32.7,34,33.2,32.9,33.3,32.1,33.4,33.4]}},{"b":1,"v":{"total":[50.1,50.7,50.6,49.6,50.9,50.5,50.5,50.6,50.1,50.2,50.1,51.2,50.6,51.1,52.4],"script":[15.3,15.3,15.2,15,16,15.7,15.7,15.3,15.5,15.7,15.8,16.1,15.8,15.6,15.8],"paint":[34.3,34.9,34.9,34.1,34.4,34.3,34.3,34.9,34.2,34.1,33.9,34.6,34.4,35.1,36.1]}},{"b":2,"v":{"total":[23.5,26.2,24.6,24.6,23.8,23.6,24.1,25.3,24.4,24.2,25.6,25.3,23.7,24.2,23.8],"script":[8.5,8.4,8.4,9.2,7.8,8.4,8.3,9.4,8.1,8.6,8.9,8.8,8.3,7.8,8.3],"paint":[13.1,16.7,14.3,13.4,14.8,13.9,14.2,14.5,14.4,13.6,15.4,14.8,13.9,13.6,13.4]}},{"b":3,"v":{"total":[7.6,7.5,7.7,7.2,7,7.6,8.6,8.2,7.9,8,7.7,7.3,7.3,7.7,7.6,7.7,7.2,7.6,7.5,8.3,7.3,7.3,7.7,7.1,7.5],"script":[4.4,5,4.5,4.9,4.8,5,5.5,4.9,5.2,5.2,5.2,4.5,5.1,4.7,4.5,5.4,4.6,4.9,5.2,5.6,4.6,4.8,5.1,4.2,4.4],"paint":[2.2,2.4,2.6,1.4,1.6,2.5,2.2,2.8,2.2,2.6,2.3,2.7,1.5,2.9,2,1.4,2.5,2.5,1.4,1.7,1.9,2.4,1.5,2.4,1.8]}},{"b":4,"v":{"total":[162.8,172.4,166.6,170.8,168.2,167.6,170.1,169.1,166.4,167.6,164.9,167.6,168.6,167.3,165.6],"script":[24.1,23.9,24.2,25,25.2,25,26.5,25.4,24.7,26.9,24.2,23.8,24.3,24.7,23.9],"paint":[136.4,146.1,141.2,143.7,141.1,140.4,142.2,141.5,139.2,139.1,138.8,141.7,142.5,139.8,140.6]}},{"b":5,"v":{"total":[17.8,18.1,18.3,17.6,17.8,17.9,17.4,17.9,17.9,18.9,17.9,17.6,17.8,18,18],"script":[3.1,3.4,3.2,3.1,3.1,3.1,3.1,3.1,3.1,3.3,3.1,2.8,3.1,3.2,3.1],"paint":[13.6,14,14,13.7,14,14.1,13.7,14.1,14,14.4,13.7,13.7,14,14.1,13.3]}},{"b":6,"v":{"total":[616.6,608.7,610.5,612.6,619.9,614.4,614.8,611,611.7,614.7,608.1,609.3,607.3,616.6,610.2],"script":[266.6,263.8,260.8,264.6,268.6,267.1,266,261.1,259.4,263.8,257,260.5,260.5,266.1,263.1],"paint":[343.1,338.1,342.8,340.9,344.5,340.5,342.1,343.3,345.3,344.1,344.3,342.1,340.1,343.7,340.4]}},{"b":7,"v":{"total":[52,53.1,51.8,53.2,53.3,52.4,51.7,52.4,51.6,52.3,52.9,53.4,52.2,52.7,53.6],"script":[12.4,12.7,12.6,13.7,13.5,12.8,12.8,12.6,12.6,12.7,12.9,13.3,12.5,13.6,13.1],"paint":[38.8,39.4,38.3,38.6,38.9,38.6,38,38.8,38.1,38.7,39.1,39.1,38.8,38.1,39.5]}},{"b":8,"v":{"total":[16.9,16.1,16.4,16.2,16.1,16.9,16.6,16.2,16.4,17.1,16.2,16.9,17.2,16.6,16],"script":[15.1,14.7,14.7,13.7,14.5,15.6,14.7,14.4,14.3,15.2,13.8,15,15.4,14.3,14.4],"paint":[1.7,0.9,1.6,2.4,0.8,1.1,1.8,1.8,2,1,2.3,0.6,1.6,1.3,0.7]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[4.8]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[2.3]}},{"b":13,"v":{"DEFAULT":[32.5]}},{"b":14,"v":{"DEFAULT":[257.9]}},{"b":15,"v":{"DEFAULT":[58.9]}},{"b":16,"v":{"DEFAULT":[351.8]}}]}, +{"f":35,"b":[{"b":0,"v":{"total":[56.9,57.8,56.7,58,56.9,57.6,57,56.9,56.5,56.1,55.7,57.8,57.6,58.7,56.5],"script":[22.1,22.7,21.8,22.7,22.9,22.6,22.9,22.2,22,22.7,22.5,22.4,22.7,24.1,21.6],"paint":[34.4,34.6,34.4,34.8,33.5,34.6,33.6,34.2,34,32.9,32.8,34.9,34.4,34.2,34.5]}},{"b":1,"v":{"total":[64.3,64.9,63.6,64.5,65.5,64.9,66.1,63.7,63.2,64,63.7,64.3,63.1,63.8,64.3],"script":[27.5,28.2,26.8,28.1,28,28.6,28.4,27,27.7,27.5,27.5,27.9,27.2,27.4,27.7],"paint":[36.3,36.3,36.4,35.9,37.1,35.8,37.2,36.3,35,36,35.7,35.9,35.5,35.9,36.1]}},{"b":2,"v":{"total":[17.6,18,17.9,17,18.4,17.2,17.7,17.6,17.4,17.3,17.1,17.5,18.2,17.2,17.2],"script":[1.9,2.4,2.3,1.4,2.9,2.2,1.9,2,2.4,1.7,1.7,2.3,2.7,1.9,2],"paint":[13.9,13.9,15,14.6,13.5,13.8,14.4,13.6,14,14.6,14.3,14,14.4,13.9,13.6]}},{"b":3,"v":{"total":[3.8,4.5,4.1,4.1,4.3,4.3,4.2,4.3,5.8,4.6,4.8,3.8,4.3,4.1,4.9,4.3,4.1,5.8,4.2,3.7,4.3,4.9,3.8,4.1,3.8],"script":[1.3,1.6,1.8,2.1,1.8,1.8,1.6,2,1.8,1.9,1.8,1.3,1.8,1.7,1.1,1.8,1.5,1.9,1.8,1.3,2.1,2.4,1.4,1.3,1.5],"paint":[1.3,2.8,1.5,1.1,1.6,2.4,1.7,2.2,1.8,1.8,2,2.3,1.7,2.3,1.8,1.9,2.4,1.9,1.4,1.5,1.5,2.4,2.3,2.7,1.4]}},{"b":4,"v":{"total":[18.9,18.5,18.1,19.2,18.4,18,19.4,20.2,18.7,19.1,19.1,18.8,18.7,18.2,18.5],"script":[0.1,0.6,0.2,0.9,0.6,0.3,0.2,0.1,0.8,0.1,1,0.6,0.1,0.6,0.1],"paint":[18,16.3,16.4,17,16,15.4,18.1,18.1,16.7,17,16.6,17,17.4,16.3,16.8]}},{"b":5,"v":{"total":[15.2,15.3,15.5,15.3,15.1,15.4,15.3,15.1,15,15.2,15.2,15.1,15.5,15.4,15.2],"script":[0.1,0.4,0.4,0.5,0.1,0.3,0.1,0.3,0.3,0.4,0.1,0.3,0.3,0.1,0.1],"paint":[14.4,14.5,14.3,14.1,14.1,14.1,14.4,14,13.8,14.1,14.1,13.9,13.9,14.2,14.3]}},{"b":6,"v":{"total":[607.9,608.8,601.6,600.7,602.5,604.4,603.3,605.3,606.3,596.8,599.2,598.5,597.4,598,601.9],"script":[240.5,240.7,240.4,240.6,240.4,241.9,237,237.7,238.3,234.7,238,233.2,234.8,231.9,238],"paint":[360.6,361.1,354.3,353.3,355.4,355.7,359.2,360.8,361.2,355.4,354.5,358.8,355.6,359.4,357.3]}},{"b":7,"v":{"total":[68.1,68.9,67.7,68,68.5,69.4,69.1,68.9,69.1,68.2,69.2,67.3,70.1,68.2,68.4],"script":[27.8,28.5,27.1,28.1,27.7,28.7,28.3,28.9,27.9,27.7,28.8,27.5,29.6,28.5,27],"paint":[39.4,39.5,39.7,38.9,39.8,39.7,39.9,39,40.3,39.6,39.5,38.8,39.6,38.8,40.5]}},{"b":8,"v":{"total":[14.8,14.4,13.8,15.8,14.2,13.8,14.3,14.4,13.4,13.6,13.7,13.9,14.3,13.7,13.6],"script":[12.5,12.5,12,13.6,12.3,12,12.5,12.7,11.5,11.5,11.9,12.4,11.9,11.6,11.2],"paint":[2.2,1.1,0.9,2.1,1.5,1.2,1.7,1.6,1.7,2,1.3,1.4,2.3,2,2.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[4]}},{"b":11,"v":{"DEFAULT":[4.2]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[31.4]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[74.3]}}]}, +{"f":36,"b":[{"b":0,"v":{"total":[42.9,46.5,41.2,43.3,51.2,44.2,50.3,48.4,50.2,48,49.4,46.1,44.5,48.6,49.6],"script":[8.5,8.9,8.7,9.3,9.3,8.6,9.1,8.7,9.1,9,9.8,8.6,8.8,8.3,9.5],"paint":[34.3,32.5,32.3,33.1,33.8,33.4,32.8,33.1,34,35.5,32.7,35.3,32.6,33.1,33.2]}},{"b":1,"v":{"total":[53.6,56.6,56.3,57.5,55.5,53.5,58.5,54.5,51.5,52.8,52.4,57.9,56.4,58.1,57.7],"script":[10.7,10.9,10.7,11.7,10.6,11,10.8,10.5,10.6,10.6,11.2,11.4,10.7,10.8,11.5],"paint":[36.4,35.3,35.7,37.1,35.5,35.2,36.4,35.8,35.8,34.8,36.8,36.3,35,35.7,36.2]}},{"b":2,"v":{"total":[19.8,17.2,17,16.9,16.8,17.1,32.8,33.1,16.9,33.2,33.2,19.5,33,33.4,33.9],"script":[3,2.7,3,3,2.3,1.8,2.6,2.9,3.3,2.8,3.2,2.2,2.9,3.4,3.3],"paint":[13.6,13.9,12.5,13.7,13,14.5,13.6,14.1,13.1,13.4,14,13.8,14.1,13.7,14.9]}},{"b":3,"v":{"total":[4,4.7,5.1,4.1,3.2,4.4,4.2,6.3,3.9,4.3,3.8,7.8,3.6,4,3.7,3.6,4.7,5.2,3.8,4.4,5.1,4,3.8,3.7,3.7],"script":[1.7,1.2,1.4,2.2,1.7,1.8,1.1,0.8,1.3,1.9,1.5,1.7,1.3,0.7,1.2,1,1.4,1.5,1.3,1.1,1.1,1.3,1.3,1.6,1.1],"paint":[0.9,2.4,2.9,1.7,1.4,2.5,1.2,2.7,1.2,2.3,2.2,2.6,1.2,2.4,1.9,2.5,2.2,1.5,2.3,2.2,1.7,2.6,2.3,2,1.2]}},{"b":4,"v":{"total":[20.5,34.1,34.7,34.6,18.6,18.4,34.6,22.7,18.4,21.2,18.6,34,19.2,20.1,18.8],"script":[1.1,1.2,1.8,1.6,1.5,1.6,2.1,1,1.8,1.2,1.1,1.4,1.2,1.4,1.3],"paint":[16.6,15.6,17.3,16.9,17,16.7,16.4,21,16.3,17.4,17,16.3,17.5,18.5,16.5]}},{"b":5,"v":{"total":[15.8,20,20.2,16.1,14.2,19.8,20.5,15.1,15.6,17.3,13.6,14.5,13.8,13.8,19.4],"script":[0.6,0.7,0.7,0.4,0.9,0.7,0.7,0.7,0.7,0.7,0.7,0.5,0.9,0.6,0.7],"paint":[12.7,12.8,12.8,12.5,12.4,12.9,13.2,12.8,12.4,12.7,12.5,13,12.8,12.6,12.9]}},{"b":6,"v":{"total":[443.1,464.4,449.5,438.6,446.9,445.3,438.9,441.4,447.9,449.7,445.4,451,447,447.5,464.4],"script":[92.8,98.2,97.5,91.5,91.8,98.8,93.3,97.8,99.4,98.5,94.9,99.4,93.9,93.8,97],"paint":[342.9,361.9,344,343.3,349.6,342.2,338.9,340.7,346.4,342.8,343.4,343.2,345.7,345.6,361.4]}},{"b":7,"v":{"total":[52.5,53.1,56,56.4,52.2,52.8,51.6,56.2,58.4,53.4,59.4,54.2,52.7,55.6,56.4],"script":[8.5,8.6,8.5,8.7,8.5,8.9,8.7,8.3,8.6,8.9,9.9,8.4,8.3,9.1,8.4],"paint":[38.2,38.7,38.9,38.1,37.9,37.4,37.2,37.8,38.3,38.8,37.6,38.8,38.8,39,38.4]}},{"b":8,"v":{"total":[11.6,12.1,11.5,11.9,10.8,12.1,11.8,12.9,13.7,27.7,11.4,11.7,11.6,12.6,12],"script":[10,10.3,9.2,10.4,9.7,10.3,9.1,9.4,9.4,10.4,9.5,9.4,9.5,10.9,9.6],"paint":[1.5,1.7,2.2,1.4,1.1,1.7,1.6,1.9,1.5,1.3,1.8,2.2,2,1.6,2.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.9]}},{"b":11,"v":{"DEFAULT":[3.1]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[24.2]}},{"b":14,"v":{"DEFAULT":[6.3]}},{"b":15,"v":{"DEFAULT":[2.6]}},{"b":16,"v":{"DEFAULT":[45.9]}}]}, +{"f":37,"b":[{"b":0,"v":{"total":[49.6,47.6,43.6,52,43.3,45.1,49.1,47.4,51.1,51,48.9,42.4,51.9,49.2,49.7],"script":[10.2,10,10.2,10,9.9,10.2,9.8,9.8,10,10.1,9.9,9.9,10.1,10.1,10.2],"paint":[32.3,32.7,32.5,32.5,32.6,33.8,31.5,34.6,32.9,33.5,35,32.4,35,33.2,33.8]}},{"b":1,"v":{"total":[55.8,52.7,52,50.4,61.5,56.5,54.1,54.2,51.8,60.8,52.1,57.1,57.2,50.9,54.9],"script":[13.4,13.5,12.8,13.3,14,12.9,13.9,13.2,13,13.5,13.4,13.4,13.3,12.9,13.1],"paint":[36.5,34.6,36.1,35.7,36.6,34.1,33.9,36,34.5,35.5,35,34.2,35.6,34.5,34.1]}},{"b":2,"v":{"total":[32.1,18.3,32.3,31.1,32.3,32.8,15.9,16.9,16.2,17.4,31.7,16.3,16.4,18.2,16.9],"script":[1.6,1.8,1.9,1.3,1.9,1.9,1.5,0.8,2.4,1.3,1.8,1.9,1.9,2,1.5],"paint":[14.7,14.9,14.4,13.8,13.2,14.4,13.4,14.7,13.8,14.3,13.2,14.3,13.6,14.2,14.4]}},{"b":3,"v":{"total":[3.6,4.4,4.1,4.2,3.8,3.5,3.5,4,4.2,3.9,4.8,3.5,4.3,4,3.9,4.8,3.9,3.6,4,4.2,4.3,3.8,3.4,4,4],"script":[1.3,0.9,1.4,1.7,0.7,1.1,0.9,1.2,0.9,1.2,0.7,1.5,1.8,1.7,1.4,0.3,1.4,1.1,0.8,0.5,1.2,0.9,1.1,1.2,1.2],"paint":[2.2,3.3,0.7,1.6,0.9,2,1.7,2.5,3.2,1.6,2.8,1.2,1.8,1.4,1.8,2.6,1.8,1.1,2.3,2.4,2.1,2.1,1.8,1.3,2.3]}},{"b":4,"v":{"total":[35.5,22.6,18.4,34.9,19.4,21.8,19.1,20.2,34.8,20.8,21.7,21.5,21.3,19.1,19.5],"script":[2.2,1.8,1.7,1.6,0.7,2.1,0.8,1.9,1,1.4,1.2,1.3,0.8,1,1.3],"paint":[16.6,18.9,16.5,17.4,17.7,16.5,18.2,17,16.9,18.5,16.5,17.5,17.7,18,16.5]}},{"b":5,"v":{"total":[16.5,17.8,17.2,14.1,17.4,15.7,13.9,14.9,16,21.1,18.3,16.7,17.7,18.2,18.6],"script":[0.5,0.7,0.5,0.7,0.3,0.6,0.6,0.3,0.3,0.6,0.5,0.3,0.4,0.6,0.3],"paint":[12.9,13.2,12.9,13,13.3,12.7,13.1,13.3,13.2,13,12.9,13.3,13.4,12.8,13.2]}},{"b":6,"v":{"total":[455.4,461.8,466.6,460.3,442.5,462.1,457.9,459.9,457.5,451.7,467.8,465.9,442.6,469.2,465.8],"script":[103.9,105.8,106.9,105.1,105.7,105.6,107.1,105,105.8,106.5,106.6,107.7,105.2,108.2,107.6],"paint":[348,350.6,350.2,351.7,334.7,348.5,343.1,352.8,349.5,341.2,358.3,352.5,331.5,354.9,356.1]}},{"b":7,"v":{"total":[97.1,98.3,102.9,97.4,97.8,102.4,102,100.2,98.8,105.3,103.9,99.7,98.6,98.4,103.4],"script":[22.1,21.8,22,22,21.9,22.3,22.5,21.9,22.2,22.4,22.4,22.3,22.3,22.4,22.2],"paint":[69.2,70.3,70.8,69.7,70.2,71.1,71.4,71.9,70,72.8,71,70.8,70.4,69.8,70.7]}},{"b":8,"v":{"total":[13.6,13.9,13.4,14.9,14.8,12.4,13.6,29.1,14.8,12.5,12.9,14.3,13.9,15.2,12.7],"script":[10.9,11.3,12.3,11.4,12.4,10.3,12.3,12,11.2,10.7,11.2,10.7,11.7,11.5,11.2],"paint":[1.8,2.6,1.1,1.3,2.3,1.3,1.2,1.1,1,0.4,0.9,1.3,2.1,1.4,1.5]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[27.5]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[102.4]}}]}, +{"f":38,"b":[{"b":0,"v":{"total":[43.8,45.3,45.5,44.8,45.5,45.5,46,44.5,44.9,44.6,45.6,45.8,46.3,45.5,45.5],"script":[10.7,10.4,10.5,10.7,10.5,11.5,11.8,10.6,10.4,10.4,10.5,11.5,11.9,11.8,10.5],"paint":[32.6,34.5,34.4,33.7,34.6,33.6,33.8,33.5,34,33.6,34.6,33.9,34,33.2,34.5]}},{"b":1,"v":{"total":[85.3,83.9,86.2,86.1,87.4,84.5,84.9,87.1,84,84,85.6,86.8,86.4,84.7,84.4],"script":[51.5,49.9,51.9,51,51.9,47.9,50.1,52.3,50,49.9,50.7,51.7,51.4,48.3,50.2],"paint":[33.3,33.5,33.8,34.7,35,36.1,34.3,34.4,33.5,33.7,34.5,34.7,34.5,36,33.8]}},{"b":2,"v":{"total":[26.5,25.4,26,26.1,25.6,25.2,26.9,26.3,26.4,26.1,25.6,27.2,25.8,25,27.4],"script":[10.1,10,10.3,10.2,9.9,10.6,10.4,10.2,10.4,10.5,10.2,11.5,10.4,10.4,9.9],"paint":[14.7,13.9,13.7,14.8,13.8,13.6,15.1,15.1,13.6,14.3,13.9,13.8,14.2,13.9,15.7]}},{"b":3,"v":{"total":[11,12.4,11.4,11.6,11.9,11.3,12,11.7,12.9,12,11.4,12,11.8,11.4,12,12.6,11.2,12,11.7,12.1,12.3,12.5,11.4,12.4,11.8],"script":[8.4,9,8.2,8.8,8.8,8.5,9.1,9,9.3,9.1,8.9,9.5,8.1,9.2,8.9,9.3,8.8,9.4,8.9,9.5,9.5,9.2,9.1,9.8,8.9],"paint":[1.6,2.2,2,2.7,2.8,2.7,1.9,2.1,2,2.8,1.7,1.6,3.5,1.5,2.2,2.4,1.7,1.6,1.5,1.7,2.6,3.2,1.4,1.6,2.1]}},{"b":4,"v":{"total":[168,164.3,164.6,172.9,165.4,162,162.9,162,160.7,161.5,166.6,161.1,162.7,162.8,162.3],"script":[27,23.9,23.3,26.2,23.9,22.8,23.6,23.1,23.7,23.6,24.4,23.4,23.5,23,24.2],"paint":[138.8,138.1,139.6,144.6,140.1,137.5,137.7,137.1,135.8,136.6,140.2,136.3,137.6,138.5,136.4]}},{"b":5,"v":{"total":[90,86.9,86.5,86.2,88.9,85.1,89.2,88.3,90.2,89.5,90.7,90.3,87.3,87.4,88],"script":[16.3,15.5,15.4,15.9,17.1,15.4,17.3,16.2,16.1,15.6,15.8,15.8,15.7,15.6,15.6],"paint":[71.8,70,69.8,68.6,70.1,68.5,70.2,70.8,72.3,72.5,72.9,73,70,70.2,70.8]}},{"b":6,"v":{"total":[456.6,462.2,452.2,448.4,457.1,458.5,458.6,449.9,459.9,456.5,454.3,457.9,454.9,463.3,448.6],"script":[113.1,114.2,110.6,110.4,114.6,116.4,114.1,109.8,114.4,112.5,112.6,110.8,110.4,115.8,109.8],"paint":[336.6,341.3,334.8,331.3,335.8,335.4,337.9,333.5,338.8,337.4,334.9,340.4,337.8,340.9,332.1]}},{"b":7,"v":{"total":[52.4,51.3,53.2,51.7,50.8,51.2,50.8,51.6,52.9,49.9,50.9,50.8,51.5,50.8,50],"script":[12.5,12.3,12.2,12.9,11.8,12.4,12.3,12.5,12.7,12.1,12.1,12.2,12.4,12.2,11.9],"paint":[39,38.2,40.2,37.9,38.1,38,37.6,38.2,39.3,36.9,38,37.5,38.3,37.7,37.3]}},{"b":8,"v":{"total":[14,14.6,15.1,15.2,14.7,15.1,14.6,14.6,14.2,14.5,13.8,14.8,14.3,14.4,14.4],"script":[13,12.8,12.8,13.4,12.8,12.7,12.6,12.7,12.6,12.2,12.4,13.5,12.4,12.7,12.3],"paint":[0.4,1.8,1.8,1.6,1.2,2.3,1.9,1.8,1.3,2.2,1.3,1.2,1.6,0.8,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[22.7]}},{"b":14,"v":{"DEFAULT":[12.8]}},{"b":15,"v":{"DEFAULT":[4.8]}},{"b":16,"v":{"DEFAULT":[49.7]}}]}, +{"f":39,"b":[{"b":0,"v":{"total":[38.5,41.3,39,39.1,40.7,39.6,39.2,38.5,40.9,39.1,38.4,40.6,41,38.9,39.1],"script":[5.4,5.7,5.6,5.4,5.5,5.8,5.8,5.3,5.5,5.5,5.4,5.6,5.5,5.6,5.8],"paint":[32.7,35.1,33,33.3,34.8,33.4,33,32.8,35.1,33.2,32.5,34.6,35.1,33,32.9]}},{"b":1,"v":{"total":[42.2,42.2,45.7,43.5,41.5,41.9,41.7,44.5,42.9,42.3,41.3,41.5,43.9,43.1,43.3],"script":[7.7,7.9,8.4,8.1,7.8,7.9,8,8.1,8.2,8,7.8,7.8,8,8.1,8.3],"paint":[34,33.9,36.9,35,33.3,33.6,33.2,36,34.2,33.9,33.1,33.3,35.5,34.5,34.5]}},{"b":2,"v":{"total":[17.1,17.1,17,16.8,16.9,16.6,17.9,16.9,16.3,18.3,16.9,16.7,18.1,16.3,15.9],"script":[1.8,1,1,1.5,1.8,1.6,1.7,1.7,1.7,1.9,1.6,1.3,1.9,1.6,1.4],"paint":[14,15,13.7,14.2,14.1,13.4,14.6,13.7,13.3,15.3,13.9,14.4,15.1,13.4,13.3]}},{"b":3,"v":{"total":[2.8,3.9,5.1,3.7,3.4,3.1,3.6,3.6,4,3.1,3,2.8,3,3.2,4.4,3.6,3.6,4.1,3.9,3,3.5,3,2.7,3,4.3],"script":[0.2,1.2,1.1,1.5,1,0.9,0.9,1.1,1.1,1.3,0.2,0.6,0.8,1,1.1,1,0.8,0.9,0.8,1.1,0.8,0.2,0.8,0.8,1.4],"paint":[0.5,1.8,1.4,1.5,2.3,2.1,1.8,1.1,1.9,1.8,2.7,1.2,2.1,1.5,1.3,2,2.6,1.4,2.2,1,1.7,2.8,1.3,2,2.7]}},{"b":4,"v":{"total":[19.6,19.7,19.5,19.2,19.9,19.4,19.5,19.7,20.3,19.7,19.3,19.9,19.2,19,19],"script":[1.6,1.8,1.3,1.2,1.4,0.7,1.2,1.1,1.4,1,1.4,1.5,1.3,1.1,1.3],"paint":[16.7,16.4,16.9,16.9,17.2,16.6,16.3,16.8,17.2,17.4,16.6,16.8,15.7,17.2,16.7]}},{"b":5,"v":{"total":[15,15.1,15.4,15.5,15.4,15.4,14.9,15.3,14.9,15.2,15.6,14.9,14.9,15.4,15.3],"script":[0.3,0.6,0.5,0.6,0.6,0.5,0.5,0.6,0.6,0.6,0.5,0.3,0.6,0.5,0.6],"paint":[14,13.9,14.2,13.7,13.9,14,13.4,13.9,13.6,13.8,13.8,13.6,13.3,14.1,13.9]}},{"b":6,"v":{"total":[403.6,404.9,404.8,403.9,395.6,406.9,389.9,397.9,391.8,398.4,404.2,395,403.2,395.5,395],"script":[57.9,59.8,59.4,58,56.6,58.5,55.9,57,57,57.2,56,57,56.8,56.2,57.7],"paint":[338.4,337.9,338.7,339.3,332.3,341.7,327.3,334.2,327.6,334.4,341.6,331.3,339.7,332.6,330.6]}},{"b":7,"v":{"total":[43.7,44.4,43.3,43.1,42.4,44.7,43.1,42,43.7,43.5,43,43.2,43.4,42.9,42.9],"script":[5.7,5.9,5.1,5.1,5.2,5.3,5.1,5.2,5.9,5.9,5,5.5,5.6,5.5,5.2],"paint":[37.2,37.6,37.4,37.2,36.3,38.6,37.1,36,37,36.8,37.1,36.9,36.9,36.6,36.8]}},{"b":8,"v":{"total":[12.3,12.2,12.4,13.1,12.4,12.5,13.1,12.4,12.3,12.9,13.6,12.3,13.2,13,13.1],"script":[10.5,11,10.2,10.9,10.5,10.9,11,10.7,10.3,10.6,11.9,10.9,10.7,10.8,11.4],"paint":[1.7,0.5,2.1,1.9,1.8,1.5,1.8,1.5,1.9,2.2,1.6,1.3,0.6,2.1,1.6]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[21.2]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[70.3]}}]}, +{"f":40,"b":[{"b":0,"v":{"total":[36.2,36,36.3,35.7,36,37.9,36.1,35.6,35.9,36,37.2,35.9,36.5,37.8,35.5],"script":[3,3,3.1,2.9,3,3.4,3.3,2.9,2.9,3,3,2.9,3,3.1,2.9],"paint":[32.8,32.6,32.8,32.4,32.6,34.1,32.4,32.3,32.5,32.5,33.8,32.5,33.1,34.2,32.1]}},{"b":1,"v":{"total":[41.3,41.2,39.4,39.8,39.7,39.9,41.7,40.4,40.8,40.3,41.7,41.2,40.4,40.3,41.8],"script":[5.6,5.4,5.5,5.4,5.4,5.4,5.8,5.6,5.5,5.7,5.6,5.5,5.5,5.6,5.6],"paint":[35.2,35.3,33.4,34,33.9,34.1,35.4,34.4,34.9,34.3,35.7,35.3,34.5,34.3,35.7]}},{"b":2,"v":{"total":[16.9,16.2,16.9,16.4,15.6,16.6,16.8,15.9,15.8,16.5,17.2,16.4,16.5,16.4,16.3],"script":[1.3,1.7,2,1.5,1.1,1.2,1.2,1,1.3,1.5,1.1,1.1,1.5,1.4,1],"paint":[13.7,12.7,13.5,13.6,13.2,13.9,14.1,13.4,12.7,13.9,14.5,13.1,13,12.7,13.8]}},{"b":3,"v":{"total":[4.4,3.2,3.4,2.9,3.4,3.4,3.4,3.7,4.3,3.2,2.9,3.3,3.1,2.7,3.7,6.1,3.5,3.8,3.8,2.6,3.5,3.7,3.2,4.3,4.4],"script":[0.9,0.2,1.5,0.7,1,1.1,1,1.2,1.2,0.6,0.6,1,0.8,0.3,1,0.2,1.1,1.1,1.3,0.6,1,1.1,1,1.3,0.9],"paint":[2.2,2.9,1.4,2.1,2.1,2.2,2,2.4,2.9,1.9,1.6,2.2,1.9,2.3,2.6,2.6,2.2,1.8,2.5,1,1.9,1.5,2.1,1.6,1.7]}},{"b":4,"v":{"total":[18.9,18.8,18.7,20.8,18.6,19,18.8,19,19.7,18.7,18.5,18.2,18.6,18.6,19.1],"script":[1.7,0.6,1.1,1.5,1.6,1,1.4,0.9,1.3,0.9,0.9,1.2,1,1.1,1.6],"paint":[15.9,16.6,16,16.8,15.5,17,16.3,16,17.2,16.2,16.2,15.6,15.8,16.3,15.7]}},{"b":5,"v":{"total":[15.3,14.7,14.9,14.7,14.8,14.8,14.9,14.8,14.8,14.8,15.6,14.8,15.2,14.8,15],"script":[0.6,0.5,0.6,0.5,0.6,0.5,0.4,0.5,0.5,0.5,0.3,0.5,0.5,0.4,0.4],"paint":[14,13.5,13.6,13.2,13.6,13.5,13.2,13.2,13.7,13.5,14.1,13.6,13.9,13.4,13.8]}},{"b":6,"v":{"total":[375.9,383.5,378.9,374.4,373,375.8,382.2,382.3,382.6,379.7,379.9,390,380.8,377.2,381.4],"script":[39.8,38.8,42.5,39.9,38.4,40.6,39.7,39.5,40,40.5,40.8,40.6,40.3,41.6,41.2],"paint":[329.2,337.2,329.4,327.4,327.6,328.3,335.5,335.8,335.8,332.3,332.3,342.6,333.7,328.8,332.2]}},{"b":7,"v":{"total":[43,43.1,44.9,43.8,43.1,43.5,42.7,43.2,42.3,43,42.8,43.1,42.5,44.8,43.3],"script":[3.1,3.1,3.3,3.2,3.1,3.1,3.1,3.2,3.2,3.2,3.1,3.2,3.1,3.3,3.1],"paint":[39,39.1,40.7,39.8,39.1,39.5,38.7,39.2,38.2,38.9,38.8,39.1,38.5,40.6,39.3]}},{"b":8,"v":{"total":[12.1,11.7,11.7,11.8,11.5,11.8,12.2,11.4,11.1,11.7,11.3,11.4,11.8,12,11.2],"script":[9.6,10.1,9.9,9.6,9.6,9.7,10.1,10,9.9,9.9,9.8,9.9,10,10.1,9.6],"paint":[2.1,1.5,1.7,2.1,1.3,1.7,1.5,0.4,1.1,1.3,0.4,1.4,1.8,1.3,0.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.1]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[16.3]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[50.5]}}]}, +{"f":41,"b":[{"b":0,"v":{"total":[51.6,49.9,50.1,49.7,50.2,49.8,49.8,49.4,49.6,49.3,49.3,51,50.2,50.4,51.6],"script":[16.2,15.3,15.2,16.1,15.5,15,15.9,15.4,15.4,15,15.1,15.7,15.8,15.8,16.4],"paint":[34.9,34.2,34.5,33.1,34.2,34.4,33.5,33.6,33.8,33.9,33.7,34.8,34,34.1,34.7]}},{"b":1,"v":{"total":[58,58,56.7,56.7,57.6,56.3,57.2,56.8,56.9,56.7,57.6,57.1,56.3,56.1,57.5],"script":[21.8,21.2,21.1,21,20.8,20.6,21.1,21.2,21.1,21.1,21.6,21.1,20.8,21.1,22.3],"paint":[35.8,36.3,35.2,35.3,36.3,35.2,35.6,35.2,35.4,35.2,35.6,35.6,35.1,34.6,34.8]}},{"b":2,"v":{"total":[16.4,16,17.4,16.7,16.6,16.3,16.7,16.8,17.3,18.1,16,16.8,17.3,17.1,16.7],"script":[1.3,1.2,1.5,1,1,1.3,1.3,1.1,1.5,2,0.6,1.7,2.1,1.5,0.9],"paint":[13.9,13.1,14.1,14.1,14.7,13.5,14.4,14.4,14.1,14.7,13.2,13.5,14,14.8,14.1]}},{"b":3,"v":{"total":[3.6,2.4,2.6,3.9,2.9,3,5.9,3,3.1,3,2.5,3.3,4.5,2.9,2.6,2.8,2.8,3.5,2.7,2.6,4.3,3.3,2.5,4.8,2.8],"script":[0.9,0.1,1.1,1.1,1,0.7,0.7,0.7,0.1,1,0.8,1,0.9,0.1,0.2,0.2,0.1,1.3,0.6,0.1,0.6,0.9,0.6,0.1,0.6],"paint":[1.8,1.3,1.4,1.7,1.9,2.2,2.1,2.2,2.8,2,1.6,1.4,1.6,2.6,0.5,1.6,1.9,2.1,1.4,2.4,1.9,1.6,1.3,1.6,1.4]}},{"b":4,"v":{"total":[20.3,20.5,20.3,21,20.1,20.2,21.1,20.1,21,19.9,21.5,20.2,20.2,20.3,20.5],"script":[2.5,2.3,2.8,3.2,2.5,2.8,3,2.3,3,2.1,2.6,3.3,2.2,2.6,2.8],"paint":[16.2,16.8,15.7,16.3,16.3,15.4,16.7,16.4,16.3,15.6,16.5,15.5,16.7,16.6,16.1]}},{"b":5,"v":{"total":[16.8,16.1,16,15.8,16,16.1,16,15.9,16.5,15.5,16.1,16,15.9,16.5,15.9],"script":[1.2,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.3,1.2,1.2,1.3,1.3],"paint":[14.8,13.8,14,13.8,14,14.1,14,13.6,14.4,13.5,13.8,14,14,14.5,13.7]}},{"b":6,"v":{"total":[546,539.8,523.4,534.9,546.1,529.1,548.4,528.7,552.8,530.8,541.9,536.7,532.7,546.1,516.7],"script":[175.4,169.8,177.6,175.6,175.9,174.9,175.3,174.2,175,174.9,171.5,178.2,176.9,177.6,174.2],"paint":[363.7,363.3,339.1,352.4,363.5,347.4,366.4,347.9,371,349.1,363.5,351.6,349.1,361.7,335.5]}},{"b":7,"v":{"total":[59.2,58.5,58.8,60.7,60.5,59.5,58.7,58.6,61.1,59.8,59,61.5,60.8,59.6,58.4],"script":[19.2,19,19,20.2,18.9,19.3,18.5,19,19.5,19.9,18.7,21.3,20.5,18.8,18.6],"paint":[39.2,38.7,38.9,39.6,40.7,39.3,39.3,38.6,40.7,39,39.4,39.3,39.4,39.9,38.9]}},{"b":8,"v":{"total":[25.5,25.8,26.6,24.8,24.2,23.4,25.2,26.1,24.6,26.1,25.6,25,25,24.4,24.8],"script":[23.4,24.1,24.4,23.4,22.7,21.4,23.3,23.4,23.1,24.3,23.4,22.6,23,23,23.1],"paint":[1.5,1.5,2.1,1,1.4,1.8,1.8,2.6,1.4,0.9,2,1.3,1.9,1.4,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.5]}},{"b":11,"v":{"DEFAULT":[4.6]}},{"b":12,"v":{"DEFAULT":[2.4]}},{"b":13,"v":{"DEFAULT":[38.9]}},{"b":14,"v":{"DEFAULT":[20]}},{"b":15,"v":{"DEFAULT":[8.4]}},{"b":16,"v":{"DEFAULT":[72.8]}}]}, +{"f":42,"b":[{"b":0,"v":{"total":[73.7,76.9,75.9,76.9,78.3,76.5,80.9,75.7,77.4,76.2,75.7,76.9,75,76,76.5],"script":[39.1,41,40.4,40.8,41.7,41,42.2,39.7,40.9,40.3,39.8,41.3,39.6,39.9,40.5],"paint":[34.2,35.4,34.9,35.5,36.2,35.1,38.2,35.5,36.1,35.5,35.5,35.2,34.9,35.6,35.6]}},{"b":1,"v":{"total":[99.1,98.9,100.9,99,98.8,100.1,98.4,99.1,99.1,97.8,101.1,97.7,97.2,101.8,99.7],"script":[62.1,62.1,61.8,62.4,61.8,62.5,61.9,62,62.2,60.6,64.2,61.1,60.2,64.6,62.4],"paint":[36.5,36.4,38.6,36.1,36.5,37.1,36,36.5,36.4,36.7,36.4,36.1,36.6,36.7,36.8]}},{"b":2,"v":{"total":[19.3,19.3,17.4,19.1,18.2,17.9,18.3,17.8,18,18.3,17.9,18.5,18.4,18,18.4],"script":[2.4,1.9,2.3,2.7,1.7,2.1,2.3,2.2,2.1,2.6,1.5,2.6,2.2,1.9,2.8],"paint":[14.5,15.8,13.6,14.6,15.2,13.5,13.3,14,14.6,14.7,15,14.4,15.1,14.7,14.1]}},{"b":3,"v":{"total":[16.5,15.6,17,14.7,14.4,14.5,14.1,13.6,13.7,13.4,14.6,13.8,14.4,13.4,14.9,14.2,15.8,14.8,14.5,13.3,15.5,15.6,14.2,14.1,14.2],"script":[12.2,11.8,12.7,11.5,11.2,11.3,10.3,10.3,10.1,9.9,11.3,10.2,11.3,10.3,11.2,10.7,12.2,11.1,11.5,9.9,11.9,12.2,10.8,11.2,10.8],"paint":[3.1,3.6,2.9,3,1.9,2.5,3,3.1,3,2.1,2.5,3.1,2.3,2.9,3.6,3.3,2.1,2.6,1.6,2.9,3.4,3.2,2.8,1,3.2]}},{"b":4,"v":{"total":[172.2,172.8,174.1,170.9,173.1,171.9,172.6,175,173.7,174.9,172.1,174.3,170.6,170.7,171.8],"script":[24.8,25.3,26.1,25.4,26,25.7,25.2,26,25.6,27,25.8,25,25.1,24.5,24.7],"paint":[144.9,145.5,145.4,143.6,145.9,143.9,145.7,147.3,145.5,146.3,144.1,147.1,143.2,144.2,144.5]}},{"b":5,"v":{"total":[18,18,17.6,17.3,17.1,17.2,17.2,17,17.2,18.9,18.2,18.4,18.5,17.9,18],"script":[1.9,1.9,1.6,1.6,1.5,1.7,1.5,1.3,1.4,1.6,1.9,1.9,1.4,1.8,1.9],"paint":[15.3,15,15.1,14.6,14.7,14.5,14.7,14.9,15.1,16,15.1,15.2,16,15.2,15.3]}},{"b":6,"v":{"total":[722.6,717.6,699.5,706.6,705.5,699.5,710.8,701.7,707.8,719.3,710.2,720.5,699.6,723.5,715.5],"script":[338.8,336.3,353.9,357.6,354.3,350.8,356.3,354.1,356.5,339.2,358.3,348.8,351.1,340.9,338.5],"paint":[376.7,374.1,338.7,342,344.2,341.8,347.5,340.7,344.4,373.3,344.8,364.7,341.1,375.7,370.1]}},{"b":7,"v":{"total":[85,84.1,85.6,83.4,84,83.9,82.2,83.1,86.3,83.7,84,85.3,82,82.7,86.2],"script":[42.8,41.9,42.9,41.6,41.8,42.2,40,42.3,43,42.1,42.2,43.2,41.1,41.2,44],"paint":[41.2,41.2,41.8,40.8,41.2,40.7,41.2,39.8,42.2,40.6,40.7,41.2,40,40.6,41.3]}},{"b":8,"v":{"total":[57,59.2,67.4,59.3,55.6,57.1,57.8,57.8,55.6,57.4,58.1,55.6,57.5,58.9,67.9],"script":[54.6,57,65.2,57.2,53.5,54.9,55.3,55.7,53.3,55,56.3,53.6,55,56.7,65.7],"paint":[1.4,2,1.4,2,2,1.3,1.1,2,1.6,1.9,1.8,1.1,2.4,2.1,2]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[12.7]}},{"b":11,"v":{"DEFAULT":[12.8]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[75.4]}},{"b":14,"v":{"DEFAULT":[70.4]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[109.3]}}]}, +{"f":43,"b":[{"b":0,"v":{"total":[42.5,40.7,41.7,40.5,42.5,40.5,41.5,40,40.5,41,40.2,40.3,41.1,42.5,41.9],"script":[7.1,7.3,7.5,7.2,7.3,7.2,7.8,7,7.2,7.4,7.3,7,7.2,7.1,7.3],"paint":[35,33,33.7,32.9,34.8,32.9,33.3,32.5,32.9,33.2,32.5,32.8,33.5,35,34.2]}},{"b":1,"v":{"total":[46,45.8,45.3,45.5,45.8,46.3,46.9,46.8,45.8,46,45.8,47.6,46.2,48.4,46.2],"script":[11.3,11,11,10.8,11.1,11.2,11.3,11.4,11.2,10.7,11,11.2,11.3,12.3,11],"paint":[34.3,34.3,33.8,34.2,34.3,34.6,35.1,34.9,34.2,34.9,34.4,35.9,34.5,35.7,34.7]}},{"b":2,"v":{"total":[17.8,18.4,18.1,19.3,18.3,17.6,20.7,17.7,17.3,17.3,17,18.1,17.9,18.1,18.2],"script":[2.6,2.6,2.5,2.8,2.9,2.8,3,2.8,2.8,2,2,2.7,3,2.8,2.5],"paint":[12.7,14.4,14.3,15.3,13.4,12.7,15.3,13.7,13.3,13.7,13.5,14.1,13.8,13.2,14.6]}},{"b":3,"v":{"total":[3.4,2.8,4.1,2.9,4,3,3.3,3.4,3.7,3.6,3.6,5,4.3,4.9,3.5,3.1,3.8,3.4,3.5,3.5,3,3.2,3.5,4.3,4.9],"script":[1,0.6,1.7,0.6,1.6,1.2,1,0.7,0.6,1.2,1,1.5,1,1.2,1,0.9,1.2,1,0.7,1.4,0.9,1.1,0.8,0.9,1],"paint":[1.6,1.3,2.3,1.3,2.3,1.6,1.8,1.6,2.6,2.3,1.5,2,2.3,2.2,2.5,1.3,2.5,1.6,2.6,2.1,2,1.6,1.6,1,1.6]}},{"b":4,"v":{"total":[18.9,20.5,20.1,20.2,19.6,19.6,19.5,19.7,19,19.6,19.3,20.1,20.6,19.8,20],"script":[1.8,2.3,2.1,1.8,1.6,1.8,0.9,1.7,1.5,1.5,1.8,1.7,1.2,1.5,1.4],"paint":[15.5,17.1,16.4,17.2,17,16.8,16.7,16.8,16.2,16,14.8,16.1,18.1,16.9,17.3]}},{"b":5,"v":{"total":[15.7,15.4,15.9,15.4,15.7,15.2,15.4,15.4,15.8,16.1,15.4,15.4,15.4,15.6,15.4],"script":[0.6,0.6,0.6,0.6,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.6],"paint":[14,14,14.5,14.1,14.3,13.9,14,14,14.5,14.2,13.8,14,14,14.5,13.8]}},{"b":6,"v":{"total":[406.4,407.8,412.2,417.8,409.2,414.3,404.2,405.3,412.8,406.6,404.1,411.9,403.5,406.6,413.7],"script":[67.8,67.1,67,71,67.6,67.1,66.2,67.2,71.6,68,66.2,71.3,68.6,67.2,66.3],"paint":[331.9,334.1,338.6,340.2,335,340.6,331.3,331.5,334.6,331.8,331.2,333.9,328.2,332.8,340.7]}},{"b":7,"v":{"total":[44.9,46,47.5,46,47.4,46.8,45.9,45.4,45.7,47.3,45.9,45.3,45.2,46.9,45.7],"script":[6.8,7.5,7.1,6.8,7.1,7.2,7.2,7,7.1,7.8,7.5,7,7.1,6.9,7],"paint":[37.3,37.6,39.6,38.3,39.4,38.8,37.9,37.6,37.7,38.6,37.5,37.4,37.3,39.2,37.9]}},{"b":8,"v":{"total":[14.8,14.3,14.4,14.4,14,14.8,14.6,15.4,14.5,14.2,14.9,14.7,14.9,15.2,15.2],"script":[12.6,12.5,12.9,13,12.7,12.3,12.8,13.8,12.3,13,12.9,12.8,12.9,13.5,13.2],"paint":[2.1,1.7,1.3,0.4,0.4,2.3,1,1.3,0.8,1.1,2,1.8,1.9,0.8,1.9]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[5.1]}},{"b":11,"v":{"DEFAULT":[5.2]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[30]}},{"b":14,"v":{"DEFAULT":[74.8]}},{"b":15,"v":{"DEFAULT":[24.4]}},{"b":16,"v":{"DEFAULT":[118.1]}}]}, +{"f":44,"b":[{"b":0,"v":{"total":[82.4,81.5,81.7,79.5,85.7,81.4,87.6,80.2,82.2,80.7,80.6,79.3,79.2,82.3,80.6],"script":[46.6,45.8,46.5,43.9,49.9,46,51.6,43.5,46.2,45.1,45.4,44.1,44.2,46.8,45.3],"paint":[35.3,35.2,34.8,35.2,35.4,35,35.6,36.2,35.6,35.2,34.8,34.8,34.5,35.1,34.8]}},{"b":1,"v":{"total":[109.2,112.9,108.9,114,108.6,110.8,112.4,106.5,108.6,109.5,108.8,106.8,110.6,109.4,110.8],"script":[77,77.9,76,82,76.6,78.5,80.2,75.3,76.7,77.4,77.3,75,79,78,79.5],"paint":[31.7,34.5,32.4,31.5,31.5,31.8,31.7,30.8,31.5,31.6,31,31.4,31.2,30.9,30.9]}},{"b":2,"v":{"total":[24.5,24.4,24.1,25.2,24.2,24.8,24.5,23.9,24.2,24,23.8,23.6,23.9,23.4,23.3],"script":[8.6,8,8,8.3,8.3,8.4,8.6,8.2,8.2,7.7,7.8,8.1,8.3,8.3,7.8],"paint":[14,15,14.6,14.8,14.6,13.8,14.6,14.5,14.3,14.6,14.9,13.9,14.3,13.8,14.1]}},{"b":3,"v":{"total":[13,12,12.1,12,13,11.9,12.6,11.8,11.5,11.8,12.3,12.7,12.6,11.7,12.7,11.8,11.5,12.4,12.2,12.5,12,12.3,12.5,11.8,12.5],"script":[9.9,9.3,9,9.3,9.8,9.7,9.1,9,8.9,9.4,9,9.8,9.4,8.9,9.9,9.6,8.4,9.9,9.1,9.6,10,9.4,9.9,9.1,9],"paint":[2,2.5,2.9,2.1,2.4,1.5,2.4,1.7,1.6,1.2,2.9,2.7,2,2.6,1.2,2,2.6,1.7,1.8,2.8,1.1,1.8,1.7,2.4,2.7]}},{"b":4,"v":{"total":[171.1,167.6,165.2,160.1,164.3,165.3,162.6,160.4,161.5,170.3,163.4,165.3,165.5,162.1,168.3],"script":[24,22.6,23.6,22.5,22.7,22.8,22.6,22.5,22.5,22.9,22.3,23.2,21.9,22.5,23.6],"paint":[145.3,143,139.8,136.2,139.9,141,138,135.7,137.3,146,139.5,139.8,140.9,136.8,142.7]}},{"b":5,"v":{"total":[19.2,19.2,19.1,19,18.9,18.6,19,19,19.2,19,18.9,19.1,18.9,19,18.9],"script":[3.8,4.1,3.8,3.7,3.8,3.8,3.8,4,3.8,3.7,3.7,3.8,3.7,3.8,3.7],"paint":[14.6,14,14.6,14.5,14.2,13.5,14.3,14,14.6,14.2,14.4,14.6,14.3,14.2,14.2]}},{"b":6,"v":{"total":[686.3,682.1,675.9,679.9,683.7,683.5,682.4,676.5,692.4,680,682.9,679.5,679.8,679.9,683.9],"script":[348.6,349.2,343.1,347.2,345.8,346.2,348.6,345.1,353.7,346.6,348.4,343.7,346.9,343.6,346.9],"paint":[330.1,326.2,326.2,326,331.2,330.6,327.2,324.8,332,326.8,327.7,329,326.1,329.6,330.2]}},{"b":7,"v":{"total":[83.1,82.5,83.5,81,80.7,86,82,82.2,86,88.7,80.8,82.1,90,82.8,84],"script":[42.7,41.5,43,40.7,40.7,45.1,41.3,42,45.7,46.8,40.8,41.2,48.8,41.9,41.8],"paint":[39.4,40.2,39.6,39.4,39.1,40,39.8,39.3,39.4,41,39.1,40,40.3,40,41.2]}},{"b":8,"v":{"total":[49.3,50.2,51.3,49.3,52.8,50.4,52,50.5,50.7,46.9,51.4,53.4,53.4,53.1,50.2],"script":[46.5,47.3,49,47.2,49.8,48,50,48.5,48.7,44.5,49.5,50.9,50.7,51,47.9],"paint":[1.8,2.8,2.2,2,2.4,2.3,1.1,1.9,1,2.3,1.7,2.4,2.1,1.1,1.2]}},{"b":9,"v":{"DEFAULT":[3.2]}},{"b":10,"v":{"DEFAULT":[15.3]}},{"b":11,"v":{"DEFAULT":[15.4]}},{"b":12,"v":{"DEFAULT":[4.4]}},{"b":13,"v":{"DEFAULT":[115.3]}},{"b":14,"v":{"DEFAULT":[720.4]}},{"b":15,"v":{"DEFAULT":[80.1]}},{"b":16,"v":{"DEFAULT":[871.3]}}]}, +{"f":45,"b":[{"b":0,"v":{"total":[51.3,49.6,49.7,50.8,53.1,49.4,49.2,49.6,51,51.4,52.5,51.7,51.3,51,50.6],"script":[17.3,16.5,16.5,16.7,18.6,16.2,16.2,16.5,17.1,17.7,18,17.1,17.6,17.4,16.8],"paint":[33.5,32.7,32.8,33.6,34.1,32.8,32.5,32.7,33.5,33.3,34,34.1,33.3,33.1,33.3]}},{"b":1,"v":{"total":[57.1,58,56.1,56,56,57.4,56.4,57.2,56.7,56.4,57.5,56.4,56,55.9,57.9],"script":[21.2,22.4,21,21,20.8,21.6,21.3,21.5,21.3,21.6,21.8,21,20.9,21.3,21.3],"paint":[35.5,35.1,34.6,34.6,34.7,35.4,34.7,35.2,35,34.4,35.2,35,34.7,34.1,36.1]}},{"b":2,"v":{"total":[23.7,22.7,23.2,23,24.2,22.5,22.7,22.8,23.2,22.9,23.6,23.6,22.8,23.2,23.2],"script":[7.8,7.4,7.3,7,7.5,7.1,6.9,7,7.4,7.3,7.8,6.9,7.1,7,7.7],"paint":[14.7,13.4,14.8,13.8,15,13.5,13.9,13.5,13.6,14.4,15,14.2,14.2,14.4,13.9]}},{"b":3,"v":{"total":[4.7,5,5,4.7,4.6,5.2,5.5,5.3,5.1,5.5,4.9,5.6,5.1,4.7,4.8,5.3,5.3,3.9,5.6,5.4,5,6.1,4.2,4.8,4.5],"script":[2.4,2.1,2.6,1.8,2.6,1.9,2.5,2.5,2.4,2.5,2.4,2.9,2,2.2,1.7,2.3,2.5,2.1,2.8,2.2,2.4,2.5,1.9,2.2,2.1],"paint":[1.2,1.8,2.3,1.9,1.7,2.8,2.9,2.2,1.5,2.5,1.4,2,2.9,1.3,2.9,2.1,1.9,0.8,2.7,3,2.4,3.1,1.7,0.9,1.2]}},{"b":4,"v":{"total":[170.7,173.6,178.5,171.7,173.4,172.5,172.5,170.3,174,172.7,168.9,169.2,173.1,168.9,170.4],"script":[28.6,29.4,29.6,29,29,27.9,29.7,29,28.3,29.4,26.9,27.1,28.6,26.9,27.2],"paint":[139.8,141.5,146.6,141.8,141.5,141.5,141.3,138.9,144.4,141.3,140.5,139.5,142.4,138.9,140.9]}},{"b":5,"v":{"total":[18.2,17.8,17.9,18.1,17.9,18,18.5,18.3,17.8,17.8,18.3,18.5,17.9,18,18.4],"script":[2.9,2.7,3,2.9,2.8,3.3,3.2,3.2,3,2.7,3.1,2.6,2.8,3.4,3.1],"paint":[14.2,14.1,13.5,14.2,14.1,13.8,14.3,14,14,14.3,14.5,14.8,13.8,13.5,14.5]}},{"b":6,"v":{"total":[627.1,629.2,622.3,620.8,618.9,624.3,619.2,624.6,623.8,621.8,627.4,618.2,619,623.6,622.6],"script":[265.5,267.2,267.5,265.4,267.1,265.3,265.7,269.1,266.7,266.2,266.7,266.6,266.1,266.8,267.6],"paint":[354.8,355.1,348.2,348.7,345.1,352.2,346.8,348.8,350.5,348.9,354.1,345,346.2,350,348.4]}},{"b":7,"v":{"total":[56.8,55.8,56.8,57,58.3,54.7,55.1,55.5,54.3,55.4,56.1,55.4,55.5,55.9,56.7],"script":[16.8,16.2,16.8,17.6,18.3,16.1,16.1,16.1,16,16.1,16.3,16.3,16.6,16.6,17],"paint":[39.1,38.7,38.9,38.5,39.2,37.7,38.1,38.4,37.4,38.4,38.9,38.1,38,38.3,38.8]}},{"b":8,"v":{"total":[15.9,16.5,16.7,16,15.9,16.1,15.7,15.7,16.6,15.9,16.5,16.1,16.9,16.1,15.8],"script":[13.9,14,14.5,13.7,14.6,14.5,13.8,14,15.2,14.1,14.6,13.8,14.5,14.5,13.9],"paint":[1.4,1.6,1.9,1.9,1.1,0.7,1.1,0.7,1.4,1.8,1,1.7,2.3,1.1,1.8]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5.8]}},{"b":11,"v":{"DEFAULT":[6.3]}},{"b":12,"v":{"DEFAULT":[4.7]}},{"b":13,"v":{"DEFAULT":[43.8]}},{"b":14,"v":{"DEFAULT":[157.1]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[235.3]}}]}, +{"f":46,"b":[{"b":0,"v":{"total":[46.6,47.1,48.3,47.4,46.4,48.3,47.4,45.2,47.5,45.4,44.6,45.8,48.5,47.4,46.9],"script":[12.4,12.5,12.5,12.1,11.9,12.5,11.6,11.4,11.8,12,11.7,11.6,12,11.8,12],"paint":[33.8,34.2,35.4,34.9,34,35.4,35.4,33.4,35.2,32.9,32.6,33.8,36.1,35.1,34.5]}},{"b":1,"v":{"total":[52.6,54,51.6,52.9,52,52.4,51.4,52.2,52.3,51.3,51.6,51.6,53.1,51,53.5],"script":[16.2,17.2,15.7,16.7,16.2,16.6,15.9,16.4,16.9,15.9,15.8,16.1,15.9,15.8,16.6],"paint":[35.9,36.3,35.4,35.8,35.3,35.4,35.1,35.3,34.9,34.9,35.3,35,36.6,34.7,36.4]}},{"b":2,"v":{"total":[17.5,16.8,19.7,17.5,16.7,17.3,17,17.2,16.3,16.8,18,18,17.5,18.1,17.1],"script":[2.5,1.8,2.3,2.7,1.4,1.9,1.8,1.6,2,1.9,2.6,1.9,2.7,2.3,1.5],"paint":[12.8,13.4,15.7,13.7,13.7,12.3,13.4,14.2,13.3,13.7,13.4,14.6,12.9,14.2,13.4]}},{"b":3,"v":{"total":[2.7,3.3,3.1,3.1,2.7,3.4,2.5,4.6,3,3,3.8,2.5,4.3,3.5,2.8,3,3.1,3.1,3.7,3.3,2.7,4.1,3.4,2.8,3],"script":[1,1.1,0.9,0.1,0.9,1,0.5,1.1,0.5,0.1,1.1,0.1,0.7,1,0.2,0.5,1,0.1,0.8,0.7,0.6,1.1,1,0.6,0.3],"paint":[1.2,1.2,1.9,2.9,1.6,2.3,1.8,1.7,2.4,1.8,1.9,2.3,1.9,2.4,1.5,1.6,1.8,2.8,1.9,1.1,1.6,1.6,1.8,1.6,2.5]}},{"b":4,"v":{"total":[18.4,18.6,19,19.3,19,18.9,20.5,18.5,18.5,19.6,18.7,18.8,20,18.3,18.9],"script":[0.6,0.2,0.7,1.1,0.6,0.9,0.9,0.6,0.2,0.6,0.9,0.8,0.6,0.3,0.6],"paint":[16.6,17.7,17.3,17,16.1,16.6,18,16.2,16.7,17.3,16.1,16.5,18.4,15.4,16.5]}},{"b":5,"v":{"total":[16.4,15.1,15.4,14.8,15,14.9,15.3,14.9,14.9,15.1,14.8,15.3,15.4,16.6,15.3],"script":[0.5,0.4,0.5,0.5,0.5,0.5,0.5,0.5,0.5,0.4,0.5,0.6,0.5,0.6,0.5],"paint":[14.8,13.6,13.8,13.6,13.7,13.5,13.9,13.6,13.6,14,13.6,14,14.1,15,14]}},{"b":6,"v":{"total":[459.9,460.1,456.1,459.3,458,456.6,463.4,458.1,457.9,470.4,459.7,463.7,462.9,464.4,455.9],"script":[119.3,120.9,121.7,121.9,121.5,118.4,124.1,121.5,123.1,129.7,121.2,125.2,122.7,123.8,117.7],"paint":[333.8,332.5,327.6,330.7,329.6,331.4,332.4,329.7,327.9,333.9,331.6,331.8,333.3,333.8,331.5]}},{"b":7,"v":{"total":[51.3,49.4,49.7,52.2,50,48.9,50.5,49.5,49.3,49.2,49.8,52,48.8,49,50],"script":[11.2,10.3,10.1,10.7,10.6,10.2,11.3,10.9,10.3,10.2,10.6,10.6,10.2,10.4,10.3],"paint":[39.2,38.2,38.6,40.6,38.5,37.8,38.3,37.7,38.1,38.1,38.3,40.5,37.7,37.8,38.7]}},{"b":8,"v":{"total":[15.8,15.4,15.6,15.3,15.6,15.6,16.1,15.4,16,16.1,16.5,16,15.8,16,15.7],"script":[13.8,13.5,13.9,13.7,14.1,13.8,13.8,13.7,14,14.3,14.4,14.2,13.9,14.2,13.6],"paint":[1.1,1.1,0.8,1.3,1.1,1.3,2.3,0.7,1.9,0.8,1.7,1.7,1.8,1,2]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[5.4]}},{"b":11,"v":{"DEFAULT":[5.3]}},{"b":12,"v":{"DEFAULT":[5.5]}},{"b":13,"v":{"DEFAULT":[39.5]}},{"b":14,"v":{"DEFAULT":[204.1]}},{"b":15,"v":{"DEFAULT":[60.8]}},{"b":16,"v":{"DEFAULT":[338.2]}}]}, +{"f":47,"b":[{"b":0,"v":{"total":[40.4,40.6,41,40.1,41.6,40.5,40.5,41.3,40.7,40.3,40.3,40.4,40.3,40.6,41.1],"script":[6.7,6.9,6.9,6.9,7.6,6.9,6.9,7,6.9,6.8,6.9,7,6.9,7,7],"paint":[33.3,33.3,33.7,32.8,33.6,33.1,33.1,33.9,33.4,33.1,33,32.9,33,33.2,33.7]}},{"b":1,"v":{"total":[46.3,47.5,45.5,44.8,44.8,44.8,44.3,46.6,46.5,44.4,44.5,46.1,46.1,45.2,45.8],"script":[10.3,11.2,10.3,10.1,10.2,10,10.1,10.8,10.8,10.1,10.2,10.2,10.5,10,10.4],"paint":[35.6,35.8,34.6,34.2,34.1,34.3,33.8,35.4,35.3,33.8,33.9,35.5,35.2,34.7,34.9]}},{"b":2,"v":{"total":[18.7,17.3,17.1,17.6,19.4,17.4,17.8,17.3,19.4,19,18.8,18.9,18.3,17.7,18.3],"script":[3.1,2.2,2.3,2.4,3.3,1.6,2.5,2,3.7,3.4,3.1,2.8,3.3,2.5,2.4],"paint":[14.1,13.8,12.7,13.8,14.7,13.2,14,13.9,14.6,14.3,14.1,14,13.5,13.6,14.3]}},{"b":3,"v":{"total":[5.4,5.4,5.3,4.8,4.5,5.3,5.2,6.3,4.5,5,4.3,5.7,5,4.7,5.3,4,4.8,5.4,4.7,5.8,5.4,4.9,5.1,4.8,5.3],"script":[2.6,2.4,2.4,1.8,2.3,2.4,2,2.3,2.5,2,1.8,3,2.4,2.3,2.1,2,2.2,2.8,2.2,3.1,2.4,2.2,2.4,1.9,2.7],"paint":[1.8,0.9,1.9,1.8,2.1,1.7,2.1,2,1.9,2.3,1.9,2.5,1.8,1.6,2.1,1.2,2.1,2,1.9,1.5,1.8,2.6,2.6,2.8,2.1]}},{"b":4,"v":{"total":[21,21.4,21.2,21.3,20.7,20.9,20.9,21.4,22.1,22.2,20.7,21.2,20.8,20.4,21.6],"script":[2.3,2.5,2.9,2.5,2.6,1.7,2.4,2.5,3.4,1.9,2.1,2.3,2.3,2,2.4],"paint":[16.9,17.8,17.1,17.3,16.7,17.9,17.3,17.7,16.1,17.9,17.8,17.3,17.2,17,18.8]}},{"b":5,"v":{"total":[16.4,16.1,16.2,16.6,16.5,16.8,16.3,16.4,16.7,16.6,16.4,16.5,16.7,17,17.2],"script":[1.2,1.2,1.1,1.1,1.2,1.4,1.3,1,1.2,1.5,1.2,1.2,1.4,1.6,1.7],"paint":[14.4,13.9,14.3,14.7,14.3,14.4,14.2,14.6,14.2,14.3,14.5,14.1,14.3,14.6,14.7]}},{"b":6,"v":{"total":[432.3,432.2,431.3,435.3,430,429.2,433.3,433.1,433.3,433.2,433.1,441.2,435.1,425.9,432.2],"script":[84.6,83.2,82.8,84.1,81.1,83.7,83.1,82.7,83.8,82.7,84.6,85,84.1,81.6,83.8],"paint":[340.9,342.2,341.7,344.4,342.2,338.9,343.4,343.6,342.8,343.7,341.8,349.1,344.2,337.7,341.7]}},{"b":7,"v":{"total":[47.2,46.8,45.4,45.7,44.6,45.4,46.1,45.7,45.7,46.7,45.9,47,45.7,46.2,45],"script":[6.7,6.6,6.3,6.3,6.2,6.3,6.6,6.2,6.3,6.7,6.4,6.4,6.3,6.3,6.4],"paint":[39.6,39.3,38.3,38.5,37.5,38.3,38.6,38.6,38.5,39.1,38.6,39.7,38.5,39,37.7]}},{"b":8,"v":{"total":[15.9,15.7,14.8,14.9,16.4,15.9,15.6,16.3,15,15.2,16.4,15.7,16,15.9,14.5],"script":[13.8,14,13.1,13.5,14.5,13.8,13.4,14.3,13,13.3,14.3,14.2,13.7,14.1,12.9],"paint":[1.5,1,1.6,0.9,1.7,2.1,2.1,1.8,1.5,1.1,2,1.4,2.2,1.8,1.5]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[21.4]}},{"b":14,"v":{"DEFAULT":[22.1]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[76]}}]}, +{"f":48,"b":[{"b":0,"v":{"total":[40.9,39.1,39.1,40.6,40.4,40.4,39.5,38.8,39.6,40.2,39.9,40.2,40.3,39.1,39.4],"script":[6.7,5.9,5.9,6.8,6,6.6,6.4,6,5.9,5.9,6.7,6.2,6.5,5.9,5.9],"paint":[33.8,32.8,32.8,33.4,34,33.4,32.7,32.3,33.3,33.8,32.8,33.6,33.4,32.9,33.1]}},{"b":1,"v":{"total":[43.5,42.9,43,43.5,43.8,43.8,44.7,43.7,43.6,43.8,43.8,44.2,45.2,43.8,43.9],"script":[8.8,9.1,8.8,8.7,8.9,9.1,9.2,9,9,8.9,9.1,9.1,9.3,9,9.1],"paint":[34.2,33.3,33.7,34.3,34.4,34.3,35,34.2,34.2,34.5,34.2,34.6,35.5,34.4,34.4]}},{"b":2,"v":{"total":[17.5,16.8,17.6,17.7,16.2,17.1,18.3,16.3,17.4,16.9,17,16.8,17.6,16.8,16.2],"script":[1.5,1.3,2,2.4,1.7,1.9,1.6,1.6,1.9,1.8,2,1.4,1.1,1.8,0.9],"paint":[15,14,13.7,13.8,13.1,13.4,14.9,12.7,14,13.3,13.7,13.6,15,13.2,14.1]}},{"b":3,"v":{"total":[4.6,6.1,4.2,4.7,4.3,4,5.4,4.2,4.7,4.1,4.5,4.2,4.2,4.4,4.2,4.8,3.6,4.2,3.6,4,4.6,5.3,4.6,4,5],"script":[2,1.5,1.4,2.1,1.4,0.7,1.2,1.2,1,1.5,1.1,1,1.8,1.6,1.6,1.7,1.5,1.7,1.1,1.3,1.5,1.5,1.5,1.4,2],"paint":[1.8,2.6,2.2,2,2.8,3.2,3,2.8,3,2.4,3.3,3,2.3,2.7,2.4,3,1.3,1.6,1.3,2.5,2.6,1.8,3,1.5,2.8]}},{"b":4,"v":{"total":[20.6,19.2,20.9,19.4,20.5,19.9,20.2,20.2,20.3,20.5,20.1,19.4,20.2,21.4,20.5],"script":[1.9,1.4,1,1.3,2,1.6,2,1.4,1.8,1.3,1.2,1.3,0.9,1.8,1.3],"paint":[17.2,16.8,18.7,16.5,17.2,17,17.1,16.6,17.2,17.9,17.6,16.7,17.9,17.5,16.9]}},{"b":5,"v":{"total":[16.1,16.1,16,16,16.1,15.4,15.8,16,16.2,15.9,16.3,16.1,16.3,15.6,16.1],"script":[0.8,1.1,0.7,1.1,0.7,0.7,0.7,0.8,0.8,0.8,0.7,0.9,1,0.7,1.1],"paint":[14.5,14.3,13.8,14.1,14.6,13.7,14.2,14.5,14.4,14.1,14.8,14.3,14.5,14.2,14]}},{"b":6,"v":{"total":[421.4,415.2,415.8,414.1,417.6,412,417.4,420,415,414.5,416.3,413.1,416.7,412.8,418],"script":[71.8,69.4,72.2,69.1,72.3,73,73.6,72,72.1,68.6,70.7,69.9,70.7,72.1,72.6],"paint":[342.9,338.5,336.6,337.8,338.5,331.9,336.8,340.7,336.1,339.2,338.8,335.9,338.9,334,338.6]}},{"b":7,"v":{"total":[43.8,45,44.3,44.7,43.3,45.6,43.7,45.2,43,43.1,43.9,42.6,44.3,43.2,43.5],"script":[5.3,5.5,5.5,5.4,5.4,5.6,5.4,6.4,5.3,5.3,5.3,5.2,5.3,5.3,5.4],"paint":[37.6,38.6,37.9,38.4,37.1,39.1,37.3,37.9,36.9,37,37.6,36.6,38,37,37.2]}},{"b":8,"v":{"total":[15.7,15.2,15.5,15.8,15.7,15.6,14.8,16.3,16,15.5,15.9,15.6,15.3,15.2,15.9],"script":[14.3,13.5,13.6,14,13.3,14.2,13.3,14,14.2,13.5,13.8,13.6,13,13.3,14.1],"paint":[1.3,1.6,1.6,1.6,2.2,1.4,1.4,2.2,1.7,1.3,1.8,1.1,1.3,1.6,1.7]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[19.7]}},{"b":14,"v":{"DEFAULT":[12.1]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[50.4]}}]}, +{"f":49,"b":[{"b":0,"v":{"total":[42.3,43.7,42,42.4,42.8,41.5,41.7,41.5,42.6,43.9,42.4,42.4,43.9,42.4,42.3],"script":[7.9,8.7,8.4,8.3,8.4,7.9,8.2,8,8,8.8,8.2,8.4,8.9,8,7.9],"paint":[34,34.7,33.2,33.7,34,33.1,33,33.1,34.2,34.6,33.8,33.6,34.6,33.9,34]}},{"b":1,"v":{"total":[48.1,48.1,46.7,46.8,47.5,49.4,46.8,47.6,46.6,48.6,47.4,47.5,46.5,46.6,47.8],"script":[11.9,11.4,11.2,11.4,11.5,12.1,11.3,11.9,11.4,11.3,11.6,11.5,11.4,11.4,11.5],"paint":[35.7,36.2,35.1,34.9,35.6,36.8,35,35.3,34.7,36.8,35.2,35.6,34.7,34.7,35.9]}},{"b":2,"v":{"total":[18.2,17.8,20.4,18.8,17.9,18.4,18.5,18.6,18.1,18.1,17.9,17.9,17.9,18,18.1],"script":[2.7,2.8,2.9,2.6,2.6,2.4,2.7,2.4,2.3,2.5,2,2.4,2.1,2.6,2.7],"paint":[14.2,13.4,14.3,15,13.3,14.6,14,15.2,14.4,14.5,14.1,14.4,14.2,14.6,14.2]}},{"b":3,"v":{"total":[8,8.3,8.7,6.9,7.6,7.7,7.6,8.1,7.3,6.5,7.7,7.1,8.3,7.3,6.5,7.6,7.3,7.5,7.8,7.5,7.2,7.7,8.1,6.9,7.6],"script":[4.8,4.8,5.9,4.5,5.4,4.7,4.7,5.8,4.7,4,5.1,4.5,4.8,4.8,4.4,4.6,4.5,4.2,4.8,4.7,4.4,4.9,5.4,4.2,5],"paint":[2.3,2.5,2.3,1.2,1.2,2.9,2.3,1.5,2.5,2.3,2.4,1.5,2.6,1.7,1.1,2.9,2.7,2.3,1.8,1.7,2.6,2.6,1.9,2.2,1.5]}},{"b":4,"v":{"total":[158.2,157.7,156.5,158.8,156.4,155.4,156.8,162.1,156.9,154.9,157.6,160.2,156.1,159.9,157.1],"script":[14.5,15.2,14.1,15.1,15.3,14.3,16,15.4,14.4,14.5,13.8,14.7,14.5,15.1,14.4],"paint":[142.1,140.5,140.9,141.2,140,139.3,139,144.8,140,139.2,142.4,143.5,140.2,142.8,141.4]}},{"b":5,"v":{"total":[15.4,15.2,15.6,15.4,15.1,15.8,15.4,15.4,15.4,15,15.4,15.3,15.4,15.2,15.5],"script":[0.5,0.5,0.4,0.5,0.4,0.5,0.5,0.2,0.5,0.2,0.5,0.5,0.5,0.5,0.5],"paint":[14.1,13.9,14.3,13.8,14,14.5,14.1,14.5,13.8,14,13.8,14,14.2,14,13.9]}},{"b":6,"v":{"total":[438.9,441.6,438.6,436,435.7,441,431.8,440.4,441.6,438.1,439.7,440.8,439.6,432.3,436.5],"script":[99.6,100.5,100.6,95.6,98.8,100.5,96,101.4,96.8,100.6,100.3,101.2,99.4,96.4,98.9],"paint":[332.6,334,331.3,333.7,330.2,333.9,329.2,332.2,338.2,330.9,332.5,333,333.3,329.3,330.9]}},{"b":7,"v":{"total":[49.4,48.8,48.5,48.5,48.1,47.9,49.5,47.9,47.7,49.1,48.5,48,49.3,48.9,48],"script":[8.1,7.9,8,7.9,7.7,7.9,8.2,7.9,7.9,8,7.9,7.8,7.9,8.2,7.9],"paint":[40.4,40,39.6,39.7,39.5,39.1,40.4,39.1,38.9,40.2,39.7,39.3,40.4,39.8,39.2]}},{"b":8,"v":{"total":[14.3,15.1,14.9,16.2,14.7,14.3,15.1,14.8,14.7,14.1,14.7,14.9,14.8,15.3,14.5],"script":[12.7,13.1,13.4,13.3,12.9,12.8,13.4,12.9,12.6,12.5,12.6,13.4,13.4,13.1,12.6],"paint":[1.5,1.2,1.4,2.1,1.6,1.4,0.8,1.2,2,1.6,1.2,1.4,1.3,1.7,1.6]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[4]}},{"b":11,"v":{"DEFAULT":[4]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[34]}},{"b":14,"v":{"DEFAULT":[10.9]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[51]}}]}, +{"f":50,"b":[{"b":0,"v":{"total":[44.7,43,44.3,43.5,43.5,43.5,44.2,42.7,43.1,42.6,42.5,42.8,44.7,44.6,43.9],"script":[9.7,9.2,9.9,9.4,9.1,9,9.8,8.9,9.4,8.9,9,8.9,10,10.1,9.7],"paint":[34.5,33.3,34,33.7,34,34,33.9,33.4,33.2,33.3,33.1,33.5,34.3,34.1,33.7]}},{"b":1,"v":{"total":[52.2,50,50.2,49.6,50.9,51.7,50.1,50.8,50.1,50.9,50.8,50.3,50.5,50.9,51],"script":[15,13.5,13.6,13.5,13.9,15.2,13.6,13.8,13.8,13.9,13.9,13.4,13.4,13.9,14.6],"paint":[36.7,36.1,36.1,35.7,36.5,36.1,36,36.5,35.8,36.5,36.4,36.4,36.6,36.5,35.9]}},{"b":2,"v":{"total":[28.1,26.4,25.5,26.3,28.2,26.3,27.4,27.1,29.5,25.5,27.1,25.4,26.6,27.3,26.1],"script":[10,9.9,10.1,11,11.2,10.3,11.5,10.7,11.7,9.2,10.7,10,10,11,10.3],"paint":[16.6,15,13.6,13.9,15.5,14.1,14.4,14.5,16.4,14.3,15.3,13.7,15.6,14.7,14.4]}},{"b":3,"v":{"total":[12.6,12.2,12.2,11.6,13.3,11.6,12.1,12.1,11,12.1,12,12.9,13.9,11.7,12,13.4,12,12.2,12,11.9,11.6,12.9,11.6,12.9,11.8],"script":[9.4,9,9.6,9.1,10.1,8.2,9,9.3,7.8,9.3,9.2,9.4,10.9,8.7,9.4,10.3,9.2,9.1,9.1,8.9,8.5,9.2,9,10.3,8.7],"paint":[2.1,3.1,1.5,2.3,1.9,1.1,3,2.5,2.5,2.6,2.7,3.3,2.1,2.4,1.7,2.4,1.7,1.7,2.6,2.2,2.5,3.5,1.5,0.6,2.5]}},{"b":4,"v":{"total":[28.4,28.9,28.9,27.9,30.7,28.4,28.2,29,29.8,28.3,27.9,27.2,28,27.2,28.4],"script":[9.2,9.8,9.7,8.9,10,8.1,9.3,9.7,9.6,9.6,9.4,8.4,9,8.8,9.5],"paint":[17.9,17.8,17.1,17.9,19.2,19.3,17.4,17.7,18.9,17.1,17.7,17,17.3,15.9,17.7]}},{"b":5,"v":{"total":[21,20.6,20.9,20.9,21,20.5,20.3,20.7,22,20.4,20.9,20.9,20.8,21.7,21.6],"script":[5.1,5.2,5.5,5.6,5.5,5.2,5.1,5.6,5.8,5.1,5.6,5.5,5.3,5.4,5.5],"paint":[14.8,14.7,14.6,14,14.7,14.5,14.2,14,15.1,14.2,14.5,14.6,14.5,15.1,14.9]}},{"b":6,"v":{"total":[449,447.9,454.9,449.9,451.4,451.8,452.1,452.7,444.9,452.8,441,452.1,446.3,450.7,451.5],"script":[100.1,100.5,101.8,101.6,100.4,103.6,98.8,103.4,98.2,102.2,95.7,101.9,98.6,101.7,101.6],"paint":[342.1,340.8,346.5,341.6,344.3,341.5,346.6,342.7,339.9,344,338.3,343.6,340.9,342.4,343.1]}},{"b":7,"v":{"total":[54.2,57.1,53.5,55.3,54.6,55.5,53.7,53.5,54.6,53.6,53.7,54.3,55,54.4,56.4],"script":[14.2,14.4,13.5,13.9,13.2,13.9,13.9,13.8,13.8,13.5,13.6,13.8,14.1,13.5,14.2],"paint":[39,41.8,39.1,40.5,40.6,40.8,39,38.8,39.9,39.2,39.2,39.7,40,40.1,41.3]}},{"b":8,"v":{"total":[15.1,17,15.7,16.7,15.3,16.2,15.6,16.3,15.7,15.9,16.6,15.4,15.1,16.5,15.7],"script":[13,14.6,13.4,15,13.2,14.5,13.5,14.3,13.9,14.1,14.9,13.7,12.9,14.1,13.6],"paint":[2,1.9,2,0.9,2.1,1.6,1.4,1,0.8,1.7,1.5,1.6,2,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[27.2]}},{"b":14,"v":{"DEFAULT":[52.7]}},{"b":15,"v":{"DEFAULT":[16]}},{"b":16,"v":{"DEFAULT":[94.5]}}]}, +{"f":51,"b":[{"b":0,"v":{"total":[37.2,35.8,36,36.8,35.8,36.3,35.9,36.1,36,36.8,36,36.7,36.7,36.5,36.4],"script":[3.4,3.4,3.4,3.5,3.3,3.4,3.4,3.5,3.3,3.5,3.4,3.6,3.5,3.4,3.4],"paint":[33.3,32,32.1,32.9,32,32.5,32,32.2,32.2,32.9,32.2,32.6,32.8,32.7,32.6]}},{"b":1,"v":{"total":[42.8,40,40.1,41.1,41.5,42.9,40,41,39.7,39.9,41.6,40,40,40.2,40.1],"script":[5.7,5.5,5.7,5.7,5.9,5.7,5.6,5.6,5.7,5.5,6.1,5.7,5.9,5.6,5.6],"paint":[36.7,34,33.9,35,35.2,36.7,33.9,34.9,33.6,33.9,35.1,33.9,33.7,34.1,34]}},{"b":2,"v":{"total":[17.5,16.6,16.8,17,17.1,16.6,16.4,16.4,19,16.2,16.5,16.4,16.6,17.8,16.9],"script":[1.8,1.5,1.4,1.7,1,0.6,1.5,1.8,1.5,1.4,1.5,1.1,1.7,1.5,1.6],"paint":[14.4,13.7,13.6,14.2,14.3,14.7,13.9,13,15.9,13.5,13.6,13.6,13.7,15,14.2]}},{"b":3,"v":{"total":[3.2,3.4,4.6,3.3,2.7,3.6,3.2,2.5,3.4,2.9,4.1,3,2.8,3.6,3.4,5.2,3.5,3.4,3.7,2.4,2.9,3,3.6,3.7,3.2],"script":[0.2,1.2,0.9,1,0.6,0.9,0.9,0.7,0.8,0.9,0.7,0.9,1.1,1.1,0.7,0.8,0.9,1.2,1.1,0.8,0.6,1.4,1.5,1.2,0.5],"paint":[1.9,1.4,1.8,2.2,1.4,2.2,1.4,1.7,1.6,1.9,1.6,2,1.6,1.5,2.2,1.7,2.5,1.4,2.4,1.4,1.4,1.1,1.6,2.4,1.5]}},{"b":4,"v":{"total":[19,19.2,20.3,21.3,19.8,20,18.7,19.1,19.1,19.7,19.1,19.9,19.7,19.9,19.1],"script":[1.2,1.5,1.9,1.6,1.2,1.2,0.7,1,1.3,1.2,1.1,1.2,1.5,1.7,1.4],"paint":[16.6,16,16.8,18,17.1,17.4,16.2,16.8,16.4,16.8,16.7,17,16.6,16.3,16.3]}},{"b":5,"v":{"total":[15.4,16.2,15.5,15.8,15.4,15.9,15.1,15.4,15.2,16,15.4,15.4,15.4,15.4,15.3],"script":[0.7,1,0.7,0.7,0.7,0.7,0.7,0.7,0.7,0.9,0.7,0.7,0.7,0.7,0.7],"paint":[13.7,14.4,13.9,14.1,14,14.5,13.7,14,13.7,14.4,14.2,14,14.2,13.6,13.9]}},{"b":6,"v":{"total":[380.3,383.7,380.7,384.3,385.7,383.1,384.1,385.8,388.8,382.4,387.1,385.2,383.9,386.2,385.9],"script":[42.5,43.4,43.2,43.6,44,43.8,43.3,44,43.8,41.6,43.6,43.8,43.6,44.3,44.5],"paint":[331.1,333.6,330.8,333.8,335,332.3,334.1,335.1,338.4,334.2,336.8,334.7,333.7,335.3,334.5]}},{"b":7,"v":{"total":[43.9,43.6,44.2,45.5,43.5,45,45.5,43.7,45,45.4,43.7,44.2,45.3,43.9,45.2],"script":[4.5,4.5,4.3,4.9,4.6,4.9,4.6,4.4,4.5,5,4.4,4.5,4.9,4.3,4.9],"paint":[38.5,38.2,39.1,39.6,38.1,39.3,40,38.4,39.5,39.5,38.5,38.8,39.5,38.8,39.4]}},{"b":8,"v":{"total":[11.7,12,12.2,11.8,12,11.6,11.7,11.9,12,11.7,12.4,11.3,12,11.2,12.6],"script":[10.2,10.2,10.4,10.2,10.2,10.2,10.1,9.8,9.8,10.1,10.4,10.2,10.3,10.1,10.6],"paint":[1,1.7,1.7,1.5,1.7,0.4,1.6,2,1.5,1.5,1.2,0.4,1.6,0.3,1.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[18.9]}},{"b":14,"v":{"DEFAULT":[7.3]}},{"b":15,"v":{"DEFAULT":[3]}},{"b":16,"v":{"DEFAULT":[42.7]}}]}, +{"f":52,"b":[{"b":0,"v":{"total":[43.5,42,41.6,42.3,42.3,42.7,41.6,41.4,42.5,43.4,42.6,41.8,43.1,41.7,41.6],"script":[9.2,9.1,9.1,8.9,9.3,9.5,8.5,8.6,8.8,9.1,8.9,9.2,9.1,8.9,9.1],"paint":[33.9,32.4,32.1,32.9,32.6,32.8,32.7,32.3,33.2,33.8,33.2,32.2,33.7,32.4,32.1]}},{"b":1,"v":{"total":[49,48.3,48.9,50,48.9,47.3,49.2,48,48.1,48.2,48.3,48.4,47.9,48.2,47.9],"script":[13.2,13.2,13.4,13,13.8,12.8,13.2,13.2,13.3,13.2,13.3,13.3,12.8,13,12.9],"paint":[35.3,34.7,35,36.6,34.6,34.1,35.5,34.3,34.3,34.6,34.6,34.7,34.7,34.8,34.5]}},{"b":2,"v":{"total":[22.7,22.4,22.3,23.2,22,22.2,22.1,21.8,21.9,22.3,22.4,21.7,22.1,22.3,24],"script":[6.9,6.3,6.8,7.7,6.6,6.2,6.4,6.7,6.5,6.7,6.8,6.6,6.5,6.9,7.1],"paint":[14.4,14,13.7,13.4,14.2,14.2,14.7,13.8,14,14.3,14.6,12.4,14.2,13.9,15.9]}},{"b":3,"v":{"total":[3.3,5.7,3.3,3.6,3.4,3,2.9,2.9,3.3,2.7,3.5,2.8,3.7,3.2,3.4,3.1,3.3,3.5,5,3.2,3.4,3.4,3.4,4.4,3.2],"script":[1.1,0.9,1,1.3,1.2,0.2,1.3,0.8,1.5,0.2,1.6,0.7,1.2,1.2,0.9,0.3,0.9,1.2,0.8,1.2,1.1,1.2,0.6,1.1,0.2],"paint":[2.1,2.8,1.5,1.8,1.6,2.4,1.5,1.4,1.1,2.1,1.8,2.1,1.1,1.4,2.4,2.7,2,2.2,1.9,1.1,2.1,1,2.6,1.1,2.9]}},{"b":4,"v":{"total":[19.1,18.8,19.4,18.5,19.2,18.6,20,19.5,19,19.1,20.4,19,19,19.7,18.4],"script":[1.4,0.8,0.9,0.9,0.2,0.2,0.7,1,0.2,0.2,0.6,0.6,0.2,0.7,0.5],"paint":[16.1,16.7,17.1,16.3,17.8,17.1,17.6,17.3,17.6,17.4,17.9,17.2,17.2,17,16.4]}},{"b":5,"v":{"total":[15.4,15.5,15.3,16.2,15.9,14.8,15.9,16.1,15.1,14.9,16.1,15.9,15.2,15.5,15.9],"script":[0.4,0.6,0.6,0.4,0.6,0.5,0.5,0.6,0.5,0.5,0.4,0.5,0.5,0.3,0.6],"paint":[14,14.2,14,15,14.3,13.6,14.3,14.6,13.9,13.6,14.9,14.7,14,14.5,14.6]}},{"b":6,"v":{"total":[423.2,419.3,417.4,422.5,420.1,417.1,420.2,425.2,426.6,416.3,417.9,413.3,420,423.1,424.5],"script":[76.6,76.6,75.1,76.9,78.5,76.9,77.1,77.8,78.7,77,75.9,74.2,77.7,78.6,78.8],"paint":[340,335.8,335.6,338.8,334.1,333.5,336.1,340.4,341,332.7,335,332.5,335.5,337.9,339]}},{"b":7,"v":{"total":[45.3,46.4,45.5,47.1,47.6,48.5,46.5,46.4,47.5,47.3,47.1,47.8,45.6,47.3,46.9],"script":[7.7,7.7,7.5,8.2,8,7.9,7.7,7.9,8.3,8.5,8.1,8.6,7.5,7.8,7.8],"paint":[36.8,37.6,37,37.9,38.7,39.6,37.9,37.6,38.1,37.8,38.1,38.3,37.1,38.7,38.1]}},{"b":8,"v":{"total":[19.4,18.4,18.7,19.2,18.6,19.1,19.6,18.9,18.1,18.4,18.5,18.4,18.5,18.5,19.3],"script":[17.5,16.5,16.5,17.4,16.9,17.2,17.6,16.9,16.6,16.8,17,16.5,16.4,16.4,16.9],"paint":[1.3,1.8,1.8,1.6,1.6,1.9,1.8,1.7,1.4,1,0.9,1,1.3,2,2.3]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[17]}},{"b":14,"v":{"DEFAULT":[66.5]}},{"b":15,"v":{"DEFAULT":[18.2]}},{"b":16,"v":{"DEFAULT":[109.8]}}]}, +{"f":53,"b":[{"b":0,"v":{"total":[54,51.3,51.3,52.3,49.9,51.4,52.9,51.7,51.8,49.8,51.4,51.2,51.1,51.8,51],"script":[17.6,16.3,16.8,17.6,15.9,16.8,16.3,17.1,17.1,15.9,16.4,17.3,16.2,16.7,16.5],"paint":[35.9,34.5,34.2,34.3,33.6,34.1,36.1,34.1,34.2,33.5,34.6,33.4,34.5,34.7,34.1]}},{"b":1,"v":{"total":[57.7,57.4,57.9,57.2,58.4,57.4,57.5,57.4,57,57.4,55.7,57.5,58.3,56.4,58.5],"script":[21,20.7,20.8,20.6,21.7,20.5,20.7,20.8,20.5,20.3,19.7,21.2,20.8,20,20.7],"paint":[36.2,36.3,36.7,36.2,36.2,36.5,36.3,36.2,36.1,36.6,35.5,35.8,37.1,35.9,37.3]}},{"b":2,"v":{"total":[18.7,17.8,17.5,18.2,17.3,17.5,18.6,18.6,18.6,18.1,18.3,17.4,18.4,17.5,17.9],"script":[2.5,2.3,2.4,2.7,2.4,1.6,1.8,2.2,2.4,2.5,2,2,2.2,2.2,2.3],"paint":[13.4,13.6,12.8,14.4,13.4,14.7,15,15.4,13.8,13.6,14.6,13.3,14.6,13.5,14.2]}},{"b":3,"v":{"total":[2.5,3.4,4,2.8,3,2.7,2.2,2.9,4.7,5.8,2.7,4.2,2.6,3,4,3,2.9,2.7,2.9,4.1,4.8,4,2.8,4.2,4.8],"script":[0.6,1.1,1.1,0.8,0.9,0.8,0.6,0.9,1.1,1.2,0.9,1.2,0.2,0.5,0.7,0.2,0.9,1,0.5,1.1,0.2,1.1,0.7,0.8,1.3],"paint":[1.8,2.2,1.8,1.1,2,1.4,1,1.1,1.6,1.4,1.1,2.5,2.3,2.4,2,2.7,1.1,1.2,2.3,1.7,2.7,1.6,2,1.1,2.1]}},{"b":4,"v":{"total":[19.1,19.6,19.1,18.8,19.1,20.8,18.8,18.7,19.4,19.1,18.9,19.2,18.4,18.4,18.5],"script":[0.9,1.2,0.6,0.2,0.5,1.6,0.8,0.8,0.2,0.7,0.9,0.9,0.8,1,0.8],"paint":[16.3,16.3,16.9,17.6,17.5,17.3,16.8,16.6,16.8,17.1,15.5,16.2,16.4,16.1,16.5]}},{"b":5,"v":{"total":[15.4,15.1,15.3,14.9,15.7,15.7,14.9,14.9,15,15.4,15.2,15.7,14.9,14.9,15.1],"script":[0.6,0.4,0.6,0.5,0.6,0.6,0.5,0.3,0.6,0.6,0.6,0.6,0.6,0.4,0.6],"paint":[14.1,14,14.2,13.7,14.3,14.4,13.7,13.9,13.6,14.1,13.9,14.4,13.5,13.7,13.7]}},{"b":6,"v":{"total":[499.8,503.1,496.7,510.3,515.1,498,499.4,499.1,497.2,507.3,498.9,501.8,492.6,506.1,495.9],"script":[166.3,168.9,165,166,167.5,167.2,167,167.4,165.3,166.4,165.5,166.2,160.5,167.7,164.4],"paint":[326.6,327.6,325.1,337.6,341,324.3,325.5,324.8,325.1,334.1,326.8,329,325.6,331.9,324.9]}},{"b":7,"v":{"total":[58.4,58,59.6,59.3,58.8,59.7,58.5,58.7,58.3,59.2,61.2,59.6,58.1,57.6,58.3],"script":[17.4,17.1,17.8,17.4,16.8,18,17.2,17.7,16.8,17.5,17.4,18.1,17.3,16.7,17],"paint":[40,40,41,41,41.1,40.8,40.4,40.1,40.6,40.7,42.9,40.6,39.9,40,40.4]}},{"b":8,"v":{"total":[20.1,18.7,18.5,18.7,18.1,20.4,20.2,19,21.7,18.3,19.6,19.5,20.6,19.8,19.8],"script":[18.1,16.4,16.6,16.6,16.9,18.5,17.5,16.8,19.3,16.6,17.6,17.9,18.5,17.9,18.1],"paint":[1.2,2.2,1.7,2,0.4,1.1,2.4,1.6,1.3,0.8,1.8,0.9,2,1.2,1.1]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[20.1]}},{"b":14,"v":{"DEFAULT":[84]}},{"b":15,"v":{"DEFAULT":[22.4]}},{"b":16,"v":{"DEFAULT":[128]}}]}, +{"f":54,"b":[{"b":0,"v":{"total":[55,53,52.1,51.1,50.9,51.3,51.1,52.1,52.7,52.2,52.4,53.9,52.4,52.1,52.7],"script":[21,18.6,18.6,17.4,18.5,18.6,17.8,18.7,18.3,18.5,18.8,20.5,18.3,18.5,18.5],"paint":[33.7,34.2,33.3,33.5,32.2,32.5,33.1,33.2,34.2,33.5,33.5,33.2,34,33.4,34]}},{"b":1,"v":{"total":[59.3,61.3,60.3,61.4,61.4,60.8,59.3,61.8,59.2,60.3,62.4,61.9,61.9,63.2,60.1],"script":[24.7,27,26.1,26,26.1,25.6,24.6,26.3,23.9,25.2,27.8,25.7,26.4,27.8,24.5],"paint":[34.5,34.1,34,35.2,35.1,35,34.6,35.3,35.1,34.9,34.4,36,35.3,35.2,35.4]}},{"b":2,"v":{"total":[23.3,26.5,68.4,25.9,26.4,23.3,22.7,22.4,23.6,26.5,23.7,69.6,23.5,71,69.5],"script":[8.5,9.7,7.7,9.5,9.5,9.7,8.5,8.7,8.1,9.5,7.9,9,9,9.3,9],"paint":[14.6,16.2,16.8,15.9,15.4,13.5,12.9,13.5,15.4,16.8,14.5,16.2,14.4,17.9,17]}},{"b":3,"v":{"total":[17.2,9.2,13.7,9.2,11.3,18.6,17,8.5,9.4,9.3,8.4,12.4,8.6,9,14.7,9,9.3,14.2,11.5,15.6,11,13,14.3,9,17.2],"script":[7.1,6.4,7.3,6.3,6.5,6.7,7.1,5.6,6.5,6.3,6.1,6.3,6.3,5.6,6,5.7,5.9,6.5,6,7.9,6.1,7.7,7.9,5.7,8.3],"paint":[3.9,2.6,2.7,2.7,2.7,4.5,2.9,1.3,1.8,2.9,1.7,4,1.4,2.9,2.3,2.4,2.3,1.7,4.7,5.1,3,4.3,3.8,3.1,4.8]}},{"b":4,"v":{"total":[159.2,156.6,157.6,160.7,157.6,160.5,160.7,158.1,164.5,158.5,160.2,162.1,161.8,164.5,158],"script":[22.6,21,20.4,21.5,21.6,22.3,20.8,21.1,22.1,21.6,22.3,21.2,21.7,22.2,20.2],"paint":[136.4,135.5,137,138,135.9,136.8,139.3,134.7,141.4,136.8,136.7,140.3,139.7,141.7,136.2]}},{"b":5,"v":{"total":[18.5,18.6,18.2,18,18.3,18.4,19.6,17.8,18,19.2,18.4,18,18.5,18.1,18.4],"script":[3,2.9,2.7,3.2,3.3,3.4,3.1,2.8,3.1,2.9,3.5,2.8,3,2.8,3],"paint":[14.4,14.2,14.2,14.1,14.4,14.4,15.4,14.1,14.1,15,14.2,13.8,14.2,13.8,14.4]}},{"b":6,"v":{"total":[541.3,531.8,549.2,541.6,527.6,542,545.5,537.6,533.5,532.2,528.2,531.4,541.3,544.7,548.7],"script":[177.3,180,173.4,174,179.9,176.8,177.4,174.1,182.8,184,178.9,181.9,176.8,182.2,185.1],"paint":[361.7,349.5,373.5,365.3,345.5,363,365.8,361.2,348.5,345.9,347.1,347.3,362.3,360.3,361.4]}},{"b":7,"v":{"total":[60.9,62.7,60.8,63.9,62,61.3,60.5,62.5,60.1,61.9,60.9,60.6,60.5,59.6,62.9],"script":[21.8,23.3,21.7,23.4,22.3,22,22,23.3,21.9,23.1,22.1,21.7,21.4,21,21.9],"paint":[38.8,39,38.8,40.2,39.4,39,38.2,38.9,37.9,38.5,38.5,38.6,38.8,38.3,40.6]}},{"b":8,"v":{"total":[26,21.4,26.3,25.7,27.5,22.5,26.9,28,26.5,26.3,26.4,23.4,25.4,26.6,21],"script":[22.4,19.4,21.9,22.1,22.2,20.1,22.8,23.9,23.2,22.2,22.6,21.7,23.2,21.5,19.7],"paint":[2.6,1.2,2.5,3,3.5,2.3,3.8,3.1,2.9,3.3,2.2,1.6,2.1,3.1,1.2]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4.3]}},{"b":11,"v":{"DEFAULT":[4.4]}},{"b":12,"v":{"DEFAULT":[4.3]}},{"b":13,"v":{"DEFAULT":[34.4]}},{"b":14,"v":{"DEFAULT":[46.5]}},{"b":15,"v":{"DEFAULT":[16.1]}},{"b":16,"v":{"DEFAULT":[80.2]}}]}, +{"f":55,"b":[{"b":0,"v":{"total":[37.6,36.6,37.2,37.8,36.7,37,38.8,37.4,36.9,37.2,36.1,37.1,39.4,37.2,37.1],"script":[4,3.8,3.8,4.2,3.7,3.9,4.1,4,3.9,3.8,3.8,3.9,4.1,3.8,4.1],"paint":[33.2,32.4,32.9,33.2,32.6,32.7,34.3,33,32.6,32.9,31.8,32.8,34.9,33,32.6]}},{"b":1,"v":{"total":[41.9,41.5,41,42.1,41.5,42.4,40.9,41,41.5,43.3,42.4,42.9,42.3,42.2,41.7],"script":[7.1,6.7,6.9,6.8,6.8,7.5,6.8,6.8,7,7.4,7,7,7.6,7.6,7],"paint":[34.4,34.4,33.7,34.8,34.3,34.6,33.6,33.8,34.1,35.4,35,35.4,34.2,34.2,34.3]}},{"b":2,"v":{"total":[16.8,15.9,16.2,16.9,17.1,16.4,16.5,16.1,16.2,17.3,16.5,16.8,16.8,16.2,16.3],"script":[1.2,1,0.6,1.9,1.8,1,1.4,1.2,1,0.9,1.9,1.2,1.2,1.2,1.1],"paint":[14.5,13.9,14.1,13.7,14.6,13.1,14.1,13.1,14.1,14.5,12.8,14.2,14,13.3,13.2]}},{"b":3,"v":{"total":[3.7,3,2.9,2.4,4.1,2.8,4.5,3.9,2.3,3.5,2.7,3.3,2.8,3.1,2.8,3,3.6,5.7,3.8,2.4,2.8,2.8,3.1,3.1,2.3],"script":[0.1,0.1,0.1,0.1,0.7,0.5,0.1,0.1,0.1,1.1,0.1,0.8,1,0.9,0.1,0.1,0.1,0.5,0.9,0.5,0.1,0.1,1.2,0.1,0.8],"paint":[3,2.2,2.1,1.2,2.2,1.4,2.7,1.8,1.1,1.1,2.2,2.4,1.7,2.1,2.6,2.8,2.5,1.7,1.1,1.2,1.6,1.7,1.8,1.7,1.4]}},{"b":4,"v":{"total":[19.4,20,19.7,19.8,19.7,20,19.6,20.2,19.7,19.9,21.1,20.8,20,20.9,20.3],"script":[1.7,1.8,1.8,1.6,1.7,1.6,1.8,1.7,1.9,2.4,2,2,1.4,1.6,1.6],"paint":[16.2,17.2,16.2,16.3,16.8,16.7,16.8,16.1,16.5,15.9,17,17.5,17.7,17.6,17.7]}},{"b":5,"v":{"total":[15.7,16.3,16.2,16.1,15.4,15.5,15.5,15.6,15.3,15.6,15.5,15.9,15.5,15.4,16],"script":[0.9,0.8,0.7,0.7,0.7,0.7,0.7,0.9,0.9,0.7,0.7,1,0.7,0.9,1],"paint":[14.1,14.5,14.3,14.9,14,14,13.8,13.9,13.7,13.9,14.1,14.2,13.7,13.7,14.3]}},{"b":6,"v":{"total":[396,389.4,395.3,393.5,385.9,391.7,391,388.5,388.7,385.3,393.6,388.6,383.5,386.1,391.6],"script":[47.7,45.4,48.2,47.9,47.2,48.6,48.7,47.6,46.9,47.1,49.4,47.4,47.1,48.4,49],"paint":[341.7,336.8,340.4,338.8,332,336.5,335.7,333.6,335.1,331.5,337.5,334.5,329,331.2,335.9]}},{"b":7,"v":{"total":[43.6,42.3,41.2,41.2,41.7,42.1,42.1,43.3,42.5,42.5,41.4,42.7,41.7,41.4,42],"script":[3.6,3.4,3.4,3.4,3.4,3.7,3.8,3.6,3.8,3.8,3.4,3.6,3.5,3.5,3.4],"paint":[39,38,36.9,36.9,37.4,37.6,37.5,38.8,37.9,37.8,37.1,38.2,37.3,37,37.6]}},{"b":8,"v":{"total":[14,13.5,14.2,12.9,13.6,14,13.2,13.2,13.2,13.6,13.3,13.6,13.4,13.6,13.4],"script":[12,11.5,11.5,11.8,12.4,11.8,11.7,10.9,11.8,11.6,11.6,12,11.9,11.7,11.7],"paint":[1.5,1.2,2.7,0.4,0.6,2.1,1.5,2.3,1.3,2,1.3,0.8,1.4,1.8,1.5]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.4]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[18.7]}},{"b":14,"v":{"DEFAULT":[11.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[57.8]}}]}, +{"f":56,"b":[{"b":0,"v":{"total":[40.9,43.7,42.4,43.1,43.7,43.2,42.5,44.3,43.9,44.1,43.3,42.7,42.7,43.5,42.5],"script":[7.9,8.6,8.3,8.1,8.4,8.5,8,8.8,8.1,8.2,8.3,8.1,8.2,8.6,8.5],"paint":[32.6,34.7,33.7,34.5,34.9,34.2,34.1,35.1,35.3,35.4,34.6,34.1,34.1,34.5,33.7]}},{"b":1,"v":{"total":[46.6,46.1,47,47.5,46.7,46.5,46.4,46.3,46,45.5,46.5,46.4,47.3,47,46.9],"script":[10.7,10.1,10.4,10.1,10.3,10,9.9,9.7,10,9.6,9.8,10.1,10.1,10.2,10],"paint":[35.4,35.5,36.1,36.9,35.9,36,36.1,36.1,35.6,35.4,36.2,35.7,36.7,36.3,36.4]}},{"b":2,"v":{"total":[16.3,16.8,16.3,16.4,17,16.7,16.6,16.6,16.5,16.2,16.4,16.1,16,16.5,18.2],"script":[0.9,1.6,1,1,1,1.2,1.1,0.6,0.6,0.6,0.8,0.2,0.9,1.2,0.7],"paint":[13.8,13.4,13.9,13.8,13.9,13.8,14.1,14.5,14.3,14.3,14.1,14.7,12.6,13.9,15.9]}},{"b":3,"v":{"total":[2.8,1.8,2.8,2.8,3.4,3.5,2.4,4.8,2.7,2,2.2,2.8,2.3,2.4,2.2,2.2,2.7,3.3,2.9,2.6,3,2.7,2.8,5.1,2.2],"script":[0.4,0.1,0.1,0.1,0.9,0.1,0.1,0.7,0.1,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.6,0.3,0.1,0.6,0.8,0.1,0.1,0.7],"paint":[2.3,1.6,1.7,1.8,1.8,1.5,2.2,1.8,2.4,1.8,2.1,1.9,1.4,2.2,1.9,2.1,2.1,2.6,2,2.4,2.3,1.9,2.6,2.8,1.4]}},{"b":4,"v":{"total":[19.1,19.1,19.6,20.1,19.5,19.4,19.1,18.9,18.9,19.1,19.2,18.2,19,19.8,19],"script":[0.1,0.7,0.7,0.8,0.6,0.1,0.1,0.1,0.3,0.1,0.4,0.1,0.1,1,0.1],"paint":[17.2,16.8,17.4,17.8,18,18.1,17.6,17,17.9,18,17.4,17.1,17.6,17.6,17.2]}},{"b":5,"v":{"total":[15.3,15.4,15,15.2,15.2,15.3,15.2,15.3,14.9,14.9,14.9,14.9,15.3,15,15],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.1,0.4,0.1,0.2],"paint":[14.4,14.5,13.8,14.4,14.3,14.5,13.9,14.1,13.7,13.8,13.9,13.8,13.9,13.9,13.8]}},{"b":6,"v":{"total":[444.7,444.3,441.6,442.2,443.2,441,443.2,441.2,443.5,442.9,443.3,440,443.2,441.6,443],"script":[95.3,95.1,94.3,97.7,95.7,95.1,96.3,95.4,94.7,96.8,96.2,94,94,95,94.8],"paint":[342.5,342.4,340.4,337.3,340.6,338.9,340.2,338.4,341.9,339.1,340.1,339.2,342.4,339.6,341.4]}},{"b":7,"v":{"total":[48.7,47,46.9,47.5,46.4,46.1,47.5,46.3,46.1,48.1,46.9,47.5,47.4,47.6,46.3],"script":[7.6,6.6,6.7,6.6,6.7,6.7,7,6.8,6.7,7,6.9,6.7,6.7,6.5,7.2],"paint":[40.1,39.5,39.3,40,38.8,38.5,39.5,38.6,38.6,40.2,39.1,39.9,39.8,40.1,38.2]}},{"b":8,"v":{"total":[12.5,12.4,12.6,12.3,12.8,12.6,12.6,12.4,13.5,12.8,12.3,12.9,12.7,12.7,11.8],"script":[10.8,10.5,10.7,10.5,10.7,10.4,10.7,10.3,10.4,10.2,10.1,10.9,10.6,11,10.7],"paint":[1.6,0.9,1.7,1.7,1.9,2.1,1.9,2,3,2.2,2.1,1.2,1.2,1.5,0.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.4]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[29]}},{"b":14,"v":{"DEFAULT":[18.9]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[78.3]}}]}, +{"f":57,"b":[{"b":0,"v":{"total":[46.4,44.1,43.2,45,43.8,44,44.2,45.1,44.8,44.8,44.9,44.6,44.1,45,45.1],"script":[10.9,10.4,11,10.6,10.8,11.2,10.4,10.5,10.9,10.6,11,10.6,10.6,10.4,11.2],"paint":[34.9,33.2,31.8,33.9,32.6,32.4,33.4,34.2,33.5,33.8,33.6,33.6,33.1,34.2,33.5]}},{"b":1,"v":{"total":[49.7,48.6,49.3,48.4,49,49.3,49.1,49.1,49,49.7,49.4,48,49,49,48.7],"script":[13.3,13.1,13,13,13.4,13.2,13,13,13.2,13.4,13.1,12.7,13,13,13.8],"paint":[36,35.1,35.8,34.9,35.2,35.6,35.7,35.7,35.3,35.8,35.8,34.9,35.5,35.6,34.5]}},{"b":2,"v":{"total":[19.9,22.2,20,19.9,19.1,20.4,19.7,20.5,19.7,20.5,19.6,20.1,20,19.3,19.7],"script":[4.5,5.5,4.4,5.1,4.9,4.6,4.5,5,4.6,4.9,4.6,5,4.4,4.6,4.6],"paint":[13.9,14.8,14,13.7,12.7,14.8,13.6,14.6,12.1,14.3,13.5,14,14.6,13.3,13.3]}},{"b":3,"v":{"total":[3.5,3.5,3.7,3.1,2.6,2.9,4.7,5.6,3.6,3.5,3.9,3.7,2.9,2.4,2.8,3.3,3.2,4,2.9,3.7,4.8,3.8,6.1,3.1,3.7],"script":[1.2,1.2,1.2,0.5,0.2,0.7,0.9,0.8,1.1,1.4,0.2,0.6,0.7,0.9,0.9,1.1,1.2,0.2,0.9,0.9,0.2,0.7,1.2,0.2,1.4],"paint":[1.8,2.2,2.3,2.5,1.7,2.2,2.5,1.7,2.4,1.1,0.8,2.2,0.8,0.8,1.8,0.6,1.9,2,1.9,2.6,2.3,1.7,1.5,2.2,2.2]}},{"b":4,"v":{"total":[18.5,18.6,19.1,19,18.7,19.2,18.7,19,18.9,19.5,19.6,18.9,18.3,17.8,19.1],"script":[0.5,0.8,1.1,0.8,0.2,0.5,0.5,0.2,0.3,0.2,1,0.9,0.5,0.5,0.8],"paint":[16,16.5,16.7,16.6,17.6,17.4,17.1,16.5,17.4,16.9,16.6,16.8,16.4,16.2,16.9]}},{"b":5,"v":{"total":[15.1,15.1,15,14.8,15.1,14.8,14.8,15.1,14.8,15.1,15.2,14.8,14.8,15.1,15],"script":[0.1,0.4,0.3,0.1,0.4,0.1,0.4,0.3,0.4,0.3,0.4,0.1,0.1,0.4,0.4],"paint":[14.1,14,13.8,13.9,14,14,13.5,13.9,13.6,14.1,14,13.9,13.6,13.8,13.9]}},{"b":6,"v":{"total":[454.5,467.8,465.7,463.7,467.4,464.4,457.6,470.9,460.8,458.2,464.5,463.4,464.8,467.9,465.9],"script":[119,127.7,128.4,120.1,126,122.4,120.4,127.5,124.5,122.8,127.2,122.9,123.8,126,125.6],"paint":[328.6,333.2,330.4,336.6,334.5,335.2,330.6,336.2,329.6,328.8,330.5,333.7,334.3,335.2,333.4]}},{"b":7,"v":{"total":[50.5,53.2,51.9,50.7,51.1,50.6,50.9,50.3,52.7,52.8,53.2,52.8,51,52,52.3],"script":[10.7,11.1,11.7,11.1,11.7,11,11,10.8,11.1,11.5,11.2,11.1,11.3,11.6,11],"paint":[38.8,41.1,39.2,38.5,38.5,38.6,39,38.5,40.7,40.3,41,40.7,38.9,39.5,40.4]}},{"b":8,"v":{"total":[12.2,12.1,13.1,13,12.7,12.1,12.8,12.2,12.1,11.9,12.3,13,12.1,12,13.1],"script":[10.3,10.6,11.9,11.1,10.5,10.4,10.9,10.4,10.6,10.4,10.6,11.3,10.4,10.6,10.7],"paint":[1.2,1.4,1.2,1.8,2.1,1.6,1.1,1.8,0.4,1.4,1.6,1.2,1.7,0.4,2.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[17.8]}},{"b":14,"v":{"DEFAULT":[44.5]}},{"b":15,"v":{"DEFAULT":[10.4]}},{"b":16,"v":{"DEFAULT":[77.3]}}]}, +{"f":58,"b":[{"b":0,"v":{"total":[47,48.3,46.7,46.5,46.8,46,46.4,46.2,48.2,48.8,48.2,47.6,46.3,48,47.4],"script":[13.1,14.1,13.6,13.2,13.1,12.9,13.2,13.2,15,14.6,14.4,14,14,14,14],"paint":[33.4,33.8,32.7,32.8,33.2,32.7,32.8,32.5,32.7,33.8,33.4,33.2,31.8,33.6,32.9]}},{"b":1,"v":{"total":[70.6,69.6,69.7,71.7,71,68.9,68.2,70.1,69.5,69.5,67.9,70.4,68.5,67.6,68.1],"script":[33.5,33.3,32.9,33.1,33.9,32.4,31.4,33.3,32.6,32.6,31.4,33.2,31.9,31.3,31.8],"paint":[36.7,35.9,36.3,38.1,36.6,36,36.3,36.4,36.4,36.4,36.1,36.7,36.2,35.8,35.9]}},{"b":2,"v":{"total":[54.5,54.6,52.5,51.3,53.6,53.9,51.5,52.3,52.1,55.8,55.3,56.7,50.8,54.1,52.9],"script":[38.2,38.3,36.8,35.7,37.8,37.5,35.4,35.7,35.7,39.2,39.2,39.6,35,37.9,36.6],"paint":[14.7,14.9,13.7,13.7,14.3,15.1,14,15.5,14.2,15.2,14.2,15.7,14.2,13.8,13.1]}},{"b":3,"v":{"total":[37.6,36.5,40.2,39.9,38.9,38.4,35.8,36.4,38.3,37.9,38.4,38.8,39.7,36.6,36.2,39.7,38.2,37.9,38.1,38.9,37.7,38.1,39.7,40.6,36.9],"script":[34,33.1,36.6,37.2,36.1,35,32.7,33.1,35.2,34.7,34.8,35.4,36.2,33.8,33.3,36.2,35.5,34.7,34.8,35.3,34.6,34.5,36.2,36.6,33.4],"paint":[3.4,3,2.9,2,1.9,2.6,2.2,2.8,2.3,2.1,3.2,2.9,2.8,2.5,2.7,3.3,1.7,1.9,1.7,2.5,1.8,2.1,2.8,2,2.4]}},{"b":4,"v":{"total":[56.5,54.1,56.7,56,53.9,55,54.8,52.3,54.1,53.7,55.2,54.3,53.2,56.4,55.2],"script":[36.6,35.4,37.2,37.3,35.1,35.9,35.7,32.6,34.2,34.4,35.7,35.2,34.3,36.6,35.8],"paint":[17.7,16.6,18,16.3,17.7,17.9,18,18.4,18.3,17.8,18.1,18.1,17.5,17.9,17.6]}},{"b":5,"v":{"total":[124.8,123.3,125.3,124.7,125.8,126,125.2,124.7,123.2,123.6,125.1,125.1,126,126.6,126.7],"script":[54.7,52.2,52.8,53.8,54,55.2,54.7,53.7,53,51.7,54.4,53.3,55.7,55.4,55.4],"paint":[68.4,70.2,71.3,69.6,70.8,69.7,69.3,69.7,69.3,71.1,69.6,70.3,69,70,70.1]}},{"b":6,"v":{"total":[471.6,474.4,476,475.7,478.7,471.3,471.9,471.8,477.5,475.1,471.1,475.1,475.8,477.2,472.4],"script":[136.5,136.5,136.9,137.2,137.1,135.7,132.9,135.9,137.3,136.1,135.6,137.6,137.6,136.7,135.8],"paint":[328.4,331,332.3,331.8,334.6,328.9,332.3,329.1,333.4,332.2,328.8,330.5,331.4,333.6,329.9]}},{"b":7,"v":{"total":[66.4,67,65.6,64.9,66.4,65.9,66.9,65.9,66,67.4,67,67.2,65.8,65.7,67.3],"script":[26,27,26.2,25.6,26.4,26.2,26.8,26.3,26.3,26.4,26.7,26.4,26,26.2,26.9],"paint":[39.5,39.1,38.5,38.5,39.1,38.7,39.2,38.8,38.8,40,39.5,39.9,38.9,38.7,39.5]}},{"b":8,"v":{"total":[11.9,12,12.4,12.2,12.3,11.9,12.3,12.2,12.6,12,12,12.5,12,12.3,12.6],"script":[10.4,10.1,10.6,10,10.4,9.9,10.4,10.3,11,10.5,10.2,10.4,10.6,10.4,10.7],"paint":[1,1.8,1,1,1.8,2,1.1,1.8,1.5,1.4,1.7,2,1.3,1.8,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[20.8]}},{"b":14,"v":{"DEFAULT":[43.2]}},{"b":15,"v":{"DEFAULT":[10.2]}},{"b":16,"v":{"DEFAULT":[79.4]}}]}, +{"f":59,"b":[{"b":0,"v":{"total":[35.7,34.8,35,35.7,35.6,34.5,35.2,35.4,35.8,34.9,37.1,34.7,35.2,35,35.9],"script":[2.6,2.5,2.4,2.6,2.4,2.5,2.5,2.5,2.5,2.7,2.6,2.6,2.5,2.5,2.7],"paint":[32.7,31.9,32.2,32.7,32.8,31.6,32.3,32.6,32.9,31.8,34.1,31.7,32.4,32.1,32.8]}},{"b":1,"v":{"total":[38.9,39.4,39.2,39.1,39.1,40.2,38.4,39,40.1,38.8,38.5,40.2,38.7,38.2,38.2],"script":[4.8,4.9,4.8,4.7,4.9,4.9,4.5,4.9,4.8,4.8,4.8,4.8,4.8,5.1,4.7],"paint":[33.7,34,34,33.9,33.7,34.9,33.6,33.7,34.7,33.6,33.3,35,33.5,32.7,33.1]}},{"b":2,"v":{"total":[15.2,16,16.1,15.3,16.6,15.7,16.4,15.7,15,15.1,15.1,15.8,16.2,15.3,15.6],"script":[0.8,0.3,0.1,0.1,0.9,0.6,0.1,0.1,0.5,0.1,0.8,0.6,0.1,0.5,0.1],"paint":[12.8,14.6,14.5,13.8,13.8,12.8,14.4,13.7,13.5,13.9,13,13,14.4,13.2,14.5]}},{"b":3,"v":{"total":[2.7,2.9,1.9,2.3,7.1,4.9,2.6,3.3,3.1,2.3,2.6,3.6,2.2,2.5,4,1.9,5,2.7,2.5,3.2,2.3,3.4,2.7,2.5,2.7],"script":[0.4,0.1,0.4,0.1,0.4,0.3,0.2,1,0.1,0.4,0.1,0.1,0.3,0.1,0.8,0.1,0.8,0.8,0.3,0.1,0.1,0.1,0.8,0.8,0.7],"paint":[2.2,2.7,1.4,2.1,1.9,2.2,1.7,2.2,2,1.9,1,1.6,1.7,1.6,1.1,1.1,1.5,1.9,2.1,2,2.2,2.2,1.8,1.1,1.6]}},{"b":4,"v":{"total":[19.4,18.7,18.9,18.8,18.3,19,18.6,19.7,18.5,18.9,18.4,18.3,19.3,19.9,18.7],"script":[0.2,0.9,0.7,0.2,0.2,0.2,0.2,0.8,0.2,0.9,0.7,0.5,0.9,0.2,0.8],"paint":[17.5,16.3,16.5,16.4,16.6,17.3,16.9,17.3,16.8,16.8,16.2,16.3,16.1,17.4,16.1]}},{"b":5,"v":{"total":[14.7,14.8,14.9,15.3,14.7,15.4,15.2,15.9,14.8,14.7,14.6,14.5,14.7,14.9,15.2],"script":[0.3,0.2,0.1,0.1,0.1,0.2,0.4,0.3,0.1,0.2,0.1,0.2,0.2,0.1,0.4],"paint":[13.7,13.9,14.1,14.4,13.8,14,14.4,14.8,13.9,13.7,13.6,13.5,13.6,14,14.1]}},{"b":6,"v":{"total":[372,366.4,367.6,369.6,369.3,367.4,367.5,368.2,367.9,368.8,366,370.2,370.3,368,368.6],"script":[29.2,28,28.1,28.7,29.7,29.7,28.1,28.1,28.8,29.3,28.6,29.2,30.8,27.6,29.3],"paint":[335.9,331.8,332.9,334.3,332.9,331.1,332.8,333,332.5,332.9,330.8,334.4,333,333.7,332.7]}},{"b":7,"v":{"total":[40.1,39.6,40.9,40.1,39.7,39.9,40.2,39.7,40,39.8,40.8,39.8,40.8,39.9,41.1],"script":[2.5,2.5,2.5,2.4,2.5,2.4,2.4,2.4,2.4,2.4,2.5,2.5,2.4,2.4,2.5],"paint":[36.8,36.3,37.5,36.8,36.4,36.7,36.9,36.4,36.7,36.5,37.5,36.4,37.6,36.7,37.8]}},{"b":8,"v":{"total":[12.5,13.8,12,11.5,12.8,12.1,11.8,12.1,12.5,12.2,12.2,12.3,11.7,12.5,11.5],"script":[10.3,11.4,10.1,10.2,10.9,10.5,9.9,9.7,11,10.6,10.4,10.1,9.9,10.4,9.6],"paint":[2.1,1.8,1.2,0.9,0.9,1.6,1.9,2,1.4,1.6,1.8,1.2,1.8,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.8]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[13.4]}},{"b":14,"v":{"DEFAULT":[11.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[53]}}]}, +{"f":60,"b":[{"b":0,"v":{"total":[36.1,36.9,37.7,36.9,36.7,36.2,36.7,37.5,38,38.1,37.5,37.4,36.7,38,36.8],"script":[3.7,3.8,3.7,3.8,3.7,3.7,3.8,4.3,3.7,4.3,3.7,3.8,3.7,4.3,3.7],"paint":[32,32.7,33.6,32.7,32.5,32,32.5,32.8,33.9,33.4,33.4,33.3,32.6,33.3,32.7]}},{"b":1,"v":{"total":[41.4,42.6,40.8,40.1,40.7,41.3,41.1,40.6,41,41.4,41.4,40.3,41.5,42,40.9],"script":[6.4,6.2,6.2,6,6.3,6.4,6.2,6.1,6.3,6.1,6.4,6.1,6.3,6.3,6.3],"paint":[34.7,36,34.2,33.7,34.1,34.5,34.4,34.1,34.3,34.9,34.6,33.8,34.8,35.2,34.1]}},{"b":2,"v":{"total":[16.7,15.9,16.4,15.8,16.1,16.3,15.9,16.3,15.6,15.9,15.6,16.5,16.3,15.5,15.9],"script":[1,0.9,0.9,0.7,0.2,0.9,1.1,0.8,1.1,0.8,0.8,1.4,1.3,0.2,0.7],"paint":[15,14,14.6,13.7,15.2,14.3,12.9,14.4,13.3,14.1,13,13.6,13.7,13.8,14.6]}},{"b":3,"v":{"total":[2.1,3.1,4.3,2.6,3.1,2.5,2.2,2.2,3.3,2.1,6.6,3.3,3,2.8,4.1,2.4,2.5,2.5,3.1,1.9,3,2.8,2.4,5.5,5.3],"script":[0.1,0.1,0.7,0.1,0.9,0.1,0.3,0.1,1,0.3,0.1,1,0.9,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.2,0.1],"paint":[1.9,2.9,1.3,2.4,1.5,1.7,1.4,1.4,1.8,1.3,1.7,2.2,2,1.9,1.6,2.2,2.3,1.9,2,1.5,2.8,2.1,1.1,1.7,2.2]}},{"b":4,"v":{"total":[18.1,18.2,18.4,19.2,18,18.9,18.4,17.4,18.3,18.6,18.8,18.5,18.5,19.4,18.1],"script":[0.1,0.5,0.6,0.8,0.6,0.8,0.5,0.1,0.1,0.9,0.7,0.1,0.5,0.1,0.8],"paint":[17,15.6,16.2,16.8,14.6,16.9,16.8,16,17,16.4,16.5,17.1,16.6,16.5,15.7]}},{"b":5,"v":{"total":[14.8,14.9,15.2,15.1,14.7,14.8,14.7,15,14.9,15.4,15.6,14.8,14.8,14.8,14.9],"script":[0.1,0.3,0.1,0.4,0.1,0.1,0.1,0.2,0.3,0.4,0.3,0.1,0.1,0.3,0.1],"paint":[14,13.7,14.4,13.9,13.9,13.9,13.4,13.9,13.9,14.1,14.1,13.9,13.9,13.8,13.8]}},{"b":6,"v":{"total":[371.2,372.5,378.2,372.1,370,373.7,375.2,371.5,372.4,377.6,373.7,374.7,369.8,373.2,377.3],"script":[42.4,42.8,42.1,43.9,43.5,43.4,44.1,43.8,43.5,45.1,43.5,44.9,44.1,43.4,43.6],"paint":[321.9,323.1,329.4,321.6,319.9,323.7,324.6,321,322.2,326.1,323.6,323.2,319.2,323.3,327.1]}},{"b":7,"v":{"total":[44.4,44.6,45.4,41.8,44.5,44.7,44.7,44.5,44.5,42.8,41.4,43.3,44.6,44.1,42.9],"script":[4.4,4.2,4.3,4.2,4.4,4.4,4.3,4.3,4.4,4.5,4.3,4.5,4.3,4.2,4.4],"paint":[39.1,39.5,40,36.8,39.3,39.4,39.5,39.3,39.3,37.6,36.3,38,39.4,39.1,37.6]}},{"b":8,"v":{"total":[12.3,12.5,12.1,11.9,12.2,12.5,12.6,11.6,12.2,12.2,12.7,12,11.9,12.8,12.4],"script":[10.7,10.2,10.6,10.5,10.6,10.9,10.4,10.5,10.4,10,11.1,10,10.4,10.4,10.8],"paint":[0.4,1.8,1.4,1.3,1.5,1.5,2.1,1,1.7,2.1,1.5,1.9,1.4,2.2,1.5]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.3]}},{"b":11,"v":{"DEFAULT":[2.4]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[16.8]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[49.6]}}]}, +{"f":61,"b":[{"b":0,"v":{"total":[35.2,35.7,35.4,35.3,36.2,37.4,34.8,35.6,35,35.7,36.5,35.5,35.4,35,35.4],"script":[2.7,2.7,2.7,3.1,3,3,2.7,3.1,2.6,2.6,3,2.7,2.7,2.6,2.7],"paint":[32.2,32.7,32.3,31.8,32.8,33.9,31.8,32.1,32,32.7,33,32.4,32.3,32,32.3]}},{"b":1,"v":{"total":[39.7,38.4,38.4,38.5,38.3,38.6,38.4,40.8,38.6,38.7,38.4,40.7,38.5,38.3,40.2],"script":[4.9,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.7,4.8,4.7,4.8,5],"paint":[34.3,33.2,33.2,33.4,33.2,33.4,33.2,35.7,33.5,33.5,33.3,35.5,33.3,33.1,34.7]}},{"b":2,"v":{"total":[16.2,15.5,16.9,17.2,17.4,16.2,16.2,16,16.3,16.8,17,15.9,16.5,16.1,16.3],"script":[1.2,0.9,0.9,1.5,2.1,1,1.5,1,1.5,1.7,1.8,1,1.7,1,1],"paint":[13.9,13.3,14.1,14.5,14,14,13.6,14,13,13.9,14.2,13.6,12.7,13.5,14.4]}},{"b":3,"v":{"total":[3.5,2.9,3.6,3.1,2.8,3.1,3.3,3.1,3.4,3.8,3.5,3.2,5.5,3.6,6.5,3.1,3.3,3.3,4.3,4.1,3.5,4.7,3.1,2.9,2.8],"script":[0.8,0.2,1.1,0.7,0.5,0.8,1,1,0.6,1,1.3,0.9,0.9,1.4,1,1.5,0.7,0.9,0.8,0.9,0.6,0.6,1,1.2,1.3],"paint":[2.7,1.8,1.2,2.4,1.3,2.1,1.6,2,2.7,1.4,1.5,1.6,1.6,1.5,1.8,1.1,2.5,2.3,2.4,1.6,2.5,2.1,1.7,1.6,1.4]}},{"b":4,"v":{"total":[19.3,18.6,18.8,18.7,19.2,18.8,18.7,18.8,18.6,18.8,21.4,18.8,18.3,18.8,18.6],"script":[1.1,0.6,1.5,1.1,0.9,1,0.9,1.2,1.2,1.6,1.1,1,1,0.9,1.2],"paint":[16.9,16.7,15.9,16.4,16.8,16.3,15.6,16,15.5,16.1,18.7,16.7,16,16.4,16]}},{"b":5,"v":{"total":[14.8,14.7,14.8,14.7,14.3,14.5,14.7,14.6,14.8,14.8,14.7,15.4,15.2,14.8,14.6],"script":[0.1,0.1,0.2,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.3,0.1,0.1,0.2,0.1],"paint":[13.9,14.2,13.8,13.9,13.5,13.8,13.9,13.3,14.1,13.8,13.7,14.5,13.9,13.9,13.7]}},{"b":6,"v":{"total":[372,372.1,372.6,374.7,371,371.7,375.6,374.4,373.4,376.5,368.8,369.4,371.8,375,373.4],"script":[32.5,32.9,33.5,34.6,33.5,33.8,34.1,34,32.7,33.1,32.9,32.5,32.4,32.6,33],"paint":[332.8,332.6,332.5,333.5,330.8,331.4,334.9,333.6,334.1,336.8,329.2,330,332.7,335.7,333.6]}},{"b":7,"v":{"total":[41.7,41.9,41.6,40.2,39.9,40.4,48.8,41.8,40.2,41.6,40.5,41.4,40.1,41.7,41.3],"script":[3.1,3.1,3.2,3.1,3.1,3,3.1,3.1,3,3.1,3.1,3.3,3,3.2,3.1],"paint":[37.8,37.8,37.6,36.3,36,36.5,44.6,37.9,36.4,37.6,36.6,37.3,36.2,37.6,37.4]}},{"b":8,"v":{"total":[11.2,11.2,11.9,11.9,12.2,11.7,11.4,11.9,11.6,12,11.3,12.1,11.7,12,11.2],"script":[9.8,9.7,10,9.5,11.1,10.2,9.3,10.2,9.4,10.1,10,10.5,10,10,10.1],"paint":[1.4,1.4,1,1.6,0.4,1.4,2,1.3,2.1,1.8,1.2,1.6,1,2,1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.1]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[15.4]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.5]}},{"b":16,"v":{"DEFAULT":[47.5]}}]}, +{"f":62,"b":[{"b":0,"v":{"total":[47.4,46.5,47.4,48.4,46.8,47.4,46.7,48.4,48.5,47.6,47.8,48.8,49.3,47.3,47.9],"script":[13.3,13.2,13.9,13.6,12.9,13.3,13.4,13.3,14.8,14.5,13.4,14.4,14.5,13.7,13.7],"paint":[33.6,32.9,33.1,34.3,33.5,33.7,32.8,34.7,33.3,32.7,34,33.9,34.4,33.2,33.8]}},{"b":1,"v":{"total":[50.1,49.8,49.9,49.9,49.9,49.5,49.7,49.8,48.3,49.5,51,49.9,50.3,50.4,51.2],"script":[14.6,14.3,14.1,14.4,14.3,13.9,14.2,14.3,13.8,13.7,14.2,14.2,14.3,14.2,15.2],"paint":[35.2,35.1,35.4,35.1,35.2,35.2,35.1,35.1,34.1,35.4,36.3,35.2,35.5,35.8,35.6]}},{"b":2,"v":{"total":[16,15.1,15.3,16.3,15.9,15.9,16.5,15.8,15.9,15.7,15.7,15.9,15.8,15.5,16.6],"script":[1,0.6,0.9,1.3,0.9,0.9,1.2,0.6,1,0.9,0.9,0.6,1,0.9,1.2],"paint":[13.1,13,12.8,13.3,13.4,13.3,13.6,13.9,13.5,13.1,13.9,13.5,12.9,12.9,14.1]}},{"b":3,"v":{"total":[2.9,2.5,3.5,2.6,3.2,3.2,3.9,3,2.8,3.1,2.4,3.4,2.8,3.1,2.6,3.4,2.6,2.8,3,2.8,3.6,2.6,2.9,2.9,2.8],"script":[0.1,0.5,1.1,1.1,0.1,0.1,1,1,0.8,1.1,0.5,1.1,0.1,1,0.1,1,1.1,0.9,0.1,0.6,0.1,0.7,1,0.5,0.8],"paint":[1.9,1.9,1.4,1.5,3,1.7,1.4,1.9,1.9,1.9,1.8,2.2,2.6,1.6,2.4,1.5,1.4,1.9,1.9,2.1,2.7,1.8,1.8,2.2,1.9]}},{"b":4,"v":{"total":[18.6,18.8,18.2,18.1,18.3,18.1,18.6,18.5,18.4,18.6,17.8,19.4,18.7,18.4,18.4],"script":[0.2,0.2,0.7,0.6,0.3,0.3,0.7,0.9,0.7,0.7,0.2,0.7,0.3,0.8,0.2],"paint":[17.2,15.9,16.2,16.7,16.4,16.6,15.9,15.9,16.2,16.1,16.1,17.6,17.3,16.5,16]}},{"b":5,"v":{"total":[15.4,14.8,15.3,15.2,14.9,15,14.9,15.2,16.1,14.8,15.2,15.8,15.5,15.6,14.8],"script":[0.5,0.4,0.4,0.2,0.2,0.3,0.2,0.5,0.5,0.4,0.2,0.5,0.4,0.3,0.3],"paint":[13.9,13.3,14.1,14.3,13.7,13.9,13.7,13.4,14.3,13.7,14.3,14.4,14.4,14.5,13.5]}},{"b":6,"v":{"total":[461.6,470.8,459.5,456.7,464.2,461.6,470.9,461.4,461.8,460.6,455.5,457.9,457.2,472.5,457.5],"script":[121.6,122.2,120.9,119.7,122.1,120,121.1,119.8,121.3,120.8,119.4,120.2,118.3,119.2,118.4],"paint":[333.1,341.7,331.9,330.1,335.3,334.9,343,334.9,333.3,333,329.3,331.2,332.1,346.5,332.4]}},{"b":7,"v":{"total":[50.9,53.6,51.1,51.2,50.2,51.8,50.2,51.5,51.3,53.2,50.7,51,51.4,51.2,50.9],"script":[11.6,12.7,11.4,11.4,11.1,11.7,11.6,11.8,11.6,12.7,11.4,11.7,11.5,11.5,11.7],"paint":[38.4,39.9,38.8,38.9,38.3,39.1,37.7,38.7,38.8,39.5,38.4,38.4,39,38.8,38.4]}},{"b":8,"v":{"total":[13,13,13.3,13.1,13.5,13.3,13.2,13.2,13.2,13.2,13.7,14,12.9,13,13.6],"script":[11.5,11.6,10.8,10.9,11.3,11.6,11.8,11.5,11.7,11.3,11.3,12.1,11.6,11.5,11.3],"paint":[0.4,0.4,2.3,2.1,1.9,1.6,1.3,1.1,1.4,1.7,1.8,1.4,1.2,1.4,2.2]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[4]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[31.4]}},{"b":14,"v":{"DEFAULT":[51.1]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[91.1]}}]}, +{"f":63,"b":[{"b":0,"v":{"total":[60.7,60.5,60.7,58.3,58.7,61,59.6,60.6,59.8,59.2,60.3,58.8,60.1,58.6,60],"script":[25.9,27.2,26.2,25.2,25.7,26.8,26.1,26.4,25.8,25.5,26.6,24.8,25.9,24.9,26.5],"paint":[34.7,33.2,34.4,32.9,32.8,34.1,33.3,34,33.8,33.6,33.5,33.8,34.1,33.6,33.3]}},{"b":1,"v":{"total":[76.7,77,77.2,76.7,76.6,76.7,75.7,75.5,77.8,77.3,78.2,77.7,77.4,78.1,76.8],"script":[41.6,42.4,41.5,42.2,41.3,41.5,40.7,40.9,43,42.4,42.4,42,41.8,42.5,41.5],"paint":[34.9,34.5,35.4,34.3,35.2,35.1,34.8,34.4,34.7,34.7,35.5,35.5,35.4,35.4,35]}},{"b":2,"v":{"total":[63.9,63.2,61.6,61.2,65.9,66.5,63.8,61,61.7,65.9,63.5,60.1,60,62.2,63],"script":[48.1,45.1,47.1,45.9,49.5,49,45.9,45.2,47,48.4,46,45.5,45.2,45,45.2],"paint":[15.6,15.9,14,14.9,14.8,15.6,17.1,14.5,13.7,16.7,15.9,13.6,14,14.5,16.3]}},{"b":3,"v":{"total":[43.5,47.5,47.7,46.3,46,45.1,46.7,48.4,47.1,46.8,42.5,47.1,45.2,42.9,50.6,46,47.4,47,42.5,48.3,43.8,46.4,50.7,46.9,47],"script":[38.3,41.5,42,41.5,39.9,39.1,40.8,41.8,41.2,39.1,38.1,40.9,39.7,38.1,44.6,38.4,40.7,40.3,38.8,41,39.8,40.2,43.6,41,40.1],"paint":[2.8,4.7,3.9,4.2,3.6,4,4.6,4.2,4.4,4.9,2.7,3.8,3.5,3.3,4.3,3.8,4.2,3.8,2.8,3.7,3.4,3.2,4.3,5.5,4.1]}},{"b":4,"v":{"total":[55.7,56.2,58.3,60.5,62.7,56.8,57,55.4,55.6,57.5,58.7,56.8,57.6,55.4,57.4],"script":[37.5,38.1,39.9,41.8,42.8,36.9,39.1,36.7,37.5,38.9,39.9,38.3,38.9,37.6,38.3],"paint":[18,17.3,18.2,18.6,18,18.8,17.7,17.6,17.9,17.2,18.4,17.7,17,16.8,18.1]}},{"b":5,"v":{"total":[41.4,38.1,44.2,39.5,39.3,38.4,39.1,40.3,46.7,44.3,45.7,42.7,40.2,46.6,44.5],"script":[20.6,19.5,21.3,19.3,20.3,19.4,19.3,20.2,19.5,20.6,20,18.6,19.8,19.9,20],"paint":[15.4,15.3,16.9,15.3,16.3,15,15.4,15.7,15.5,17.1,15.5,15.4,15.8,16,17.5]}},{"b":6,"v":{"total":[589.3,590.1,595.6,589,578,580.5,588.5,586.1,577.7,584.1,588.1,598.7,590.7,593.5,588.1],"script":[242.4,245.9,239.2,244.4,235.1,240.4,242.5,240.9,237.3,238.8,243.1,242.2,241.8,240.8,243.1],"paint":[344.7,342.1,354.3,342.4,340.7,338,343.8,343,338.3,343.2,342.8,354.4,346.8,350.5,342.8]}},{"b":7,"v":{"total":[75.8,76.2,75.7,76.3,76.3,77.2,76.8,75.5,77.6,76.9,76.3,76.9,75.4,77,74.6],"script":[34.5,35.5,34.9,36.2,35.1,37.3,35.5,35.3,36.8,35.9,35.4,36.2,35.2,35.5,34.3],"paint":[41,39.9,40.5,39.8,40.5,39.5,41,39.9,40.6,40.4,40.3,40.4,39.8,41.2,39.9]}},{"b":8,"v":{"total":[31.3,57.2,56.6,31.3,34.4,55.5,58.2,30.2,34.8,30.8,57.6,30.2,33.9,35.9,29.2],"script":[29.5,29.3,27.9,29.3,29.9,27.7,28.6,28.6,33,28.4,30.4,29,28.1,30.9,27.5],"paint":[1.5,3.5,2.8,1.9,3.1,3.3,3.3,1.5,1.4,1.6,2.7,1.1,2.4,3.6,1.6]}},{"b":9,"v":{"DEFAULT":[2.7]}},{"b":10,"v":{"DEFAULT":[8.4]}},{"b":11,"v":{"DEFAULT":[8.8]}},{"b":12,"v":{"DEFAULT":[8.6]}},{"b":13,"v":{"DEFAULT":[49.4]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.6]}},{"b":16,"v":{"DEFAULT":[661.5]}}]}, +{"f":64,"b":[{"b":0,"v":{"total":[40.4,40.8,40.4,40.6,41.1,40.6,40.7,41,41.8,41,40.1,41.9,40.6,42,40.8],"script":[7.6,8.1,7.4,7.7,7.7,7.4,7.6,7.5,8.2,7.8,7.4,8.2,7.7,8.5,8],"paint":[32.3,32.2,32.5,32.5,32.8,32.8,32.7,33.1,33.2,32.7,32.3,33.2,32.5,33.2,32.4]}},{"b":1,"v":{"total":[50.4,48.1,48.3,48.6,48.7,48.5,49,49,48.1,49.7,47.9,48.4,47.8,48.8,48.9],"script":[15.2,14.3,14.2,14.6,14.6,14.5,14.2,14.3,14.2,14.9,14.2,14.4,14.2,14.8,15.2],"paint":[34.8,33.4,33.7,33.6,33.7,33.6,34.4,34.2,33.6,34.3,33.3,33.4,33.1,33.6,33.3]}},{"b":2,"v":{"total":[31.6,32,31.3,30.7,29.7,32,30.4,30.7,31.8,29.7,30.4,31.5,29.1,29.6,31.2],"script":[11.4,10.1,10.4,10.2,9.8,10.2,10.6,10.9,10.5,10.3,10.1,10.8,10.1,9.6,10.5],"paint":[18.9,20,19.2,18.6,18.2,19.5,18.1,18.7,19.4,17.4,18.7,19,17.7,18.9,19.4]}},{"b":3,"v":{"total":[13.4,13.6,13.9,14.2,14.1,13.8,14,13.1,14.1,13.5,13.9,14,14.2,13.3,13.8,13.5,14.2,13.8,13.5,14.2,13.3,14.2,13.3,13.5,13.5],"script":[6.7,7.2,7.2,7.7,7.7,7.5,7.5,7.2,7.2,7.9,7.3,7.2,7.7,6.9,7.4,7.2,8,7.5,7.6,7.6,6.9,8.1,6.7,7.1,7.6],"paint":[5.4,6.2,6.6,6.4,5.5,5.8,5.6,5.3,5.9,5.4,5.9,6.2,6.1,6.3,5.3,6.2,6.1,6,5.3,5.4,5.2,4.8,5.4,6.3,5.8]}},{"b":4,"v":{"total":[26.6,27.3,25.5,25.9,25.5,25.4,27,26.1,25.7,28.8,25.2,25.3,26.4,31.1,25.1],"script":[7.8,7.1,7.4,7.4,6.8,6.8,7.3,7.4,7.3,7.5,6.6,6.8,6.8,7.1,6.8],"paint":[17.3,17.7,16.2,16.6,16.1,17,18.4,17,16.5,19.3,17.2,16.8,18,20.8,16.7]}},{"b":5,"v":{"total":[19.2,20.2,20.7,20,19.6,19.5,19,20.3,21,19.5,19.3,19.3,19.4,21.3,19.2],"script":[3.9,4.3,4.4,4.3,4.1,4.3,4.1,4.3,4.9,4.3,4.2,4,4.1,5,3.9],"paint":[13.9,15.1,15.6,14.9,14.7,14.3,14.1,14.5,15,14.5,14.4,14.4,14.4,15.2,14.6]}},{"b":6,"v":{"total":[424,419.9,424.7,422.5,421.3,422.3,426.6,425.3,424,420.9,423,423.8,421,422.3,427.1],"script":[87,80.2,91.3,81.3,81.3,81.1,91.6,82.3,82.3,82.6,81.1,81.9,81.1,80.4,93.9],"paint":[330.5,333.2,326.8,334.7,333.6,334.8,328.5,336.1,334.9,331.8,335.3,334.5,333.4,335.3,326.7]}},{"b":7,"v":{"total":[50.9,51.1,49.4,50.6,49.7,50.2,50.4,51.3,50.9,51.2,52.6,50.4,50.9,51.1,51],"script":[11.2,11.3,11,11.4,11,11.3,11,11.5,11.4,11.6,11.5,11.3,11.3,11.5,11.2],"paint":[38.9,39,37.5,38.3,37.8,38,38.6,38.9,38.6,38.8,40.2,38.3,38.8,38.7,38.9]}},{"b":8,"v":{"total":[18.5,19,18.7,18.3,18.1,18.6,19.7,19.1,17.7,19.2,17.7,18.5,18.9,18.5,19.3],"script":[16.8,16.9,17.6,16.8,16.2,17.2,17.8,17.4,15.5,17.3,15.3,17.5,16.8,17,17.4],"paint":[1.6,1.7,1.1,0.3,1.8,1.3,1.9,1.6,1.1,1.1,2.1,0.3,2.1,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.3]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[27.5]}},{"b":14,"v":{"DEFAULT":[23.7]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[74.2]}}]}, +{"f":65,"b":[{"b":0,"v":{"total":[47.6,42.8,45.8,48,42.6,49,42.3,41.4,51.1,46.1,46.9,48.1,49.3,43.5,49.5],"script":[9.2,8.4,8.6,8.6,9.2,8.6,9,8.5,9.1,9.2,8.6,8.3,8.4,8.5,8.6],"paint":[34.8,34.3,32.6,32.4,33.3,32.9,33.1,32.7,34.4,33.9,32.4,32.5,32.7,32.3,32.8]}},{"b":1,"v":{"total":[51,54,54,49.1,52.2,53.9,46.4,52.4,52.2,51.1,52.6,53.4,48.3,52.3,55.1],"script":[12,12,12.1,11.9,12,12.2,11.8,12.4,11.8,11.8,12.2,12.2,11.6,11.7,12.1],"paint":[34.2,34.6,34.8,34.6,34.3,35.1,34.5,35,34.1,34.7,33.8,36.3,34.7,36.5,35.6]}},{"b":2,"v":{"total":[26.7,43.4,26.9,42.5,43.6,43.3,42.7,44,28.7,29.2,44.5,44,28.5,42.6,43],"script":[12.1,12.9,10.3,12.2,13.3,12.2,12,12.7,12,12.1,13.7,13.4,12.4,12.6,12.8],"paint":[14.4,14.5,15.4,14.3,14,15,13.9,16,15.3,15.7,14.8,13.3,15.1,14,14.2]}},{"b":3,"v":{"total":[15.9,13.6,14,14.7,14.5,16.3,17.5,13,13,14,12.7,16.6,15,15.8,16.1,14.8,13.1,13.7,13.8,12.9,13.2,13.9,13,16.4,12.9],"script":[10.1,10.4,11.2,10.5,10,10.9,11.1,11,9.8,10.8,9.7,10.4,11.4,10.3,11,11.9,10.5,10.6,11.2,9.4,10.2,9.8,9.8,11.4,10.1],"paint":[2.4,2.5,2.7,2.4,2.6,2.3,2.9,1.2,3.1,2.7,2.3,1.8,3.5,3,1.5,2.1,1.6,3,2.4,2.6,2.3,2.3,2.6,3.4,2.7]}},{"b":4,"v":{"total":[45.6,44,42.8,29,29.1,29.8,30.7,44.3,29.9,45.3,31.1,27.3,27.8,28.7,44.4],"script":[10.9,10.7,10,11.1,12.4,10.4,11.5,11.3,11.7,11.7,11.2,9.1,9.9,10.4,10.8],"paint":[18.2,17.3,17.3,17.8,16.6,17.9,18.3,17,18,17.6,17.7,17.1,17.1,17.1,17.6]}},{"b":5,"v":{"total":[19.2,21.7,26,19.1,21.6,23.2,25.4,19.8,19,26.5,20.3,24,24.5,24.8,19],"script":[5.8,5.5,5.5,5.7,5.7,5.5,5.7,6.1,5.2,5.7,5.9,5.8,5.6,5.2,5.6],"paint":[12.9,12.9,13.3,13.3,13,13.3,13,13.6,13.2,13,13.2,13.8,14,12.9,13.3]}},{"b":6,"v":{"total":[432.1,435.4,452.9,439,435.6,432.8,432.6,429.5,435.7,430.8,436.9,437.7,436.3,431.6,432],"script":[100.8,103.4,102.1,101.9,100.5,101.4,100.5,100.9,103.1,101.4,101.3,103.2,101,101.2,100.7],"paint":[327.3,329.7,344.3,329.2,327.2,329.4,326,326.4,325.9,326.2,327.6,330.5,328.9,326.7,323.6]}},{"b":7,"v":{"total":[56,56.4,56.9,59.5,55.9,56.6,56.5,56.3,56.6,59.3,56.6,55.8,56.6,59.9,62.2],"script":[12,12.2,12.4,12.1,12,12.5,11.8,11.8,12.1,12.1,11.9,12.3,12.1,12.4,12.4],"paint":[38.2,37.8,37.9,37.8,37.9,37.6,38.2,37.8,37.6,37.6,38.2,37.5,38,38.3,38.3]}},{"b":8,"v":{"total":[15.7,16.1,16.2,17.7,31.1,15.7,32.7,16.5,32,16.9,32.3,18.6,16.4,32.6,14.4],"script":[15,14.4,14.6,15.4,13.5,14.7,14.9,14.2,15,14.5,14.8,14.1,14.2,15.3,13],"paint":[0.7,1.6,1.5,1.1,1.7,0.9,1.2,2.2,1.8,1.4,1.6,1.8,1.5,0.8,1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[32.6]}},{"b":14,"v":{"DEFAULT":[38]}},{"b":15,"v":{"DEFAULT":[11.7]}},{"b":16,"v":{"DEFAULT":[79.9]}}]}, +{"f":66,"b":[{"b":0,"v":{"total":[41.8,40.5,40.7,40.6,41,40.9,40.7,40.7,39.9,41.7,41.4,40.3,40.7,41.4,41],"script":[7.9,7.8,8.1,7.8,8.1,7.8,8,8,7.7,8.1,8,7.7,7.9,8.4,8],"paint":[33.4,32.3,32.2,32.4,32.5,32.7,32.3,32.3,31.8,33.2,33,32.2,32.3,32.6,32.6]}},{"b":1,"v":{"total":[45,45.1,44.6,45.3,44.3,45,44.2,44.2,44,44.2,44.2,45.4,44.7,44.1,44.6],"script":[10.2,10.4,10,10.6,9.9,10.1,9.9,9.7,9.7,9.7,9.8,10.6,9.8,9.7,9.9],"paint":[34.3,34.3,34.2,34.2,33.9,34.5,33.9,34.1,33.9,34.1,34,34.4,34.4,34,34.3]}},{"b":2,"v":{"total":[17.3,17.3,17.4,17.7,17.4,16.7,16.9,17.5,17,16.9,17.4,17.8,18.2,17.2,17.1],"script":[2.3,2.2,2.7,2.4,1.8,1.7,1.7,1.9,2.1,2.1,2.4,2,2.6,1.6,2.4],"paint":[13.8,13.2,13.4,14.2,13.8,13.2,13.3,13.7,13.6,14,13.8,14.2,14.4,14.9,13.4]}},{"b":3,"v":{"total":[3.4,2.8,3.5,3,3.5,3.3,3.5,3,3.8,2.9,4.9,3.3,3.6,3,3.1,3,3.1,3.2,2.4,2.9,3.4,3.5,3.4,5.3,3.1],"script":[0.9,0.9,0.9,0.6,1.1,0.9,1.1,0.5,1.1,0.9,1.3,0.6,0.9,0.3,0.9,0.9,0.9,0.9,0.7,0.2,1.1,0.9,0.7,0.6,0.2],"paint":[2.4,1.4,2.3,1.4,2.2,0.9,1.3,1.6,1.4,1.3,1.6,2.6,2.6,2.4,1.4,1.4,1.5,1.6,1.2,2.2,2.2,2.5,1.6,1.8,2.8]}},{"b":4,"v":{"total":[19.7,20.1,19.8,19.6,20.3,19.5,20.2,20,19.7,19.3,20.7,19,19.7,19.3,19.6],"script":[1.8,2.1,2.4,1.4,2.2,1.8,2.5,2,2.3,1.8,2,2.1,2.1,1.6,1.9],"paint":[16.5,17.2,16.3,17.2,16,16.4,17,16,16.4,16,17,15.4,16.3,16.7,16.3]}},{"b":5,"v":{"total":[15.6,16.3,16,15.3,15.4,15.9,16.6,15.5,15.7,15.4,15.9,15.7,15.3,16,16],"script":[0.9,0.8,0.8,0.8,0.8,1,1,0.7,0.7,0.7,0.7,0.9,0.8,0.9,1],"paint":[13.8,14.3,14.3,13.9,13.9,14.5,14.8,14.1,14.2,13.9,14.4,13.9,13.9,14.2,14.1]}},{"b":6,"v":{"total":[429.3,422.1,420.2,420.7,424.6,425.8,416.7,425.1,421.4,421.4,419.3,424.5,422,424,424.6],"script":[84.9,86.2,85,86.6,89.4,88.9,86.2,88.8,86,84.3,85.8,89.9,87.4,85.8,85.5],"paint":[337.7,329.2,328,327.4,328.3,330.3,323.8,329.7,328.7,330.3,326.8,327.6,327.9,331.4,331.4]}},{"b":7,"v":{"total":[46.3,44.6,45.7,44.7,46.4,44.1,44.4,44.6,44.7,44.4,44.1,46.2,44.9,45.4,46.2],"script":[6.5,6.5,6.8,6.3,6.5,6.3,6.4,6.5,6.5,6.3,6.4,6.6,6.6,6.8,6.7],"paint":[39,37.2,38,37.5,39,36.9,37.1,37.3,37.4,37.3,36.8,38.7,37.5,37.7,38.6]}},{"b":8,"v":{"total":[14.1,14.2,13.7,14.6,13.8,14.6,14.5,14.2,15.3,14.5,14.4,13.6,14.6,14.4,14.3],"script":[11.9,12.2,12.3,12.5,12.4,12.6,12.4,12.7,13.4,12.4,12.2,12.3,12.5,12.7,12.3],"paint":[1.8,1.9,1,2,1.3,1.2,2,1.2,0.9,1.1,1.6,0.9,2,1.2,1]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[29.7]}},{"b":14,"v":{"DEFAULT":[56.3]}},{"b":15,"v":{"DEFAULT":[15.5]}},{"b":16,"v":{"DEFAULT":[101.7]}}]}, +{"f":67,"b":[{"b":0,"v":{"total":[39.8,39.7,40.7,38.9,38.7,37.9,40.6,38.6,41.6,38.4,40,39.6,39.9,40.5,40.2],"script":[6.8,6.7,6.9,6.5,6.6,6.3,7,6.4,7,6.6,6.8,6.7,6.8,6.8,6.8],"paint":[32.6,32.6,33.4,32,31.7,31.2,33.2,31.8,34,31.3,32.7,32.5,32.7,33.2,33]}},{"b":1,"v":{"total":[44.8,45.9,44.8,45.4,45,45,45,46,46.8,45.1,45.9,44.8,44.4,44.9,44.7],"script":[9.9,10.2,10,9.9,9.9,9.8,9.9,10.1,10.8,9.7,9.8,9.9,9.7,9.8,9.9],"paint":[34.5,35.2,34.4,35,34.6,34.7,34.7,35.4,35.5,34.9,35.6,34.4,34.3,34.6,34.4]}},{"b":2,"v":{"total":[18.4,16.5,16.3,17.1,17.1,16.4,16.8,16.8,16.7,16.5,16.8,16.9,17.1,16.7,16.9],"script":[1.7,1.2,1.4,1.7,1.2,1.3,1.8,1,1.5,1.7,1.7,1.4,1.5,1.3,1.2],"paint":[14.5,13.6,13.5,14.7,15.2,13.5,13.6,13.7,14.2,13.2,13.5,14.8,14.2,14.1,14.7]}},{"b":3,"v":{"total":[3.5,3.3,3.9,3,3.4,4.3,3.7,2.7,3,2.8,3.4,2.9,2.7,3.4,3.2,3.7,3,3.7,2.6,3.5,3.8,3.2,3.4,4.4,3],"script":[1.3,1,0.9,0.2,1.1,1.1,1,0.9,0.9,0.9,1.1,0.9,0.2,1,0.7,1.1,1,1.2,0.7,1,1.3,1,1.2,0.9,1.1],"paint":[1.2,1.7,2.5,1.7,2.2,2,1.4,1.1,1.9,1,2.1,1.2,2,2.3,2.3,1.5,1.3,2.4,1.8,2.4,1.9,1.7,2.2,2,1.8]}},{"b":4,"v":{"total":[20.3,19.6,19.9,21.5,19.3,21.6,19.8,19.8,19.1,19.6,21,19.2,19.9,20.9,19.6],"script":[1.8,1.2,1.5,2.1,1.6,2.1,1.5,1.7,1.4,1.7,2.2,1.3,1.3,2.1,1.5],"paint":[17.1,17.7,16.9,17.9,16.5,18.2,16.8,16.6,16.5,16.6,17,16.9,17.6,17.3,16.7]}},{"b":5,"v":{"total":[15.5,16,16,15.4,15.4,15.5,15.5,15.8,15.6,15.4,15.7,15.5,15.9,15.5,15.5],"script":[0.6,0.7,0.7,0.7,0.6,0.7,0.7,0.6,0.7,0.6,0.7,0.6,0.7,0.7,0.7],"paint":[14.1,14.5,14.6,13.7,13.7,13.7,14.1,14.4,13.9,14.1,14.3,13.5,14.5,13.8,14.1]}},{"b":6,"v":{"total":[629.5,632.2,627.5,626,635.5,628.1,635.3,634.8,625.7,624.4,632,630.3,634,626.2,635.9],"script":[270.3,274.6,268,269.7,273.4,269.5,276.1,273.6,269.9,267.7,272,271.1,273.9,267.9,278.8],"paint":[352.4,350.8,352.8,349.7,355.4,351.9,352.5,354.6,349.1,350,352.6,352.6,353.4,351.4,350.3]}},{"b":7,"v":{"total":[76.1,76.4,76.3,76.2,75.9,76.4,75.2,76.2,75.7,76.4,76.7,77,76.3,76.7,75.8],"script":[35.8,36,34.6,35.5,35.2,35.6,34.8,35.1,35.3,35.2,36,36.3,35.8,36,35.3],"paint":[39.4,39.5,40.7,39.8,39.8,39.8,39.5,40.2,39.5,40.2,39.8,39.8,39.6,39.7,39.6]}},{"b":8,"v":{"total":[19.7,18.3,18.3,20.2,19.7,18.8,18.3,18.5,19,18,18.3,19.8,19.7,18.4,18.3],"script":[17.4,16.4,16.3,18.4,17.3,17.3,16.4,16.6,17.2,16.8,16.5,18.3,17.8,16.6,16.4],"paint":[2.1,1,1.9,1.2,0.8,1.4,0.9,0.8,1.5,1.1,1.2,1.5,1.1,1.7,1]}},{"b":9,"v":{"DEFAULT":[2.7]}},{"b":10,"v":{"DEFAULT":[9.7]}},{"b":11,"v":{"DEFAULT":[9.8]}},{"b":12,"v":{"DEFAULT":[10.3]}},{"b":13,"v":{"DEFAULT":[72.8]}},{"b":14,"v":{"DEFAULT":[232.2]}},{"b":15,"v":{"DEFAULT":[66.3]}},{"b":16,"v":{"DEFAULT":[388.4]}}]}, +{"f":68,"b":[{"b":0,"v":{"total":[41.1,41.1,42.1,41.8,42.4,40.3,42.7,40.9,40.2,41.7,42.5,40.5,43,43.9,42.1],"script":[8.1,8.1,9,8.5,9,8,8.3,8.1,8.2,9,9,8.1,9.4,8,8.2],"paint":[32.8,32.9,32.9,33.1,33.2,32.2,33.1,32.7,31.8,32.5,33.3,32.2,33.4,35.1,33.1]}},{"b":1,"v":{"total":[48.7,48.2,48.1,51,48.7,49.9,50.2,50.9,50.8,50.4,50.8,50.4,50,50.2,49.5],"script":[23.1,22.8,22.6,24.1,22.8,23.7,23.2,24.2,23.7,24,24.2,24,23.5,24.2,22.7],"paint":[34.2,34,33.9,35.7,34.5,34.9,35.9,35.7,35.7,35.1,35.4,35,35.4,34.8,35.4]}},{"b":2,"v":{"total":[47.1,47.1,51,50.4,49.6,48.3,51.7,47.6,47.6,47.4,51.5,47.8,46.1,49.5,47.2],"script":[33.2,32.8,33.7,33.1,31.5,33.5,34,32.8,33.1,32.4,33.8,33,32.2,32.6,33.4],"paint":[13.8,14.1,16.9,15.3,15.2,14.1,15.3,13.9,13.6,14.1,15.9,14.8,13.1,16.7,13.6]}},{"b":3,"v":{"total":[39.2,38.9,40.4,38.6,38.8,39.5,38.2,39.8,39.8,37.4,38.9,38.1,40.1,38.6,39.4,38.7,37.5,38.9,38.3,39.2,39.9,37.8,37.9,38.8,39.3],"script":[33.4,32.7,34.3,32.9,33.3,33.5,32.1,33.2,34.1,33,32.8,33.2,34.7,33,33.4,32.3,33.1,33.5,31.8,33.5,33.6,33.1,31.8,32.1,33],"paint":[4.7,3.7,5.3,4.3,4.6,4,4.1,3.9,3,4,4.9,3.8,3.9,4.1,4.2,3.5,3.6,3.4,3.7,3.3,4.2,3.3,4.8,4,2.2]}},{"b":4,"v":{"total":[191.3,191.5,192.1,194.2,186.4,194.6,189.4,189.7,192.2,190,188.3,188.4,190.5,186.6,189.5],"script":[48.5,48.5,49.2,51.1,46.3,51.7,49.1,48.7,49.3,49.4,49.2,50.8,47.7,47.7,50.4],"paint":[142.5,142.8,141.1,142.8,139.6,142.6,140.1,139.3,141.6,140.4,138.8,136.3,142.3,138,136.8]}},{"b":5,"v":{"total":[94.4,96.3,93.7,96.5,95.9,91.6,97.8,98.3,95.6,98,98.2,93.4,96.2,101,95.9],"script":[23.8,24.6,23.4,24.8,24.1,23.3,25.6,27,23.9,24.3,25.5,23.7,24.2,26.1,24.4],"paint":[69.1,69.6,69,70.7,70.3,66.8,70,69.5,69.8,71.6,71.1,68.7,70,72.8,70.7]}},{"b":6,"v":{"total":[424.5,426.1,423.2,432.8,425,420.9,424.2,424.9,423.5,420.9,424.7,420.7,418.6,421.6,427.3],"script":[92.8,90,90.1,89.6,88.5,87.6,90.6,91.7,89.1,89.4,89.9,89.3,89.4,90,90.3],"paint":[329.5,333.9,330.9,340.9,334.4,331.1,331.5,331.1,332.3,329.4,332.5,329.2,326.9,329.5,334.7]}},{"b":7,"v":{"total":[55.8,56.2,54.8,55.2,55.3,55.7,54.2,55.3,56.5,55.4,55.6,55.9,54.2,55,54.5],"script":[17.1,16.9,16.4,17.1,16.9,17.3,16.7,17.1,17.5,16.7,17.6,17.1,16.6,17.2,16.5],"paint":[38.4,38.9,38.1,37.9,38.1,38.1,37.3,38,38.7,38.4,37.7,38.5,37.3,37.5,37.7]}},{"b":8,"v":{"total":[26.1,26.1,24.6,23.8,26.2,24.9,25.7,25.1,25.5,25,25.6,24.5,25.8,26.2,22],"script":[21.9,22.3,21.7,20.1,22.4,21.7,21.3,21.3,21.7,20,21,21,22.3,22.5,20.8],"paint":[3.1,2.5,1.7,1.7,2.9,2.9,3.3,1.6,2.9,2.7,2.8,3.3,1.7,2.4,1.1]}},{"b":9,"v":{"DEFAULT":[3.4]}},{"b":10,"v":{"DEFAULT":[5]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[3.9]}},{"b":13,"v":{"DEFAULT":[16.4]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.7]}},{"b":16,"v":{"DEFAULT":[154.4]}}]}, +{"f":69,"b":[{"b":0,"v":{"total":[39.6,40.7,39.5,42.9,44.1,46.6,40.8,41.6,41,40.6,39.7,44.6,41,44.4,40.2],"script":[6.4,7,6.1,7.2,6.3,6.5,6.9,7.2,7,6.8,6.3,7.3,6.8,7.5,6.4],"paint":[32.7,33.3,33.2,33,33,33.6,33.4,33.5,33.8,33.6,32.8,33.7,33.7,33.2,32.6]}},{"b":1,"v":{"total":[46.8,52.5,46.4,53.8,45.2,52.6,43.7,48.6,44.3,50.8,45.8,49.1,44.7,47.1,55.5],"script":[9.3,9.5,9.7,9.3,9.9,9.2,9.2,9.1,9.3,9.3,9.6,9,9.8,10.5,10.2],"paint":[35.2,35.7,34.8,35.4,34.9,35.4,34.3,33.8,34.5,33.9,34.3,34.1,34.7,34.9,36.3]}},{"b":2,"v":{"total":[25.5,24.8,25.5,25.2,25.1,26.5,23.7,24.4,25.2,24.2,24.4,23.8,24.7,24.7,25.7],"script":[10.5,9.8,10.5,10.3,10.7,10.6,8.8,9.2,10.7,10,9.1,10.1,10.6,9.8,10.6],"paint":[14.9,14.9,14.2,13.2,13.5,15.7,14.8,14.7,14.4,14.1,14.5,13.6,11.6,14,14.9]}},{"b":3,"v":{"total":[10.2,9.6,9.8,10.1,10.4,10,11.6,10.4,9.9,9.9,9.5,12.7,10.3,12,10.6,10.3,9.9,10.5,10.6,10.1,9.7,10.5,9.9,12.5,10.2],"script":[7.6,7.4,7.7,7.3,7.4,7.8,8.9,7.1,6.8,6.9,6.7,10.5,6.6,9.4,8,7.7,8,7.6,8.7,7.6,7,7.6,7.4,9.9,7.7],"paint":[1.6,2,2,1.4,2.5,2.1,1.8,2.3,3,1.7,1.7,2,2,1.5,2,1.7,1.8,1.6,1.7,1.9,1.8,2.6,1.7,1.8,2.4]}},{"b":4,"v":{"total":[25.6,24.6,24.4,26.1,27.4,23.2,29,27.4,26,25.2,25.3,25.4,25.3,26.6,24.4],"script":[8,7,7.3,6.8,9.6,6.8,9.6,8.8,7.8,6,7.3,7.4,6.8,8.9,6.8],"paint":[16.5,16.9,15.4,17,17.6,15.8,18.5,17.7,17.5,17.6,17.4,17.3,17.9,17.1,17.5]}},{"b":5,"v":{"total":[20.6,19.4,19.8,19.6,20.2,19.7,20.2,19.6,20.2,19.7,20.3,20.9,19.7,20.3,20.7],"script":[7.1,5.8,6.5,6.1,6.8,6.5,6.7,6.6,6.7,6.6,6.3,6.3,6.7,6.7,7],"paint":[13,13.1,13.2,13.3,13.2,13,13.3,12.6,12.8,12.9,13.5,13.4,12.6,12.9,13]}},{"b":6,"v":{"total":[422.9,418.8,421.8,432.6,421.1,423.7,420.1,423.2,427.4,420.7,420,419.9,423.8,424,420],"script":[81.2,75.5,77.4,80.6,76.7,80.2,76.2,79.1,80.5,77.1,75.8,77.1,77.3,80.7,74.5],"paint":[339.5,341.2,342.3,349.9,342.3,341.4,341.8,342,344.7,341.5,342.1,340.7,344.4,341.3,343.4]}},{"b":7,"v":{"total":[49.3,56.2,48.9,55,49.3,48.2,49.5,48.2,55.1,55.6,55.9,54.5,49.7,54.2,54.3],"script":[10.2,10.2,10.3,10.1,10.3,10,9.8,10,10.3,10.5,10.6,9.9,11.2,10.1,9.8],"paint":[38.3,39.1,38.3,38.8,38.6,37.9,39.4,38,38.8,39.1,38.7,38.3,38.2,38.1,38.3]}},{"b":8,"v":{"total":[13.4,13.9,13.9,13.5,13.6,14,13.6,13,13.3,13.8,14.5,14,13,13.5,13.7],"script":[11.9,12,12.3,11.8,10.8,11.9,11.7,10.7,11.5,12.3,12.1,11.9,12.1,12.1,12.1],"paint":[1.4,1.8,1.6,1.6,2.7,2,1.8,1.3,1.7,1.4,1.9,1.3,0.4,1.3,1.5]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[23.9]}},{"b":14,"v":{"DEFAULT":[78.7]}},{"b":15,"v":{"DEFAULT":[22.3]}},{"b":16,"v":{"DEFAULT":[124.1]}}]}, +{"f":70,"b":[{"b":0,"v":{"total":[40.2,41.8,40.3,44.1,41.3,40.9,40.9,40.2,40.8,41.8,40.5,40.2,40.8,42.7,41.5],"script":[7.1,7.9,7.2,7.7,7.3,7.3,7.9,7.1,7.8,7.9,7.8,7.4,7.8,7.9,7.9],"paint":[32.7,33.5,32.7,35.9,33.6,33.2,32.6,32.6,32.6,33.5,32.3,32.4,32.6,34.4,33.1]}},{"b":1,"v":{"total":[45,44.9,44.1,47.8,47,44.5,45.1,46.1,45,45.9,45.5,46.2,44.4,44.8,46.7],"script":[10.2,10.1,10,10.4,11.5,10,10.3,11.2,10.2,10.3,11.3,10.7,10.2,10.3,11.3],"paint":[34.4,34.4,33.7,37,35.1,34,34.4,34.4,34.3,35.2,33.8,35.1,33.7,34.1,34.9]}},{"b":2,"v":{"total":[19.6,19.2,19.5,21.1,21,19.8,19.9,19.7,19.4,21.5,20.3,20.2,21,19.3,19.5],"script":[1.6,1.3,1.9,2.9,2.2,2.3,1.5,1.9,2,2.4,1.9,1.6,1.6,2.1,2],"paint":[16.2,16.4,14,17.1,17.4,16.4,17.4,15.6,16.4,17.1,16.8,15.9,17.6,16,14.8]}},{"b":3,"v":{"total":[2.6,3.7,3.4,3.1,6.2,3.4,3.4,3.1,4,3.2,3.5,3.4,3.2,2.7,5.9,2.9,4.5,3.6,3.4,3.3,4.8,2.8,3.7,4,3.8],"script":[0.2,1.2,0.9,1.1,1,1.2,1.2,0.7,1.2,0.9,1.1,1.2,1.2,1,1,1.1,1.1,0.9,0.9,0.6,1.3,0.8,1.1,0.9,0.2],"paint":[2.3,1.8,1.6,1.8,1.6,1.1,0.7,2.2,1.5,0.6,1.5,2.1,1.1,1,1.6,1.7,1.4,2.6,2.3,1.8,2.5,1.9,0.9,2.8,2.5]}},{"b":4,"v":{"total":[19.3,20.2,19.7,19.9,20.3,19.2,19.3,21.2,19.8,20.2,19.1,20.1,19.9,19.4,20.3],"script":[1.8,2,1.8,1.8,1.4,1.1,1.5,2.2,1.5,1.7,1,1.5,1.3,1.6,0.9],"paint":[16.3,16.8,16.3,16.5,17.5,16.3,16.6,17.6,17.2,17.8,16.4,17.6,15.7,16.4,18.1]}},{"b":5,"v":{"total":[15.4,15.3,15,15.5,15.3,15.3,15.7,15.9,14.9,15,15.8,14.9,15.2,14.8,15.3],"script":[0.4,0.5,0.3,0.2,0.3,0.3,0.5,0.5,0.2,0.3,0.5,0.2,0.2,0.4,0.4],"paint":[14,13.9,13.9,14.7,14.2,14.4,14.5,14.7,14,14,14.9,14,14.3,13.8,14.2]}},{"b":6,"v":{"total":[433.9,429.6,425,425.4,427,426.1,423.8,432.1,422.8,418,427,424.5,420.6,426.6,424.7],"script":[89.9,86.8,84.6,84.4,85.8,83.4,84.7,90.5,83.6,82.7,86,85.1,82.2,88,87.6],"paint":[337.4,336.2,333.8,334.3,334.5,336.1,332.5,334.9,332.5,328.8,334.5,332.8,331.9,331.9,330.4]}},{"b":7,"v":{"total":[44.9,45.2,46.9,46.4,46,46.2,46.6,45.3,45.3,46.7,45.3,46.8,45.7,45.8,45.1],"script":[7,7,6.9,7.6,7.6,7.9,7.7,7,7,7.7,7.2,7.6,7.1,7.2,7.2],"paint":[37,37.3,39.1,37.8,37.5,37.3,38,37.3,37.4,38.2,37.2,38.3,37.7,37.7,37.1]}},{"b":8,"v":{"total":[13.6,13.2,13.9,13.3,13.8,13.5,13.2,13.7,14.1,13.5,13.6,13.5,14,13.6,13.5],"script":[11.1,11.7,11.5,11.9,11.6,11,11.4,11.9,12.2,11.9,11.6,11.7,11.3,11.7,11.9],"paint":[2.3,1.4,2.3,1.3,2.1,2.1,1.7,1.7,1.5,1.5,1.9,1.7,2.6,0.6,1.5]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2.2]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[13.5]}},{"b":14,"v":{"DEFAULT":[13.3]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[53.2]}}]}, +{"f":71,"b":[{"b":0,"v":{"total":[48.5,49.1,50.1,50.2,49.5,48.4,49.6,48.4,49.3,47.8,49.6,48.3,48,49,49.6],"script":[14.5,14.7,15.3,15.8,14.9,15,14.9,14.9,15.2,14.6,15.5,15.1,14.9,14.7,15.3],"paint":[33.5,33.9,34.3,34,34.2,33,34.2,33.1,33.7,32.7,33.6,32.7,32.7,33.9,33.8]}},{"b":1,"v":{"total":[56.9,56.9,57.2,57.7,58.1,58,57.2,57.2,58.9,57.8,57.6,57.2,57.3,57.3,57.5],"script":[20.5,20.8,21.3,21.3,21.6,21.2,21.3,21,20.9,21.5,21.1,21.3,21.3,21.3,21.5],"paint":[35.9,35.6,35.4,36,36,36.4,35.5,35.7,37.5,35.9,36,35.4,35.5,35.5,35.6]}},{"b":2,"v":{"total":[17.5,16.5,18.7,17.8,17.6,17.8,18,17.3,19.3,18.2,18.1,17.8,17.6,17.4,17.5],"script":[1.7,1,2.3,1.2,1,1,1.7,1.1,1.9,1.7,1.5,1.8,1.4,1.5,1.5],"paint":[14.4,14.4,15,14.5,14.9,14.9,15.2,14.2,16.7,14.5,15.3,14.6,14.9,15.6,14.7]}},{"b":3,"v":{"total":[3.6,2.7,2.7,3,3.2,2.5,6.8,2.5,2.6,3,2.7,2.8,3.2,4.4,5.7,4.5,3.4,4.2,2.9,2.6,4.1,3.7,2.6,2.6,2.9],"script":[0.9,0.1,0.1,0.6,0.1,0.1,1,0.1,0.1,0.5,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,1,0.1,1,0.1,0.1,0.1,0.1],"paint":[2.7,1.5,1.7,2.3,1.9,2,1.4,1.6,2.4,1.8,2.5,2.6,1.7,1.8,2.5,1.9,1.6,1.1,1.8,1.6,1.7,2.6,2.4,2.4,2.7]}},{"b":4,"v":{"total":[20.2,20.9,21.2,20.4,21,20,22,19.9,19.8,20.1,21.1,20.8,20.5,20.2,20.4],"script":[1.8,2.3,2.4,2,2,2.2,2.1,2,1.9,2.1,2.1,1.8,1.9,1.9,2.4],"paint":[16.8,16.5,17,17.8,17.9,16.8,18.3,16.6,16.6,16.6,16.7,17.6,16.8,16.7,16.8]}},{"b":5,"v":{"total":[16.1,15.9,16.1,16.2,16.3,16.9,15.5,16.5,16,16,16.1,16,15.8,16,16.6],"script":[1.1,0.9,1,0.8,0.9,1.1,0.7,0.8,0.7,1.1,0.7,0.7,1,0.9,0.8],"paint":[14.2,14.2,14.5,14.3,14.5,14.7,14,14.5,14.2,13.9,14.7,14.2,14,14.3,15]}},{"b":6,"v":{"total":[519.4,494.6,515,492.1,495.5,512.5,496.7,517,519.7,505.8,500.7,509.3,495,512.1,492.7],"script":[153.5,151.8,153.8,151.3,153.6,155.7,154.2,154.7,156.4,150,153.9,150.4,155.2,153.3,153.6],"paint":[358.2,336,354.3,333.7,335.2,350,335.4,355.5,356.6,348.9,340.1,352.1,333.1,352,332.5]}},{"b":7,"v":{"total":[56.5,55.8,56.8,56.4,54.5,51.7,55.9,55.2,54.5,54.7,55.2,56.1,56.7,55.6,55.6],"script":[15.8,15.6,16.4,15.3,15,14.6,15.5,15.4,15.8,15,15.3,15.1,16.8,15.6,16.4],"paint":[39.6,39.3,39.5,40.1,38.5,36.3,39.5,38.9,37.8,38.9,39,40.1,39,39.1,38.3]}},{"b":8,"v":{"total":[26.3,24.8,26.1,26.7,25.5,26.4,27.5,26.1,27.1,25.9,25.6,24.4,25.6,26.3,27.2],"script":[23.7,23.5,24.1,25.3,24.3,24.5,25.6,23.1,26,23.7,24.2,22.7,24.1,24.8,25.2],"paint":[2.5,1.2,1.7,1.3,0.5,1.2,1.1,2.8,0.4,1.5,1.3,1,1.4,1.1,1.9]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[4]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[32]}},{"b":14,"v":{"DEFAULT":[15.6]}},{"b":15,"v":{"DEFAULT":[5.8]}},{"b":16,"v":{"DEFAULT":[55.6]}}]}, +{"f":72,"b":[{"b":0,"v":{"total":[47.7,46.7,46.8,46.1,45.9,46.4,47.3,44,47.2,46.1,46.2,46.4,45.7,46.1,45.6],"script":[11.9,11.2,11.3,10.8,10.8,11,11.6,10.6,11.8,10.6,10.8,11.1,10.6,11.1,10.4],"paint":[35.3,35.1,35,34.8,34.6,35,35.2,32.9,35,35,35,34.8,34.6,34.6,34.7]}},{"b":1,"v":{"total":[52.6,53.3,53.3,53.5,53.5,53.8,53.3,53.5,53.6,52.5,53.3,52.9,52.8,53.4,53.1],"script":[15.5,15.5,15.7,15.9,16.1,15.8,16,15.8,15.9,15.7,15.8,15.7,15.8,15.7,15.6],"paint":[36.7,37.4,37.2,37.1,37,37.4,36.9,37.2,37.3,36.4,37,36.9,36.6,37.2,37]}},{"b":2,"v":{"total":[20.3,19.8,20.1,19.1,19.4,22.5,20.2,19.5,20.1,20.1,19.3,20,19.5,19.7,19.6],"script":[3.6,3.6,3.4,3.2,3.6,3.4,2.8,2.9,3.3,3.2,3.3,3.4,3.5,3.2,2.6],"paint":[15.2,14.2,15.3,14.7,14.2,17.6,16.2,14.9,15.8,14.7,15,14.3,14.8,15,15.7]}},{"b":3,"v":{"total":[5.1,4.6,5,4.3,5,4.8,5,4.7,6.1,5.2,4.5,5.9,5.4,4.9,4.6,4.5,5.3,6.5,5.5,5.4,4.7,4.6,5.3,5.5,4.8],"script":[2.6,2.2,2.3,1.7,2.7,2.2,1.7,2,1.5,1.9,1.9,1.7,3,1.6,1.6,2,2.2,2.8,2.1,2.5,2.6,2.4,1.7,2.3,2.5],"paint":[1.2,1.8,2.5,2.4,1.1,1.6,2.2,2.2,1.7,3.2,1.5,3.2,1,3.2,2.8,1.7,1.8,3.1,3.2,2.6,1.2,2.1,3.4,1.6,2.2]}},{"b":4,"v":{"total":[159.8,163.2,161,166.8,158.8,163.5,162.3,160.6,163.8,161.8,160.9,159.6,163.4,161.3,157.6],"script":[17.4,15.3,16.8,17.5,16.6,18.5,17.2,16.5,17.1,16.6,15.7,16.2,17.4,16,16.3],"paint":[139.8,145.8,143,147.1,140.3,143.6,143.6,142.2,144.6,143.3,143,141.4,144.7,143.9,139.9]}},{"b":5,"v":{"total":[16.2,16.2,16.2,16.8,16.2,16.8,16.8,16.1,17.7,16.4,16.6,16.7,16.4,16.8,16.7],"script":[1.2,1.1,1.1,1.1,1.1,1.2,1.3,1.1,1.2,1,1,1.2,1,1.2,1.2],"paint":[14,14.4,14.3,14.8,14.3,14.8,15,14.3,15.7,14.7,14.3,14.4,14.3,14.6,14.8]}},{"b":6,"v":{"total":[458.3,454.3,451.3,455.6,454.4,455.6,454.8,457.3,453.9,449.7,459.4,454.8,457.4,455.4,455.4],"script":[110.3,111,109.8,114.5,111.9,110.2,111.7,111.3,112.6,112,110.8,110.6,110.3,114.3,111.2],"paint":[341.3,336.6,334.5,334.3,335.7,338.7,336.4,339.3,334.4,330.6,341.8,337.6,340.4,334.2,337.6]}},{"b":7,"v":{"total":[52.7,51.6,51.9,51,51.5,51.4,51.7,51.6,51.9,51.1,50.6,50.3,51,50.7,50.3],"script":[12.4,11.7,11.5,11.4,11.5,11.3,11.7,11.7,11.3,11.7,11.5,11.5,10.9,11.6,11.1],"paint":[39.5,39,39.5,38.8,39.2,39.2,39.2,39,39.6,38.5,38.2,37.9,39.1,38.3,38.4]}},{"b":8,"v":{"total":[15.9,17.2,16.3,17.8,18.4,19.7,16.9,16.3,17,16.1,17.4,16.9,17.4,16.4,17.3],"script":[14,15.3,14.1,15.7,16.1,17.4,15.7,14,15.5,14.6,15.3,15,15.3,14.1,15.5],"paint":[1.7,1.8,2,2.1,1.9,2.2,1.1,2,1.4,1.4,2,1.1,1.8,1.8,1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[4.2]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[36.3]}},{"b":14,"v":{"DEFAULT":[16.9]}},{"b":15,"v":{"DEFAULT":[5.8]}},{"b":16,"v":{"DEFAULT":[72.1]}}]}, +{"f":73,"b":[{"b":0,"v":{"total":[45.4,44.9,44.1,45.5,45.3,45.8,45.2,45.6,45.9,44.9,45.7,45.1,44.4,44.5,45.7],"script":[10.5,10.5,10.3,10.3,10.2,11.5,10.4,10.4,10.5,10.3,10.3,11.2,10.6,10.5,10.5],"paint":[34.5,34,33.4,34.7,34.6,33.8,34.4,34.8,35,34.2,35,33.4,33.3,33.6,34.7]}},{"b":1,"v":{"total":[53.5,53.5,54.3,53.6,52.9,52.7,52.1,53.7,53,53.4,52.8,53.1,52.6,52.7,53.4],"script":[17,17.1,17.1,16.9,16.7,17.2,16.8,17.3,16.9,17.2,16.9,16.9,16.6,16.9,16.9],"paint":[36,36,36.7,36.3,35.7,35.1,34.9,36,35.6,35.8,35.4,35.7,35.5,35.4,36.1]}},{"b":2,"v":{"total":[30.1,30.9,31.5,31.7,31.2,32.7,30.1,32,30.2,32.5,30.1,32.3,31.7,31.6,30],"script":[14.8,15.3,14.9,16.6,15.3,16.1,14.5,14.1,15,15.1,14.4,15.2,15.5,15.3,14.1],"paint":[13.6,14.1,14.4,13.6,14.4,15.2,14.5,15.5,13.2,16.2,14.4,15.5,14.6,14.7,14.3]}},{"b":3,"v":{"total":[16.5,16.1,16.7,16.9,17.5,16.7,15.8,15.2,16.8,15.8,16.6,16.2,15.6,15.7,15.3,16.6,16.1,17.4,15.8,16.4,15.6,15.7,15.4,15.6,16],"script":[12.5,12.9,13.5,13.2,13.9,13.4,12.4,12.1,14.3,13.1,13.1,13.4,12.8,13.1,12.5,13.4,12.4,13.8,13,13,12.7,13.1,13,13,13],"paint":[2.9,2.8,3,3.5,2.4,3.1,3.2,2.2,1.5,1.6,2.8,1.8,1.6,1.7,2.2,3,2.6,2.6,2.5,2.8,2.7,1.5,2.2,1.9,2.4]}},{"b":4,"v":{"total":[32.2,31.4,30,31.1,31.3,31,31.6,31.3,33.9,32,32.3,31.7,33.3,31.6,31.9],"script":[12.5,12.5,11.8,12.2,12,11.6,13.5,12.2,13.3,13.7,14.1,12.8,13.5,12.9,13.2],"paint":[18.5,17.8,17,17.6,16.9,17.6,17,17.2,19.2,17.3,15.8,17.3,18.7,17.7,17.4]}},{"b":5,"v":{"total":[21.9,22.2,21.8,22.1,22.3,22.3,21.7,21.9,22.2,22.2,21.7,22.2,22.4,23.2,21.6],"script":[6.5,6.9,6.7,6.8,7,6.8,6.8,6.9,6.9,6.9,6.4,6.9,6.8,6.8,6.7],"paint":[14.4,14.2,14.4,14.5,14.2,14.6,14.2,14.2,14.3,14.2,14,14.5,14.7,15.7,13.9]}},{"b":6,"v":{"total":[451.1,452.3,452.7,452.2,456.5,456,455.5,464,449.5,448.1,450.2,451.3,452.5,451,452.3],"script":[113.7,113.1,113,116.3,117.5,116.3,113.4,111.2,113.8,110.7,109.6,108,114.1,114.3,111.7],"paint":[330.6,332,332.9,329.3,332.3,333,335.3,346.2,329,330.6,333.9,336.4,331.7,330,333.7]}},{"b":7,"v":{"total":[54.7,53.8,54.5,54.4,53.6,54.5,54.8,53.2,54.4,54.5,54.4,54.2,55.5,53.9,54.7],"script":[13.9,13.8,14,13.6,13.8,13.8,14.2,13.7,14.1,13.8,14,14,13.8,13.8,13.9],"paint":[39.9,39.1,39.6,39.9,38.9,39.8,39.6,38.5,39.4,39.8,39.5,39.3,40.8,39.1,39.9]}},{"b":8,"v":{"total":[15.4,15.5,14.4,20.2,16.2,15.9,14.9,15.6,15.6,17.7,15.9,16,16,15.7,14.8],"script":[13.8,12.9,13,18.4,14.3,14,13.2,13.3,14.3,15.9,14.5,14.2,13.5,14,12.8],"paint":[1.1,1.7,1.3,1.7,1.1,1.3,1.6,2.1,1.2,1.7,1.3,1.7,2.4,0.8,1.2]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[32.8]}},{"b":14,"v":{"DEFAULT":[14.2]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[55.7]}}]}, +{"f":74,"b":[{"b":0,"v":{"total":[48.9,49.3,49,47.2,49,47.7,49.4,47.7,48,45.9,48.5,47.9,48.7,47.5,48.3],"script":[14,14.1,13.9,13.2,13.6,13,13.7,13.5,13.5,13.2,13.5,13.7,13.6,13.5,13.7],"paint":[34.5,34.7,34.7,33.6,34.9,34.3,35.3,33.8,34,32.3,34.6,33.7,34.6,33.5,34.2]}},{"b":1,"v":{"total":[53.7,53.3,54.2,54.3,53.7,54.6,55.2,53.3,53.2,55.8,54.1,53.9,54.8,54.8,54.5],"script":[18.1,17.8,18.3,17.9,18,18.1,18.2,17.5,17.7,18.2,18,17.7,18.3,17.9,17.3],"paint":[35.1,35.1,35.4,35.8,35.2,36.1,36.5,35.4,34.9,37,35.6,35.8,36.1,36.5,36.8]}},{"b":2,"v":{"total":[16.3,16.8,18.6,17.1,17.9,17.2,16.4,16.9,17.6,18.6,17.7,17.8,16.7,16.8,18],"script":[1.2,1.4,0.9,1.5,1,1.4,1.2,1.4,1.5,1.3,1.3,1.5,1.3,1.2,1.2],"paint":[13.1,12.8,16,14.1,15.1,14.3,13.8,14.2,14,15.8,14.8,14.9,14.2,14.5,15.4]}},{"b":3,"v":{"total":[18.1,18,18.4,17.5,17,19.1,17.3,18.4,17.6,18.1,17.2,16.8,18.3,16.7,17.4,18.6,17.4,18,18.3,17.3,18.3,17.2,19.2,18.2,18.3],"script":[15.2,14.6,14.8,15.3,14,15.6,14.2,15.6,14.5,15.2,14.4,14.4,15.1,14.2,14.7,15.2,14.3,15.5,14.9,14.6,15.5,14.3,16.3,14.5,14.8],"paint":[2,2.3,3,2.1,2.1,2.9,2.3,1.9,2.5,1.9,2.1,2,2.6,1.9,1.6,2.7,2.4,2.3,3.3,0.9,2,2.7,1.5,3.1,2.6]}},{"b":4,"v":{"total":[33.4,35.1,34,34,35.4,34.8,33,34.3,35.6,34.1,35.7,34.1,33.6,35,33.7],"script":[14.8,16,15.2,13.7,16.5,14.6,13.7,14.6,15.3,15.4,15,15.4,14.8,14.2,14.7],"paint":[17,18,17.5,19.1,17,18.5,16.9,18.6,18.6,16.9,18.2,17.5,17.3,19.4,17.6]}},{"b":5,"v":{"total":[22.8,22.7,22.8,23.6,23.7,22.3,23.1,22.9,23.8,22.8,22.9,22.8,22.8,23.6,23.4],"script":[7.5,7.5,7.5,8,7.4,7.3,7.6,7.6,8.4,7.6,8,7.9,7.9,8.3,8.1],"paint":[14.4,14.1,14.5,14.8,15.3,14.2,14.4,14.5,14.4,14.2,14.2,13.8,14.2,14.5,13.9]}},{"b":6,"v":{"total":[461,463.9,465.8,465.3,462.1,463.9,457,472.3,456.1,457.5,470.1,462.2,468.4,469.3,462.4],"script":[121.9,121,121.1,119.2,115.8,118.9,117.3,121.5,115.2,113,121,119.7,121.8,121.1,119.4],"paint":[332.4,336,338,339.3,339.5,338.1,333.2,343.8,334,337.8,342.1,335.9,339.8,341.4,336.3]}},{"b":7,"v":{"total":[56.9,57.4,56.9,56.6,57.6,57.6,60.6,57.2,57.5,57.4,57.9,58.3,56.9,56.6,57.3],"script":[16.5,16.9,16.2,16.5,16.6,16.4,17.4,16.5,16.5,16.7,16.7,17.2,16.8,16.8,16.6],"paint":[39.5,39.7,39.8,39.2,40,40.3,42.2,39.8,40,39.8,40.3,40.2,39.2,39,39.8]}},{"b":8,"v":{"total":[19.5,19.5,19.3,18.6,18.9,19.3,19.3,20.8,19.4,20,20.8,18.1,19.3,16.5,20.2],"script":[17.7,17.8,17.7,17.1,17.1,17.8,17.4,19,17.5,17.5,18.5,15.4,17.5,14.8,18.4],"paint":[1.7,1.4,1.5,0.4,1.5,1.4,1.4,1.7,1.8,1.4,1.6,1.9,0.8,1.5,1.6]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.1]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[34.9]}},{"b":14,"v":{"DEFAULT":[20]}},{"b":15,"v":{"DEFAULT":[7.3]}},{"b":16,"v":{"DEFAULT":[80.4]}}]}, +{"f":75,"b":[{"b":0,"v":{"total":[54.1,55.1,53.5,53.5,54.3,53.3,54.1,56.5,54,53.3,56.1,55.2,54.1,56.1,57],"script":[20.2,20.9,19.6,19.7,19.6,18.9,20.2,22,19.6,19.3,20.7,20.7,20,21,21],"paint":[33.7,34.1,33.8,33.6,34.6,34.2,33.8,34.3,34.2,33.8,35.2,34.4,34,35,35.8]}},{"b":1,"v":{"total":[64.5,64.8,64,64.7,64.8,65.7,65.2,64.9,64.3,65.3,65.3,65.6,64.4,64.4,64.2],"script":[28.1,28.8,27.8,28.2,28.5,29.5,28.9,28.5,28.2,29,28.6,29.4,28.3,27.7,28.1],"paint":[36.2,35.8,36.1,36.3,36.1,36.1,36.1,36.3,35.9,36.1,36.5,36,35.9,36.5,35.9]}},{"b":2,"v":{"total":[17.4,17.5,18.1,21.3,21,18.2,21.6,55.9,54.2,17.6,18.5,17.9,51.3,17.6,51.5],"script":[4.1,3.3,4.4,4.7,4.4,4,3.8,4.7,3.6,4,2.8,4.1,4.3,3.9,2.9],"paint":[13.2,13.6,12.9,14.1,16.1,13.8,16.2,14.5,14.4,13.4,12.2,13.7,12.9,13.3,14.8]}},{"b":3,"v":{"total":[9,16.2,7.3,4.2,3.5,13.3,13,10,8.8,10.6,5.9,5.6,8.7,7,10.1,11,9,8.6,12.7,5.7,3.8,9.7,5.3,9.3,10.4],"script":[2.4,2.7,2.4,1.2,1.6,3.2,2.8,2.1,1.8,3,1.8,1.4,2.4,2.8,3.2,3.4,2.3,1.8,1.4,1.3,1.7,2.6,2.2,2.7,3.1],"paint":[4,3.2,4.1,1.6,1.2,5.5,3.7,4,3.9,3.8,3.3,3.3,3.7,4.5,3.9,2.9,3.1,3,3.8,2.4,2,2.3,3.7,4.3,4.4]}},{"b":4,"v":{"total":[24.6,24.6,24.1,24.6,23.8,24.7,24.9,25,62.7,24.2,26.2,23.4,61.5,24.2,23.7],"script":[7.8,7.2,6.7,8.1,7.4,7.4,7.8,7.6,7.5,7.8,8.9,7.4,7.2,7.7,7.6],"paint":[16.7,17.3,17.3,16,15.1,16.3,17,16.6,18.7,14.9,17.2,15.9,18.6,16.4,16]}},{"b":5,"v":{"total":[18.5,19.4,19.2,18.5,20.3,21.5,19.6,21.8,19.7,19.6,20.1,19.2,19.1,19.2,19.5],"script":[4.2,4.4,4.4,4.4,4.7,4.6,4.3,4.6,4.4,4.4,4.3,4.3,4.4,4.4,4.6],"paint":[13.5,14,13.4,13.4,13.9,15.2,13.5,14.7,13.8,13.5,14.1,14,13.3,13.1,14]}},{"b":6,"v":{"total":[545.8,543.3,540.7,546,543.9,553.4,544,546.3,548.3,553,540.4,543.3,538.4,538.8,540.7],"script":[201.1,200.3,198.4,200.8,201.4,209.7,203.1,201.4,205,205.1,199.1,199.9,196.5,198.1,199.4],"paint":[340.6,338.9,338.2,341,338.5,339.6,336.9,340.9,339.2,343.8,337.3,339.2,337.8,336.5,337.2]}},{"b":7,"v":{"total":[65.6,65.6,65.1,65.8,66,65.3,66,65.7,66.6,65.8,67,66.3,64.8,66.7,67.1],"script":[25.1,24.9,24.7,24.8,25,24.7,25.4,24.9,25.6,24.9,25.7,25.8,24.5,25.7,25.5],"paint":[39.5,39.8,39.4,40,40,39.6,39.7,39.9,40,39.9,40.3,39.6,39.3,40.1,40.6]}},{"b":8,"v":{"total":[26.3,25.7,21.8,22.7,26.6,29.5,25.8,25.7,24.3,25.2,22.2,21.8,27.8,22.3,24.4],"script":[19.7,22.2,19.8,20.3,22.6,20.9,22.2,22.2,19.9,21,20.3,20.1,21.4,20.1,21.1],"paint":[4.9,2.9,1.5,2,3.2,8.4,2.3,3.3,3.2,2.9,1.3,1.6,5,2.1,2.7]}},{"b":9,"v":{"DEFAULT":[0.4]}},{"b":10,"v":{"DEFAULT":[8.4]}},{"b":11,"v":{"DEFAULT":[8.6]}},{"b":12,"v":{"DEFAULT":[7.3]}},{"b":13,"v":{"DEFAULT":[72]}},{"b":14,"v":{"DEFAULT":[59.7]}},{"b":15,"v":{"DEFAULT":[22.2]}},{"b":16,"v":{"DEFAULT":[46.3]}}]}, +{"f":76,"b":[{"b":0,"v":{"total":[59,58.9,60.3,60.1,60.6,59.7,59.7,61.1,59.2,58.9,58.9,59.7,59.9,60.2,61.2],"script":[25.4,25.9,26.7,27,25.2,25.7,26.2,25.7,26.3,24.7,25.1,26.4,26.2,26.1,25.8],"paint":[33.2,32.6,33.2,32.7,35,33.6,33,35,32.4,33.7,33.3,32.9,33.3,33.7,35]}},{"b":1,"v":{"total":[66.5,68.3,67.4,67.4,67.2,65.5,67.2,66.7,68.7,67.8,70,69.5,66.7,65.7,66.6],"script":[30.5,32.1,31.5,31.7,31.5,29.9,31.6,31.2,32.6,32.1,34.8,33.4,31.1,31.1,31.3],"paint":[35.6,35.7,35.4,35.2,35.2,35.2,35.1,35,35.7,35.3,34.8,35.6,35.2,34.2,34.9]}},{"b":2,"v":{"total":[19.7,19.2,18.7,18.9,19.8,20.5,18.8,18.7,19.2,18.6,20.6,19.6,19.6,19.2,19.7],"script":[3.8,3.6,3.6,3.4,4.2,3.9,4,3.7,3.7,3.1,3.7,3.8,3.7,3.6,4],"paint":[14.2,14.4,13.6,14.2,14.5,14.8,13.4,13,14.1,13.9,15.4,13.9,13.8,13.7,14.4]}},{"b":3,"v":{"total":[7.7,7.4,8.2,7.9,9.3,9.4,7.7,8.3,7.6,8.7,8.5,7.6,8.1,8.4,8.5,8.2,8.3,9.1,7.6,8.8,7.5,7.6,8.4,7.4,8.3],"script":[5,4.8,5.2,5.4,6.4,6.1,5.5,5.8,5.6,5.8,3.2,4.8,5.4,5.3,5.8,5.4,6.2,6.6,4.6,6.3,5.6,4.8,5.4,5.4,5.5],"paint":[1.6,1.7,2.9,2.3,1.5,3.1,1.5,1.6,1.2,2,1.6,2.4,2.4,2.5,2,1.8,1.2,1.6,2.9,1.5,1.6,1.9,2.9,1.1,2.3]}},{"b":4,"v":{"total":[171.9,170,167.3,168.2,174.6,169.1,170.1,166.9,172.3,169.9,168.4,169.1,168.9,171.6,166.4],"script":[27.7,24.9,24.2,27.2,27.1,27.8,28.1,27.3,28.1,24.3,28.4,23.7,28,27.8,26.6],"paint":[141.7,144.3,141.9,139.2,144.7,140,140.5,138.4,142.4,143.4,137.6,144.1,138.9,141.9,137.8]}},{"b":5,"v":{"total":[20.3,20.8,20.2,21.1,20.6,21.8,21.2,21.3,20.3,20.3,21.1,20.1,20.3,20.4,20.2],"script":[5.4,5.1,5,5.7,5.3,5.8,5.6,5.2,5.3,5,5.7,5,5,5.5,4.8],"paint":[13.9,14.9,14.5,14.2,14.3,15.1,14.8,14.7,14.3,14.3,14,14.4,14.6,14.1,14.4]}},{"b":6,"v":{"total":[578.6,577.1,574.5,578.8,571.1,583.8,583.7,581,573,575.7,578,578.9,578.3,578.1,575.2],"script":[221.4,220,220.4,219.6,220.1,223.2,221.5,222,220.7,220.6,221.1,218.2,223.1,222.3,222.1],"paint":[350.5,350.6,347.4,352.2,344.4,353.9,355.6,352.1,345.5,348.4,350.1,353.8,348.4,349,346.5]}},{"b":7,"v":{"total":[63.2,62.4,62.7,61,60.8,63.2,62.5,62.9,63.3,63.7,62.7,62.7,63.1,61.8,62.5],"script":[23.1,22.7,22.7,22.1,21.5,22.9,22.5,22.1,23.5,24.1,23,23.1,22.7,22.3,22.9],"paint":[39.2,38.9,39.1,38,38.4,39.4,39.2,39.8,39,38.7,38.8,38.8,39.5,38.6,38.7]}},{"b":8,"v":{"total":[31.5,29.5,30.2,31.1,30.8,29.5,30.7,30.2,32.7,29.8,30.8,32,31.1,31.2,30.7],"script":[29.5,27.9,28.9,28.7,28.9,27.7,29,28.3,30.2,28.1,29.1,29.9,28.4,28.9,28.2],"paint":[1.9,1.2,0.5,2.3,1.8,1.8,1.6,1.4,2.1,1.6,1.6,1.9,1.2,1.5,2.4]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[8.7]}},{"b":11,"v":{"DEFAULT":[8.9]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[73.1]}},{"b":14,"v":{"DEFAULT":[224.1]}},{"b":15,"v":{"DEFAULT":[58.7]}},{"b":16,"v":{"DEFAULT":[314.4]}}]}, +{"f":77,"b":[{"b":0,"v":{"total":[45,46.4,45.9,46,46.4,47.6,47.1,46.7,48.3,47.4,46.6,47.6,46.9,47.8,48.7],"script":[12.4,13,12.5,12.1,12.5,13.5,13.4,12.7,14,13.4,12.9,13.3,13.3,13.5,14],"paint":[32.3,33,33,33.4,33.5,33.6,33.3,33.6,33.9,33.6,33.3,33.9,33.2,33.9,34.3]}},{"b":1,"v":{"total":[54.7,56.4,54.4,55.6,54.9,55.2,55,55.2,55.5,55.3,55,55.2,56,54,54.2],"script":[18,18.9,17.9,18.1,18.1,18.4,18.2,18.2,18.6,18.4,18.3,18.2,18.6,18.3,17.8],"paint":[36.2,37,36,37,36.3,36.3,36.3,36.5,36.5,36.4,36.2,36.5,36.9,35.3,36]}},{"b":2,"v":{"total":[25.7,26.6,26.1,25.6,26.3,25.6,25.1,26.4,26.9,26.3,25.7,26,25.4,25.4,26],"script":[9.7,10.3,10,9.6,10,9.4,9.1,10.7,9.9,10.1,9.4,10,10.1,9.6,9.6],"paint":[14.9,14.8,14.6,13.8,15,14.4,13.9,14,15.1,14.3,14.6,14.1,13.9,14,14.7]}},{"b":3,"v":{"total":[8.6,8.5,8.9,8.7,8.9,9.7,8.3,8.8,8.9,8.7,9.1,9,8.9,8.3,9.6,9,8.7,8.6,8.6,9.3,9,10,9.3,9.2,8.6],"script":[5.9,6.1,5.8,5.9,6.4,6.3,6,5.7,6.2,6.4,5.8,6.8,6.3,5.5,6.1,6.4,6.5,5.7,5.8,6.6,6.4,6.4,6.7,6.1,5.6],"paint":[1.4,2.1,2.4,1.7,2,2.3,1,2.5,1.8,1.2,2.2,1.5,2.5,1.8,3.3,1.7,2,1.9,2.3,2,1.6,2.6,1.7,2.9,1.9]}},{"b":4,"v":{"total":[166.4,166,162.1,159.8,165.5,160.1,158.4,156.6,158.1,156.8,160.2,160.8,154.7,160.6,161.4],"script":[21,20.1,20.4,20,19.2,19.6,20.7,19,20.2,20,19.6,21.1,19.3,20.5,19.9],"paint":[142.9,143.7,139,137.8,144.4,138.6,135.3,136,135.9,134.9,138.2,138.5,134,138.1,139.7]}},{"b":5,"v":{"total":[18.7,18.4,17.8,17.4,17.9,17.8,17.5,18.2,18.5,17.9,17.9,17.9,17.6,17.8,17.9],"script":[3.1,3.2,3,3,3,3.1,2.8,3.1,3.1,3.1,2.9,3,2.9,3,2.9],"paint":[14.7,14.3,13.5,13.7,14.1,13.7,14,13.5,14.4,14,14.2,13.8,13.8,13.7,14.2]}},{"b":6,"v":{"total":[508.3,505.2,513.7,506.3,501.6,503.5,503.5,503.4,499.8,500,506.7,506.7,505.6,506.7,507.9],"script":[169.9,164.9,166.9,167.3,165.4,168.6,166.8,165.7,167.3,164.7,170.9,171.1,172.8,174.6,172.1],"paint":[330.9,333.6,340.1,332.3,329.4,328.1,329.8,331,325.7,328.7,329.1,329,326,325.2,328.9]}},{"b":7,"v":{"total":[54.3,53.8,53.8,53,53.7,53.4,53.6,54.8,53.7,52.5,53.5,53.4,52.6,53.4,54.3],"script":[14.3,14.5,14.1,14.5,14.6,14,14.8,14.2,14.9,13.7,13.9,14.3,14.6,14.4,14.2],"paint":[39,38.4,38.8,37.6,38.2,38.5,37.9,39.7,37.8,37.9,38.7,38.2,37.1,37.9,39.2]}},{"b":8,"v":{"total":[23.8,23.6,23.5,25,23.8,23.2,24.9,23.5,24,23.4,24.1,24,23.1,24.2,24.2],"script":[21.5,21.4,21.7,23.1,21.2,21.5,23.2,21.3,22.2,21.8,21.8,22.1,20.9,22.5,22.2],"paint":[2.2,2.1,1.6,1,1.3,1.6,0.8,2.1,0.8,0.8,1.3,1.9,1.9,1.5,1.9]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4.5]}},{"b":11,"v":{"DEFAULT":[4.6]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[35.9]}},{"b":14,"v":{"DEFAULT":[64]}},{"b":15,"v":{"DEFAULT":[12.8]}},{"b":16,"v":{"DEFAULT":[109.7]}}]}, +{"f":78,"b":[{"b":0,"v":{"total":[47.3,46.2,46.2,45.1,48.7,46.9,46.5,45.9,46.2,47,45.4,46.1,47,46.1,46.2],"script":[12.5,12.5,12.9,12.7,14.4,12.6,12.1,12.3,13.3,13.5,12.3,12.6,12.8,13,12.7],"paint":[34.3,33.2,32.9,32,33.9,33.8,33.9,33.2,32.4,33.1,32.7,33.2,33.7,32.7,33.1]}},{"b":1,"v":{"total":[52.1,50.2,50.8,51.6,50.8,51.6,51.3,51.6,50.4,50.7,50.8,51.9,52.3,50.8,50.9],"script":[15.7,15.7,15.8,16.5,15.4,15.3,15.6,16.7,15.1,15.4,14.8,15.2,16.5,16,15.5],"paint":[36,34.1,34.6,34.7,35,35.9,35.2,34.5,34.9,34.8,35.5,36.2,35.3,34.3,34.9]}},{"b":2,"v":{"total":[21.3,21.3,20.5,21.8,22,22.4,21.4,21.4,21.2,21.7,21.6,21.4,21.6,20.7,21.7],"script":[4.9,5.4,5.4,5.4,6,5.6,5.3,4.9,5.4,5.9,5.5,5.1,5.4,4.6,5.2],"paint":[15.1,14.2,13.6,15.4,14.7,14.9,14.6,14,13.8,14.4,14.7,13.6,14.9,14.8,14.1]}},{"b":3,"v":{"total":[5.5,5.3,5,4.5,5.3,5.5,5.5,5.3,5.1,5.2,5,5.2,4.4,5.5,4.4,4.6,4.9,4.7,5.1,4.1,5.4,4.6,5,5.2,5.7],"script":[1.8,1.8,2.5,2,1.9,2.3,2.3,2.2,2.5,2.2,2.4,2.2,2.1,2.8,1.6,2.4,1.9,2.2,2.5,1.6,2.5,2.1,2.5,2.4,2.8],"paint":[3.5,3.4,2.4,1.9,3.3,2.9,2.6,2.9,1.6,2.8,2,1.8,2,1.5,2.7,1.7,2.9,2.4,1.6,2,2,2.3,1.7,1.7,2.1]}},{"b":4,"v":{"total":[163.5,166.5,163.7,162.3,176.2,164,166.2,168.9,166.9,158.2,163.9,164.9,162.7,170.9,164.7],"script":[22.7,23.5,21.9,22.2,26.2,23.4,22.8,24.2,22.9,21.5,21.9,22.3,22.2,21.8,24],"paint":[138.4,141.8,140.1,137.7,147.7,138.9,141,142.5,141.9,134.6,140.2,140.7,138,148.2,138.5]}},{"b":5,"v":{"total":[16.5,16.6,16.6,16.9,16.3,16.7,17.5,16.7,17,16.6,16.6,16.6,16.5,16.6,16.7],"script":[1.4,1.9,1.4,1.7,1.6,1.5,1.4,2.1,2.1,1.3,1.6,1.9,1.4,1.6,1.6],"paint":[14.1,13.8,14.5,14.1,14.2,14.1,14.7,13.5,13.5,14.5,14.1,13.7,14.4,14.3,14.1]}},{"b":6,"v":{"total":[604.2,602.3,608.7,612.7,606.1,591.2,611.4,613.7,609.2,607.9,607.1,612.3,611.3,608,601.2],"script":[252.6,249.2,254.5,255.3,254.3,252.1,253.4,249.5,253,255.1,251.4,255.9,255.9,249.2,249.1],"paint":[344.8,346.4,347.4,350.6,345.1,332.4,351.3,357.5,349.4,346.2,349.1,349.6,348.8,352.2,345.4]}},{"b":7,"v":{"total":[50.9,50.6,50.1,51.2,49.8,50.8,50.5,52.5,52.7,51.7,52.6,52.2,51,50.9,51.1],"script":[12.6,12.8,12.4,13,12.4,13,12.3,13.4,12.8,13.1,12.9,12.4,12.7,12.3,13.3],"paint":[37.3,36.9,36.8,37.3,36.5,37,37.3,38.3,39,37.7,38.9,38.9,37.5,37.7,36.9]}},{"b":8,"v":{"total":[15.9,16.1,16.6,16.9,15.8,16.1,16.2,16.6,15.7,16,15.5,16.5,16.6,16.5,15.4],"script":[14.3,14.4,14.5,15,13.8,14.2,14.4,14.8,14.2,14.4,13.3,14.6,14.9,14.6,13.5],"paint":[1.6,0.8,2.1,1.8,1,1.8,1.7,1.7,0.8,1.5,1.4,1.8,1.5,1.7,1.1]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[4.4]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[32.2]}},{"b":14,"v":{"DEFAULT":[142.8]}},{"b":15,"v":{"DEFAULT":[40.3]}},{"b":16,"v":{"DEFAULT":[211.4]}}]}, +{"f":79,"b":[{"b":0,"v":{"total":[50.5,50.9,49.1,50.5,49.8,49.9,50.4,50.1,50.3,50.7,49.1,49.2,49.7,49,49.5],"script":[16.3,16.3,15.5,15.4,15.9,15.8,15.8,15.9,16,16.1,15.7,15.7,15.7,15.5,15.8],"paint":[33.8,34.2,33.2,34.7,33.4,33.6,34.2,33.7,33.8,34.1,33,33,33.6,33.1,33.3]}},{"b":1,"v":{"total":[57.9,59.5,57.8,58.9,57.9,58.6,57.7,57.3,58.6,58.2,58,58.3,57.7,58.5,57.5],"script":[21.8,21.6,21.4,21.9,21.7,22.3,21.7,21.4,22.2,21.9,21.8,21.8,21.3,22.1,21.9],"paint":[35.6,37.4,35.8,36.5,35.8,35.8,35.3,35.4,35.9,35.7,35.8,36.1,35.9,35.7,34.9]}},{"b":2,"v":{"total":[23.4,21.5,21.8,22.6,21.7,22.5,22,21.6,21.6,24,22.3,22.3,22.3,21.7,21.4],"script":[6.9,6.1,5.9,6.2,6,6.8,6.3,6.2,5.9,7.2,6.5,6.4,6.1,6.2,6.5],"paint":[15,14.1,13.8,14.8,13.7,14.4,14.4,14,14.1,15.2,14.1,14.4,14.9,13.8,13.4]}},{"b":3,"v":{"total":[6.4,7.1,6.8,6.2,7.3,6.9,7.4,6.1,5.8,6.5,6.9,5.9,7.2,6.3,5.9,6,6,5.7,6.6,6.8,6.5,6.7,6.2,5.9,7],"script":[3.3,3.2,3.7,3.4,4.1,3.7,3.7,3.1,2.9,3.9,3.9,3.3,4.1,4,3,3.7,3.7,3.6,3.7,3.5,4.1,3.1,3.9,3.5,3.8],"paint":[2.3,3,2.9,1.9,3,2.1,3.3,2.9,2.7,1.7,2.7,2,2.3,1.4,2.8,1.7,1.3,1.3,2.4,3.1,1.5,3.4,1.4,2.3,3]}},{"b":4,"v":{"total":[168.2,164.1,166.5,162.3,165.4,167,166.2,170.3,167.3,162.7,164.1,162.1,163.2,168.3,161.9],"script":[25.6,24.1,24.6,24.4,23,25.7,25.2,27.4,24.1,21.9,24.9,22.6,21.9,25.2,23.5],"paint":[141.2,138,140.2,135.6,139.7,139.3,138.5,140.3,141.3,139.4,137.4,137.6,139.7,140.1,137]}},{"b":5,"v":{"total":[16.7,17.2,16.8,16.7,16.7,17.1,18.4,17,17.1,16.7,17.1,17.3,17.2,17.2,16.8],"script":[2.2,2.2,2,2.2,2.2,2.3,2.1,1.9,1.8,2,2,1.9,1.9,1.9,1.9],"paint":[13.9,14.1,13.6,13.4,13.7,14,15.2,14.2,14.6,13.7,14.5,14.3,14.5,14.5,13.8]}},{"b":6,"v":{"total":[639.4,639.7,639,641.2,640.5,640.7,640.8,646.6,641.5,643.5,634.6,639.9,643.3,636,643.4],"script":[283.1,282.3,282.7,281.8,283.6,283.7,285.6,285.2,284.2,283.9,281.9,283.7,284.1,282.1,283.1],"paint":[349.5,350.7,349.1,352.7,350.2,350.4,348.3,354.6,350.7,352.4,345.9,349.5,352.4,347.3,353.6]}},{"b":7,"v":{"total":[57.2,55.5,55.7,55.9,55.7,55.7,55.2,54.6,55.7,55.9,57.1,55.8,55.8,58.2,55.6],"script":[16.7,16.4,15.9,16.1,15.9,15.9,16.4,16,16.6,16.2,16.4,16.7,16.6,17.3,16],"paint":[39.7,38.1,38.9,39,38.7,39,37.8,37.7,38,38.6,39.5,38,38.1,39.7,38.8]}},{"b":8,"v":{"total":[31.3,33.2,30.5,33.5,27.7,32,32.2,32.1,31.6,34.3,35.2,29.9,34.3,34.1,30.7],"script":[28.9,31.9,28.8,31.6,26,30,29.8,30,29.6,32.2,32.7,27.9,32.4,32.3,28.2],"paint":[2.3,1.1,1.7,1.8,0.9,1.9,2,2,1.8,1.9,2.3,1.8,1.8,0.9,2.4]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[6.8]}},{"b":11,"v":{"DEFAULT":[7.3]}},{"b":12,"v":{"DEFAULT":[2.1]}},{"b":13,"v":{"DEFAULT":[54.1]}},{"b":14,"v":{"DEFAULT":[168.4]}},{"b":15,"v":{"DEFAULT":[45.5]}},{"b":16,"v":{"DEFAULT":[247.4]}}]}, +{"f":80,"b":[{"b":0,"v":{"total":[50.5,50.5,49.2,51.3,51,49.8,51.6,49.3,50.7,50.7,52.2,49.5,51,51,51.3],"script":[16.5,16.6,16.2,16.8,16.3,16.6,17.1,15.9,16.5,16.8,17,15.7,15.8,17,16.4],"paint":[33.6,33.5,32.6,34,34.3,32.8,33.9,33,33.7,33.6,34.8,33.3,34.7,33.7,34.5]}},{"b":1,"v":{"total":[61.4,61.6,63.4,60.1,62.5,61.2,61.8,62.5,60.6,60.4,61.2,59.9,60.5,61.7,60.3],"script":[25.8,26,25.8,24.8,25.4,24.9,25,25.1,24.8,25.2,25.1,24.1,24.3,24.9,25.5],"paint":[35.1,34.9,37.1,34.8,36.7,35.9,36.4,36.9,35.4,34.7,35.6,35.4,35.8,36.4,34.4]}},{"b":2,"v":{"total":[65,66.8,65.6,66.5,65.9,66.2,68.1,65.6,68.4,66.1,65.2,66.4,65.9,67.7,65.9],"script":[48.3,50.5,48.9,49.8,48.5,49.6,52,49.4,52.2,49.5,49,49.6,50.1,51.8,50.1],"paint":[15.2,15.2,14,15,15.1,15.1,14.7,15,14.4,14.5,14.9,14.8,12.8,14.1,14.4]}},{"b":3,"v":{"total":[5.9,4.7,5.6,4.9,4.6,5.5,5.1,5.4,5.2,5.8,5.4,6.1,4.1,4.7,4.3,4,4.7,4.4,5,4.4,5.1,4.5,5.2,4.8,4.7],"script":[3.1,1.9,2.2,2.4,2,2.4,2.2,2.4,2.1,3,2.8,3.2,1.6,1.8,2,1.5,1.9,1.8,1.7,1.5,2.1,1.9,2.9,2.2,2.2],"paint":[1.9,1.7,2.3,0.6,1.6,2.6,1.9,2.6,2.9,1.8,2.5,1.9,2.4,2,2.2,2.4,2.7,1.5,2.7,1.8,1.9,2.4,1.5,2,1.2]}},{"b":4,"v":{"total":[211.8,211.8,208.7,211.7,210.4,213.4,208.9,212.6,209.9,210.3,215.4,213.3,210.2,215.1,217.9],"script":[69.8,73.1,67.4,69.6,70.2,71.6,68.4,71.6,69.1,69.7,71.4,73.3,69.4,71.3,72],"paint":[138.5,136.8,139.5,140,138.1,140.3,139.3,139.2,138.9,139.3,142.4,138,139.1,141.5,143.8]}},{"b":5,"v":{"total":[38.5,37.5,37.8,37.7,41.3,39.4,39.6,38.9,40.7,39.4,39.7,40.4,39.5,40.7,40],"script":[22.5,22.3,22.2,22.4,24.6,23.8,23.1,23.6,24.8,24,24.2,23.8,23.6,25.1,24.6],"paint":[15.2,14.3,14.8,14.3,15.4,14.7,15.7,14.5,14.8,14.6,14.7,15.3,15.1,14.7,14.3]}},{"b":6,"v":{"total":[625.4,623.9,623.3,625.6,623.2,627.4,620,624.7,621.9,630.1,624,620.8,619.5,624.4,620.1],"script":[267.1,268.7,268.2,267.8,263.7,267.4,264.4,269.6,268.4,270.4,266.5,266.9,267,267.6,266.5],"paint":[351,348.4,348.4,351.1,352.8,353.2,348.8,348.4,346.9,352.9,350.7,347.3,345.8,350.1,346.9]}},{"b":7,"v":{"total":[69,68.2,68,66.9,69.1,67.6,67.3,68.8,68.1,67.5,69.2,67.2,67.7,69,68],"script":[27.6,27.2,27.3,26.9,27.1,27,26.9,27.9,27.5,27,26.9,26.9,26.5,27.7,27.3],"paint":[40.5,40.1,39.8,39.1,41,39.7,39.5,40.1,39.6,39.6,41.3,39.4,40.3,40.5,39.8]}},{"b":8,"v":{"total":[31.3,32.2,30.8,31.8,30.6,31.9,31.7,31.1,30.5,31,31.4,32.8,30.7,31.3,31.8],"script":[29.7,30.1,29,29.7,28.3,29.5,29.7,28.8,28.6,29.7,29.4,30.6,28.6,29,29.7],"paint":[1,2,0.9,1.8,1.7,2.3,1.9,2.2,1.4,0.8,1.2,1.6,2,2.2,1.5]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[5.9]}},{"b":11,"v":{"DEFAULT":[8.6]}},{"b":12,"v":{"DEFAULT":[2]}},{"b":13,"v":{"DEFAULT":[44.4]}},{"b":14,"v":{"DEFAULT":[175.2]}},{"b":15,"v":{"DEFAULT":[48.8]}},{"b":16,"v":{"DEFAULT":[261.3]}}]}, +{"f":81,"b":[{"b":0,"v":{"total":[46.4,45.6,46.3,45.9,45.8,45.8,45.2,44.6,45.8,46.7,46.7,45.7,45.9,45.6,46.5],"script":[12.6,11.9,12.1,12.4,11.5,11.8,12,11.8,11.8,12.8,12.6,12.6,12.3,11.8,12.5],"paint":[33.3,33.2,33.8,33,33.8,33.5,32.8,32.4,33.6,33.6,33.6,32.7,33.2,33.3,33.6]}},{"b":1,"v":{"total":[53.6,54.9,54.5,54.8,54,54.2,55.1,54.8,55.4,54.5,54.6,55.2,55.5,54.2,55.6],"script":[17.9,18.4,18,17.9,18.3,17.9,19,18.7,18.8,19,18.6,18.7,19.5,18.6,19.2],"paint":[35.2,36.1,36,36.5,35.3,35.8,35.6,35.6,36.2,35,35.5,36,35.5,35.1,36]}},{"b":2,"v":{"total":[20.8,20.8,21.1,21.4,20.4,21.4,22.1,20.3,20.4,20.6,21.9,20.5,20.4,21.3,21.3],"script":[4.2,4.8,4.7,5.7,4.9,4.5,5.1,4.5,5.1,4.2,5.1,4.9,4.8,5,4.9],"paint":[14.8,14.7,13.9,14,14.2,15.7,15.3,14.1,14.1,14.5,15.3,14.6,15,14.3,14.6]}},{"b":3,"v":{"total":[4.9,6.1,5.5,5.4,4.9,5.5,5.7,5.4,4.8,5,5.6,4.9,4.8,5.1,4.5,5.5,5.9,5.3,5.5,4.9,5,4.4,5.1,5.1,5.1],"script":[1.9,3,2.1,2.9,2.1,2.8,2.7,2.1,2.5,2.4,2.1,2.4,2.7,2.1,2,2.8,2.4,2.7,2.8,2,2.4,1.5,2.4,2.5,2.2],"paint":[2,2.2,2.6,2,2.7,2.5,1.8,2.6,1.5,1.8,3.2,1.6,2,2.6,2,1.8,3.3,1.4,1.9,2.8,2.5,2.8,2.1,1.7,1.8]}},{"b":4,"v":{"total":[167.5,167.3,167,164.9,162.6,161,167.2,167.8,166.3,164.2,169.3,162.5,166.7,164.3,165],"script":[24.6,23.6,24.4,25.3,24.3,22.7,24.2,23.4,23.2,23.7,23.2,23.1,24.3,24.5,24.1],"paint":[139.9,141.9,139.9,137.7,135.9,136,141,142,141.4,138.7,144.1,137.1,141.1,137.9,138.8]}},{"b":5,"v":{"total":[16.6,17,16.9,17.9,16.7,17.1,17.8,16.7,16.7,17.6,17.2,16.8,17.2,17,16.8],"script":[1.8,1.6,1.5,2.1,1.4,2,1.8,1.8,1.5,1.6,1.8,1.6,1.8,1.7,1.8],"paint":[14.2,14.5,14.5,15,14.2,14.6,15.3,13.6,13.9,15.2,14.4,14,14.6,14,14.2]}},{"b":6,"v":{"total":[599.9,606.8,609.5,599.3,599.8,611.3,610.5,592.2,602.7,608.3,608.2,608.5,598.5,610.2,594.3],"script":[249,252.8,249.4,249.4,244.4,255.8,251,247.5,248.6,251.1,251.7,255.1,243,254,248.5],"paint":[344,347.2,353.4,343.2,348.7,348.8,352.9,338,347.4,350.5,349.8,346.7,348.7,349.4,339.1]}},{"b":7,"v":{"total":[50.7,49.7,52.3,49.9,51.6,51.5,50.7,48.7,48.7,48.1,52.2,48.7,49.3,51.3,51.6],"script":[11.8,10.9,12.6,11.6,12.7,13.2,12.8,11.5,11.5,11.4,11.9,11.7,11.7,11.8,12.2],"paint":[37.9,37.9,38.8,37.3,38.1,37.5,37,36.3,36.3,35.8,39.4,36.1,36.6,38.7,38.5]}},{"b":8,"v":{"total":[27.7,24.5,24.3,25.4,25.4,26.2,25,25.6,24.9,25.8,24.6,24.5,26.4,24.3,26.3],"script":[24.8,22.3,22,23.4,23.8,23.8,23.4,23.3,23,24,22.5,22.5,24.2,22.6,24.1],"paint":[2.2,2.1,1.8,1.7,1.6,2.3,1.5,2.2,1,1.8,2,1,2.1,1.5,1.3]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[4.4]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[32.3]}},{"b":14,"v":{"DEFAULT":[142.3]}},{"b":15,"v":{"DEFAULT":[40.1]}},{"b":16,"v":{"DEFAULT":[215.6]}}]}, +{"f":82,"b":[{"b":0,"v":{"total":[53.8,52.7,45.7,52.6,52.9,53.6,46.5,53.4,52.7,45.5,46.7,53.2,49.4,53.1,47],"script":[13.2,12.7,12.5,12.5,12.8,12.5,12.7,13,12.9,12.5,12.5,12.5,12.6,12.6,13.2],"paint":[34,34.2,32.9,33.9,34.1,35,33.4,34.3,33.9,32.6,33.9,34.5,36,34.2,33]}},{"b":1,"v":{"total":[53.1,53.7,53.8,58,54.1,59.6,56,54.7,57.2,58.5,58.6,54.2,59,57.3,53.6],"script":[17.7,17.5,17.5,20.8,17.5,20,17.4,17.9,20.2,20.8,19.6,17.7,21.4,21,17.2],"paint":[34.9,35.7,35.8,36.6,36.2,38.1,37.3,36.2,36.4,36.3,37.5,36.1,37,35.7,35.9]}},{"b":2,"v":{"total":[46.4,24.1,20.9,46.3,24.5,21.3,26.1,23.6,20.3,21.7,22.6,24.9,19.9,24,21.1],"script":[6.7,6.1,6.1,6.1,6.5,6.5,6.5,6,5.7,6.5,7.6,5.4,5.4,5.7,6.7],"paint":[17,17.5,14.6,16.7,16.8,14.7,15.8,16.7,14.4,14.8,14.7,17,13.2,16.6,14.2]}},{"b":3,"v":{"total":[12.5,9.1,8.9,8,8.1,14.5,14,13.8,15.1,11.2,9.4,14.6,15,10,10.4,15,14,10,8.5,13.8,12.9,14.8,15.1,11,10.9],"script":[4.4,3.6,3.7,3.1,2.7,5.3,5.2,3.6,3.5,5.4,4.5,3.8,3.3,4.3,3.4,5.5,4.7,4.6,4.1,3.8,3,2.7,3.5,5.1,3.6],"paint":[4.1,3.6,3.3,3.9,3.5,4,4.6,3.3,3.5,3.8,3.1,3.7,3.9,4.2,3.7,4.1,3.3,3.6,3.9,3.7,3.7,4.5,4.3,4.6,2.4]}},{"b":4,"v":{"total":[171.4,168,169.5,166.5,165.7,172,165.9,165.4,169.9,167.9,169.9,165.2,161.9,170.5,167.6],"script":[27.5,24.9,26,24.4,23,26.9,24.2,25.3,23.8,24.1,24.4,24.6,25,27.6,25.8],"paint":[142.6,142,141.4,141.8,142.5,144.6,138.6,140,144.6,142.1,144.5,139.3,135.9,142,141.1]}},{"b":5,"v":{"total":[19.2,17.8,17.3,17.2,17.2,18.1,17.2,19.1,17.1,19,17.1,17.4,16.8,20.4,17.4],"script":[2.3,2,2.2,1.6,1.6,1.9,2.2,2.1,2.2,2.2,1.9,2.1,1.6,2.4,1.9],"paint":[15,14.5,13.8,14.2,14.1,14.2,14.3,15,13.9,15.3,14,14.4,14,15.8,13.9]}},{"b":6,"v":{"total":[590.1,587.3,588,587.6,593,596.4,582.7,584.3,569.3,596.8,584.8,578.3,600.1,575.3,594.6],"script":[231.9,233.8,232.1,233.1,232.7,237.9,233.6,229.1,231.6,234.2,235,235.2,236.3,232.5,236.5],"paint":[349.1,345.4,344,346.9,349.4,349.2,341.6,344.1,327.9,352.7,341.4,335.8,355.5,332.2,353.6]}},{"b":7,"v":{"total":[56.3,53.3,73.6,72.1,72.1,69.9,70.5,71.9,70.8,52.4,54.9,52.9,54.7,54,69.3],"script":[13.8,13.2,13.9,13.9,13.9,12.9,12.9,13.1,13.2,12.9,13.7,13,13,13.3,13.1],"paint":[41,39.5,40.4,40.1,38.6,39.5,39.3,40.1,39.6,39.1,39.7,39.4,40.3,39.4,38.3]}},{"b":8,"v":{"total":[19.6,19.6,20.1,20.2,21.5,19.9,16,20.6,19.2,16.7,20.1,20.3,19.9,20.5,19.3],"script":[15.6,15.5,15.8,15.7,17.4,15.8,13.5,16,15.1,15,15.2,15.8,15.4,16.4,15.5],"paint":[3.8,3.5,3.1,3.1,3.1,3.1,2.4,3.8,3.5,1.5,2.7,3.4,4.2,3,2.9]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[4.5]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[32.4]}},{"b":14,"v":{"DEFAULT":[142.5]}},{"b":15,"v":{"DEFAULT":[40.1]}},{"b":16,"v":{"DEFAULT":[216.2]}}]}, +{"f":83,"b":[{"b":0,"v":{"total":[50.9,51.1,49.4,48.9,50,49.8,48.1,50,50.4,47.1,50.2,46.7,51.2,49,49.4],"script":[15.7,16.5,15.4,15.2,15.6,15.4,15,16.1,16.2,15,15.7,15,15.9,15.6,15.3],"paint":[34.7,34.2,33.6,33.3,34,33.9,32.7,33.5,33.8,31.7,34,31.3,34.9,33.1,33.7]}},{"b":1,"v":{"total":[54.4,54,53.6,55.5,53.2,54.1,53.6,53.5,53.2,53.7,53.7,53.7,54.2,53.8,54],"script":[17.9,17.9,18.1,18.2,18.1,18.2,18.1,17.4,18,18.2,18.1,18.2,18.5,18.2,17.6],"paint":[36.1,35.7,35.1,36.8,34.6,35.5,35.1,35.7,34.8,35,35.2,35,35.2,35.1,36]}},{"b":2,"v":{"total":[21.4,20.8,20.4,21.8,20.3,20.6,21.9,20.2,20.7,20.8,20.5,20.5,21.4,21.9,20.7],"script":[5.4,4.5,4.8,4.5,4.6,5.1,6.2,4.7,4.8,4.5,5.1,4.6,5.2,5.7,5.3],"paint":[14.1,14.9,14.3,14.3,13.9,14.5,14.1,13.8,14.3,14.6,13.6,14.9,15.2,15.5,14.3]}},{"b":3,"v":{"total":[4.4,3.6,4,3.7,3,3.5,3.2,3.8,3.7,3.7,3.7,4,4,3.9,4.6,4.4,3.7,3.6,3.7,4,3.6,4.1,3.1,3.4,3.5],"script":[2.5,1.3,1,0.9,0.3,1.3,1,1,1.4,1.6,1.2,0.9,1,1.3,1.3,1.7,1,1.1,1,1.1,1.3,1.3,0.6,0.9,1.6],"paint":[1.7,2.2,2.3,2.4,2.6,1.5,2.1,2.2,1.4,2,1.7,3,2.3,2.4,2.8,1.1,2.6,1.5,2.6,2.2,1.8,2.7,1.4,2.3,1.8]}},{"b":4,"v":{"total":[165.2,167.4,166.7,166.9,165.5,165.9,168.2,167.6,168.2,166.1,167,164.9,165.2,165.1,171.7],"script":[23.3,23.8,22.9,23.1,22.2,22.9,24.1,22.5,24,23.5,23.3,22.9,22.6,23.7,22.4],"paint":[139.8,141.9,141.3,142.3,141.1,141.4,141.4,143,142.6,140.3,141.5,140,140.6,140.1,147.3]}},{"b":5,"v":{"total":[16.5,16.1,16.1,16.4,16.5,15.9,16.7,16,16.5,16.5,16,16.1,16,16,16.4],"script":[1.2,1.2,1.1,1.2,1.2,1.2,1.1,1.6,1.3,1.3,1,1,1.2,1.4,1.1],"paint":[14.5,14.1,14.1,14.1,14.6,13.9,13.9,13.6,14.4,14.1,13.7,14.4,13.7,13.8,14.6]}},{"b":6,"v":{"total":[625.4,622.8,625.4,625.4,623.3,619.8,622.3,618.2,622.6,621.7,621.3,614.9,618.3,617,618.2],"script":[269.2,267,269.9,269,266.5,268,268.4,265.3,268.1,266.9,263.5,263,265.6,264.6,268.1],"paint":[349.3,349.1,348.7,349.6,350.1,345,347.1,346.2,347.8,348.1,350.5,345.2,346,345.7,343.5]}},{"b":7,"v":{"total":[58.2,56.2,56,55.9,56.3,56.5,56,56.3,56.3,56.9,55,57.6,56.8,58.2,55.3],"script":[15.6,16.1,15.9,16,16.1,16.5,15.9,16.5,16,16,15.7,16.4,16,16.3,15.4],"paint":[41.6,39.3,39.2,39,39.3,39.2,39,38.9,39.5,40,38.5,40.2,39.9,40.8,39]}},{"b":8,"v":{"total":[17.1,16,15.7,15.3,15.2,15.1,15.6,17,15.8,16.3,16.7,15.5,16.2,14.8,15.5],"script":[14.2,14.3,13.7,13.9,13.4,13.5,13.5,14.8,13.1,14.1,14.7,13.6,14.1,12.9,13.3],"paint":[2.8,1.3,1.2,0.4,1.1,1.5,2.1,2,1.8,2,1.7,1.6,2,1.5,1.2]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[6.2]}},{"b":11,"v":{"DEFAULT":[6.6]}},{"b":12,"v":{"DEFAULT":[2.1]}},{"b":13,"v":{"DEFAULT":[47.6]}},{"b":14,"v":{"DEFAULT":[136.8]}},{"b":15,"v":{"DEFAULT":[39.6]}},{"b":16,"v":{"DEFAULT":[212.4]}}]}, +{"f":84,"b":[{"b":0,"v":{"total":[48.9,50,48.6,49.3,49.5,48.5,48.1,48.8,49.4,50.4,50.6,50,48.2,50.4,48.2],"script":[15,15.7,14.9,15.6,16.1,15.3,14.6,14.8,15.2,16,16.1,15.7,14.7,15.3,14.5],"paint":[33.4,33.9,33.2,33.3,33,32.8,33.1,33.6,33.7,33.9,34,33.9,33,34.7,33.3]}},{"b":1,"v":{"total":[56.9,55.7,56,55.3,56,55.9,55.6,55,55.1,56.6,57.9,56.3,56.3,56.3,56],"script":[19.4,20.2,20,19.3,20.2,20,19.7,20.1,19.4,20.2,21.6,19.2,19.8,20.3,19.6],"paint":[36.4,35,35.4,35.3,35.3,35.4,35.2,34.3,35,35.9,35.9,36.6,35.9,35.5,35.7]}},{"b":2,"v":{"total":[22.2,21.7,20.6,22.2,21.2,22.4,22.2,21.1,22.1,21.4,22.2,20.8,21,21,20.8],"script":[6.2,4.9,5,5.3,5.3,5.5,5.6,5.2,5.3,5.1,5.8,4.6,5.6,5.1,5.3],"paint":[14.1,14.8,14.3,15.3,14.7,14,15,14.5,14.6,15.6,14.8,15.4,13.4,14.6,14]}},{"b":3,"v":{"total":[5.7,6.5,6.1,6.8,5.8,5.8,5.3,5.5,6.1,5.9,6.8,6.4,6.1,6.5,5.8,6.2,6.3,6.4,5.8,5.6,6,5.9,6.5,5.9,5.9],"script":[3.1,3.3,3.7,3.4,3.4,2.7,3,2.8,3.5,2.8,3.9,3.3,3.1,3.3,3.9,3,3,3.4,3.5,3.4,3,3.4,3.7,2.9,3.2],"paint":[2.4,2.1,2.2,2.7,2.1,3,1.9,2.5,2.1,2.9,1.2,2.9,2.2,3,1.2,3,2.7,1.8,0.9,2.1,1.9,2.4,1.7,2.9,2.4]}},{"b":4,"v":{"total":[165.5,165.2,164,167.7,164.9,166.8,162.9,167.7,162.6,163.9,164.3,167.1,166.5,165.8,169],"script":[25.9,24.2,24.5,23.2,24.2,22.1,23.4,24.3,23.6,23.7,23,24.1,23.3,25.4,23.4],"paint":[138.3,139.9,137.9,142.7,138.8,143.2,138.1,141.5,137.6,138.3,138.6,140.7,141,138,143.7]}},{"b":5,"v":{"total":[16.7,17.3,16.6,17.3,17.2,16.7,17.8,16.2,16.7,16.9,16.5,17.4,16.5,16.7,16.7],"script":[1.7,1.7,1.4,1.4,1.3,1.4,1.5,1.6,1.7,1.4,1.4,1.4,1.6,1.6,1.3],"paint":[14,14.6,14.4,15,15.1,14.5,15.3,14.1,13.9,14.1,14.1,15.1,14.2,14.3,14.7]}},{"b":6,"v":{"total":[643.5,641.4,633.7,636.7,639.3,644.4,635,638.9,641.5,633.4,631,635.5,633.7,631.6,632.7],"script":[283.5,285.9,281.6,281.5,281.3,286.6,282.4,285.6,285.7,281.9,278.8,281.7,281,279,280],"paint":[353.1,348.5,345.3,348.5,351.1,351,345.8,346.5,349,344.7,345.5,347.1,346,345.9,346.1]}},{"b":7,"v":{"total":[54.3,54,54.2,54.4,54.6,55.1,55.2,54.2,55.8,56.6,54.6,54.3,55.5,56.1,53.7],"script":[15.2,15.4,15.5,14.9,15.4,15.6,16,15.1,15.8,16.2,14.8,15.2,15.4,15.6,14.5],"paint":[37.7,37.3,37.8,38.6,38.4,38.2,38.3,37.9,38.8,39,38.9,38.1,39.1,39.5,37.8]}},{"b":8,"v":{"total":[17.3,16.9,17.2,16.4,18.1,14.9,15.8,16.4,16.6,16.6,15.1,15,16.4,16.9,16],"script":[15.4,15.2,14.7,15.1,15.3,13,14.1,14.2,14.7,14.3,12.4,13,13.9,14.9,13.6],"paint":[1.8,0.8,2.5,1.2,1.7,1.1,0.8,2.1,1.8,1.4,1.7,1.5,1.8,1.2,1]}},{"b":9,"v":{"DEFAULT":[1.3]}},{"b":10,"v":{"DEFAULT":[7.1]}},{"b":11,"v":{"DEFAULT":[7.7]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[55.4]}},{"b":14,"v":{"DEFAULT":[213.1]}},{"b":15,"v":{"DEFAULT":[49.2]}},{"b":16,"v":{"DEFAULT":[290.4]}}]}, +{"f":85,"b":[{"b":0,"v":{"total":[51.7,51.2,51.4,52,51,50.3,51.3,50.9,52.2,51.1,50.7,50,51.8,51.5,51],"script":[17.1,16.9,17.2,17.9,17.1,17.2,17,17.4,17.7,17.1,17.2,16.1,17.6,17.3,17.2],"paint":[34.1,33.9,33.8,33.7,33.5,32.6,33.9,33.1,34,33.6,33.1,33.5,33.7,33.8,33.4]}},{"b":1,"v":{"total":[60.5,60.4,59.2,59.3,59.2,59.4,60.1,59.4,58.4,60.5,59.7,59.3,58.9,59.6,58.8],"script":[23.5,23.6,23,23.9,22.8,23.4,23.3,23.8,23.1,23.3,23.8,23.5,23,23.5,23.3],"paint":[36.5,36.3,35.8,35,35.9,35.5,36.4,35.2,34.9,36.7,35.5,35.4,35.4,35.7,35.1]}},{"b":2,"v":{"total":[23,21.2,22,22,22.3,22.1,21.7,21.9,21.1,21.5,21.9,23.3,22.1,22.6,21.6],"script":[6.4,5.7,6.2,6.5,6.8,5.9,6.1,5.5,5.6,6,6.2,6.4,6.2,5.7,5.4],"paint":[14.9,13.5,14.6,13.9,14.5,15.2,14.2,14.9,13.3,14,13.9,15.3,14.7,15.6,14.7]}},{"b":3,"v":{"total":[5.2,6.3,6.3,6.7,5.9,5.5,5.8,6.4,6.9,5.3,6.3,6.2,5.7,5.9,5.2,5.7,5.2,6.5,6.2,5.9,5.4,5.3,5.4,6,5.7],"script":[3,3.4,3.3,3.9,3.4,2.9,3.1,2.9,3.1,2.2,3.5,3,3.2,3.4,2.8,2.8,2.7,3.4,3.4,3.3,2.8,2.5,2.9,2.8,2.9],"paint":[2,2,2.1,2.7,2.3,1.4,1.7,3.4,3.1,2.9,1.9,2.2,1.7,2.4,2,2.8,2.3,3,2.2,1.6,2.4,2.7,2,3,2.7]}},{"b":4,"v":{"total":[180.2,177.3,164.6,159.1,169.1,168.9,170,165.6,167.3,169.8,175.2,171.7,164.5,166.5,170],"script":[27.5,26.9,22.2,21.6,22.9,23.1,23.4,24.4,24.3,27.9,27.9,26.2,23.1,23.8,23.6],"paint":[149.8,147.8,140.5,135.9,144.3,144.5,145.5,138.9,141.1,139.4,145.8,143.9,139.8,141.3,144.6]}},{"b":5,"v":{"total":[17.2,16.7,17.2,17.7,16.9,17.1,17,17.1,16.8,17.2,16.4,16.6,16.7,16.8,16.9],"script":[1.9,1.5,1.9,1.9,1.7,1.4,1.8,1.6,1.8,1.4,1.7,2,1.5,1.8,1.6],"paint":[14.5,14.1,14.3,15,14.2,14.9,14.5,14.6,14.2,14.9,13.8,13.9,14.2,14.1,14.5]}},{"b":6,"v":{"total":[634.6,624,622.1,627.4,627.6,620.3,623.7,623,622.6,622.1,626.1,625.3,627.9,629,627.2],"script":[273.7,269.8,270.2,275.6,275.5,268,272,271.3,270.4,271.2,273.9,273.3,274.2,272.1,269.5],"paint":[354.1,347.4,345.2,344.8,345.5,345.6,345.1,345,345.6,344.2,345.4,345.3,346.8,350.1,351]}},{"b":7,"v":{"total":[56.1,57.6,55,56.4,56.5,56.4,56.5,56.3,56.2,57.5,56.7,56,56.2,56.5,55.5],"script":[16.6,16,16,16.3,16.9,16.1,15.8,16.1,15.9,16.3,16.3,15.7,16,16.1,15.7],"paint":[38.5,40.8,38.2,39.2,38.7,39.3,39.8,39.3,39.4,40.3,39.5,39.3,39.3,39.5,38.9]}},{"b":8,"v":{"total":[30.1,29.5,28.3,28.7,27,29.7,28.5,28.3,28.9,30,29.5,29.8,29.3,29.5,29.3],"script":[28.2,27.6,25.8,26.8,24.1,27.3,26.6,26.1,27,27.6,27.6,27.6,27.6,27.5,27.8],"paint":[1.8,1.8,2.4,1.7,2.7,2.3,1.1,1.5,1.8,1.7,0.5,1.5,0.8,1.1,1.4]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.1]}},{"b":11,"v":{"DEFAULT":[6.7]}},{"b":12,"v":{"DEFAULT":[2.9]}},{"b":13,"v":{"DEFAULT":[44.7]}},{"b":14,"v":{"DEFAULT":[197]}},{"b":15,"v":{"DEFAULT":[53.5]}},{"b":16,"v":{"DEFAULT":[287.7]}}]}, +{"f":86,"b":[{"b":0,"v":{"total":[45.6,45.3,46.8,46.6,45.2,46.7,46.7,46.5,45,44.7,46.2,46.3,45.3,47.3,47.1],"script":[12.1,12,13,12.3,11.7,12.8,13,12.7,12.4,12.4,13.3,11.8,12.2,13.1,13.8],"paint":[33.1,32.9,33.4,33.8,33,33.5,33.3,33.4,32.3,32,32.5,34.1,32.7,33.8,32.9]}},{"b":1,"v":{"total":[55.3,55.8,56,55.8,55.6,54.3,56.1,54.5,55.2,56.6,56.4,55.8,56.2,55.5,55.6],"script":[18.5,19.7,19.2,19.4,19.3,18.6,19.6,18.2,18.5,19.7,20.2,20,19.7,19.5,18.7],"paint":[36.3,35.6,36.3,36,35.8,35.2,36,35.8,36.3,36.4,35.7,35.3,36,35.4,36.4]}},{"b":2,"v":{"total":[20.8,21.7,21.7,20,20.2,22.7,20.9,21.4,21,21.7,20.7,21.8,21.1,20.8,20.9],"script":[5.6,5.7,5.6,4.8,4.5,5.9,4.6,5.6,5.6,5.4,5.2,5.8,5.7,5.4,5.1],"paint":[14.3,15,14.1,14,13.7,15.3,15.3,14.4,14.1,15.3,13.4,14.6,14.1,14.4,14.5]}},{"b":3,"v":{"total":[5.1,5.2,5.9,5.7,5.7,6.2,5.5,5.4,5.5,5.4,5.5,4.8,5.7,6.1,6,5,5.1,6,5.3,5.7,6.2,5.3,5.5,5,5.7],"script":[2.2,2.7,2.2,3,2.3,2.6,2.6,2.6,2.3,2.5,2.9,2.3,2.8,2,2.9,2.4,2.5,2.6,2,2.8,3.1,2.7,3,1.9,3.1],"paint":[2.3,2.3,3.5,2.5,3.2,3.4,1.8,2.2,2.7,2.4,2.4,2.4,2.8,4,2.5,2.3,2.4,2.9,2,2.1,2.1,1.6,1.7,2.7,2.4]}},{"b":4,"v":{"total":[168.6,169.8,169.6,167.2,166.3,163.7,170.8,163.4,169.4,165.2,163.8,166,169.5,167.8,166.6],"script":[26.3,26.8,26.2,25,22.9,25,23.9,24.2,25,23.1,25.8,23.8,24,24.9,24.6],"paint":[140.5,141.6,141.8,140.2,141.9,136.2,145.7,137.3,142.6,140.2,136.2,140,142.2,141.4,140.5]}},{"b":5,"v":{"total":[16.9,16.8,18,17,17.9,17.3,18.3,16.8,17.2,16.5,16.8,17.8,17.3,16.7,16.8],"script":[1.5,1.8,1.7,1.6,1.7,1.6,2.2,1.6,2,1.6,1.5,1.9,1.8,1.9,1.6],"paint":[14.3,14,14.8,14.6,15.4,14.7,15.2,14.2,13.8,14,14.3,15.2,14.7,13.8,14.4]}},{"b":6,"v":{"total":[617,620.1,613.5,613.5,611.2,612.4,609.5,608.2,614.8,613.1,616.6,614.3,614.5,610.4,611.4],"script":[255.7,253.6,254.3,253.7,256.1,252.5,253.2,252.8,254.6,254.6,254.4,254.9,254.7,252.2,253.1],"paint":[353.8,359.7,352.4,353.1,348.5,353.2,349.6,348.6,353.5,351.6,355.5,352.8,353,351.4,351.6]}},{"b":7,"v":{"total":[51.9,50.4,52.1,50.5,51.9,50.1,51.6,49.9,51.8,51.4,50.1,49.4,50.4,51.5,50.6],"script":[12.9,12.1,12.4,12,12.9,12,13.4,11.8,13.2,12.6,11.8,11.8,12.2,12.6,12.6],"paint":[38,37.5,38.8,37.6,38.1,37.2,37.3,37.2,37.7,37.9,37.4,36.6,37.4,38.1,37.2]}},{"b":8,"v":{"total":[27,27.6,26.9,25.2,27,24.6,26,25.8,25.9,26.9,26.1,25.8,25.9,24.7,26.2],"script":[25.1,25.9,24.5,23,25.4,22.8,24.1,23.6,24.1,24.3,23.8,23.6,24,23.3,23.8],"paint":[1.9,0.8,1.3,2.1,1.5,1.8,1.8,2,1.7,2.1,2.2,1.4,1.8,0.4,1.9]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[5.3]}},{"b":11,"v":{"DEFAULT":[5.9]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[36.5]}},{"b":14,"v":{"DEFAULT":[218.1]}},{"b":15,"v":{"DEFAULT":[59.7]}},{"b":16,"v":{"DEFAULT":[325.7]}}]}, +{"f":87,"b":[{"b":0,"v":{"total":[53.4,51.5,51.3,51.2,52.2,52.1,53.9,52.5,53.5,52.3,52,52.8,51.9,52.3,53.4],"script":[18.5,18.1,18,18,18.1,18.2,19.2,18.7,18.9,18,17.9,18.5,17.9,18.6,19.1],"paint":[34.4,33,32.8,32.8,33.7,33.4,34.2,33.3,34.1,33.8,33.7,33.8,33.5,33.3,33.9]}},{"b":1,"v":{"total":[62.4,63.8,64.6,62.2,61.5,63.4,64.2,62.6,62.7,62.1,61.7,62.8,62,61.6,62.8],"script":[26.1,27.5,26.8,26.4,25.4,27,27.5,26.6,26.6,26.1,25.9,26.5,26.1,25.7,26.5],"paint":[35.8,35.8,37.3,35.3,35.6,35.9,36.2,35.5,35.5,35.6,35.4,35.8,35.4,35.3,35.8]}},{"b":2,"v":{"total":[27.2,24.1,26.1,25.3,27.3,26.8,25.5,26,26.1,28.3,26.8,27.2,26.6,25.1,26.4],"script":[10.7,8.5,9.5,9.3,9.8,10.4,10.2,10.1,9.6,10.1,11,10.2,9.3,8.6,11],"paint":[13.3,14.6,14.3,14.3,15.4,14.5,14.2,14.3,15.3,14.9,14.4,16,15.2,15.8,13.7]}},{"b":3,"v":{"total":[6.3,5.9,6.4,7.4,6.9,7.1,6.2,6.2,5.9,6.6,6.2,6.9,6.9,6.4,6.1,6.3,5.7,7.4,7.1,6.6,5.9,6.3,6,6.3,6.6],"script":[3.2,3.4,3.4,4.4,3.5,3.7,3.1,3.7,3.4,3.7,3.5,4.2,3.5,3.1,3.6,3.6,3.5,4.6,4,3.8,3.4,3.3,3.4,3.8,3.8],"paint":[3,1.3,1.9,2.9,2.5,2.2,3,1.5,1.6,1.8,2.2,1.8,2.5,2.8,2.4,1.7,1.5,2,2.1,2,1.7,2.4,2,1.4,2.7]}},{"b":4,"v":{"total":[167.4,171.4,168.6,164.3,165.7,165.3,169.2,167.4,171.5,167.6,166.1,168.1,167.6,168.6,169.6],"script":[28,25.4,26,26.4,25.5,26.3,25.5,26.9,28.3,27.2,25.2,26.9,26.7,26.3,28.3],"paint":[137.4,143.9,140.8,135.6,138.4,137.3,142,139,141,139.1,138.9,139.1,138.8,140.4,139.1]}},{"b":5,"v":{"total":[31.3,33.3,32.2,31.8,31.1,32.6,30.8,30.7,30.4,30.8,31,31.2,31,30.4,30.9],"script":[15,16.2,16.2,15.4,15.4,16.2,13.8,14.7,14.7,14.1,14.2,15.4,15.2,13.9,15],"paint":[15.4,15.6,14.8,15.4,14.4,15.4,15.7,15.1,14.9,15.7,16,15,15,15.4,15]}},{"b":6,"v":{"total":[671.6,667.3,670.5,677,664,678.7,667.8,669.8,673.6,667.4,669.9,674,671.7,670.8,668.6],"script":[312.2,312.9,313.8,314.3,311.4,313.9,310.4,313.4,312.3,313.4,312.4,315.7,316.1,314.4,313.6],"paint":[352.5,347.6,350.1,355.9,345.8,358.3,350.5,349.2,354.5,347.2,350.7,351.6,348.9,349.7,348.2]}},{"b":7,"v":{"total":[57.7,58.1,57.2,57.4,57.1,60.7,58.8,57.5,57.2,57.2,57.2,56.8,59.7,57.1,57.4],"script":[17.9,17.8,17.5,17.6,17.1,18.3,17.7,17.6,17,17.2,17.5,17.1,18.9,16.9,17.4],"paint":[39,39.4,38.8,38.9,39.1,41.5,40,39,39.3,39.1,38.8,38.9,40,39.3,39.2]}},{"b":8,"v":{"total":[33.5,33.7,29.4,30.7,30.8,33.6,33,31.9,32,29.9,33.2,33.4,30.1,33.1,33.8],"script":[31.4,32.2,27.7,28.3,28.8,30.8,31.3,29.7,29.8,28,31.4,31.3,27.8,30.7,31.8],"paint":[2,1.3,1.5,2.3,1.1,2.1,1.3,1.6,1.5,1.2,1.4,1.7,1.5,1.4,1.9]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[8.4]}},{"b":11,"v":{"DEFAULT":[9.1]}},{"b":12,"v":{"DEFAULT":[2]}},{"b":13,"v":{"DEFAULT":[68.4]}},{"b":14,"v":{"DEFAULT":[158.1]}},{"b":15,"v":{"DEFAULT":[44.4]}},{"b":16,"v":{"DEFAULT":[235.6]}}]}, +{"f":88,"b":[{"b":0,"v":{"total":[47.5,48.6,47.2,48.5,47.5,48.2,46.6,49.1,48.5,48.8,48.4,48.1,48.3,47.5,48.4],"script":[13.5,14.6,13.6,14.4,13.6,14.2,13.6,14.7,14.5,14.5,13.8,14,14.5,13.7,14.5],"paint":[33.5,33.5,33.1,33.6,33.4,33.5,32.6,34,33.5,33.9,34.2,33.6,33.4,33.4,33.5]}},{"b":1,"v":{"total":[57.1,55.9,56.9,56.6,55.8,56.6,56.1,56.7,56.1,56,57.1,56.2,57,56.8,56.4],"script":[20.4,20.2,20.4,20.3,20.4,20.6,20.4,21,20.5,20,21,20.3,20.6,21,20.2],"paint":[36.3,35.2,35.8,35.3,34.9,35.5,35.1,35.1,35,35.4,35.7,35.3,35.9,35.1,35.3]}},{"b":2,"v":{"total":[21.9,22.9,24.4,22.2,22.5,23.3,22.4,23.9,22.8,22.5,22.5,21.1,21.4,21.7,25.2],"script":[6.1,7,7,6,6.7,6.8,6.8,7,6.7,6.5,6.3,4.9,5.9,6.4,8.2],"paint":[13.7,14.6,15.5,15,15.1,15.1,14.3,15.3,15.1,14.4,13.8,15.4,13.9,13.7,15.9]}},{"b":3,"v":{"total":[6.3,5.6,6.1,5.9,5.8,5.3,7.1,5,5.4,5.9,5.1,6.3,6,6.5,5.5,5.8,6.1,6.2,5.4,5.7,6.5,5.3,7.1,5.1,6],"script":[3,2.8,3.1,2.9,3.5,2.7,3.4,2.3,2.7,2.9,2.4,3.5,3.2,3.3,2.4,3,3.3,3.4,2.8,2.7,2.9,3,3.6,2.3,2.7],"paint":[2,2.2,2.8,2.4,2.2,2.5,3,2.6,2.1,2.5,2.6,2.1,2.1,2.1,2.9,2.2,1.9,2.1,2.4,1.8,3.5,1.8,2.4,1.5,2.1]}},{"b":4,"v":{"total":[164.7,162.2,169.1,163.3,164,165.8,170.1,165,166.4,166,165.7,167.2,163.8,167.1,166.3],"script":[24.9,23.5,21.7,24.3,23.5,24.7,24,23.2,25.1,23,24.3,24.5,24,23.5,21.9],"paint":[138.4,137,145.3,137.2,138.6,139.1,144.2,140.7,138.8,140.8,138.4,140.6,137.8,140.1,141.8]}},{"b":5,"v":{"total":[16.6,16.9,16.9,17.3,17.2,17.2,17,16.7,16.8,17,17.1,17.2,17.4,17.1,17.4],"script":[2.2,1.6,1.7,1.8,1.9,2,1.9,1.8,1.9,1.9,1.9,1.5,2,1.5,1.9],"paint":[13.7,14.5,14.5,14.3,14.6,14.3,14.5,14.2,13.8,14.3,14.5,14.6,13.7,14.6,14.5]}},{"b":6,"v":{"total":[625.7,617.2,615.3,617.6,614.8,618.3,618.1,619.4,621.6,618.3,618.2,629.3,619,618.2,618.1],"script":[263.8,258.2,260,257.7,258.7,260.7,260.4,261.4,262.2,257.8,259.2,261.8,259.8,261.5,260],"paint":[355,352.3,348.6,353.2,349.3,350.9,351,351.3,352.6,353.9,352.1,360.5,352.4,350,351.4]}},{"b":7,"v":{"total":[55,53.7,54.3,54.9,53.2,54.5,54,53,55.3,53.6,53.5,54.8,54.5,53.2,53.4],"script":[14.6,14,15.1,14.5,13.8,14.3,14.2,14.2,14.6,13.9,14.4,14.5,14.6,13.8,14.2],"paint":[39.5,38.8,38.4,39.4,38.5,39.1,38.9,37.9,39.8,38.9,38.2,39.4,39,38.5,38.2]}},{"b":8,"v":{"total":[24.9,24.5,25.1,25.4,26.6,25.6,25.6,26.1,25.4,24.9,26.1,25.3,25.7,25.5,25.1],"script":[23.1,23.1,23.2,23.4,24.7,23.9,23.3,23.7,23.5,23.3,23.9,23.2,23.2,23.2,23.2],"paint":[1.7,1.3,1.8,1.9,1.8,1.6,2.3,2.3,1.8,1,2.1,2,2.3,1.8,1.7]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5.6]}},{"b":11,"v":{"DEFAULT":[6.1]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[42.5]}},{"b":14,"v":{"DEFAULT":[149.7]}},{"b":15,"v":{"DEFAULT":[41.8]}},{"b":16,"v":{"DEFAULT":[220.7]}}]}, +{"f":89,"b":[{"b":0,"v":{"total":[51.1,48.7,48.8,49.7,49.5,49.3,49.3,48.8,49.6,49.5,51.1,49.7,49.7,49.2,49.8],"script":[16.4,15.3,15.4,15.9,15.5,15.4,15.5,15.7,16.2,15.7,17,15.5,15.7,15.4,15.5],"paint":[34.3,33,33,33.4,33.5,33.5,33.4,32.6,33,33.4,33.6,33.8,33.6,33.4,33.9]}},{"b":1,"v":{"total":[58.4,59.2,58.1,57.7,57,57.2,57.3,57.2,57.1,57.3,56.9,57.6,58,56.8,57.3],"script":[21.2,21.6,21.7,21.8,21.1,21.8,22,21.7,21.3,21.7,21.8,21.7,21.8,21.1,21.8],"paint":[36.8,37,35.9,35.3,35.4,35,34.8,35.1,35.2,35.1,34.5,35.1,35.8,35.2,34.2]}},{"b":2,"v":{"total":[25.7,25.4,24.4,25.6,25.7,25.3,25.3,26.2,25.2,26.4,25.4,25.1,25.7,25.1,24.3],"script":[9.6,9.2,8.5,9,8.9,8.8,9.3,9.8,9.4,8.9,8.9,8.7,9.6,9.4,8.3],"paint":[14.2,14.4,14.8,14.7,15.1,14.6,14.2,15.3,14.8,16.4,15.4,15.3,15,13.9,14.6]}},{"b":3,"v":{"total":[5.9,6,5.4,6.3,6.1,6.3,5.9,6,6.6,6.2,6,5.8,6.6,6.6,5.9,5.5,5.9,5.6,6.2,5.6,5.3,5.3,5.9,6.4,6.2],"script":[2.8,2.8,3,3.3,3.4,2.8,2.7,3.5,3.4,2.9,3.1,3.1,3.3,3.7,3.3,2.4,2.2,3.3,3.6,2.5,2.8,2.3,3.1,2.7,3.4],"paint":[2.9,2.8,1.4,2.1,2.1,3.4,2.5,2.4,3,3.2,2.8,1.5,3.2,2.7,1.7,2.3,3.2,0.7,1.5,2.4,2.4,1.8,2.3,3.6,2.6]}},{"b":4,"v":{"total":[167.3,173.4,171.5,163.1,166.3,164.3,163.9,162.6,165.5,162.9,168.5,164.2,164.2,167.9,166.5],"script":[25.8,26.9,25.6,24.1,24.1,24.1,24.3,24.2,25.2,23.4,26,24.8,25.7,25.8,24.6],"paint":[139.4,143.8,143.9,136.6,140.7,138.3,137.3,136.2,137.2,137.7,140.9,138.2,137.1,139.2,140.1]}},{"b":5,"v":{"total":[18.8,18,18.1,17.9,17.9,17.9,18,17.9,18.3,18,17.7,17.9,17.8,17.6,17.9],"script":[3,2.7,3,2.8,2.7,2.7,3.4,2.8,2.8,2.8,2.7,2.7,2.8,2.7,2.9],"paint":[14.9,13.8,13.8,14.2,14.4,14.3,13.8,14.2,14.3,14.5,14.1,14.1,14.2,14.1,14.3]}},{"b":6,"v":{"total":[632.9,626.8,626,631.8,627.2,632.6,628.6,626.1,624.7,632.1,633.1,625.1,629.1,625.8,623.2],"script":[270.2,272.8,265.7,271.7,268.6,268.8,269.4,267.1,268.2,270.2,275.2,266.7,272.2,269.9,266.7],"paint":[355.8,347.3,353.4,353.4,351.9,357,352.5,352.3,349.8,355.2,351.1,351.8,350.3,349.1,349.7]}},{"b":7,"v":{"total":[57.9,58.4,61,58.4,57.1,57,57.8,56.6,57.4,56.5,56.6,57.3,56.8,59.1,56.7],"script":[17.3,17.3,17.9,17.4,16.9,17.1,17.3,16.7,17.4,16.8,16.2,17.1,16.4,17.6,16.4],"paint":[39.7,40,42.1,40.1,39.3,39,39.6,39,39.1,38.8,39.5,39.3,39.5,40.6,39.4]}},{"b":8,"v":{"total":[26.8,26.3,26.7,27.8,28,25.8,26.4,25.7,26.7,27.4,26,27.5,25.5,29,26.1],"script":[24.5,24,24.4,25.4,25.8,24.2,24,24.1,24.2,24.8,24.4,25.6,23.9,27,23.5],"paint":[1.6,1.4,2.2,2.3,1.6,1.5,1.9,1.5,2.4,2.4,1.5,1.2,0.9,1.7,1.9]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[6]}},{"b":11,"v":{"DEFAULT":[6.6]}},{"b":12,"v":{"DEFAULT":[2.4]}},{"b":13,"v":{"DEFAULT":[44.6]}},{"b":14,"v":{"DEFAULT":[210]}},{"b":15,"v":{"DEFAULT":[56]}},{"b":16,"v":{"DEFAULT":[320.1]}}]}, +{"f":90,"b":[{"b":0,"v":{"total":[52.2,52.4,53.3,52.9,52.3,52.8,52,53.7,54,51.8,52.4,51.3,51.2,52.3,51.2],"script":[18.5,18.1,19.2,18.7,18.1,19.2,18,18.5,19,18.3,18,18,17.8,18.3,17.8],"paint":[33.2,33.8,33.7,33.8,33.8,33.2,33.5,34.7,34.5,33.1,34,32.9,32.9,33.5,32.9]}},{"b":1,"v":{"total":[61.6,61.4,61.5,63.9,61.5,63.4,62.3,62.4,63.2,62.5,62.6,63.8,62.5,62.2,62.8],"script":[26.1,25.8,25.9,26.7,25.7,26.1,26.2,26.3,26.1,26.5,26.4,26.2,26.8,26.1,26.5],"paint":[35.1,35.1,35,36.8,35.3,36.9,35.7,35.7,36.5,35.3,35.7,37.1,35.1,35.6,35.8]}},{"b":2,"v":{"total":[25.7,26.2,27,26.2,25.4,26.3,26,26.5,25.4,26.9,25.7,25.9,26.3,26.1,27.9],"script":[9.4,10.2,10.2,10.4,9.6,10,10,10.7,9,10.3,9.9,9.4,10.1,9.6,9.5],"paint":[14.1,14.4,15.6,14.7,14.4,14.2,14.4,14.8,14.8,15,14.5,14.1,14.6,15,16.9]}},{"b":3,"v":{"total":[6.9,6.2,6.7,6.1,6.1,6.3,6.2,6.3,6.6,6.8,6.7,6.3,6.3,5.5,6.8,6.3,5.9,6.3,6.6,6.5,6.6,6.6,5.9,6.9,6.4],"script":[4,3.3,3.3,3.5,3.7,3.8,3.7,2.9,3.5,4.5,3.5,3.8,3.8,2.9,3.7,3.9,3.7,3.9,3.8,3.4,3.1,3.8,3.6,3.6,3.8],"paint":[2.3,2.1,2.8,1.4,1.5,2.4,1.5,3.2,2.3,1.4,3.1,1.6,1.9,1.6,2.5,2.3,2,1.1,2.2,2.8,3,1.9,1.7,2.2,1.6]}},{"b":4,"v":{"total":[170.5,172,168.6,173.6,170.1,169.1,170.9,168.3,165.5,170,165.3,171.2,166.3,168.8,167],"script":[27,28.9,27,27.9,27.1,27.9,28,26.6,25.4,27.6,24.7,27.7,26.5,28.1,26.3],"paint":[141.9,141.3,140,144,141,139.7,141.4,139.6,137.3,140.2,139.2,141.4,137.4,138.8,137.3]}},{"b":5,"v":{"total":[31.6,32.2,30.2,31,30.9,31.1,32.2,30.6,30.8,30.8,30.9,31.3,31.2,31.6,30.5],"script":[15.6,15.5,14.1,15.1,14.5,14.2,16.3,14.6,15.2,14.9,15.1,15.5,15.6,16,14.9],"paint":[15,15.6,15.2,14.9,15.3,16.1,14.8,15.2,14.5,14.9,14.6,15.1,14.5,14.7,14.7]}},{"b":6,"v":{"total":[669.9,668.9,668.3,669.5,665.2,667.6,663.9,663.1,663.3,666.4,663.7,659,662.2,662.5,661.9],"script":[311.3,310.2,313.2,313.2,311.7,310.7,311.6,308.6,309.1,312.3,311.2,306.2,309,310.8,309],"paint":[351.8,351.9,348.3,349.4,346.7,350.1,345.5,347.5,347.5,347.4,345.9,346.1,346.5,345,346.2]}},{"b":7,"v":{"total":[58.5,57.3,59.1,57.9,57.6,56.8,56.7,57.4,58.1,57.8,57.7,57.4,56.1,57.6,56.2],"script":[18.1,17.3,17.8,18,17.5,17.2,17.4,17.7,17.4,17.1,17.7,17.2,17.1,17.6,17.1],"paint":[39.5,39.1,40.1,39,39.2,38.7,38.5,38.8,39.8,39.7,39.2,39.4,38.1,39,38.2]}},{"b":8,"v":{"total":[32.6,31.8,29.4,33.3,29.7,31.8,34.9,31.7,32.5,34.2,27.5,32.9,33.7,29.5,33.6],"script":[31.2,29.7,27.1,31.9,27.2,29.5,32.1,30.1,30.9,31.5,25.6,30.9,31.6,27.2,31.5],"paint":[1.3,2,1.6,1.3,0.9,2.1,2.6,1.4,0.9,2.6,1.1,1.6,1.9,1.4,1.6]}},{"b":9,"v":{"DEFAULT":[1.2]}},{"b":10,"v":{"DEFAULT":[8.3]}},{"b":11,"v":{"DEFAULT":[9.2]}},{"b":12,"v":{"DEFAULT":[2.1]}},{"b":13,"v":{"DEFAULT":[68.1]}},{"b":14,"v":{"DEFAULT":[165.8]}},{"b":15,"v":{"DEFAULT":[46.1]}},{"b":16,"v":{"DEFAULT":[247.2]}}]}, +{"f":91,"b":[{"b":0,"v":{"total":[46.2,45.3,46,46.1,45.4,44.9,47,45.4,45.7,46.1,45.1,45.4,46.2,46.5,47.6],"script":[12.1,12.2,12.6,12.6,11.9,11.9,12.5,12,12.8,12.3,12.2,11.9,12.4,12,12.8],"paint":[33.7,32.7,33,33.1,33,32.5,34.1,32.9,32.4,33.3,32.5,33.1,33.4,34,34.4]}},{"b":1,"v":{"total":[53.9,54.2,55.3,54.9,53.6,53.1,53.6,53.8,54.6,55.5,53.8,55.2,53.8,54.4,55.1],"script":[17.5,17.7,18.8,18.4,17.5,17.3,17.9,18.1,18.4,19,17.6,18.5,17.9,18,18.4],"paint":[36,36,36.1,36,35.6,35.3,35.3,35.2,35.8,36,35.8,36.3,35.4,35.9,36.2]}},{"b":2,"v":{"total":[21.9,20.5,20.6,21.1,21.1,21.2,22.3,22,21.5,20.5,20.3,20.6,20.8,21.7,22.6],"script":[5,4.5,4.9,5.5,5.3,4.8,5.4,4.9,5.4,4.7,5.1,5,5,5.4,5.9],"paint":[15.1,14,14.2,14.3,14.4,15,15,15.7,14.5,14.4,13.4,13.8,14.2,15,14.8]}},{"b":3,"v":{"total":[5,5,4.9,4.5,5.5,5,5.6,5,4.9,4.5,5.1,4.9,5.6,4.7,5,4.5,5.2,4.4,6.5,4.8,5,5.5,5.6,6.7,5],"script":[2.5,3.1,2.5,2.4,2.8,2,2,2.5,2.7,2.3,2.4,2.1,2.3,2.2,2.5,1.5,3.1,2.2,2.8,2.2,2.5,2.7,2.7,3,2.6],"paint":[1.7,1.1,2,2,2.6,1.5,3.5,1.6,1.9,1.3,2,1.7,2.5,2.4,1.7,2.9,1.2,1.4,3.5,2.4,2.4,2.1,2.5,3,2.3]}},{"b":4,"v":{"total":[166.3,176,164,169.3,169,163,168.2,166.5,168.7,163.8,168.7,168.3,165.1,167.2,167.3],"script":[23.4,25.3,20.8,22.7,21.6,21.5,23.8,21.6,23.5,21.5,23.9,22.6,21.8,22.9,23.3],"paint":[140.8,148.4,141.5,145,146,139.9,142.3,142.3,142.2,140.4,142.7,144,141.4,142.4,142]}},{"b":5,"v":{"total":[16.5,16.6,16.5,16.9,16.6,16.5,16.6,16.1,16.2,16.1,16.8,16.6,16.7,16.4,16.5],"script":[1.3,1.3,1.3,1.3,1.6,1.3,1.3,0.9,1.3,1.6,1.4,1.3,1.2,1.3,1.3],"paint":[14.2,14.5,14.2,14.3,14.2,14.1,14.6,14.5,14.2,13.7,14.4,14.5,14.7,14.4,14.5]}},{"b":6,"v":{"total":[603.3,603.3,597.4,597.9,604.4,604.5,599.6,601.4,593.9,599.2,593.4,601.8,594,587,579.2],"script":[249,251.2,241.9,245,250.3,252.8,249.2,249.9,244.2,247.9,241.3,249.6,242.2,249.8,242.7],"paint":[347.3,345.3,348.8,346.2,347.2,345,343.5,344.9,343,344.5,345.4,345.4,345.1,330.4,329.8]}},{"b":7,"v":{"total":[53.1,54.3,50.2,50,49.8,50.9,51.3,51.7,52.1,51.6,49.5,53,49.6,49.2,54],"script":[12.6,13.4,12.2,12.3,12.5,12.9,12.8,13.4,13.2,12.4,12.5,13,12.4,12.3,13.3],"paint":[39.4,39.9,37.2,36.9,36.4,37.1,37.4,37.4,38,38.3,36,39.1,36.3,35.9,39.8]}},{"b":8,"v":{"total":[26.2,25.3,26.1,25.7,26.7,26,24.9,24.9,25.3,24.2,25.4,24.9,26.2,25.5,26.9],"script":[23.9,23.7,24.1,23.6,24.2,24.1,23.2,23,22.9,22.5,23.8,22.7,24,23.6,24.3],"paint":[2.2,0.7,1.8,1.6,1.9,1.4,0.8,1.8,2,1.6,1.5,2.1,2.1,1.8,1.7]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[4.3]}},{"b":11,"v":{"DEFAULT":[4.8]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[30.5]}},{"b":14,"v":{"DEFAULT":[156.6]}},{"b":15,"v":{"DEFAULT":[43.8]}},{"b":16,"v":{"DEFAULT":[238.5]}}]}, +{"f":92,"b":[{"b":0,"v":{"total":[43.3,44.8,41,44.4,43.5,45.1,41,45.2,44.8,44.7,41.8,44.5,44.3,44.8,43.1],"script":[12.7,13,10.2,13.3,12.8,13.7,10.3,14.4,13.2,13.2,10.3,13.1,12.6,13.2,12.9],"paint":[30.2,31.4,30.4,30.7,30.3,31,30.3,30.4,31.2,31.1,31,31,31.3,31.2,29.7]}},{"b":1,"v":{"total":[52.7,57.6,57.1,57.6,57.6,52.1,57.5,57,56.2,51.7,57,52.6,56.7,51.6,56.5],"script":[23.8,23.5,23.5,24,24.1,23.2,23.9,23.5,23,22.9,23.5,23.9,23.2,22.8,23],"paint":[28.5,33.6,33.1,33,33.2,28.5,33.1,33.1,32.8,28.4,33,28.3,33,28.4,33]}},{"b":2,"v":{"total":[19.2,19.5,18.8,20,20.5,19.4,20.6,21.1,19.9,19.3,20,22.8,20.5,20.6,20.5],"script":[3.7,3.8,3.4,3.9,3.3,3.3,4.3,4.4,3.6,3.6,3.7,5.2,3.6,4.6,3.9],"paint":[14.1,14.7,14.3,14.7,15.6,14.8,15.3,15.7,14.9,14.5,15,15.7,15.8,14.5,14.4]}},{"b":3,"v":{"total":[4.4,4.6,4.4,4.9,3.7,4,4.6,4.3,3.5,4.4,4.5,4.2,4.9,4.6,4.3,4.5,4.7,5,5.1,3.5,4.4,4.3,5.2,4.6,3.6],"script":[1.1,2.1,1.3,1.8,1.6,1.5,1.9,1.5,1.5,1.9,1.3,1.4,1.6,1.8,2,1.7,2.1,1.4,1.9,1.8,1.7,1.1,1.6,1.8,1.6],"paint":[2.6,2.3,1.4,2,2.1,2.4,2.6,2.6,1.9,2.3,2.5,2.8,3.1,1.9,2.2,1.8,2,3.4,2.6,0.8,1.7,3,3.5,1.9,1.9]}},{"b":4,"v":{"total":[152.5,151.6,152.2,150.7,150.9,151.7,152.7,157.5,152.6,151.8,152.5,154.1,152.9,153.9,150.2],"script":[32.7,32.4,32.8,32.3,33.6,32.7,33.4,33.9,32.9,32.4,33.4,33.7,32.6,35.2,33.3],"paint":[118.7,117,117.2,116.6,115.9,117.5,117.6,121.1,116.5,117.7,118,118.7,118.1,116.4,115.2]}},{"b":5,"v":{"total":[21.4,21.5,21.5,21.4,21.9,20.9,21.6,21.5,21.6,21.9,21.4,21.1,21.5,21.6,21.4],"script":[6,6.1,6,6.1,6.1,5.8,6.1,6.4,6.6,6.2,5.9,5.7,6.1,6.2,6.2],"paint":[14.7,14.6,14.4,14.5,14.6,13.9,14.6,14.6,14.3,14.7,14.2,14.3,14.7,14.6,14.2]}},{"b":6,"v":{"total":[610.9,619.9,620.1,587.6,608.8,612.4,599.2,607.3,614.6,611.3,615.2,607.4,599.4,611,616.5],"script":[265.2,268.4,270.4,254.7,258.4,261.6,261.4,254,257.9,263.4,267.9,261.3,263,264.2,269.1],"paint":[338.9,344.9,343,326.1,343.8,344.1,331,345.9,350.1,341.3,340.7,339.5,329.8,340.2,340.6]}},{"b":7,"v":{"total":[48.4,47.8,46.5,46.8,46.7,48,46.8,46,47.3,46.8,47.8,48.3,46.9,47.1,46.6],"script":[14.8,13.2,12.9,13.2,13.1,14.4,13.2,13,13.5,13.2,13.2,14.5,13.5,13.1,13.1],"paint":[32.7,33.8,32.7,32.7,32.7,32.7,32.7,32.2,32.9,32.7,33.7,32.9,32.7,33.1,32.6]}},{"b":8,"v":{"total":[27.9,27.1,29.2,29.1,28,27.4,27.1,27.7,28.3,29.5,27.9,29.7,29.3,28.4,26.9],"script":[25.4,24.9,27.6,27.6,26.1,25.7,25.5,26,26.6,27,26.1,27.6,27.9,26,25.2],"paint":[1.5,0.8,1.5,1.5,1.8,1.6,1.2,1.1,1.6,2.3,1.2,2,1.4,1.5,0.8]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[7.4]}},{"b":11,"v":{"DEFAULT":[7.2]}},{"b":12,"v":{"DEFAULT":[3.3]}},{"b":13,"v":{"DEFAULT":[58.3]}},{"b":14,"v":{"DEFAULT":[146.2]}},{"b":15,"v":{"DEFAULT":[41.4]}},{"b":16,"v":{"DEFAULT":[221.2]}}]}, +{"f":93,"b":[{"b":0,"v":{"total":[53.8,54.5,55.1,55.1,55.4,54.1,53.5,54.6,55.6,54.3,55.6,55.1,54.4,54.9,54],"script":[19.8,20.2,20.6,20.3,20.6,20.1,20.3,20.2,21.2,20.1,21.4,20.6,20.3,20.5,20],"paint":[33.5,33.9,34.1,34.3,34.3,33.6,32.5,33.9,33.9,33.8,33.8,34.1,33.7,34,33.6]}},{"b":1,"v":{"total":[63,65.9,62.7,63.8,61.4,62.1,62.3,62.5,64.2,65.3,63.6,65.1,62.6,65,64.7],"script":[26.5,27.9,27.3,27.5,26.2,26.3,27.3,26.6,27.7,27.7,27.2,28.3,27.2,27.9,27.2],"paint":[36,37.5,34.9,35.8,34.8,35.3,34.5,35.5,36,37.1,35.9,36.3,35,36.6,37]}},{"b":2,"v":{"total":[52.5,53.5,53.1,55.3,52.9,56.4,53.7,53.9,53.6,52.8,53.8,55.1,55.5,52.3,53.2],"script":[36.3,36.8,36.8,38.9,36,39.3,37.5,37.3,37.2,35.7,37.7,37.5,38.2,35.8,37.5],"paint":[14.9,15.6,13.6,15.1,15.2,15.8,14.3,14.9,14.7,15.6,14.4,14.9,16.2,15.4,14.2]}},{"b":3,"v":{"total":[39.6,39.8,40,37.4,39,39.7,39.4,40.9,38,38.5,40,40.6,38.5,38.3,39.3,39.4,37.2,38.4,40.3,38.7,38,38.4,39.2,40,40],"script":[36.9,35.8,36,35,34.8,36.3,35.2,37.5,35.2,35.2,36.2,37,35.2,34.9,36.1,36.3,34.3,35,36.3,35.6,35.5,34.8,35.6,36.7,36.8],"paint":[1.5,3.1,3,1.2,3.2,2.8,2.8,3.1,2,3,3.2,3,2.2,2.4,2.3,3,1.9,2.4,2.8,2.2,1.9,2.9,2.2,2.7,2.6]}},{"b":4,"v":{"total":[197.6,197.7,199.1,205.7,199.9,204.1,196.7,197.5,201.8,197.2,200.6,198.9,201.5,203.8,199.3],"script":[57.6,58.8,57.2,60.2,59.6,57,58.1,58.6,59.2,58.4,59.6,58.5,59.4,61.9,58.7],"paint":[138.1,137.3,139.9,143.6,138.5,145.5,137.1,137.6,139.9,136.6,138.8,138.4,139,140,138.6]}},{"b":5,"v":{"total":[33.7,33.1,36,33.7,33.1,34,34.5,34.7,33.8,33.9,34.2,33.3,34.5,35.1,33.7],"script":[17.9,17.8,19.6,17.5,18,18,18.1,18.4,18.4,18.2,18.5,18,18.6,19.5,18.3],"paint":[14.4,14.5,15.5,14.7,14.3,15.1,15.6,15.5,14.5,15,14.5,14.2,14.7,14.7,14.4]}},{"b":6,"v":{"total":[681.2,673.6,676,668.8,664.4,663.3,679.9,665.2,670.2,672,688.4,662.4,682.2,650.4,665.5],"script":[315.2,312.9,325.6,316,314.9,309,327,313.6,309.7,312.1,320.1,312.8,315.8,300.8,312.2],"paint":[358.7,353.9,343.4,346.1,342.4,347.4,346.2,344.9,353.7,352.7,361.4,343,359.2,342.8,346.2]}},{"b":7,"v":{"total":[67.1,66.5,67.7,66.6,68.8,67.6,67.8,68.3,67.8,67.7,68.9,68,66.4,67.3,69],"script":[27.2,27.5,27.5,26.7,26.9,27.4,28,27.6,28,27.1,27.8,28.4,26.9,27.3,27.6],"paint":[39,38.2,39.3,38.9,40.9,39.2,38.9,39.8,38.9,39.7,40.1,38.7,38.5,39,40.5]}},{"b":8,"v":{"total":[31,29.7,29.9,29.5,28.3,30.3,30.1,30.6,30.5,30.1,28.8,28,33.9,28.8,29.1],"script":[28.1,27.9,28,27.1,26.6,28.1,27,28.4,28.4,28,26.4,26.9,31.2,26.7,26.5],"paint":[2.3,1.7,1.2,1.9,1.5,0.9,2.5,2.1,1.3,2.1,1.3,0.4,2.5,2.1,2.5]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[6.7]}},{"b":11,"v":{"DEFAULT":[9]}},{"b":12,"v":{"DEFAULT":[2.9]}},{"b":13,"v":{"DEFAULT":[48.4]}},{"b":14,"v":{"DEFAULT":[225.8]}},{"b":15,"v":{"DEFAULT":[61.9]}},{"b":16,"v":{"DEFAULT":[334.9]}}]}, +{"f":94,"b":[{"b":0,"v":{"total":[46.2,46.4,45.7,45.2,45.7,46.2,46.6,46.6,46.1,45.9,46.1,45.7,46.3,46.6,47.1],"script":[12.6,12.8,12.8,12.4,12.2,12.9,12.5,13.3,12.4,12.8,13,12.7,13.1,13.4,13.4],"paint":[33.2,33.2,32.5,32.4,33,32.9,33.8,32.9,33.3,32.7,32.6,32.6,32.8,32.9,33.4]}},{"b":1,"v":{"total":[56.7,57.1,57.4,58.6,57.2,56.4,57.2,56.8,58.3,57.6,57,57.4,57.1,57.3,57.2],"script":[19.8,19.5,20.1,21.1,20.3,19.3,20.9,20.3,21.2,20.4,20.5,20,20,20.4,20.3],"paint":[36.4,37.1,36.9,37,36.4,36.7,35.8,36,36.6,36.7,36,36.9,36.7,36.4,36.5]}},{"b":2,"v":{"total":[21,22,21.4,21.8,21.1,20.5,21.8,22.6,21.2,22,21.8,21.1,21.6,21.3,21.1],"script":[5.3,5.6,4.7,5.3,5.1,5.3,5.4,6.4,4.5,5.7,5.5,5.7,5.3,5.3,6.1],"paint":[13.7,13.9,14.8,15.2,15,13.3,14.9,14.4,14.2,14.9,15.2,14.2,15.3,14.7,13.9]}},{"b":3,"v":{"total":[5.7,5.2,4.2,4.2,5,4.4,4.8,4.9,5,4.9,5.3,5.4,4.9,5.6,5.1,5.2,5.5,4.6,5.2,5.4,5.3,4.6,5,4.9,5.7],"script":[2.9,2,1.5,1.7,2.3,2.1,1.9,2.6,2.1,1.5,2.4,2.5,1.5,2.6,1.8,2.4,2.5,2.4,2.1,2.5,2.6,2.5,2.2,2.3,2.4],"paint":[2.6,3,2.6,2,2.1,1.1,2.7,1.4,2,3.2,2.5,2.1,3.3,2.9,2.3,2.7,2.9,1.6,3,2.7,1.4,1.2,2,2.3,3]}},{"b":4,"v":{"total":[165.9,163,166.5,166.4,161.9,164.7,163.2,163.9,160.7,164.2,168.3,160.3,165.4,162.3,164],"script":[23.4,21.6,23.2,23.5,23.7,22.6,21.5,22.7,21.9,22.2,23.7,21.7,24,22.3,21.5],"paint":[139,139.4,141.1,141.1,137.1,140.1,140.6,138.9,137,140.2,143,137.1,139.3,138.3,140.6]}},{"b":5,"v":{"total":[16.2,16.1,16.3,16.4,16.6,16.8,16.9,16,16.4,16.6,16.3,16.4,16.4,16.4,16.4],"script":[1.4,1.3,1.2,1.3,1.6,1.7,1.4,1,1.3,0.9,1.3,1.1,1.3,1.5,1.3],"paint":[13.8,13.9,14.3,14.4,13.9,14.3,14.7,14.3,14.1,14.9,14.1,14.5,14.4,14,14.4]}},{"b":6,"v":{"total":[617.4,609,620,617.1,619.6,615.4,615.6,616.8,613.9,619.7,611,612.5,615.4,614,617.4],"script":[255.6,253.6,257.4,256.4,259.3,255.4,255.8,256.7,257,258.3,253.5,256,257.9,256,256.4],"paint":[354.9,348.8,355.7,354,353.4,353.2,353.1,353.4,350.2,354.7,350.8,349.7,350.7,351.3,353.6]}},{"b":7,"v":{"total":[55.5,55.5,53.5,52.4,54,55.2,54,53.1,52.7,52.8,53.9,52.3,55.9,54.7,53.8],"script":[14.6,14.3,13.6,13.6,14.2,14,13.9,13.8,13.6,13.6,14.9,14,14.4,14,14],"paint":[40,40.3,38.9,37.8,38.9,40.3,39.2,38.3,38.2,38.4,38.1,37.4,40.6,39.7,38.8]}},{"b":8,"v":{"total":[25.6,26.5,24.5,26.5,26.6,24.9,27.1,26.9,24.8,27.2,25.2,26.9,26.5,25.7,25.9],"script":[23.7,24.7,22.6,24.4,24.9,23.5,25,24.6,22.5,25.6,23.3,25,25.2,23.4,23.7],"paint":[1.1,1.7,0.6,2.1,1.2,0.4,1.6,2.2,2.3,1.4,1.8,1.8,0.4,2.2,1.6]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5]}},{"b":11,"v":{"DEFAULT":[5.5]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[37.2]}},{"b":14,"v":{"DEFAULT":[141.9]}},{"b":15,"v":{"DEFAULT":[40.1]}},{"b":16,"v":{"DEFAULT":[213.7]}}]}, +{"f":95,"b":[{"b":0,"v":{"total":[47.8,46.6,47.2,48.3,47.8,49.9,47.8,47.7,48.7,47.3,48,47.9,49.4,48.5,48.7],"script":[14.1,13.9,13.8,14.8,14.3,15.3,14.2,14.5,15.5,14.1,14.3,14.2,15.5,15,14.7],"paint":[33.3,32.3,32.9,33.1,33,34.1,33.2,32.8,32.8,32.8,33.2,33.2,33.5,33.1,33.6]}},{"b":1,"v":{"total":[56.8,58.6,56.7,57.5,58,57.2,57.5,57.6,56.7,58,57,56.3,56.8,57.3,57.1],"script":[20.5,22.3,20.4,21,21.5,21.1,22.2,22,21.5,21.6,21.1,20.4,20.4,20.9,21.3],"paint":[35.9,35.8,35.9,36,36.1,35.7,34.8,35.1,34.7,36.1,35.4,35.3,36,36,35.4]}},{"b":2,"v":{"total":[25.4,27,25.3,25.1,25.1,24.9,24.6,24.9,25,24.8,24.4,25.7,24.6,25.6,24.9],"script":[9.5,10.5,9.4,9.5,9.3,9.1,8.5,9.5,9.1,9.8,8.4,10,9.1,10,9.5],"paint":[14.5,15,14.5,14.2,14.3,13.9,14.4,14.4,14.6,13.8,14.6,13.6,14.2,14.3,13.9]}},{"b":3,"v":{"total":[8.8,8.9,8.4,9.2,8.7,8.5,7.8,8.6,9,8.4,8.3,7.8,8.8,8.9,8.5,8.4,8.4,8.3,8.5,9.2,8.4,8.4,9.1,9.2,7.9],"script":[6,6.1,6.3,6,5.9,5.8,5.2,5.4,6.1,5.7,5.9,5,6.1,6,6.1,5.1,5.3,5.5,5.8,6.5,5.4,5.6,6.2,6.1,5.8],"paint":[2.1,1.9,1.9,2.1,2.7,2.4,2,3.1,2,1.6,2.3,2.3,2.4,2.8,1.4,3.2,3,2.6,1.2,2.2,2,2.7,2.8,2.9,1.9]}},{"b":4,"v":{"total":[177.5,172.5,173.1,171.4,172.3,171.9,168.2,172.5,169.9,170.8,170.9,173.1,170.8,169.1,171],"script":[30.8,27.7,30.1,26.9,30.2,26.5,26.6,27.8,28.7,29,27.9,28.5,30,27.1,28.8],"paint":[144.9,142.8,141.4,142.8,140.5,143.3,139.3,143.5,139.2,140.6,139.8,142.4,138.2,139.4,140.3]}},{"b":5,"v":{"total":[18.5,18.4,18.3,19.2,18.5,18.5,18.4,18.6,18.6,18.5,18.6,18.5,18.4,18.5,18.5],"script":[3.6,3.3,3.2,3.4,3.2,3.4,3.5,3.3,3.3,3.1,3.3,3.5,3.7,2.9,3.5],"paint":[14.1,14.4,14.4,14.8,14.2,14.3,14.1,14.1,14.6,14.6,14.5,14,13.8,14.9,13.9]}},{"b":6,"v":{"total":[621,619,619.6,624.3,614.4,621.2,622.5,614.5,626,621.3,625.4,619.7,618.6,621.7,619.4],"script":[270.7,268.1,265.3,269.6,263.6,270.2,269.9,258.6,268.9,269.9,267.6,268.1,267.2,269,267.8],"paint":[343.4,344.2,347.6,347.9,344.1,344.3,345.8,349.2,349.3,344.7,351,344.8,344.7,345.8,344.9]}},{"b":7,"v":{"total":[58.6,54,54.8,54.5,54.1,58.7,58.3,58.2,58.5,58.2,58.4,57.6,55.9,56.6,57.7],"script":[17.3,16.3,16.2,16.2,16.1,17.1,17,17.9,18,17.8,17.1,18.7,16.8,17.2,17.9],"paint":[40.4,36.8,37.7,37.3,37.1,40.6,40.4,39.5,39.6,39.5,40.3,38,38.2,38.5,38.9]}},{"b":8,"v":{"total":[25.1,24.7,25.8,24.9,24.6,24,24.7,25.4,24.3,24.6,25.5,24.9,24.5,24.7,25],"script":[23.1,22.4,23.6,22.9,22.7,22.7,22.8,22.7,22.5,22.7,24.1,22.7,23,22.4,22.9],"paint":[1.3,2.2,2.1,1.8,1.8,1.2,1.8,2.6,1.7,1.8,1.3,2.1,1.4,1.8,1.6]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[4.9]}},{"b":11,"v":{"DEFAULT":[5.6]}},{"b":12,"v":{"DEFAULT":[2.2]}},{"b":13,"v":{"DEFAULT":[36.3]}},{"b":14,"v":{"DEFAULT":[145.9]}},{"b":15,"v":{"DEFAULT":[41.4]}},{"b":16,"v":{"DEFAULT":[219.2]}}]}, +{"f":96,"b":[{"b":0,"v":{"total":[49.5,50.2,48.8,49.9,49.6,49.9,48.9,49.1,50,50.3,48.8,48.6,48.8,49,49.8],"script":[15.2,16.3,15.2,16.1,15.8,15.8,15.1,15.4,15.7,15.7,15.3,15.2,15.4,15.5,15.3],"paint":[33.8,33.4,33.1,33.4,33.3,33.7,33.3,33.2,33.9,34.2,33.1,33,32.9,33.1,34]}},{"b":1,"v":{"total":[58.6,58.1,57.8,59.1,58.6,60,59.3,59.5,58.5,59.7,58.9,59,59.2,58.6,59.5],"script":[21.7,21.8,21.7,22.3,22.2,22.8,22.9,22.5,22,22.6,22.4,21.7,22.5,22.1,22.5],"paint":[36.4,35.9,35.6,36.3,35.9,36.7,36,36.6,36,36.7,36,36.8,36.2,36.1,36.5]}},{"b":2,"v":{"total":[22.5,23.8,22.8,22.9,24,22.8,22.5,24.8,22.6,22.5,23.2,24.7,22.5,22.1,23.3],"script":[7,7.8,6.6,7,7.2,7.3,6.8,7.2,6.9,6.7,7.7,6.9,7.4,6.1,6.9],"paint":[14.6,14.5,14.9,14.1,15.4,13.7,13.6,16.3,14.2,14,13.3,16.4,13.7,14.4,15.1]}},{"b":3,"v":{"total":[5.9,6.1,6.2,6.6,5.6,5.7,5.1,5.1,6.4,6.1,6,5.8,5.9,6.8,6.2,6.2,5.8,5.7,5.9,5.5,5.9,5.8,5.2,5.6,7.2],"script":[3.1,3.5,3.3,3.7,2.9,2.7,2.8,2.5,3.4,3.2,2.9,3.1,3.1,3.7,3.5,3,3,2.7,2.5,2.7,2.8,2.8,2.9,2.9,3.1],"paint":[2.3,0.6,2,1.5,1.9,2.9,1.2,2,2.3,2.3,2.9,1.7,2.7,2,2.1,1.8,1.6,2.3,3.2,1.7,2.3,2.9,2.1,2,3.8]}},{"b":4,"v":{"total":[166.7,164.7,169.2,169.3,165.8,167.2,173.6,166.5,169.2,167.2,171.5,169,171.2,172.5,168],"script":[25,25.1,27.5,26.8,26.7,26.2,27.1,25,27.1,27.3,25.3,26.8,25.9,27.1,26],"paint":[140.1,137.7,139.5,140.5,137,138.5,144.6,139.8,140.2,138.3,144.4,140,143.9,143.3,139.3]}},{"b":5,"v":{"total":[17.4,17.9,17.4,17.5,17.6,17.9,18.1,17.9,17.8,18.7,17.8,18.5,18.1,17.6,17.4],"script":[2.1,2.4,2.3,2.4,2.2,2.5,2.5,2.5,2.4,2.2,2.4,2.4,2.2,2.2,2],"paint":[14.5,14.3,14,13.7,14.6,14.6,14.6,14.6,14.7,15.2,14.6,15.3,15.1,14.7,14.7]}},{"b":6,"v":{"total":[645.4,642.1,637.2,639,643.3,640.7,634.3,641.4,640.6,646.8,638.1,636.6,646.2,635.5,651.4],"script":[284.5,285.4,281.9,282.3,280.7,285,280.3,281.7,284.7,286.4,282.8,285.1,283.8,281.1,282.9],"paint":[353.9,350.1,348.4,350,355.4,348.9,347.3,353.1,349.3,353.7,348.7,344.1,355.6,347.7,361.8]}},{"b":7,"v":{"total":[56.8,55.5,55.1,56.7,56.2,56.2,55.8,54.9,55.8,56,55.7,54.8,55.5,54.5,53.8],"script":[17.3,16.2,15.4,16.8,17.3,17.2,16,15.8,16.7,16.5,16.1,16.4,16.2,15.6,15.2],"paint":[38.5,38.1,38.8,39,38.1,38.2,38.3,38.2,37.7,38.5,38.7,37.5,38.2,37.9,37.5]}},{"b":8,"v":{"total":[29.5,31.6,28.2,29.4,29,28.9,31.6,29.2,32.6,29.5,28.6,27.2,27,29.6,27.4],"script":[27.9,29.3,25.8,27.7,26.6,27,29.7,27.1,29.9,27.3,26.7,25,24.9,27.5,24.8],"paint":[1.5,2.2,1.9,1.2,1.2,1.8,1.2,2,2.1,2.1,1.8,1.2,1.1,2,2.1]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[7.4]}},{"b":11,"v":{"DEFAULT":[8]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[60.6]}},{"b":14,"v":{"DEFAULT":[144.9]}},{"b":15,"v":{"DEFAULT":[40.8]}},{"b":16,"v":{"DEFAULT":[227.8]}}]}, +{"f":97,"b":[{"b":0,"v":{"total":[60.9,59.2,59.3,57.7,66.4,63,65.2,59,58.6,63.1,62.9,64.1,59.8,64.7,63.7],"script":[26.6,25.2,25,25.2,26.2,26.1,24.7,25.2,25.1,24.8,25.7,26.4,26.2,25.5,25],"paint":[34.1,33.8,33.7,32.4,34.2,33.7,34.9,33.7,33.3,33.8,33.4,33.9,33.4,33.1,32.3]}},{"b":1,"v":{"total":[75.7,76.1,68.2,76.1,75.6,77.8,74.1,77.3,77.3,72.1,69.3,67.3,76.6,67.2,69.9],"script":[30.5,30.9,29.2,31,29.9,30.4,30.4,30.1,30.2,29.6,29.9,29.5,29.7,29.7,30.1],"paint":[36.9,36.3,36.4,37,36.3,36.9,36.3,37.8,36.7,36.1,36.8,35.8,37.1,36.9,36.9]}},{"b":2,"v":{"total":[47,29.5,31.8,30.6,30.7,29,28.9,28.6,30.1,29.5,27.8,29.7,31.1,45.8,29.7],"script":[15.7,13.9,14.1,13.9,13.6,14.6,13.7,14.6,13.7,14.5,12.2,13.8,14.3,15.3,13.5],"paint":[15.3,15.4,15,14.4,15.4,14.3,15,13.9,15.6,14.1,14.6,15.8,14.4,14.5,13.8]}},{"b":3,"v":{"total":[9,7.6,7.6,8.4,8.4,8.5,10.3,10.9,9.8,7.8,10.4,10.1,10,10.5,7.5,7.6,10.5,9.4,7.7,8.3,9,12.3,6.8,9.9,8.3],"script":[5.5,4.1,4.3,5,5.4,4.2,5.6,3.7,5.1,4.3,3.9,4,4.6,3.7,4.8,4.4,4.3,5.4,4.8,5.2,4.3,5.2,3.8,3.6,4.9],"paint":[2.6,3,2.8,1.7,2.9,2.6,2.7,3.4,3.2,2.4,1.7,2.9,2.4,2.9,1.6,2,2.9,2,2,2.9,3,3.1,2.2,3,2.4]}},{"b":4,"v":{"total":[170,189.4,167,172.9,189.8,174.1,175.8,163.3,171,173,168.5,165.4,166.4,180.8,166],"script":[26.6,29.5,30.3,29.3,29.4,29.1,27.7,27,28.5,30.4,26.5,26.4,27.1,27.2,25.8],"paint":[142.3,143.2,136.1,142.3,143.6,144.2,146.2,135.8,139.1,140.6,141.8,137.8,139.2,137.6,139.8]}},{"b":5,"v":{"total":[25.6,22.6,24.4,32.5,28.1,27.8,28.8,23,32.3,26.5,33.8,24.1,26.1,33.5,35.9],"script":[4.9,5,5.1,5.3,5,5.4,5,5.6,5.1,5.5,5.5,4.8,5.1,5.6,5.4],"paint":[15.2,15.9,16.1,15.6,15,15.6,14.9,15,15,15,15.2,15.6,15.9,15.9,15.3]}},{"b":6,"v":{"total":[689.3,675,674,668.3,670.7,671.5,679.4,672.6,671.1,670.3,686.1,676.1,689.1,671.7,665.6],"script":[324.9,324.6,324,322.7,324.6,325.2,332.5,321.8,324.8,325.9,329,326.4,325.5,326,320.3],"paint":[362.1,348.3,346.5,343.5,343.5,344.2,344.9,348.6,343.8,342.3,355,347.1,359.6,343.3,343.1]}},{"b":7,"v":{"total":[68.5,71.7,69.9,68.7,68.3,64.1,70.5,72.5,72.6,73.4,69.9,68.6,69.6,72.7,69.6],"script":[24.6,23.9,23.8,23.6,23.7,23.9,24.1,23.6,23.5,24.2,23.8,23.9,23.8,24.3,23.8],"paint":[37.7,39.1,39.7,39.2,38.5,38.9,38.3,39.5,39.1,39.3,39.4,38.9,38.4,39.6,39.2]}},{"b":8,"v":{"total":[28.6,30.1,30.5,30.1,29.5,29.8,30.6,33.2,29.3,29.3,29.8,28,28.3,30.8,30],"script":[26.9,28.4,29.1,27.9,27.1,28,26.7,28.1,27.7,26.7,26.7,26.7,26.5,29,27.1],"paint":[1.7,1.7,1.2,1.5,2.4,1.8,1.6,2.2,1.5,1.8,2.2,1,1.1,1.7,2]}},{"b":9,"v":{"DEFAULT":[1.4]}},{"b":10,"v":{"DEFAULT":[6.5]}},{"b":11,"v":{"DEFAULT":[7.2]}},{"b":12,"v":{"DEFAULT":[3.3]}},{"b":13,"v":{"DEFAULT":[42.5]}},{"b":14,"v":{"DEFAULT":[274.8]}},{"b":15,"v":{"DEFAULT":[64.4]}},{"b":16,"v":{"DEFAULT":[394.9]}}]}, +{"f":98,"b":[{"b":0,"v":{"total":[44.4,41.9,43.5,44.9,43.1,44,44.2,44.4,43.9,44.4,46.3,43.6,44.7,43.7,43.8],"script":[10,8.6,9.9,10.4,10,10.2,10.2,9.9,10.1,10,10.8,9.8,10.1,9.9,10],"paint":[34,32.8,33.1,34,32.6,33.4,33.5,34,33.3,33.9,35.1,33.4,34.1,33.3,33.4]}},{"b":1,"v":{"total":[49,49.8,49.5,48.4,49.8,49.5,48.7,49.2,48.9,49.6,50.3,48.7,49.7,49.6,49.3],"script":[13.1,13,13.2,13.1,13.6,13.3,12.8,12.9,13,13.9,13.2,13.1,12.8,13.6,13.7],"paint":[35.4,36.3,35.9,34.9,35.8,35.7,35.4,35.8,35.5,35.2,36.6,35.1,36.4,35.5,35.1]}},{"b":2,"v":{"total":[18.1,17.5,17.8,17.8,17.3,18.3,18,18.3,17.7,17,17.6,17.9,18.2,17.5,17.2],"script":[2.4,2.7,2.1,2.1,1.3,1.5,1.8,2.4,1.7,1.8,1.8,1.6,2.4,2.3,1.7],"paint":[14,13.8,13.4,14.2,14.6,15.8,14.9,14.5,15,13.8,14.7,15.2,13.8,13.6,14.2]}},{"b":3,"v":{"total":[2.9,4.1,3.3,3.1,3.7,3.3,4,3.3,2.6,3.3,3.2,3.1,4.2,3,3,2.9,3.9,4.1,4.7,3,3.4,3.7,3.7,2.9,2.9],"script":[0.7,0.9,1.1,1,1.5,1.3,1.2,0.9,1.2,0.9,1,0.9,1.1,1,1,0.6,1.6,1.5,1.8,0.2,0.6,0.6,1.7,1,1],"paint":[2.1,1.9,2,1.6,2.2,1.9,2.7,2.3,1.3,2.3,1.4,1.5,3,1.2,1.2,1.2,2.2,1.9,1.8,1.6,1.9,2.8,1.1,1.8,1.8]}},{"b":4,"v":{"total":[19.3,19.2,19.9,19,19.6,18.6,19.6,20,19.4,20.4,19.2,19.7,20,19.2,19.9],"script":[1,1,1.7,1.2,0.9,1.3,1.4,1.8,1.7,1.7,1.3,1.5,1.7,1.4,1.3],"paint":[16,17,16.1,17.2,17.1,16.1,17.1,17.1,16.5,17.3,16.4,17,16.6,15.9,17.5]}},{"b":5,"v":{"total":[15.9,15.4,15.1,15.5,15.3,15.4,15.7,15.3,16,15.8,15.6,15.9,15.4,15.3,15.4],"script":[0.6,0.6,0.4,0.6,0.6,0.6,0.3,0.6,0.6,0.6,0.5,0.6,0.6,0.5,0.6],"paint":[14.6,14.1,13.7,13.8,14,14.1,14.6,14,14.5,14.5,14.5,14.6,14.1,14,14]}},{"b":6,"v":{"total":[444.1,443.9,447.3,446.3,447.1,443.8,447.2,447.1,448.8,441.9,446.7,442.3,447.2,444.2,443.3],"script":[100.4,100.5,101,102.1,100.3,100.3,100,100.5,101.5,100.6,101,100.4,101.8,102.5,101.6],"paint":[337.1,336.9,339.7,337.5,340.2,337,340.7,340,340.6,334.8,339.3,335.4,338.9,335.1,335.1]}},{"b":7,"v":{"total":[49.6,50,48.7,48,48.3,48.8,49.1,48.6,48,50.1,48.4,49.9,49.7,49.9,49.9],"script":[10.8,10.6,10.3,10.2,10.2,10.3,10.5,10.5,10.5,10.5,10.2,10.8,10.8,10.7,11],"paint":[38,38.5,37.5,37,37.2,37.7,37.7,37.1,36.6,38.6,37.3,38.2,37.9,38.2,38.1]}},{"b":8,"v":{"total":[13.8,14.7,14,14.2,14,13.6,13.9,13.5,14.5,14,15.3,15.6,14.2,14.1,14.8],"script":[11.9,12.7,12.4,12.4,12.1,12,12,12.1,12.8,11.8,13.1,13.9,12.4,12.7,13],"paint":[1.7,1.2,1,1.4,1.2,0.8,1.8,0.8,1.7,1.3,2.1,1.6,1.5,1.3,1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[19.3]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[47.1]}}]}, +{"f":99,"b":[{"b":0,"v":{"total":[40.2,40.2,41.1,40.4,40.3,40.2,39.8,40.6,39.8,39.5,41.1,39.4,40.9,40.7,40.9],"script":[6.4,6.5,7.6,6.7,6.7,6.9,7.4,6.9,6.5,6.4,7.4,6.6,6.5,7.1,7.5],"paint":[33.4,33.3,33.1,33.2,33.2,32.9,32,33.3,32.9,32.7,33.2,32.4,34,33.1,33]}},{"b":1,"v":{"total":[50.4,49.8,48.1,49.7,47.6,50.5,50,49.4,48.7,50.4,48.1,48.3,50.1,49.7,50],"script":[14.8,14.5,13.3,14.4,13.2,15.1,14.8,13.9,13.5,15,13.5,13.6,15.1,14.3,14.4],"paint":[35.2,34.9,34.4,34.9,33.9,35,34.8,35,34.8,34.9,34.2,34.2,34.6,34.9,35.1]}},{"b":2,"v":{"total":[18.8,18.8,19.1,19.6,18.3,18.3,18.1,19.7,18,17.6,17.8,17.4,19.1,19,19.2],"script":[3.4,3,2.8,2.9,3.1,3,2.4,3.3,2.8,2.5,2.7,2.7,3.3,2.7,4.1],"paint":[14.2,13.9,14.5,14.6,13.7,14.7,14.5,13.9,13.8,13.8,14,12.8,14.8,15.2,14.1]}},{"b":3,"v":{"total":[4.6,5,5.7,4.9,4.3,3.6,4,5,6.7,3.8,4.5,3.8,4,4.5,4.2,4,4.3,4.4,4.6,4.1,4.6,5.1,4.3,4.9,4.4],"script":[1.8,2.5,2.2,1.9,1.7,1.4,1.3,2.5,1.9,1.3,1.9,2,1.9,2.3,1.8,1.6,1.9,1.3,2.2,1.1,2.2,1.4,1.7,2.7,2.1],"paint":[1.6,1.8,2.1,2.8,2.5,2,2.6,2,2.8,1.5,1.7,1.1,2,2.1,2.1,2,1.7,3,1.7,2.9,1.7,2,1.5,1.6,1.4]}},{"b":4,"v":{"total":[19.9,19.8,19.6,20.7,20.2,20.2,20.4,20.1,20,19.7,21.1,20.6,19.9,21.5,19.6],"script":[1.3,1.7,1.6,1.8,2.3,2.6,2.1,2.2,1.8,1.1,2.4,2.5,1,2.2,1.8],"paint":[16.7,17,16.7,17.1,16.6,15.8,17,16.4,16,17.6,17.1,17.1,17.6,18,16.2]}},{"b":5,"v":{"total":[16.5,16,16.3,16.4,15.6,16,15.9,16.8,16.2,16.4,16,16,16.3,15.5,16.1],"script":[1.1,1.1,0.9,1.1,0.8,0.9,1.1,1.1,0.9,1.1,1,0.8,0.9,0.7,1],"paint":[14.7,14.2,14.2,14.6,14,14.3,14.1,14.7,14.5,14.5,14,14.4,14.5,13.7,14.2]}},{"b":6,"v":{"total":[427.9,429.8,434.7,424.4,423.2,427.6,427.7,427.3,426.9,424.8,422.1,423,423,422.1,423.5],"script":[81.7,83.5,83.3,82.1,81.9,82.6,84.9,84.7,83.4,82.1,82.5,80.7,83.3,83.1,83.2],"paint":[339.5,339.1,344.6,335.7,334.1,338.3,336.1,335.9,336.8,335.9,332.9,335.6,333.1,332.4,333]}},{"b":7,"v":{"total":[45.4,45.6,46.1,45.9,47.6,46.4,45.9,47.5,46.2,47.4,47.4,47.5,47.3,47.3,48.6],"script":[6.7,7,6.7,7.1,8,7.1,6.8,7.5,7.3,7.3,7.3,7.7,6.8,7.7,7],"paint":[37.9,37.7,38.5,37.9,38.7,38.4,38.3,39.1,38,39.1,39.2,39,39.6,38.8,40.6]}},{"b":8,"v":{"total":[12.9,12.9,13.8,12.7,13.3,13.1,12.6,13.3,12.9,13.3,13,12.9,12.5,13.4,13.2],"script":[10.8,10.7,11.1,11.1,11.5,10.8,11.5,11,11.7,11.3,10.5,10.7,11.3,11.1,11.1],"paint":[2,2.1,1.7,1.6,1.7,2.2,0.4,2.2,1.1,1.9,2.4,2.1,0.4,2.2,2]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.9]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[22.9]}},{"b":14,"v":{"DEFAULT":[4.8]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[48.1]}}]}, +{"f":100,"b":[{"b":0,"v":{"total":[40.2,40.2,42.1,41.5,41.2,41.6,41.5,41.1,42.9,41.2,39.8,41.1,40.1,41.8,41.7],"script":[7,6.9,7.8,7,7.2,7,7.9,7.8,7.5,7.3,7.5,7.6,7.5,6.9,7.7],"paint":[32.7,32.9,33.9,34.1,33.6,34.2,33.2,32.8,35,33.4,31.9,33.1,32.2,34.4,33.5]}},{"b":1,"v":{"total":[51.6,51.8,50.6,50.4,49.9,51,52.4,52.2,52.1,52.3,50.5,51.9,53.3,52,52.7],"script":[15,16.4,15.3,15,14.8,15.4,15.9,16.5,15,15.7,14.8,15.1,16.3,16,16.5],"paint":[36.1,34.9,34.9,34.9,34.6,35.1,36,35.3,36.7,36.2,35.2,36.3,36.5,35.6,35.7]}},{"b":2,"v":{"total":[18,18.6,18.1,17.5,18.1,17.3,19,18,18,18.1,18.6,17.9,17.7,18.6,17.8],"script":[2.4,2.6,2.3,2.4,2.7,2.4,2.4,3.2,2.1,2.7,2.6,2,2.5,1.9,2.1],"paint":[14.5,14,14.3,13.5,13.9,13.8,15.5,12.8,14.3,14,14.1,14.8,13.9,15.1,15]}},{"b":3,"v":{"total":[2.5,3.7,3.2,3.8,3.1,3,3.8,3.1,3.3,3.4,2.6,2.9,3.1,3.5,2.2,3.3,3.1,3.1,3.2,3.9,2.9,2.7,3.4,3.1,4.4],"script":[0.3,1.4,0.6,1.1,0.6,0.2,1.2,0.9,0.8,1.4,0.2,0.8,0.7,0.9,0.6,0.6,0.2,1,0.9,0.6,0.9,0.2,1.2,0.6,0.9],"paint":[1.4,2.2,1.7,1.7,2.4,2.7,1.8,1.7,1.3,1.9,2.4,0.8,2.3,1.2,1.1,1.6,2.7,0.7,1.5,2.6,1.9,2,1.6,1.6,2.4]}},{"b":4,"v":{"total":[20,18.7,19.4,19.3,20.1,19.3,19.3,19.1,18.9,19.3,19.4,19.3,19,18.7,18.8],"script":[1,0.7,1,1.2,1.1,1.1,1.5,0.6,1.5,0.6,1.3,1.2,0.9,0.3,1.3],"paint":[16.9,16.8,17.2,16,17.4,16.8,15.4,17.2,15.1,16.6,17.1,16.8,16.1,17.3,15.9]}},{"b":5,"v":{"total":[16.6,15.6,15.4,16.2,15.7,16,15.3,16,15.9,15.4,16.6,15.4,15.9,15.6,15.4],"script":[0.7,0.6,0.7,0.7,0.7,0.6,0.7,0.7,0.7,0.7,0.9,0.7,1,0.8,0.7],"paint":[15,14.3,13.7,14.7,14.3,14.6,13.9,14.6,14.6,13.9,14.4,13.7,14.2,13.9,13.7]}},{"b":6,"v":{"total":[436.3,432.9,429.1,443,425.1,431.5,426.1,428.8,425.9,432.4,435.6,437.9,426.5,423,440.1],"script":[90.6,87.3,87,86.6,86.2,87.7,84.9,86,85.2,86.3,85.6,87.1,85.8,85,87.5],"paint":[339,338.3,335.4,349.8,332.2,337.1,334.5,336.1,334,339.4,343.3,344.2,334,331.4,345.8]}},{"b":7,"v":{"total":[45.5,45.5,44.7,48.4,46.6,46.1,46.9,45.9,45,46.3,45,47.8,46,46.2,46.5],"script":[6.9,6.7,6.9,7.1,7.6,7.2,7.4,7.4,6.9,7.5,6.8,7,7,7.5,7.2],"paint":[37.7,38,37.1,40.4,38.1,38,38.5,37.7,37.2,38,37.4,39.7,38.1,37.9,38.5]}},{"b":8,"v":{"total":[14.6,13.4,13.3,13,13.3,13.7,13.4,12.8,13.5,13.5,12.6,13.3,13.1,14,13.2],"script":[12.5,11.1,11.7,11.9,11.6,11.6,11.4,11.1,11.8,11.7,11.2,11.3,10.7,11.9,11.5],"paint":[1.4,1.8,1.1,0.4,0.8,2,1.9,1.2,1.6,1.7,1.3,1.9,2.3,1.6,1.7]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[26]}},{"b":14,"v":{"DEFAULT":[5.4]}},{"b":15,"v":{"DEFAULT":[2.6]}},{"b":16,"v":{"DEFAULT":[47.2]}}]}, +{"f":101,"b":[{"b":0,"v":{"total":[47.1,45.8,46.2,46.2,45.4,45.6,46.2,45.1,46.4,45.9,45.2,45.4,46.3,45.9,46.7],"script":[12.4,12.2,12.8,12.2,12.7,12,12.4,11.7,12.5,12.4,12.1,12.4,12.4,12.5,12.1],"paint":[34.2,33.1,33,33.5,32.3,33.2,33.3,33,33.4,33,32.6,32.5,33.5,32.9,34.1]}},{"b":1,"v":{"total":[50.5,49.2,48.4,48,49.7,47.9,48.5,49.1,49.4,48.3,49.4,49.1,49.4,49.4,50],"script":[15.3,13.9,13.4,13.5,15,13.6,14.2,14.3,14.7,14.2,14.4,13.8,14.3,15,14.8],"paint":[34.7,34.9,34.5,34,34.3,33.8,33.8,34.4,34.1,33.6,34.5,34.8,34.6,33.9,34.8]}},{"b":2,"v":{"total":[28.9,30,29.9,30.8,30.8,30.8,31.1,30.2,29.3,30.9,29.2,30.5,28.9,29.7,31.3],"script":[12.3,13.4,14.3,15.4,14.4,15.6,14.9,14,13.9,14.9,13.4,14.8,12.9,13.6,14.5],"paint":[15.3,15.1,13.2,13.8,14.6,13.9,14.8,14.8,14,14.7,13.9,13.9,15,14.3,14.5]}},{"b":3,"v":{"total":[14.6,14.1,15.1,14.3,12.6,15.3,15.1,15.1,13.5,13.5,12.9,13.7,14.2,14.1,13.9,13.9,13.9,14.5,14.3,13.6,14.5,13,13.5,12.9,12.9],"script":[11.3,11.2,11.6,11.2,10.1,12.5,11.2,11.5,11,10.4,10.4,10.9,10.8,10.8,11.1,11.3,11.1,11.6,10.9,10.5,12,10,11.2,9.6,10.7],"paint":[3.1,2.8,3.3,2.9,1.7,2.6,3.7,2.6,2.3,2,1.4,2,2.8,2.5,2.6,1.8,2.3,2.8,3.2,1.2,2.3,1.8,1.4,2.5,1.7]}},{"b":4,"v":{"total":[179.4,184.6,177.6,178.7,180.4,177.6,172.3,177.6,178.9,177.9,182.3,182.9,169.7,168.2,177.8],"script":[33.5,34.3,33.8,33.4,36.8,35,32.8,33.9,35.6,31.8,34.5,34.8,33,32.4,34.3],"paint":[143.8,149.2,141.3,143.3,141,141.1,136.9,141.8,141.9,144,145.8,147.2,134.8,132.6,141.5]}},{"b":5,"v":{"total":[21.2,21.6,21.6,21.3,21.5,22.2,21.1,21.9,21.1,21.6,21.4,22.2,22.2,21.3,21.6],"script":[6.3,6.3,6.4,6,6.3,6.5,6.2,6.7,5.7,6.6,6.2,6.5,6.3,6.3,6.6],"paint":[14.1,14.1,14.5,14.3,14.2,14.6,14.1,14.5,14.4,14.1,14.4,14.9,14.8,14.1,14.3]}},{"b":6,"v":{"total":[602,602.2,586.7,585.3,600,599.2,581.2,604.1,601.7,596.4,582.6,603.1,605.3,600.9,590.3],"script":[250.2,249.9,250.5,246.7,249.8,248.7,241.7,247.5,249.4,246.7,245.8,250.8,252.1,250.5,246.7],"paint":[344.9,345.5,329.5,332,343.4,343.7,332.7,349.9,345.6,342.9,330.1,345.5,346.4,343.7,336.7]}},{"b":7,"v":{"total":[55.8,54.8,54.7,54.6,55.7,54.1,54.5,55.2,55,54.6,54,54.5,55.7,55.7,54.2],"script":[15,15.3,14.7,15.2,15.5,15,15.1,15.1,14.9,15.2,14.8,15.3,15.2,15.9,15],"paint":[39.9,38.7,39.2,38.5,39.3,38.2,38.5,39.2,39.2,38.5,38.3,38.4,39.4,38.8,38.3]}},{"b":8,"v":{"total":[16,14.8,14.1,14.9,15.5,14.5,15.9,15.7,15.2,15.3,15.3,15.8,15.2,15.9,15.2],"script":[13.8,12.8,12.2,12.8,13.9,13.3,14.3,13.6,13,13.8,13.8,14,13.1,14.2,13.4],"paint":[1.6,1.5,1.7,1,1.5,0.4,1.3,1.6,2.2,1.4,0.9,1.1,2,0.9,0.7]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[4.3]}},{"b":11,"v":{"DEFAULT":[6.5]}},{"b":12,"v":{"DEFAULT":[1.7]}},{"b":13,"v":{"DEFAULT":[31.2]}},{"b":14,"v":{"DEFAULT":[132.7]}},{"b":15,"v":{"DEFAULT":[38]}},{"b":16,"v":{"DEFAULT":[199.2]}}]}, +{"f":102,"b":[{"b":0,"v":{"total":[44.5,44.5,44,43.3,44.2,43.5,43.5,45.1,44.1,45.4,48.1,45,43.9,43.4,44.6],"script":[10.4,10.5,9.8,10,10.6,10.3,10.1,10.9,10.5,10.5,10.9,10.8,10.1,10.3,10.6],"paint":[33.6,33.6,33.7,32.8,33.2,32.8,33.1,33.7,33.1,34.4,36.8,33.8,33.3,32.6,33.5]}},{"b":1,"v":{"total":[48.5,49.5,49.6,49.7,48.8,49.7,49.2,49,49.5,49.1,49.7,49.5,49.2,47.6,48.1],"script":[13,13,13.9,14,12.6,13.7,13,13,13.1,13.7,14.2,13.8,13.6,12.8,12.9],"paint":[35.1,36,35.3,35.3,35.8,35.6,35.7,35.5,35.9,34.9,35.1,35.2,35.2,34.3,34.7]}},{"b":2,"v":{"total":[17,18.3,17.1,17.9,17.7,17.6,17.5,17.2,17.6,17.6,18.2,18,16.5,17,17.6],"script":[2.4,2.5,2.3,2,2.4,2.7,2.2,2.6,2.3,2.3,2.2,2.6,2,2.1,1.6],"paint":[12.5,14.5,13.6,13.8,13.4,12.9,13.8,13.4,13.6,14,14.4,14.3,13.3,13.9,13]}},{"b":3,"v":{"total":[4.6,3,3.3,3.7,3.8,4.1,4.8,4.6,6.8,3.8,3.3,3.8,3.5,3.4,4.2,3.4,3.7,3.7,3.3,3.6,3.7,4,4.1,3.5,3],"script":[1,1,0.8,1.7,0.6,1.5,2.1,0.7,1,1.3,1.4,1,0.9,0.7,1.8,1,1.2,1.3,1.1,1,0.9,1.6,1,0.9,1],"paint":[2.5,1.9,2.4,1.9,2.7,1.7,2.1,3,2.4,1.7,1,2.2,2.5,2.3,1.6,1.7,0.6,2.3,2.1,2.5,1.8,2.3,2.4,1.6,1.2]}},{"b":4,"v":{"total":[21.1,22.2,22.1,21.9,22.3,20.7,21.3,22.8,20.9,21,20.9,21.4,21,22.1,21.3],"script":[2.9,2.5,2.8,2.9,2.4,2.3,2.7,2.6,2.6,2.6,2.6,2.8,2.2,2.5,2.3],"paint":[16.3,17.9,18.1,17.7,18.3,16.7,16.7,18.3,16.7,17.2,17.1,16.6,16.6,18.2,17.1]}},{"b":5,"v":{"total":[16.6,18.5,17,16.6,16.5,16.3,16.2,17,16.6,16.9,16.1,16.4,16.6,16.7,16.8],"script":[1.2,1.2,1.5,1.4,1.2,0.9,1.3,1.5,1.3,1.2,1.2,1.3,1.2,1.3,1.2],"paint":[14.6,16.8,14.7,14.5,14.5,14.4,14.2,14.7,14.5,15,14.1,14.1,14.4,14.6,14.6]}},{"b":6,"v":{"total":[447.4,441.4,445.8,447.4,450.5,440.7,442.6,444,443.8,446,439,441.2,439.4,440.1,449.5],"script":[103.7,103,105.9,104,105.3,103.4,105.7,105.9,106.2,104.2,101.4,101.8,101.8,101,101.4],"paint":[337.1,331.7,333.2,336.8,338.5,330.6,330.2,331.1,331,335.1,330.9,332.8,330.9,332.4,340.9]}},{"b":7,"v":{"total":[52.4,50,49.5,48.7,48.3,49.1,50.3,49.9,48.9,51.6,48.1,50.4,50.7,48.4,49.1],"script":[11.5,11.2,11.3,10.2,10.2,10.7,10.1,11,10.4,11.3,9.9,11.3,10.5,10.2,9.6],"paint":[40.1,37.9,37.3,37.5,37.2,37.5,39.3,38,37.7,39.4,37.3,38.1,39.4,37.3,38.6]}},{"b":8,"v":{"total":[11.4,11.4,12.7,12.1,11.6,12.8,12.1,11.7,12.8,11.2,12.1,12.5,11.1,12.2,13.2],"script":[9.8,9.3,10.3,10.3,9.9,10.6,10.2,10.5,10.3,9.7,10.1,10.7,9.7,10.4,11.9],"paint":[1.1,1.4,1.3,1.7,0.7,1.1,1.1,0.8,1.8,0.9,1.5,1.3,1.3,1.7,1.2]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[20.4]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.1]}},{"b":16,"v":{"DEFAULT":[51.9]}}]}, +{"f":103,"b":[{"b":0,"v":{"total":[46,46,48.2,46.7,47.2,46.8,46.7,45.9,49.2,46,45.5,47.2,45.8,45.5,47.6],"script":[11.9,12.7,12,12,12.3,12.9,12.2,12.1,13,12.1,11.9,12.9,12.2,11.9,11.8],"paint":[33.6,32.8,35.7,34.2,34.3,33.4,34.1,33.4,35.7,33.5,33.2,33.8,33.2,33.2,35.3]}},{"b":1,"v":{"total":[54.9,53.1,54.2,53.5,52.7,53.8,53.4,53.9,53.1,52.8,53,52.5,53.4,53.7,51.9],"script":[18,17.4,17.7,17.7,16.9,17.3,17.5,17.8,17.6,17.6,17.4,17.1,18.6,18.1,17],"paint":[36.4,35.2,36,35.3,35.3,36,35.4,35.7,35.1,34.8,35.2,34.9,34.3,35.1,34.4]}},{"b":2,"v":{"total":[22.3,22.5,22.2,24.4,21.4,22.2,22,23.7,23,23,20.6,21.8,21.7,22.3,23.7],"script":[6,6.6,5.6,6.2,6.1,6.2,6.2,7.5,6.9,6.7,5.3,5.5,6.5,6.9,6.3],"paint":[15.3,14.6,15.6,16,14.2,14.9,14,14.1,14.8,14.7,13.8,14,13.9,14.7,15.5]}},{"b":3,"v":{"total":[7.6,8.1,8.3,8,8.1,9.2,7.8,7.5,8.3,8.2,8.9,8.1,7.8,7.7,7.7,7.8,7.7,8.1,7.8,8.5,8.9,8.9,7.7,8.7,8.1],"script":[5.1,5.3,5.1,5.8,5,6.1,5.6,5.5,5.5,5.4,6.4,5.8,5.3,5.8,5.3,5.1,5.6,5.3,5.6,5.5,5.6,5.7,5.9,5.8,5.8],"paint":[2.4,2.1,3,1.4,2.8,2.2,1.7,1.1,1.9,2.7,2.3,1.3,2,1,2.3,1.6,2,2.6,2.1,1.2,2.7,1.9,1.7,2.1,1.5]}},{"b":4,"v":{"total":[24.4,24.1,25.1,25.3,24.9,23.8,25,24.7,24.6,24.1,23.4,23.5,23.9,23.9,24.3],"script":[5.3,5.9,5.8,6,5.9,5.4,5.4,5.6,5.8,5.9,5.2,5,5.1,5.8,5.3],"paint":[17.6,16.7,17.5,18.1,17.6,17.3,18.4,18.4,17.7,16.8,16.6,17.5,17.5,17,18.1]}},{"b":5,"v":{"total":[18.8,18.4,18.7,18.9,19.4,19,18.4,18.7,18.4,18.9,18.4,19,18.6,19,19.6],"script":[2.7,3,2.6,3,3.1,2.9,3,3.3,2.9,2.9,2.9,3.1,3.1,3.3,2.9],"paint":[14.9,14.6,15.2,15.1,15.5,15.2,14.5,14.6,14.4,15.2,14.8,14.8,14.5,14.5,15.8]}},{"b":6,"v":{"total":[473.6,475.6,473.4,477.4,477.1,473,470.8,470.3,476.5,477.1,474.3,478,474.1,476.2,479.8],"script":[129.3,128.6,127.2,127.8,128.6,127.4,124.2,127.7,127.1,128.7,129.6,129.7,129,130.6,131.5],"paint":[337.5,340.1,339.4,342.5,341.6,338.9,339.6,335.8,342.6,341.7,337.9,341.6,338.3,338.9,341.6]}},{"b":7,"v":{"total":[55.2,52.9,52.2,53.4,53.7,54.2,54.8,54,54.3,54.3,53,53.1,55.8,53,52.8],"script":[14,12.9,12.7,13,13.2,14,13.9,13.5,13.3,13.8,13.3,13.3,14.1,13.1,13],"paint":[40.3,39.1,38.7,39.4,39.6,39.3,40,39.6,40.1,39.6,38.8,39,40.8,39.1,38.9]}},{"b":8,"v":{"total":[23.8,23.5,22.7,22.6,23.7,22.2,21.8,23.1,21.4,24,23,23.2,23.7,23.8,23.1],"script":[22,21.5,20.4,21.2,21.2,20.5,19.6,21.6,19.6,21.7,21.1,22.1,21.3,21.9,21.5],"paint":[1.2,1.9,1.9,0.9,2.4,0.8,1.5,1.4,1.6,1.2,0.4,0.4,2.3,0.9,0.9]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[30.7]}},{"b":14,"v":{"DEFAULT":[19.2]}},{"b":15,"v":{"DEFAULT":[6.4]}},{"b":16,"v":{"DEFAULT":[81]}}]}, +{"f":104,"b":[{"b":0,"v":{"total":[45.5,45.2,44,46.4,44.5,44.2,44.8,44.2,44.2,46,44,45,47,45.6,44.8],"script":[10.6,10,9.9,10.9,10,10,10.6,10.4,10.6,10.4,9.7,10.3,10.2,10.8,10.2],"paint":[34.4,34.8,33.7,35.1,34.1,33.8,33.8,33.3,33.2,35.2,33.9,34.4,36.4,34.3,34.2]}},{"b":1,"v":{"total":[51.6,51.4,53,51.8,51.1,50.8,51.3,50.7,53.3,52,53.5,53.3,51.2,51.6,52.5],"script":[14.4,14.3,14.9,14.2,14.2,14.2,14.3,14.4,14.9,14.3,15.3,14.8,14.3,14.9,14.9],"paint":[36.7,36.7,37.6,37.2,36.5,36.2,36.6,35.9,38,37.2,37.6,38,36.4,36.2,37.2]}},{"b":2,"v":{"total":[18.4,17.1,17.6,17.2,18.3,18.4,18.2,16.6,18.1,18.1,16.9,18,17,17.9,17.6],"script":[1.9,1.1,1.7,1.5,1,1.8,1,1.4,1.9,1.8,1.6,1.3,1.5,1.8,1.3],"paint":[14.5,14.7,14.6,14.1,16,15.3,15.7,14.1,14.5,15,14.3,14.6,14.3,14.5,14.7]}},{"b":3,"v":{"total":[4.4,3,3.5,3,3,3.8,2.2,4.2,3.4,2.5,3,2.7,2.5,3.1,2.2,3.3,2.7,2.1,3.8,2.3,2.6,2.6,2.5,2.9,2.2],"script":[0.4,0.9,0.1,0.1,0.1,0,0,0,0.8,0.6,0,0.1,0.1,0.5,0.4,0,0.8,0.1,0,0.1,0,0.3,0.1,0,0.1],"paint":[1.8,2,2.3,2.6,2.5,1.9,1.8,2,2.5,1.4,2.8,2.6,2.4,1.9,1.7,3.2,1.2,1.1,2.5,2.2,2.2,2.2,1.5,2.8,2.1]}},{"b":4,"v":{"total":[18.3,20,19.5,18.8,19.7,18.8,18.1,18.3,19.3,19,19.4,18.9,20.2,19.2,19.4],"script":[0.1,0.9,0.8,0.6,0.9,0.1,0.7,0.1,0.7,0.1,0.9,0.6,0.8,0.1,0.8],"paint":[16.2,17,17.4,15.4,17.4,17.1,15.9,17.1,17.6,17,17.1,16.3,17.7,17.3,17.1]}},{"b":5,"v":{"total":[15.4,15.2,15.7,15.5,15.1,15,15.7,15.6,15.3,15.4,15.1,15.4,15.1,15.4,15.5],"script":[0.1,0.1,0.2,0.1,0.1,0.1,0.4,0.1,0.1,0.1,0.1,0.1,0.1,0.3,0.1],"paint":[14.2,14.5,14.7,14.7,14,14.2,14.6,14.7,14.5,14.6,14,14,13.9,14.4,15]}},{"b":6,"v":{"total":[471.9,463.5,458,465.9,462.7,459.9,469.9,462.4,460.2,464.2,462.1,458.8,462.4,461.7,465.2],"script":[116.1,114.6,111.2,118.1,114.1,112.3,115.7,112.2,111.9,112.9,111.8,113,112.8,116.4,116.5],"paint":[348.8,341.9,339.8,341,341.8,340.8,347.5,343.5,341.6,344.5,343.4,339,342.8,338.4,342]}},{"b":7,"v":{"total":[52.4,50.8,52.3,51.9,50.1,51.4,52.6,51.8,51.8,51.8,51.6,52.7,51.6,52.9,51.9],"script":[12.1,10.8,11,11.2,10.7,11,12,10.9,12,11.9,10.8,11.9,12,11.8,11.8],"paint":[39.3,39.1,40.4,39.7,38.5,39.5,39.7,39.9,39,39,39.9,39.8,38.7,40.2,39.2]}},{"b":8,"v":{"total":[17.6,18.5,17.8,20.2,18.3,18.9,18.5,19,18.1,18.7,17.7,18.9,17.2,17.1,19],"script":[15.5,16.4,15.6,17.7,16.7,17,16.5,17,16.4,16.3,16.1,16.3,15.8,15.7,16.8],"paint":[1.5,2,1.2,2.4,1,1.7,1.7,1.1,0.8,1.5,1.4,1.9,1.3,1.3,2.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.3]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[25.9]}},{"b":14,"v":{"DEFAULT":[73.4]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[129.9]}}]}, +{"f":105,"b":[{"b":0,"v":{"total":[46,44.6,44.7,45.9,46.5,44.7,45.6,44.8,46.2,45,44.2,45.4,45.9,45,45.9],"script":[11.9,10.7,10.8,11.3,11.8,10.9,11.9,11.1,11.4,11.3,10.7,11.6,11.8,11.3,11.6],"paint":[33.6,33.5,33.5,34.2,34.3,33.4,33.2,33.3,34.3,33.3,33.1,33.4,33.6,33.3,33.8]}},{"b":1,"v":{"total":[54.4,52.7,53.1,52.4,52,53.1,52.1,51.6,52.4,51.7,51.5,51.4,52.8,52.1,52.3],"script":[16.9,16.5,17.2,16.8,16.5,17.1,16.4,16.1,16.9,16.3,16.3,16.1,17,16.6,16.4],"paint":[36.9,35.8,35.4,35.1,35.1,35.5,35.2,35.1,35,35,34.8,34.8,35.2,35,35.5]}},{"b":2,"v":{"total":[19.2,18.8,20.8,19.2,21.3,19,19.4,19.8,19,19.7,19.6,20.2,20.2,19.6,18.7],"script":[3.4,3.5,3.9,3.4,4,3.1,3.6,3.4,2.9,3.7,3.4,3.3,3.9,3.9,3.7],"paint":[14,13.6,15.9,13.9,16.1,14.9,13.9,14.3,14.8,14.2,14.5,15.7,14.7,14.7,13.7]}},{"b":3,"v":{"total":[4.1,4.2,4.3,4.5,5.4,4.6,5.3,4.4,4.5,4.1,4.9,4.1,4.3,4.8,4.8,4.5,3.9,4.6,4.4,5,3.8,4.6,4.3,4.2,4],"script":[1.9,1.8,1.6,2.1,1.9,2.1,1.7,1.9,1.7,2,1.4,1.4,2.1,1.8,2.1,2.3,1.4,1.8,2.1,2.2,1.8,1.9,1.7,1.5,1.6],"paint":[1.7,2.2,2.1,2.3,1.3,1.5,2.4,1.9,1.9,2,3.1,2.6,1.5,2.8,1.5,2.1,1.8,2,2.2,2.7,2,2.2,2.5,1.6,1.6]}},{"b":4,"v":{"total":[20.3,21.2,20.5,20.5,20.9,21.1,21.1,22.1,21.2,21.9,21.1,21.7,20.1,20.2,23],"script":[1.8,2.3,2,1.6,1.8,2.1,1.7,2.5,2,2.1,2.5,2.1,1.9,1.8,2],"paint":[17.6,17.7,17.2,17.7,17.8,17.7,17.3,18.6,17.6,18.2,17,18.2,16.5,16.5,19.3]}},{"b":5,"v":{"total":[16.2,16.1,16.1,16,15.9,16,15.9,16.2,15.9,15.7,16.3,16.5,16.1,16.2,16.1],"script":[0.9,0.7,0.7,0.8,1,1,0.7,1,0.7,0.7,1,1,0.7,0.8,0.7],"paint":[14.5,14.6,14.4,14.4,14.1,13.9,14.4,14.5,14.5,14.2,14.6,15,14.6,14.7,14.6]}},{"b":6,"v":{"total":[474.2,476.1,478.8,473.3,476.1,473.7,480,473.5,479,475.4,471.7,478.2,473.1,470.5,477],"script":[124.4,120.6,121.4,124.6,121.3,121.9,121.7,125.9,121.2,127.5,116.6,118.7,118.7,125.2,117.7],"paint":[342.3,348.1,350.2,341.3,347.5,344.5,350.8,340.2,350.5,340.6,347.8,352,347.2,337.9,352.1]}},{"b":7,"v":{"total":[51.2,52.8,51.2,52.7,54.1,52,53.5,52.6,52.4,53.3,52.6,52.4,53.4,52.6,51.3],"script":[11.7,12.9,11.6,12.4,12.8,11.6,12.6,11.9,12.3,11.9,12.4,12,12.4,11.6,11.5],"paint":[38.6,39,38.7,39.4,40.4,39.5,40,39.8,39.2,40.5,39.3,39.4,39.9,40,38.8]}},{"b":8,"v":{"total":[24.5,23.5,24.8,23.5,22,22.3,21.1,21.7,21.9,21.4,23.1,23.8,23.5,23,23.1],"script":[22.6,21.5,23.3,22,19.9,20.7,19.2,19.8,19.1,19.8,21,22,21.4,21.3,20.9],"paint":[0.9,1.3,1.4,1.4,1.2,1.5,1.8,1.8,1.4,0.7,2,0.8,2,0.7,2]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[5]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[41.2]}},{"b":14,"v":{"DEFAULT":[76.4]}},{"b":15,"v":{"DEFAULT":[19]}},{"b":16,"v":{"DEFAULT":[123.1]}}]}, +{"f":106,"b":[{"b":0,"v":{"total":[41.4,39.1,39.7,42.7,40.9,40.6,40.7,39.9,39.5,41.3,40,41.3,40.7,41.3,41.3],"script":[7.7,7,7.1,7.1,7.9,7.7,7.9,7.1,7.1,7.8,7.1,7.8,7.7,8.2,8],"paint":[33.5,31.9,32.4,34.7,32.8,32.7,32.6,31.9,32.3,33.4,32.7,33.3,32.8,33,33.2]}},{"b":1,"v":{"total":[47.7,47,46.3,46.6,49.1,46.8,47.3,46.5,46.2,45.8,47.3,47.6,46.9,47.9,46.4],"script":[13,12.5,12.6,12.3,13,12.7,13.1,12.1,12.4,12.3,12.5,12.6,12.5,12.7,12.5],"paint":[34.5,34.4,33.6,34,36,34,34,34.1,33.6,33.4,34.6,34.9,34.2,35,33.7]}},{"b":2,"v":{"total":[17.9,22.2,22.2,18.4,20.1,43.7,40.1,20,21.6,42.4,23.6,22.3,18.7,21.5,18.4],"script":[3.7,4.9,4.8,4.4,4.3,3.7,3.3,4.3,3.9,4.3,4.4,4.3,4.3,4.8,3.9],"paint":[13.5,15.9,16.5,14,13.9,15.3,15,13.9,17.1,16.2,15.9,16,13.5,15.5,13.3]}},{"b":3,"v":{"total":[8.8,5.8,8.8,10.2,8.6,13,10.4,8.3,4.9,17.1,9.7,14.6,7.1,6.8,10.1,5.2,7,4.7,8.8,14.1,7.3,10.2,7.1,10,7.1],"script":[2.2,2.4,3.1,3.5,2.6,3.6,2.5,2.3,1.3,2.6,2.5,3,3.7,1.8,2.3,2.7,3.4,2.2,2.7,2.5,2.9,3.4,2.4,1.7,2.6],"paint":[4,3.2,3.7,3.3,4.2,4.3,3.6,3.2,1.4,4.5,2.7,4.3,2.5,3.8,4,1.6,3.7,1.7,3.3,3.6,3.9,4.4,3.6,3.7,2.6]}},{"b":4,"v":{"total":[43.4,21.8,21.7,21.7,40.4,40,21.2,39.8,20.3,20.5,39.2,19.7,22.5,43.6,40.2],"script":[1.7,1.4,2.9,2.2,1.2,2.7,2.3,2.7,2.5,2.5,1.9,2.8,2.5,2,2],"paint":[19.9,15.4,16.6,17.2,16,16.1,17.3,16.8,16.9,17.7,16.9,15.9,17.8,18.7,16.8]}},{"b":5,"v":{"total":[18,17.9,18.6,17,16.5,16.1,16,15.5,17.4,16,16.1,15.5,17.9,16.3,16.4],"script":[1.3,1.2,1.2,1.2,1.2,1.2,1.1,1.3,1.1,1.2,1.2,1.2,1.3,1.2,1.2],"paint":[14.7,15.2,16.1,14.6,14.1,14,13.8,13.5,14.9,13.7,13.1,13.9,15.1,14.2,14.8]}},{"b":6,"v":{"total":[420.4,416.5,422.5,415.9,420.1,415.7,424.3,417.8,421.3,418.4,423.2,420,421.2,416.6,417.2],"script":[86.1,83.7,85.3,86.1,84.1,85.3,85.9,84.5,86.2,84.2,88.2,85.3,86,84.1,84.4],"paint":[332,330.7,335.1,327.6,333.5,328.3,336.2,331.1,333,332,332.8,332.4,333.1,330.4,330.6]}},{"b":7,"v":{"total":[47.1,46.5,45.7,44.8,47.1,47.1,47.1,46.4,47.9,46,46.8,46.4,45.8,46.7,64.6],"script":[8.3,7.8,7.6,7.8,8.5,8.5,8.6,7.8,8.3,8,8.6,7.9,7.7,8.3,7.8],"paint":[38.4,38.3,37.8,36.8,38.3,38.2,38.2,38.4,39.4,37.7,37.8,38.1,37.8,38,39.1]}},{"b":8,"v":{"total":[19.6,17.2,16.9,15.8,20.4,19.7,21,16.3,18.5,18.9,20.7,16,18.9,20.5,20.1],"script":[15.2,15.1,14.8,14.6,15.4,16,17.1,14.6,15,14.5,16.8,14.5,14.5,15.8,16.1],"paint":[3.4,2,2,1.1,3.2,2.4,2.6,1.5,1.9,2.9,3.3,1.3,4.1,4.4,2.6]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.5]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[26.2]}},{"b":14,"v":{"DEFAULT":[86.4]}},{"b":15,"v":{"DEFAULT":[21.7]}},{"b":16,"v":{"DEFAULT":[136.2]}}]}, +{"f":107,"b":[{"b":0,"v":{"total":[78.1,75.6,75.9,74.9,79.1,75.8,78.2,76.4,74.5,79.7,78.9,79.7,80,75.3,78.1],"script":[42.3,39.8,39.9,39,43.5,39.9,42.5,40.6,39.2,43.7,42.4,43.5,43.9,39.7,42.6],"paint":[35.4,35.3,35.6,35.4,35.1,35.4,35.3,35.4,34.8,35.6,36.1,35.8,35.6,35.2,35.1]}},{"b":1,"v":{"total":[99.8,99.5,98,102.6,102.1,102.6,102.2,99,102.3,98.7,100.2,99,98.9,97,100.3],"script":[63.9,62.8,62,65.9,66,66.7,65.8,63,65.8,62.7,63.9,63,63,61.2,63.6],"paint":[35.5,36.3,35.6,36.2,35.6,35.5,35.9,35.5,36.1,35.6,36,35.5,35.4,35.4,36.3]}},{"b":2,"v":{"total":[24.8,25.1,25.3,25.5,25.6,25.3,26.8,25.8,24.7,25.2,24.6,25.5,24.9,26.9,24.7],"script":[8.8,9.1,9.3,9.3,9.5,8.9,9.1,9,8.8,8.7,9.1,8.7,9.8,9.9,9],"paint":[14.7,15.3,14.6,14.6,14.1,15.6,16.3,15.8,14.6,14.9,14.6,15.5,13.8,15.5,14.3]}},{"b":3,"v":{"total":[11.2,11.1,9.8,9.7,9.9,9.8,10,9.9,9.8,10.3,9.3,10,10,10.1,9.8,9.9,10.1,10.1,9,10.2,10.8,10.1,9.4,9.9,9.6],"script":[8.2,7.7,7.4,6.6,7.3,7.1,6.8,6.9,7.3,7.6,6.5,7.7,7.2,7.7,7.1,7.8,7.5,7.6,7,7,7.6,7.8,6.7,7.1,7.4],"paint":[1.6,2.8,1.5,2.9,2.5,1.4,3.1,2.3,2,2.1,2.3,2.2,2.6,1.6,1.7,1.2,1.7,1.4,1.2,2.1,3,1.4,2.5,1.9,1.6]}},{"b":4,"v":{"total":[49.9,48.9,50.5,49.8,49.5,49.3,48.1,49,48.2,50.2,48.6,48.2,49.3,48.7,50.6],"script":[29.9,29.9,30.3,30.4,29.8,29.3,29.7,30.1,29.3,30.6,29.8,30.2,29.4,29.6,30.5],"paint":[18.2,17.2,19.1,18.5,18.3,18.2,16.8,17.2,18.2,18.6,17.1,15.6,18.5,18.4,17.7]}},{"b":5,"v":{"total":[18.9,19.9,19,19,18.8,19.1,18.5,19.1,19,18.5,18.7,19.5,19.1,18.8,19],"script":[3.6,3.4,3.6,3.6,3.6,3.6,3.5,3.6,3.6,3.6,3.6,3.7,3.6,3.6,3.6],"paint":[14.6,15.3,14.3,14.6,14.5,14.5,14,14.7,14.7,14.2,14.1,14.9,14.8,14.4,14.7]}},{"b":6,"v":{"total":[968.5,955,980.7,949.5,969.9,972.8,958.7,966.2,955.9,961.8,963.7,963.9,967.3,953.4,973.5],"script":[606.2,594.3,615.5,588.9,606.3,606.4,590.5,599.5,591.3,599,599.6,594.5,597.9,591.7,610],"paint":[355.7,354.2,358.5,354,357,359.5,361.3,360,358.1,356.1,357.5,361.9,362.7,350.9,356.8]}},{"b":7,"v":{"total":[95.2,96.2,95.5,96.8,95.2,97.4,97.4,95.9,94.9,95.2,94.5,95.8,97.8,96.9,94.8],"script":[56.9,57.3,56.7,58.4,57.2,55.3,58,57.8,56,56.8,57.9,57.4,55.8,58.5,56.4],"paint":[37.3,38,37.8,37.5,37.1,41.2,38.4,37.2,38,37.5,35.7,37.5,41,37.5,37.5]}},{"b":8,"v":{"total":[44.8,45.7,42.9,39.9,43.2,42.1,42.4,43.7,41.3,44.1,43.3,44.8,46.4,41.9,44.2],"script":[42.9,43.3,40.7,38.2,41.2,40,40.7,41.3,39.1,41.5,41,42.4,44.2,39.7,42.2],"paint":[1.8,1.9,2.1,1.2,1.1,2,1.6,2.2,2.1,2,0.7,1.9,1.4,2.1,1.8]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[5.6]}},{"b":11,"v":{"DEFAULT":[7.9]}},{"b":12,"v":{"DEFAULT":[4.6]}},{"b":13,"v":{"DEFAULT":[42.1]}},{"b":14,"v":{"DEFAULT":[249.5]}},{"b":15,"v":{"DEFAULT":[75.7]}},{"b":16,"v":{"DEFAULT":[473.8]}}]}, +{"f":108,"b":[{"b":0,"v":{"total":[43,41.7,41.1,43.9,42.8,41.7,42.4,42.7,42.2,41,42.6,41.3,41.2,40.9,42.7],"script":[8,7.5,7.2,7.6,8.1,7.3,7.8,8,8,7.3,7.9,7.1,7.1,7.1,7.7],"paint":[34.5,33.7,33.4,35.8,34.2,33.9,34.2,34.2,33.8,33.3,34.3,33.8,33.6,33.3,34.7]}},{"b":1,"v":{"total":[46.9,46,45.5,46.2,45.4,45.8,46.6,47.7,44.6,47.3,46.8,46.7,48.3,47.3,45.1],"script":[10,9.7,9.6,9.5,9.5,9.6,10.1,10.3,9.4,10.2,10.3,10.7,10.7,10.5,9.7],"paint":[36.4,35.8,35.4,36.2,35.5,35.7,36,36.9,34.7,36.6,36.1,35.5,37.1,36.3,35]}},{"b":2,"v":{"total":[17,17.2,20,20.6,20.6,18.4,17.3,18.2,32.3,17.4,34.6,21.9,16.5,32.3,18.7],"script":[2.6,1.8,1,1.4,2.5,1.6,2,2.1,1.1,1.8,2,2.5,1.9,1.2,1.5],"paint":[13.9,14.9,15.7,15.6,14.3,13.9,15.3,15.3,15.1,14.7,16.6,16,13.7,14.2,14.9]}},{"b":3,"v":{"total":[3.9,4.3,3.8,4.5,3.9,4,4.1,4,4.4,3.6,4.6,3.9,3.7,3.8,5.5,3.7,4.1,4.1,4,4.4,4.6,4.1,4.5,3.9,4.1],"script":[1.4,1.3,1,1.4,1.2,1.7,1.2,1.3,2.1,1.3,1.5,1.7,1.2,1,1.5,1.1,1.5,1.4,1.6,1.6,1.2,1.7,1.4,1.5,1.9],"paint":[2.4,2.8,2.7,1.9,1.9,2.2,2.2,2.2,1.5,2.2,1,1.4,2.1,2.5,2.2,2.1,2.5,1.9,2.3,1.4,0.8,1.5,2.1,1.5,2.1]}},{"b":4,"v":{"total":[19.5,20.5,19.5,20.9,19.8,20.6,20.3,20.1,21,21.5,19.6,19.9,20.2,20.3,19.7],"script":[0.9,1.5,0.2,0.9,0.9,1.3,1.5,0.8,1.1,1.6,0.6,1.2,0.9,1.2,0.8],"paint":[16.4,17.7,18.3,18.9,17.4,17.9,17.5,18.2,18.1,18.8,17.7,17.2,17.4,17.7,15.8]}},{"b":5,"v":{"total":[15.8,15.9,16.7,16.5,16.5,16.2,16.2,15.9,16,15.8,16,17.3,16,16.1,16.1],"script":[0.5,0.6,0.6,0.6,0.6,0.6,0.6,0.6,0.3,0.4,0.6,0.6,0.6,0.6,0.6],"paint":[14.4,14.6,15,15.1,15.1,14.8,14.4,14.6,14.6,14.7,14.8,15.5,14.6,14.2,14.6]}},{"b":6,"v":{"total":[436.2,434.3,435.2,434.4,435.8,437.5,436.2,430.6,436.7,437.5,435.7,438.1,438.9,435.5,431.8],"script":[86.7,86,86.5,86.5,87.1,87.7,87.5,86.7,89.2,88.2,88.1,90.1,89.4,87.3,87.9],"paint":[342,340.6,341.2,340.6,341.3,342.5,341.3,336.7,340.2,341.8,340.1,340.7,342.1,340.6,336.5]}},{"b":7,"v":{"total":[47.2,47.2,46.3,46.4,45.9,46.8,47.6,48.4,48.4,46.2,48.3,48.7,46.6,46.9,45.7],"script":[6.7,6.8,6.6,6.6,6.5,6.6,7.1,7.1,7.2,6.6,7.1,7.2,6.6,6.7,6.7],"paint":[39.6,39.5,38.7,38.9,38.5,39.3,39.5,40.4,40.3,38.7,40.2,40.6,39,39.4,38.1]}},{"b":8,"v":{"total":[16.1,14.3,14,14.4,14.5,14.3,13.9,15.1,14.3,13.8,14.1,13.6,14.3,14.4,13.5],"script":[13.8,12.7,12.2,12.5,12.4,11.9,12,12.7,12.3,11.9,12.1,12.2,11.9,12,11.6],"paint":[2.2,0.9,1.7,0.4,1.9,2,1.8,2.3,1.1,1.8,1.1,0.9,2.2,1.5,1]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[4.1]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[30.4]}},{"b":14,"v":{"DEFAULT":[117.4]}},{"b":15,"v":{"DEFAULT":[30.4]}},{"b":16,"v":{"DEFAULT":[167.6]}}]}, +{"f":109,"b":[{"b":0,"v":{"total":[41.6,42.5,40.1,40.7,42.9,42,41.1,41.9,41.1,41.6,40.7,40.4,41.9,41.7,40.3],"script":[7.1,8.1,7,7.4,7.9,7.4,7.7,7.5,7.1,7.7,7,7.1,7.6,7.6,7],"paint":[34.1,34,32.7,32.9,34.6,34.2,33,34,33.6,33.6,33.4,32.9,34,33.7,32.9]}},{"b":1,"v":{"total":[44.7,45.8,44.1,44.5,44.9,45.2,45.1,44.7,44,44.4,45.1,46.1,45.2,44.2,43.8],"script":[9.5,10.6,9.4,9.6,9.2,10.5,9.7,9.4,9.3,9.5,9.5,9.9,10.4,9.2,9.3],"paint":[34.7,34.7,34.2,34.5,35.2,34.3,35,34.9,34.3,34.5,35.1,35.8,34.4,34.6,34]}},{"b":2,"v":{"total":[16.5,16.4,16.6,18.5,16.2,16.8,16,16.5,16.1,17.4,16.4,16.3,16.8,16.6,15.9],"script":[1.2,0.6,0.9,0.9,0.9,0.9,1.3,1.1,1,1.6,0.9,1.1,1.1,1.5,0.9],"paint":[14.1,14.5,14.5,15.8,13.6,14.2,13.2,14.1,13.8,14.8,14.1,13.9,13.9,13.2,13.7]}},{"b":3,"v":{"total":[4.1,3.3,3.1,3.9,3.1,3.1,3.3,3.2,5.7,4.5,3.1,3,2.9,3,5,3.5,4.4,3,2.8,3.6,3.3,2.9,3.2,2.7,2.9],"script":[0.2,0.9,1,1.3,0.2,0.9,0.6,1,1.5,0.9,0.5,0.5,0.9,0.8,0.9,0.6,1.2,0.7,0.9,1.2,0.2,1,1,0.2,0.9],"paint":[2.5,2.3,1.6,1.9,2.3,1.4,2.6,1.9,1.9,1.8,1.4,2.4,1.9,1.7,2.5,1.9,1.4,1.6,1.4,2.3,3,1.4,1.7,2.2,1.2]}},{"b":4,"v":{"total":[18.6,18.3,18.9,18.7,18.2,19.6,18.7,18.1,18.4,18.7,19.5,19.2,18.6,18.3,17.6],"script":[0.8,0.5,0.3,0.8,0.1,0.1,0.8,0.1,0.1,0.9,0.8,0.1,0.8,0.1,0.1],"paint":[16.5,16.7,17.6,16.5,16.4,18.2,16.5,16.9,16.7,16.5,17.7,17.8,16.4,16.7,15.5]}},{"b":5,"v":{"total":[15,14.8,15,14.9,15.4,14.8,15.5,14.9,15.5,15.2,15.1,15.4,15.4,15.7,15],"script":[0.3,0.1,0.3,0.1,0.3,0.1,0.2,0.2,0.1,0.1,0.3,0.4,0.4,0.4,0.2],"paint":[13.8,13.8,13.9,14,14.4,14,14.6,13.8,14.7,14.1,14.1,14.5,14,14.6,14.1]}},{"b":6,"v":{"total":[421.3,417.1,417.9,417.8,420,420.2,424.2,418.9,427.2,424.7,419.6,419.4,418.7,423.3,420.6],"script":[81.4,83.5,78.2,82,85.6,83.4,82.3,82.3,80.2,85.1,84.8,84.9,83.5,85.6,84.4],"paint":[332.9,327,333.1,329,327.1,330.2,335.3,330,340.1,332.3,328.1,327.9,328.5,331.2,329.6]}},{"b":7,"v":{"total":[45.6,46.5,46.7,45.6,45.9,46.7,45.6,46.5,46.9,46.3,46.6,45.9,45.8,48.4,46.8],"script":[7.4,7.1,7.3,7.1,7.2,7.5,7.3,7.2,7.3,7.3,7.4,7.3,7.2,7.4,7.2],"paint":[37.3,38.5,38.6,37.6,37.8,38.4,37.5,38.4,38.7,38.2,38.3,37.8,37.8,40.1,38.8]}},{"b":8,"v":{"total":[13.7,14.2,14.4,14.2,14.5,14.4,14.1,14.7,14.6,13.5,13.6,13.8,14.4,14.3,14],"script":[11.6,12.5,11.9,12,12.5,12.3,12.1,12.4,12.7,11.6,12.2,11.5,12.1,12.4,12.3],"paint":[2.1,1.6,2,2.1,1.9,2,2,2.1,1.8,1.8,1.2,1.3,2.1,1.8,1]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[22.4]}},{"b":14,"v":{"DEFAULT":[170.8]}},{"b":15,"v":{"DEFAULT":[46.1]}},{"b":16,"v":{"DEFAULT":[269.2]}}]}, +{"f":110,"b":[{"b":0,"v":{"total":[41,39.9,39.3,39.6,40.1,41,39.8,37.6,38,40.7,40.6,38.2,38.3,39.1,40.3],"script":[7,6.2,6.2,6.3,6.2,6.3,6,6.1,6,6.1,6.3,6,6,6.1,6.9],"paint":[33.6,33.3,32.6,32.8,33.4,34.2,33.3,31.1,31.6,34.1,33.9,31.7,31.8,32.6,33]}},{"b":1,"v":{"total":[45.1,44.4,44.6,44.5,44.5,44.9,43.9,44.8,43.6,44.6,44.7,45.2,44.5,45.3,44.8],"script":[8.8,9.1,9.2,9.3,9,9.2,8.9,9.1,8.7,9.3,9.1,9.2,9.2,9,9.2],"paint":[35.8,34.8,35,34.7,35,35.3,34.6,35.2,34.5,34.9,35.2,35.5,34.9,35.9,35.1]}},{"b":2,"v":{"total":[15.9,16.6,16,16.3,16.3,16.7,15.6,17.2,16.6,16.6,16.8,16.5,17.4,17.5,16.9],"script":[1.1,0.9,0.7,1.1,0.9,0.6,0.7,1.1,1.2,0.6,1.1,0.9,0.7,1.4,0.2],"paint":[13.2,13.5,14,13.9,13.8,14,13.4,14.6,14.7,13.7,14.4,13.8,15.1,14.8,15.1]}},{"b":3,"v":{"total":[3.4,3,2.8,3.1,2.6,3,2.7,3,3,2.8,3,2.5,3.4,2.4,2.4,2.3,2.8,2.9,2.8,2.9,2.5,2.3,3.3,5.2,2.6],"script":[0.1,0.1,0.1,0.8,0.1,0.6,0.1,0.1,0.8,0.8,0.1,0.1,0.7,0.1,0.5,0.1,0.1,0.8,0.8,0.1,0.1,0.1,1.1,0.3,0.1],"paint":[3.2,2.4,1.8,2.2,1.6,2.3,1.8,2.7,2.1,1.9,2.9,2.2,1.6,2,0.9,1.2,2.7,1.4,1.9,2.7,2.3,1.5,1.3,1.8,1.6]}},{"b":4,"v":{"total":[19.2,20.2,19.7,20.4,20.4,21.4,19.3,20.3,19.7,20,20.3,20,20.2,20.5,19.6],"script":[1.1,1,2.2,1.2,1.7,2,0.9,1.2,1,0.6,1.1,1.3,1.5,1.4,1.6],"paint":[15.9,17.8,15.8,17.6,17.4,17.1,16.7,17.6,17.2,18.1,17.4,17.6,17.3,17.3,16.6]}},{"b":5,"v":{"total":[15.3,15.7,15,15.2,15.7,15.3,15.2,15.9,16,15.9,15.7,15.5,15.7,15.1,15.3],"script":[0.2,0.3,0.2,0.4,0.5,0.4,0.2,0.6,0.3,0.5,0.5,0.3,0.5,0.3,0.3],"paint":[14.4,14.6,13.9,14,14.5,13.8,14.2,14.5,14.7,14.6,14.4,14.2,14.4,14,14.2]}},{"b":6,"v":{"total":[423.9,435.5,425.1,424.9,423.6,427.2,425.4,421,430.2,426.6,422,418.3,413,417.9,423],"script":[81,81.3,80.1,81.8,79.6,81,81.4,81,82.4,81.1,81.4,80.1,77.1,79.6,80.5],"paint":[336.2,347.5,338.4,336.4,337.3,339.4,337.3,333.1,341,338.8,333.8,331.5,329.1,331.6,335.9]}},{"b":7,"v":{"total":[46.4,44.2,43.8,46,45,44.9,45,44.7,45.2,44.7,44.7,44.7,46,45.9,46.2],"script":[6.4,6.1,6.1,6.5,6,6.1,6.2,6.1,6.1,6.1,6.2,6.1,6.5,6.8,6.7],"paint":[39.2,37,36.9,38.5,38,37.9,37.9,37.7,38.2,37.7,37.7,37.7,38.5,38.2,38.7]}},{"b":8,"v":{"total":[12,12.3,11.7,11.6,12.3,12.8,12,12.6,11.7,11.6,11.9,11.7,11.6,12.4,11.9],"script":[10.2,10.4,9.9,10.5,10.3,11,10.6,10.8,10,10.2,9.7,9.6,10.1,10.5,9.5],"paint":[1.7,1.8,1.7,0.4,1.1,1.2,1.3,0.9,0.8,0.4,2,2,1.4,1.8,2.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[20.6]}},{"b":14,"v":{"DEFAULT":[9.4]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[48.6]}}]}, +{"f":111,"b":[{"b":0,"v":{"total":[46.1,46.3,50.2,45.7,45.5,47,46.9,47.1,46.8,46.5,46.3,45.3,47.9,47.5,47.3],"script":[12.5,12,14.2,12.4,12.4,12.3,12.2,12.1,11.9,12.2,12.2,12.4,12.8,13.8,13.4],"paint":[33.1,33.9,35.5,32.8,32.7,34.2,34.2,34.5,34.5,33.9,33.7,32.5,34.6,33.2,33.4]}},{"b":1,"v":{"total":[56.8,54.6,53.8,57.6,53.3,54.5,54.3,54.9,55,58.4,56.4,57.1,57.4,54.4,56.7],"script":[20.5,18.2,18.3,21.2,17.7,17.9,17.7,18.3,18.3,21.7,19.9,20.6,20.9,18.2,19.9],"paint":[35.8,35.9,35.1,36,35.2,36.2,36.1,36.1,36.1,36.3,36,36.1,36,35.7,36.3]}},{"b":2,"v":{"total":[21.4,20.1,20.6,22,20.9,20.9,20.6,20.9,20.2,20.3,21.7,21.1,20.8,20.5,21.6],"script":[5.3,4.4,5.2,5.7,5.1,5.1,4.6,5.1,5,5,5.5,5.1,4.7,4.7,5],"paint":[14.2,14.4,14.1,15.2,13,13.8,14.9,14.6,13.1,13.5,13.9,14.5,14.7,14,15.5]}},{"b":3,"v":{"total":[5.7,5.5,5,5.5,5.5,4.8,5.8,5.5,5.6,5.4,5.3,6.1,5.5,5.5,6.6,5.3,6.6,5.3,6,5.9,4.8,6.1,5.8,5.4,5.9],"script":[3.1,3.2,2.9,2.9,3,3,3,3,3.2,3.2,3.6,3.1,3.2,3,3.6,2.9,3.7,2.9,3.3,3.5,2.5,3.4,3.1,2.8,3.6],"paint":[1.8,2.1,1.9,2.2,2.4,1.4,2.3,2.4,2.3,1.3,1,2,2.1,2.3,1.9,2.4,1.7,1.7,2.6,1.5,1.8,2.1,2.6,2.6,2.2]}},{"b":4,"v":{"total":[20.9,21.5,21.2,22.1,21.5,22,21.8,22.2,21.2,21.3,23.2,21,21.5,21.4,21.4],"script":[3,3.2,3,2.9,3.3,3.3,3,3.1,3.8,3,3.7,3,3.3,3.1,2.8],"paint":[16.6,17.3,17.1,17.6,16.5,17.2,17.3,17.5,16.2,17,18.1,16.5,17.2,16.4,17.3]}},{"b":5,"v":{"total":[17.3,16.7,17.8,17.3,16.9,16.5,17.1,17.1,16.6,16.6,16.9,16.7,16.5,16.7,16.5],"script":[1.7,1.4,1.8,1.6,1.8,1.4,1.3,1.6,1.4,1.3,1.7,1.7,1.4,1.6,1.7],"paint":[14.6,14.3,14.9,14.9,14.4,14.4,15,14.9,14.5,14.3,14.5,14.3,14.4,14.4,14.1]}},{"b":6,"v":{"total":[494.7,496.4,493.6,490.5,495.9,498.9,493.1,493.1,490.3,491.1,490.8,491.9,490.5,489.2,494.7],"script":[140.8,144.6,144.6,143.6,143.2,145.4,144.1,143.8,140.5,145.8,143.5,142.5,140.6,141.4,144.7],"paint":[346.1,345,342.2,340.2,345.7,346.6,342,342.4,343.1,338.5,340.5,342.4,343.2,341,343.2]}},{"b":7,"v":{"total":[56.1,56.3,54.9,57.3,55.8,56.1,55.2,55.7,54.6,57.3,56.5,55.4,55.8,56.3,54.8],"script":[15.7,15.3,15.4,16.3,15.7,15.6,15.5,15.9,15.5,15.9,15.7,16,15.7,16.1,15.3],"paint":[39.6,40,38.6,40,39.1,39.6,38.8,38.9,38.1,40.4,39.6,38.5,39.2,39.3,38.6]}},{"b":8,"v":{"total":[13.3,13.2,12.8,12.6,13.9,13.4,13.2,13.2,13.2,13.3,13.6,13.3,13.7,13,12.4],"script":[11,11.3,10.7,11.5,11.9,10.8,11.6,11.9,11,10.7,11.7,11.6,12,11.3,11],"paint":[2.2,1.7,2,0.4,1.9,1.1,0.7,0.5,1.1,2.3,1.8,1.2,1.6,0.7,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2]}},{"b":11,"v":{"DEFAULT":[2]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[15.2]}},{"b":14,"v":{"DEFAULT":[4.5]}},{"b":15,"v":{"DEFAULT":[1.8]}},{"b":16,"v":{"DEFAULT":[47.5]}}]}, +{"f":112,"b":[{"b":0,"v":{"total":[36.7,39.6,36.5,37,37,36.4,37.4,36.5,37,37.1,38.1,36.8,36.8,37.1,37.2],"script":[3.9,4.4,3.9,3.7,3.9,3.8,4.2,3.8,3.8,4.3,4.3,4,3.9,3.9,4.3],"paint":[32.4,34.8,32.2,32.9,32.6,32.2,32.9,32.3,32.8,32.4,33.5,32.4,32.4,32.8,32.5]}},{"b":1,"v":{"total":[42.3,42.5,41.7,43.4,43.6,43.4,43.3,42.2,42.7,43.8,42.9,42,43.3,42.7,42.9],"script":[7.3,7.8,7.6,7.9,7.9,8.1,8.3,7.8,7.5,8,8,7.4,8.3,8.1,8.1],"paint":[34.5,34.2,33.7,35.1,35.3,34.9,34.6,34,34.8,35.3,34.5,34.2,34.5,34.2,34.5]}},{"b":2,"v":{"total":[17.1,16.7,17,20.2,16.5,16.6,16.5,16.3,18.8,16.9,16.4,16.7,16.6,16.1,16.3],"script":[1,1.2,1.6,1.7,1.2,1.1,1.3,0.9,1,1.4,0.6,1.3,0.7,1,0.9],"paint":[14.6,14.5,12.6,16.4,13.6,13.5,12.8,13.8,16.3,14.2,13.6,14.3,14.2,13.6,14.1]}},{"b":3,"v":{"total":[3,3.2,4.3,2.7,3.5,6.5,2.4,2.8,4.4,2.6,3.3,3.3,2.6,3.4,2.8,3.6,3,4,2.6,2.3,3.8,2.9,2.4,2.7,2.9],"script":[0.2,0.6,1.1,0.5,1.1,0.1,0.1,0.1,0.5,0.1,1,1,0.6,0.6,0.1,1,0.1,1.1,1.1,0.1,0.5,0.1,0.1,0.1,0.1],"paint":[2.4,2.6,2.1,2.1,2.3,1.6,2.2,1.9,1.9,2.3,1.7,1.6,1.3,2.4,2.6,2.5,2.5,1.5,1.4,2.1,1.2,1.4,1.8,2,2.6]}},{"b":4,"v":{"total":[21.2,19.5,20.1,19,19.7,19.4,19.8,19.1,18.9,19.2,18.5,19.1,19.1,20.2,20],"script":[1.3,1.5,1.8,1,1.7,1,2.1,1,1.1,1.1,1.5,1.2,1.2,1.8,1.8],"paint":[18.8,16.9,16.3,16.5,16.4,16.5,16.2,16.8,16.1,16.4,15.6,16.3,16.6,16.6,16.8]}},{"b":5,"v":{"total":[15.4,15.3,15.5,15.3,15.3,15.3,15.2,15,15.9,15.1,15.7,15,15.1,15.8,15.5],"script":[0.6,0.6,0.4,0.6,0.5,0.6,0.6,0.6,0.6,0.4,0.6,0.6,0.5,0.6,0.4],"paint":[14.1,14.3,13.9,13.9,14,13.9,13.5,13.7,14.5,13.9,14.5,13.5,13.8,14.5,14.4]}},{"b":6,"v":{"total":[387.2,382.4,389.3,382.1,391.1,383.2,385.4,379.7,379.8,378.4,381.7,386.4,381.2,381,381.1],"script":[44.1,43.6,44.2,43.7,44,43.7,43.6,43,42.8,42.4,43,43.9,42.7,42.8,44],"paint":[336.3,332.1,338.3,331.7,339.4,332.8,335,330,330.4,329.4,332,335.8,331.8,331.6,330.3]}},{"b":7,"v":{"total":[42.7,43.8,44.4,43.7,42.8,44.2,42.7,43,44.1,43.4,45.2,44.1,45,44,43.8],"script":[4.4,4.9,4.6,4.9,4.4,4.9,4.5,4.5,4.9,4.8,4.4,4.8,4.5,4.9,4.9],"paint":[37.5,38,39,38,37.5,38.4,37.4,37.6,38.4,37.7,40,38.4,39.7,38.3,38.1]}},{"b":8,"v":{"total":[13.7,13.7,13.8,14.1,13.4,13.8,14.2,13.8,14,14.2,13.9,13.5,14.2,13.3,14.4],"script":[11.9,11.8,12.2,11.9,11.1,12.1,12.2,12,11.7,11.9,11.4,11.6,11.7,11.9,12.3],"paint":[1,1.1,1.5,1.8,2.1,1.6,1.6,1.8,2.3,2.2,2,1.1,2.1,0.4,2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[20.4]}},{"b":14,"v":{"DEFAULT":[11.8]}},{"b":15,"v":{"DEFAULT":[4.5]}},{"b":16,"v":{"DEFAULT":[77]}}]}, +{"f":113,"b":[{"b":0,"v":{"total":[39.2,39.2,38.7,44.6,39.7,40.4,39.5,40.6,41.9,40.6,40.6,40.2,37.7,39.6,42],"script":[6.5,6.3,5.9,6.4,6.4,6.6,6.2,6.9,6.6,6.5,6.7,6.6,6,6.4,6.7],"paint":[32.2,32.5,32.4,37.8,32.8,33.3,32.8,33.3,34.8,33.7,33.5,33.1,31.2,32.7,35]}},{"b":1,"v":{"total":[46.6,47,46.7,46.6,44.3,43.5,44.9,42.7,44.8,45,43.4,44.5,44.7,44.4,44.2],"script":[10.3,9.9,10.3,10,9.6,9.9,9.6,9.7,10.1,10.1,9.3,10,10,9.7,9.9],"paint":[35.8,36.6,35.9,36.1,34.2,33.3,34.8,32.6,34.3,34.5,33.6,34.1,34.2,34.2,33.8]}},{"b":2,"v":{"total":[17.9,16.7,15.8,17.8,15.9,16.5,17.6,17.7,17.8,16.8,16.5,16.8,16.1,16.7,17.3],"script":[2.3,1.7,1.6,2.3,1.3,1.5,1.6,2.3,1.8,1,1,0.9,1.6,1.5,1],"paint":[14.3,14.1,13.3,14.3,13.5,14.3,14.9,14.1,14.7,14.3,14.1,14.8,13.2,13,15.4]}},{"b":3,"v":{"total":[3.2,3.7,3.1,3.3,4.1,3.2,3,3.1,4.2,2.8,3.3,3.6,4.7,3.3,3.6,3.5,2.7,2.4,4,2.7,2.7,4.9,4.7,3.3,3.4],"script":[0.8,1.4,0.8,1.2,1,0.2,0.5,0.1,0.7,1.1,1.1,0.9,0.9,0.6,0.9,0.9,0.2,0.1,1.4,0.4,0.3,0.9,0.7,0.7,0.8],"paint":[2.3,1.8,2.2,1.5,2.9,1.9,1.6,2.9,1.6,1.6,1.6,1.5,1.9,1.8,2.4,1.4,2,2.1,1.7,2.2,2.3,2.7,2,2.1,1.6]}},{"b":4,"v":{"total":[22.7,22.2,21.3,22.8,22.2,21.6,21.3,21.8,21.9,21.2,20.8,21.4,22.3,20.6,21.2],"script":[3.1,2.8,3,3.2,3.6,3.7,3.1,3.4,3.4,3.2,3.5,3.5,3.7,2.8,3.4],"paint":[18.4,18.1,17.2,18.5,17.2,16.8,16.9,16.8,16.3,16.9,16.1,16.6,17.4,16.5,16]}},{"b":5,"v":{"total":[17.9,17.1,17.3,17.7,17.1,17.1,16.7,16.8,16.9,17.1,16.9,17.2,16.6,18.2,16.6],"script":[2,2,2.3,2.3,2.3,2.3,2,2.1,2.3,2.3,2.2,2.3,2,2.3,2],"paint":[15,14.4,14.1,14.6,14,14,13.9,13.9,14,14.1,13.9,14.3,13.6,14.6,13.9]}},{"b":6,"v":{"total":[391.9,398.4,384.9,397.4,396.6,399.2,390,395.8,396.6,394.4,391.6,390.6,392.9,393.1,389.9],"script":[61.9,61.1,60,63.5,62.6,63.6,60.6,60.5,60.8,62,60.4,59.5,59.6,58.7,59.2],"paint":[320.7,327.7,318,324.5,324.7,326.5,320.1,325.9,326.6,323.2,324.4,322.1,324,325.2,321.5]}},{"b":7,"v":{"total":[44.2,45.3,44.9,47,45.1,44.9,46,45,44.9,44.4,46.3,44.8,44.9,44.4,45.3],"script":[7,7.3,7.1,7.3,7.4,7.4,7,7.2,7.1,7.2,7.3,7.4,7.4,7,7.3],"paint":[36.3,37.2,36.9,38.7,36.8,36.7,38,37,36.9,36.3,38.1,36.6,36.6,36.5,37.1]}},{"b":8,"v":{"total":[13.5,13.3,13.5,14.3,13.9,13.8,14.3,14.1,13.7,14.4,14,14.2,14.1,14,14.5],"script":[12.4,12.2,11.6,12.4,11.9,12.5,12.6,12,11.7,12.1,12.3,12.4,12.4,12.3,12.6],"paint":[1,0.3,1.6,1.9,1.9,1.2,1.3,1.1,1.9,1.2,1.3,1.1,1.7,1.6,1.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[21.5]}},{"b":14,"v":{"DEFAULT":[14.7]}},{"b":15,"v":{"DEFAULT":[5.5]}},{"b":16,"v":{"DEFAULT":[51.4]}}]}, +{"f":114,"b":[{"b":0,"v":{"total":[41.1,41.6,41.6,42.1,43.6,42.7,41.9,42.6,42.9,42.4,43.8,42.2,42.2,42,42.4],"script":[8.6,8.4,8.7,8.7,9.1,9.2,8.7,8.7,9.5,8.5,8.8,9,8.8,9.1,8.8],"paint":[32.1,32.8,32.5,33,34,33.1,32.8,33.4,33,33.5,34.6,32.8,32.9,32.4,33.2]}},{"b":1,"v":{"total":[49.2,48.5,48.6,48.7,49.2,47.8,49.8,48.9,50.6,50.1,48.1,48.7,49.6,49.7,48.7],"script":[12.6,12.6,12.5,12.6,13.2,12.6,13.3,12.6,13.9,12.5,12.7,12.8,12.9,13.3,12.8],"paint":[36.2,35.4,35.6,35.7,35.5,34.8,36.1,35.9,36.1,37,34.9,35.5,36.2,36,35.5]}},{"b":2,"v":{"total":[17.6,16.8,16.9,17.5,17.2,17.2,17,18.3,16.7,17.6,16.5,18,17.7,18.3,17.5],"script":[1.7,1.5,1.1,1.8,2,1.8,2.1,2.4,1.1,2.2,1.5,2.4,1.6,1.6,1.6],"paint":[13.8,14.3,14.4,13.9,12.9,14.2,13.9,13.9,14.3,13.9,13.8,14.2,13.6,15.6,14.9]}},{"b":3,"v":{"total":[5.1,4.3,4.2,3.5,4.5,3.8,4.6,5.2,4.7,3.2,3.6,3.8,6.9,3.9,3.6,3.7,3.9,4.7,4.2,4.4,6,4.1,3,3.5,5.7],"script":[1.3,2,1.6,0.7,1.5,1.3,2.1,1.4,1.3,1.1,1.2,1,1.4,0.9,1.2,1.8,1.5,2,1.3,2.1,1.6,1.7,1.1,1.5,1.9],"paint":[1.5,2.1,2.5,2.7,3,2,1.9,1.6,2.3,2,2.3,2.7,2.2,2.9,1.5,1.3,2.2,1.8,2.4,1.8,2.5,1.7,1.8,1.1,0.9]}},{"b":4,"v":{"total":[20.4,19.3,20.3,19.6,20.9,19.8,19.5,19.4,18.9,19.6,18.7,19.2,19.2,19.5,19.9],"script":[1,1.1,1.9,1.8,1.3,1,1.8,1,1.2,1.6,1.7,1.3,1.6,1.3,1.1],"paint":[18,17.2,17.2,16.4,18.6,17.2,16.4,16.7,16.4,16.2,15.5,16.8,16.4,16.3,17.4]}},{"b":5,"v":{"total":[15.4,15.9,15.8,15.9,15.8,15.9,16.1,16.3,15.6,15.3,15.4,15.4,15.2,16,15.6],"script":[0.7,0.7,0.7,0.7,0.9,0.7,0.7,1,0.7,0.9,0.7,0.7,0.7,0.9,0.8],"paint":[13.8,14.4,14.1,14.5,14.1,14.5,14.7,14.2,14,13.7,14,14,13.4,14.4,14.1]}},{"b":6,"v":{"total":[439.2,432,434.8,439,436.5,441.3,436.3,436,434.6,437.4,432.8,433.2,434.6,433.8,436.4],"script":[100.1,97.1,96.7,98.8,98.8,97.8,96.3,98.3,97.2,98.9,98.2,97.7,97.7,95.5,97.5],"paint":[332.4,328.4,331.1,333.6,330.9,336.9,333.3,331,330.8,331.9,327.9,328.9,330.3,331.6,332.2]}},{"b":7,"v":{"total":[51,49.5,48.9,49.3,49,49.2,49.4,49.1,48.9,50.1,49.6,50.8,49.5,49.2,50.3],"script":[9.6,9.5,9.2,9.5,9.7,9.3,9.8,9.4,9.9,9.8,9.5,9.5,9.9,9.7,9.6],"paint":[40.5,39.1,38.8,38.8,38.5,39,38.7,38.8,38.2,39.3,39.2,40.4,38.7,38.6,39.8]}},{"b":8,"v":{"total":[13.4,14.7,13.7,13.9,14.1,13.7,13.1,14.1,14.5,13.4,13.7,13.8,13.8,13.8,13.3],"script":[11.5,12.8,12.6,11.9,12.2,11.9,11.8,12.6,12.9,11.5,11.8,12,11.9,12.1,11.8],"paint":[1.2,1,0.3,1,0.9,1.7,1.3,1.3,1.5,1.8,1.5,1.7,1.7,1.6,1.4]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[5]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[3.5]}},{"b":13,"v":{"DEFAULT":[34.3]}},{"b":14,"v":{"DEFAULT":[101.4]}},{"b":15,"v":{"DEFAULT":[31.8]}},{"b":16,"v":{"DEFAULT":[170.1]}}]}, +{"f":115,"b":[{"b":0,"v":{"total":[44.6,42.4,41.6,42.8,42.8,42.8,43.4,43.5,42.9,42.7,42.2,41.7,43.1,42,43],"script":[9.7,9,8.5,9.4,9.3,9.5,9.8,9.8,9.1,8.6,8.8,8.9,9,8.8,8.8],"paint":[34.5,33,32.7,32.9,33.1,32.8,33.2,33.3,33.3,33.6,33,32.4,33.6,32.8,33.7]}},{"b":1,"v":{"total":[48.1,46.6,47.4,46.3,47,46.6,47.2,48.6,48.9,46.5,47.2,48,47,47.5,47],"script":[11.1,11.2,11.3,10.9,11.8,11,11.2,11.3,11.6,11.1,11.8,11.5,11.5,11.6,11.3],"paint":[36.5,34.9,35.7,34.9,34.8,35.2,35.6,36.8,36.8,35,35,36.1,35.1,35.4,35.3]}},{"b":2,"v":{"total":[16.9,17.7,16.6,16.1,16.7,16.1,16.4,15.6,16.9,16.6,16.4,16.9,16.6,17.4,16.4],"script":[1.8,1.8,1.4,0.9,1,1.3,0.7,1.3,1.9,1.1,1.8,1.7,1.6,1.6,1.5],"paint":[14.1,14.8,12.9,13.7,14.6,13.5,13,12.2,13.4,13.1,13.4,13.8,13.4,14.1,13.9]}},{"b":3,"v":{"total":[2.5,2.1,2.5,3,5.3,3,2.6,2.7,3.2,2.8,4.1,2.7,4.7,3.7,4,4.1,3.1,3.3,4.2,2.8,2.4,5.6,4.3,3.9,3.2],"script":[0.1,0.3,0.6,0.1,0.1,0.7,0.1,0.9,0.8,0.8,0.1,0.1,1,0.1,0.8,0.1,0.7,1.1,0.5,0.1,0.1,0.1,0.8,1.2,0.7],"paint":[2.3,1.7,1.8,2.8,3,2.2,2.5,1.2,1.7,1.2,2.9,2.5,1.4,2.3,1.7,1.4,2.3,1.4,1.9,1.9,1.3,2.8,1.6,2,1.5]}},{"b":4,"v":{"total":[18.9,18.2,18.1,18.4,18.8,20,19,19.1,18.5,19.3,19.6,19.3,18,19.1,19.7],"script":[0.1,0.1,0.8,0.1,0.1,0.8,0.1,0.6,0.1,1,0.9,0.9,0.1,0.9,0.8],"paint":[17.7,16.8,15.7,16.9,17.5,17.4,17.1,16.9,17.1,16.4,16.2,16.9,16.3,16.7,17.7]}},{"b":5,"v":{"total":[14.9,15.1,14.9,15.1,14.8,15.1,14.8,15,15.6,15.4,15.3,15.3,15,15.4,15.3],"script":[0.1,0.3,0.2,0.3,0.1,0.2,0.1,0.3,0.4,0.3,0.2,0.4,0.3,0.4,0.4],"paint":[13.7,13.9,14,13.7,13.9,14,14,14,14.2,14.3,14,14.1,13.9,14.2,14.1]}},{"b":6,"v":{"total":[439.1,436,435.7,430.6,443.6,436.7,437.4,443.4,436.8,436.6,436.2,436,436.3,438.7,437.4],"script":[99.9,96.2,95.9,95.3,101.1,98.5,98.3,97.2,98.7,98.1,98.2,97.2,97.4,98.1,98.8],"paint":[332.5,333.1,333.2,328.6,335.9,331.5,332.4,339.5,331.5,331.8,331.4,332.1,332.3,334,332]}},{"b":7,"v":{"total":[49.1,48.4,49.4,47.8,47.2,49.1,48.6,47.6,49.3,49.3,48.5,49,48.9,48.5,47.2],"script":[8.8,8.6,8.9,8.3,8.1,8.9,8.8,8.6,9.4,9.2,9,9.3,8.8,9,8.6],"paint":[39.4,38.9,39.6,38.7,38.2,39.2,38.9,38.2,39,39.1,38.7,38.9,39.2,38.6,37.8]}},{"b":8,"v":{"total":[14.8,14.2,13.9,14.2,13.7,14.3,13.9,15,14.8,14.9,14.8,14.9,13.8,13.7,13.6],"script":[12.7,11.9,12.6,12.2,11.7,12.2,11.8,12.9,12.9,13,12.4,12.9,11.9,11.5,12.5],"paint":[1.7,1.3,0.8,0.8,1.4,1.8,2,1.7,1.8,1.8,2.3,1.3,1.2,2.1,0.3]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[4.5]}},{"b":11,"v":{"DEFAULT":[4.5]}},{"b":12,"v":{"DEFAULT":[3]}},{"b":13,"v":{"DEFAULT":[29.8]}},{"b":14,"v":{"DEFAULT":[90.7]}},{"b":15,"v":{"DEFAULT":[27.8]}},{"b":16,"v":{"DEFAULT":[160.9]}}]}, +{"f":116,"b":[{"b":0,"v":{"total":[48.6,46.5,46.7,47.4,46.8,48.5,47.1,48.3,46.4,47.9,48.1,46.4,47,47.6,48],"script":[13.5,13,13.2,13.7,13.1,13.9,13.6,13.5,12.9,13.4,13.9,14,13.7,13.8,13.9],"paint":[34.7,33.1,33.1,33.3,33.3,34.1,33,34.4,33.1,34,33.7,32,32.9,33.4,33.6]}},{"b":1,"v":{"total":[51.6,52,53,53.5,53.8,53.3,52.1,53.7,53,52.6,52.7,53.4,52.9,52.9,51.7],"script":[16.8,16.8,17.4,18,17.2,17.8,16.9,17.2,17.5,16.7,17.4,17.8,17.9,17.4,16.7],"paint":[34.2,34.8,35.1,35.1,36.1,35.1,34.7,36,35,35.5,34.8,35,34.5,35.1,34.5]}},{"b":2,"v":{"total":[17.1,16.5,16.5,17.1,17,17.7,16.4,16.7,17.3,16.9,16.6,17.5,17.1,16.5,16.7],"script":[0.9,0.9,1.2,1,1.4,1.3,1.3,1.1,0.3,1.5,1.4,1.2,0.6,1.1,1],"paint":[15.2,14.4,13.1,13.7,13.7,15.3,13.2,13.5,15.2,14,13.2,14.5,14.5,14.6,13.1]}},{"b":3,"v":{"total":[3.6,4.2,3.9,5.3,2.8,2.8,2.8,5.4,3.2,4.5,4.9,3.1,2.8,3.3,2.8,3.8,3.5,2.7,3.4,3.4,2.8,3.6,4.3,3.6,3.3],"script":[1.1,1,0.9,0.1,0.8,0.6,0.8,0.4,1.1,0.9,0.1,0.8,0.3,1.1,0.8,0.8,1.2,0.1,0.9,0.8,0.9,1.2,0.1,0.9,0.9],"paint":[1.5,2.1,1.6,2.7,1.9,1.7,1.1,2,1.9,2.3,1.8,2.2,2.4,1.3,1.3,1.9,2.2,1.6,1.7,1.7,1.5,2.3,1.6,2.3,1.8]}},{"b":4,"v":{"total":[18,18,18.7,19.2,18.7,19.1,19.5,19.6,19.4,18.5,18.7,20.2,18.7,19,19.2],"script":[0.1,0.1,0.5,0.8,0.7,0.1,0.1,0.1,0.1,0.1,0.1,0.8,0.1,0.2,0.4],"paint":[16.8,16.5,16.9,16.8,17.3,17.4,18.3,18.4,18.3,17,17.1,18.3,17.1,17,18.1]}},{"b":5,"v":{"total":[15.2,15.2,15.2,15.4,14.8,15.3,15.1,14.9,15.8,14.8,15.9,14.9,15,16,15.2],"script":[0.5,0.4,0.4,0.5,0.2,0.5,0.3,0.5,0.5,0.2,0.2,0.3,0.4,0.4,0.5],"paint":[13.9,14.1,14,14.2,13.7,13.7,13.5,13.7,14.6,13.9,14.6,14,13.9,14.8,13.9]}},{"b":6,"v":{"total":[442.3,443,445.2,457.3,449.3,445.9,446.9,440.9,447.4,443,445.1,441,444.3,442.8,444.9],"script":[104.2,102.8,99.4,110.4,107.4,100.1,105.1,101.5,101.5,105.8,100.8,105.2,101.8,101.6,108.3],"paint":[331.1,333.2,339,339.1,334.6,339.2,335,332.7,339.2,330.6,337.6,329,335.8,334.5,329.8]}},{"b":7,"v":{"total":[48.7,50.4,48.9,47.7,48.3,49.5,49.7,49.8,49.4,49.1,49.4,49.3,48.5,49,48.3],"script":[9.5,10,9.6,9.1,9.9,10.2,10.5,10,10.2,10.1,10,10.1,9.4,10.1,9.4],"paint":[38.3,39.4,38.4,37.7,37.6,38.4,38.4,38.9,38.3,38.1,38.5,38.3,38.3,38,38]}},{"b":8,"v":{"total":[17.1,17.6,17.9,18.4,17.5,18.4,18.6,18.6,18.3,17.1,18.5,17.9,18.6,18.7,19.2],"script":[15.3,16.5,16.3,16.5,15.8,16.6,16.8,16.4,16.5,15.7,15.9,16,16.4,16.8,16.9],"paint":[1.7,0.4,1.5,1.1,1.6,1,1.1,1.6,1,0.8,2.5,0.4,2.1,1.9,1.3]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[2.3]}},{"b":13,"v":{"DEFAULT":[16.4]}},{"b":14,"v":{"DEFAULT":[130.8]}},{"b":15,"v":{"DEFAULT":[34.2]}},{"b":16,"v":{"DEFAULT":[76.9]}}]}, +{"f":117,"b":[{"b":0,"v":{"total":[46.3,44.8,45.1,45.4,44.7,44.4,45.1,45.8,45.7,46.4,45.1,45.9,44.9,46.5,46.7],"script":[11,10.3,10.6,10.7,10.5,10.3,10.4,11,10.7,11,10.6,10.7,10.9,11.2,11.1],"paint":[34.9,34,34.1,34.3,33.7,33.7,34.3,34.4,34.5,35,34.1,34.7,33.6,34.9,35.1]}},{"b":1,"v":{"total":[53.9,55.4,55,54.4,55.8,55.5,54.6,54.4,55.7,54.9,56,55.1,55.4,54.7,54.6],"script":[18.1,19.4,18.1,18,19.1,18.9,18,18,19.1,18.2,18.9,19.1,19,18.9,18.7],"paint":[35.4,35.6,36.5,35.9,36.3,36.1,36.1,35.9,36.2,36.2,36.6,35.6,36,35.3,35.4]}},{"b":2,"v":{"total":[32.1,32.2,31.2,31,34.8,30.6,30.1,31.4,30.6,29.4,31.8,31.4,32.2,31.5,29.8],"script":[15.4,14.9,14,14.7,16.8,14.3,14.5,15.8,14.9,13.1,14.8,14.8,14.3,15.1,13.8],"paint":[15.7,16,15.6,14.7,16.9,15.1,14.6,13.6,14,14.9,15.5,13.9,16.2,14.5,14.7]}},{"b":3,"v":{"total":[16.9,17.2,17.9,15.1,16.8,16.2,15.3,16,16.5,15.8,16.3,16.6,19.6,15.3,16.3,16.3,16.3,17.1,17.1,17.1,17.8,15.6,16.6,17.8,15.7],"script":[13.2,13.9,14.8,12.6,13.6,13.4,12.2,13.3,13.5,12.8,13.5,13.3,15.9,12.4,13.6,13.8,13.5,13,13.3,14.2,13.7,12.8,12.7,14.4,13],"paint":[3.3,2,1.8,2.4,2,1.9,2,2.6,2,2.9,1.7,2.4,2.6,1.5,2.5,2.4,1.2,2.7,3.4,1.6,2.2,1.2,3.8,3.2,2]}},{"b":4,"v":{"total":[33.9,32.6,32.9,33.4,33.4,31.9,32.5,33,34.5,33.7,32.6,32.9,34,34.1,33.2],"script":[14.1,13.9,12.7,13.1,14,13.8,12.5,13.7,14.8,13.6,13.3,14.4,14.4,14.9,14.4],"paint":[18.3,16.8,18.4,18.4,17.4,17.2,18.1,17.8,18.9,18.2,17.6,17.1,17.6,18.3,17.1]}},{"b":5,"v":{"total":[22.7,22.4,24.3,22.2,23.2,23.8,23.4,22.6,22.4,21.6,24.2,22.2,23.3,23.8,23.7],"script":[7.4,7.1,7.8,7.3,7.5,7.3,7.4,7.4,7.2,6.4,7.6,7.1,7.5,7.7,7.2],"paint":[14.5,14.5,14.9,13.8,14.7,15.1,15,14.4,14.5,14.2,15.7,14.1,15,15.3,15.7]}},{"b":6,"v":{"total":[476.2,474.1,472.7,476.7,473.8,476.9,477.2,473,479.5,469.9,476.8,480.4,475.3,473.4,471.7],"script":[126.7,125.1,124.6,128.4,125.9,128.1,130,125.7,130,122.7,128.4,128.1,127.9,126.7,124.9],"paint":[342.7,342.1,341.3,341.7,341.1,342,340.5,340.6,342.9,340.5,341.3,345.7,340.7,340,340.1]}},{"b":7,"v":{"total":[57.5,57.4,55.8,57.5,57.4,57.5,58,58.1,57.7,57.9,58.2,58,58,57.8,57.4],"script":[15.9,15.8,15,15.8,15.9,16,16,16,16.3,15.5,16.7,16.2,16.2,16.1,16],"paint":[40.7,40.7,39.9,40.8,40.6,40.7,41,41.3,40.5,41.4,40.7,40.9,40.9,40.8,40.4]}},{"b":8,"v":{"total":[15.6,16.4,15.7,15.4,15.5,15.3,15.7,16,15.4,15.3,15.2,15.1,15.1,15.6,15.6],"script":[13.3,14.6,13.5,13.8,14.1,13.6,13.8,13.9,13.7,13.2,13.4,13.1,13.6,13.4,13.5],"paint":[2.3,0.9,2,1.5,1,0.8,1.2,1.5,0.8,1.9,0.9,1.9,1.3,1.1,1.9]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[29.6]}},{"b":14,"v":{"DEFAULT":[12.3]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[57.5]}}]}, +{"f":118,"b":[{"b":0,"v":{"total":[39.9,41,40.7,40.6,42.7,40.4,41.2,42.3,40.3,40,40,42.1,40.2,41.5,43.9],"script":[6.9,6.9,7.4,7.2,7.4,7.3,7.4,7.4,7.4,6.8,6.9,7.1,6.8,7.4,7.3],"paint":[32.6,33.5,32.9,33,34.8,32.7,33.3,34.4,32.5,32.8,32.7,34.6,32.9,33.7,36.1]}},{"b":1,"v":{"total":[46.6,45.2,48.1,45.5,45.8,43.8,46,47.7,47.4,46.3,46.4,46.2,45,45.8,47.8],"script":[10.2,10.3,10.9,10.4,10.8,10,10.7,10.9,10.4,10.6,11.3,11.3,10.3,10.8,11.5],"paint":[35.9,34.4,36.7,34.7,34.5,33.3,34.8,36.4,36.5,35.2,34.7,34.4,34.3,34.5,35.8]}},{"b":2,"v":{"total":[27.8,27.3,27.5,28.4,30.1,27.7,28.4,26.9,27.3,27.8,27.1,28.7,27,27.2,28.1],"script":[11.1,11.1,11.5,11.7,13,11.8,10.8,11,11.3,10.8,10.9,12,11.2,11,11.7],"paint":[14.8,14.4,14.4,15.4,15.4,14.8,16.2,14.6,13.7,15.6,14.9,15.3,13.5,14.8,14.9]}},{"b":3,"v":{"total":[13.8,12.6,12.3,14.4,13.1,13.6,13.3,13.8,11.8,12.7,12.9,12.6,12.4,14.9,13.8,13.2,13.5,12.3,12.8,13.1,12.5,13.5,12.4,11.8,14],"script":[10.9,10.1,9.6,10.8,9.5,9.8,10.2,10.2,9.3,10.4,9.9,10.1,9.7,10.8,11,10.5,10.5,9,9.4,9.7,10,10.6,10.5,9.5,11],"paint":[1.7,1.4,2.1,1.9,2.7,2.6,3,2.9,2.4,1.4,2.9,2.4,2.5,3.9,1.9,2.2,2.9,2.6,2.9,2.3,2.4,2,1.7,1.2,2.2]}},{"b":4,"v":{"total":[29.4,29,29.1,29.1,29,29.6,28.5,30.3,30,28.5,28.7,29.8,28.8,28.3,29.3],"script":[10.4,10.3,10.5,11,9.8,11.1,10.4,10.9,10.6,10.1,10.7,10.3,10.3,10.4,10.2],"paint":[17.6,16.9,16.8,16.3,17.3,17.4,16.5,18.1,18.4,16.3,17,17.9,17,16.8,18.1]}},{"b":5,"v":{"total":[21.4,21.1,20.9,20.4,20.3,21.6,21.1,20.8,21.6,20.7,20.6,20.7,20.8,20.3,21.2],"script":[5.4,5,5.4,5,4.9,5.5,5.5,5.4,5.5,5,5.4,5.3,5.2,5.1,5.1],"paint":[14.8,15.3,14.3,14.6,14.6,15.3,14.5,14.7,15.3,14.9,14.1,14.1,14.5,14.4,15.4]}},{"b":6,"v":{"total":[417.4,418.7,420.2,425.1,412.9,419.7,422.1,422.4,419.6,422.8,416.1,415.6,412.9,416.5,422.8],"script":[78.7,77.1,77.5,78.3,74.4,78.3,80.1,77.4,77.6,77.4,76,76.6,77,76.7,78],"paint":[332,334.8,336,339.1,331.8,334.5,335.1,338.2,335.3,338.6,333.4,332.2,329.1,333.1,338.1]}},{"b":7,"v":{"total":[49.2,48.5,48.2,47.6,49,48.5,48.4,48.4,51.4,48.9,49.3,48.6,50.2,48.1,48.7],"script":[10.2,10.3,10,9.7,10.3,9.9,9.9,10.2,10,10,10.3,10,10.4,9.9,10],"paint":[38.1,37.3,37.3,37,37.8,37.6,37.5,37.4,40.4,37.9,38.1,37.8,38.9,37.3,37.8]}},{"b":8,"v":{"total":[13.6,13.2,13.2,13.2,13.8,13.1,13.3,12.3,13.4,12.4,13.6,12.1,13,12.8,13.7],"script":[11.2,10.9,11,10.7,11.9,11.5,11.3,10.5,11.6,11,11.5,10.7,11.3,10.7,12],"paint":[2.3,2.2,2.1,2.4,1.2,0.9,2,1.2,1.8,0.4,1.3,0.4,1.7,2,1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.3]}},{"b":11,"v":{"DEFAULT":[2.3]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[17.7]}},{"b":14,"v":{"DEFAULT":[10.6]}},{"b":15,"v":{"DEFAULT":[3.9]}},{"b":16,"v":{"DEFAULT":[60.2]}}]}, +{"f":119,"b":[{"b":0,"v":{"total":[41.2,39.8,42.9,39.9,38.9,38.8,38.4,41.6,39.8,40.4,40.9,40.1,41.4,41.2,40.9],"script":[7.2,7.7,7.7,7.2,7.2,6.9,6.9,7.6,7.5,7.5,7.4,7.5,7.7,7.5,7.5],"paint":[33.6,31.7,34.7,32.2,31.4,31.6,31.1,33.6,31.8,32.5,33.1,32.2,33.2,33.4,33]}},{"b":1,"v":{"total":[45.6,45.2,46,46.6,45.7,45,45.5,46.4,44.7,45.7,45.7,46,45.5,45.9,44.6],"script":[11.3,10.8,11.4,11.1,11.1,10.6,11.1,11.3,10.3,10.9,10.5,10.7,10.3,11.2,10.6],"paint":[33.9,33.9,34.1,35.1,34.2,34,34,34.6,34,34.4,34.8,34.9,34.7,34.3,33.6]}},{"b":2,"v":{"total":[27.5,26.9,29.2,28.9,28.8,27.8,29.5,27.1,28.4,28.9,27.4,27,29.1,27.8,26.9],"script":[11.5,10.8,11.2,11.8,11.1,11.6,12,11.7,11.4,11.3,11.2,10.4,12,11.6,11],"paint":[14.5,13.8,16.1,16.1,16.2,13.4,16.3,14.1,15.5,15.8,14.9,14.7,15.9,14.2,14.7]}},{"b":3,"v":{"total":[14.3,15.1,13,14.4,13.5,13.4,13.8,13.7,15.7,15.2,14.6,13.6,13.8,12.6,13.4,13.8,14.7,13.9,13.7,15.3,14.9,14.6,13,14.1,13.4],"script":[11.3,11.4,10.5,10.4,10.4,11,10,10.3,12,11.1,11,10.2,11,9.4,10.3,10.6,10.9,11.4,11.2,11.6,11.5,11.2,10,10.6,10.2],"paint":[2.9,2.9,1.9,2.9,2.2,1.4,3.6,2.7,2.8,3.1,2.3,3.3,2.4,2.8,2.5,2.8,3,2.3,1.3,3.4,2.1,1.9,2.9,3.4,3]}},{"b":4,"v":{"total":[29.4,30.4,30.7,30.7,30,30.4,31.9,31.2,31.7,31.4,28.8,29.8,30.7,32,30.5],"script":[10.5,11.9,11.5,11.7,11.1,10.5,12.8,12.2,11.6,10.7,10.2,12.1,11.3,11.4,11.7],"paint":[17.6,16.7,18.6,17,16.9,18.3,17.8,17.6,18.9,18.3,17.3,16.9,17.6,19.1,17.6]}},{"b":5,"v":{"total":[20.3,20.7,20.9,21.4,20.3,21.9,20.8,20.8,21.4,20.3,20.3,20.3,20.5,20.8,21],"script":[5.2,5.5,5.5,5.4,5.5,5.6,5.4,5.4,5.5,5.5,5.4,5.5,5.2,5.4,5.5],"paint":[14.4,14.2,14.7,14.9,13.8,15.5,14.6,14.1,15.1,14.1,13.9,14.1,14.2,14.7,14.8]}},{"b":6,"v":{"total":[431.8,431.2,429.7,430.2,425.7,430.5,427.4,436.7,429,431.8,437.4,425.8,429.9,431.4,432.9],"script":[89.5,88.4,88.5,88.2,86.8,87.7,88.4,87.1,86.5,88.7,86.7,87.1,87.7,88.6,90],"paint":[335.7,336,334.6,335.5,332.4,336.3,332.5,342.8,335.7,336.7,343.8,332.1,335.8,336.3,336.3]}},{"b":7,"v":{"total":[48.8,49.8,48.3,48.3,49.9,48.1,49.3,48.9,49.9,49.3,49.7,49.2,48.3,51.1,49],"script":[10.5,10.4,9.9,9.9,10.2,9.9,10.6,10.3,10.4,10.1,10.3,10.2,10.3,10.5,10.2],"paint":[37.4,38.5,37.5,37.5,38.9,37.3,37.8,37.7,38.5,38.3,38.6,38.1,37.2,39.7,37.9]}},{"b":8,"v":{"total":[13.6,14.3,13.6,14,14.3,14.5,14.3,14.1,14.4,14.1,14.5,14.9,15.1,14.2,14.4],"script":[12.1,12.1,11.6,11.9,12.5,12.3,12.4,11.6,12.5,11.9,12.4,12.8,12.8,12.4,12.6],"paint":[1.4,2.1,1.9,1.8,0.9,1.7,1.1,2.4,1.8,2,2,2,1.9,1,1.6]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.3]}},{"b":11,"v":{"DEFAULT":[2.4]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[17.8]}},{"b":14,"v":{"DEFAULT":[22.1]}},{"b":15,"v":{"DEFAULT":[7.9]}},{"b":16,"v":{"DEFAULT":[75.7]}}]}, +{"f":120,"b":[{"b":0,"v":{"total":[36.8,36.7,36.6,36.9,36.9,39,37.2,36.4,37.5,39.2,36.7,36.1,37,37.2,36.3],"script":[3.3,3.7,3.4,3.7,3.4,3.7,3.5,3.6,3.8,3.7,3.7,3.5,3.6,3.7,3.6],"paint":[33.1,32.6,32.8,32.8,33.1,34.8,33.3,32.3,33.3,35.1,32.6,32.2,33,33.1,32.3]}},{"b":1,"v":{"total":[43.6,44.2,41.5,41.5,44.1,41.1,41.7,41.3,41.1,41.6,41.7,41.7,41.2,41.4,41.9],"script":[7,7.2,6.7,6.5,6.9,6.6,6.6,6.7,6.7,6.7,6.9,6.6,6.8,6.8,6.8],"paint":[36.2,36.6,34.3,34.5,36.8,34.1,34.7,34.1,34,34.4,34.3,34.7,33.9,34.2,34.7]}},{"b":2,"v":{"total":[16.9,15.9,15.6,17,15.8,16.1,16.3,16.7,16.9,16.8,16.4,16.1,17.3,16.1,16.4],"script":[1.2,0.9,0.9,1.2,0.3,1.2,1,1.5,1.5,0.3,0.9,1.2,0.9,1,1],"paint":[13.8,13.6,13.5,15.1,13.7,13.6,14,14.2,14.1,15.9,14.2,13.4,14.5,12.9,14.2]}},{"b":3,"v":{"total":[3.5,3.8,3.1,3.4,3.9,3.3,4.1,2.7,4,3.8,5.7,3.8,5.8,4.1,6.9,3.5,3.9,3.4,2.9,3,3.1,4.1,3.9,4.3,3.6],"script":[0.9,1.2,1.3,1,0.7,0.7,0.7,0.2,1,1.3,0.9,1.4,0.6,1.2,1.2,1.3,0.7,1,0.9,0.5,1,0.7,0.7,1.2,1.2],"paint":[1.4,2.5,1.3,1.9,3.1,2.1,2.2,2.4,2.5,2.4,1.9,2.3,2.4,2.7,2,2.1,1.8,2.1,1.9,2.4,2,2.5,3,2.8,1.4]}},{"b":4,"v":{"total":[20.2,20.1,20.7,20.5,20.1,19.1,20.9,20.2,20,19.8,19.9,20.9,20.4,19.7,20.8],"script":[1.3,1.2,1.4,1.7,1.1,1.6,1.6,1.8,1.9,1.9,2.1,1.7,1.7,2,1.8],"paint":[18,17.4,17.9,17.6,16.8,14.9,18.2,17.3,16.3,16.7,15.9,17.6,16.3,15.5,17.1]}},{"b":5,"v":{"total":[15.4,15.6,15.4,16.2,14.9,15.7,14.9,15.2,15.1,15.8,15.6,15.4,15.8,15.5,15.2],"script":[0.6,0.6,0.6,0.2,0.3,0.6,0.5,0.4,0.3,0.6,0.4,0.6,0.6,0.6,0.6],"paint":[14,14.3,14.1,15.5,13.9,14.4,13.7,14,13.7,14.5,14,14.1,14.4,13.9,13.9]}},{"b":6,"v":{"total":[369.2,363.8,366.1,369.8,370,368.9,371.2,366.8,367.1,364.1,368.4,368.7,367.1,366,367],"script":[40.5,40.6,42.9,41.6,42.7,40,42.2,41.7,40.1,41.1,41.9,40.5,40,41.5,40.8],"paint":[321.9,316.7,316.9,321.8,320.4,322,322.6,318.8,320.6,316.5,320.1,321.7,320.6,318.1,319.7]}},{"b":7,"v":{"total":[42.9,42.8,42.7,43.8,43.7,42.7,42,41.8,43,42.3,43.2,43.3,42.4,43.3,44.5],"script":[3.4,3.3,3.4,3.6,3.5,3.3,3.4,3.5,3.5,3.4,3.4,3.4,3.6,3.5,3.4],"paint":[38.6,38.6,38.4,39.4,39.3,38.5,37.7,37.4,38.6,38.1,38.9,39,37.9,39,40.2]}},{"b":8,"v":{"total":[13.3,13.4,12.9,13.4,12.8,13.3,13.2,13.3,13.2,14,13.2,13.4,13.3,12.8,12.9],"script":[11.4,11.3,11.4,10.8,11.2,10.9,10.7,11,11.3,11.6,11.5,11.4,10.8,11.4,11.2],"paint":[1.7,1.8,1.5,2.5,1.5,2.3,2.3,2.2,1.1,2.3,1.7,1.2,2.4,0.4,0.7]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[19.7]}},{"b":14,"v":{"DEFAULT":[17.9]}},{"b":15,"v":{"DEFAULT":[7]}},{"b":16,"v":{"DEFAULT":[76.8]}}]}, +{"f":121,"b":[{"b":0,"v":{"total":[39.2,39.7,36.7,36.2,36.6,37.5,37.7,37.4,38,38.7,38.7,39,38.9,39.3,38.7],"script":[5.1,5.4,5.1,4.9,5,5,5.2,5,5.2,5.1,5.2,5.6,5.4,5.2,5.2],"paint":[33.7,33.8,31.2,30.9,31.2,32.1,32.1,31.9,32.3,33.1,33.1,33,33.1,33.7,33.1]}},{"b":1,"v":{"total":[44.6,47.3,44.5,44.4,44.8,45.8,44.2,45.1,44.7,44.7,44.8,44.6,44.5,44,44.3],"script":[8.3,8.8,8.9,8.7,8.6,8.1,8.6,8.7,8.3,8.8,9.1,8.6,8.7,8.9,8.6],"paint":[35.8,38.2,35.2,35.2,35.8,37.2,35.2,36,35.9,35.4,35.2,35.6,35.3,34.7,35.2]}},{"b":2,"v":{"total":[18.4,16.9,17.8,16.8,17.2,17.3,16.9,17.6,17.9,17.2,17.4,17.5,16.9,17.3,17.1],"script":[1.5,1.8,2.4,1.8,2,1.8,1.8,2.1,2.6,1.9,1.7,2,1.9,2.1,2.1],"paint":[14.5,13.6,13.8,13.3,13.6,14.5,13.7,14.5,13.9,14.3,13.2,14.1,13.2,13.9,13.5]}},{"b":3,"v":{"total":[3.9,3.4,3.2,4.2,3.5,3.8,3.5,2.9,3.5,3.8,3.9,3.4,4.3,3.2,4.3,5.2,3.9,4.3,4.7,4.9,3.4,4,5.1,3.9,5.2],"script":[0.9,0.7,1,1.3,1.5,1.3,1.3,1.2,1.2,0.8,1.3,1.4,0.8,0.9,1.3,1.8,1.2,1.8,1.4,1.6,0.9,1.5,1.5,0.3,1.1],"paint":[1.6,2.6,1.4,2.5,1.8,2.4,2.1,1.6,1.5,1.8,1.8,1.8,2.7,2.2,2.8,2.3,2.5,2.3,1.3,3.2,1.4,2.4,2.2,3.5,2.5]}},{"b":4,"v":{"total":[20.2,20.3,20.1,19.7,19.8,19.8,21,19.4,19.7,19.8,19.3,20.6,19.6,20.1,21.2],"script":[2.2,1.9,1.6,1.6,1.8,1.4,1.8,1.2,1,1.6,1.4,1.5,1.7,1.8,1.4],"paint":[16.8,16.9,16.7,16.6,16.6,17,17.5,17.2,17.5,17.3,16.6,17.9,16.3,17.2,18.3]}},{"b":5,"v":{"total":[15.6,15.5,15.3,15.5,15.4,15.6,15.5,15.4,15.8,15.9,15.5,15.7,15.3,15.4,15.9],"script":[0.7,0.6,0.6,0.7,0.7,0.6,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6,0.8],"paint":[14.1,13.8,13.9,13.9,13.9,13.6,14.1,14.2,14.5,14.8,14.2,14,14,14.1,14.3]}},{"b":6,"v":{"total":[400.5,394,402.5,403.7,403.8,408.8,399.3,405.8,404.4,395,402.8,404.1,403.7,399.9,402],"script":[57.3,56.5,56.3,57.1,58,57.3,57,57,57.7,56.4,57.1,56.2,55.8,56.7,56.1],"paint":[336.4,330.8,339.3,339.9,339.1,344.8,335.7,342,340,331.9,339,341.1,341.2,336.5,339.1]}},{"b":7,"v":{"total":[46.1,45.1,47.5,45.8,45.1,46.3,45.8,46.5,46.3,47.5,46.3,46.6,46.7,46.6,46.8],"script":[5.6,5.6,5.8,5.6,5.5,5.9,6,5.9,5.9,6.1,6,6,5.9,6.1,5.6],"paint":[39.5,38.7,40.8,39.3,38.7,39.6,38.9,39.8,39.6,40.5,39.5,39.8,40,39.6,40.3]}},{"b":8,"v":{"total":[12.6,12.9,12.8,12.9,13.8,13.4,12.2,12.6,13.2,13.2,12.4,13.2,13.1,12.8,13.6],"script":[10.9,10.8,10.7,11,11.5,11.3,10.7,10.8,11.4,11.5,10.8,11.4,11,10.7,11.7],"paint":[1.7,1.6,2,1.9,1.2,1.4,0.4,1.8,1,0.8,1.5,1.5,0.5,1.9,1.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[21]}},{"b":14,"v":{"DEFAULT":[16.9]}},{"b":15,"v":{"DEFAULT":[6.6]}},{"b":16,"v":{"DEFAULT":[77.1]}}]}, +{"f":122,"b":[{"b":0,"v":{"total":[42.2,43.5,41.9,41.9,41.2,44.1,43.8,42.6,43.8,42.9,43.1,42.2,42,43.1,43],"script":[8.4,9.3,8.4,8.3,8.2,9.1,9.4,8.4,8.9,8.7,8.9,8.5,8.8,9.3,8.7],"paint":[33.4,33.8,33.1,33.2,32.6,34.6,33.9,33.7,34.6,33.8,33.7,33.3,32.8,33.4,33.9]}},{"b":1,"v":{"total":[51.8,50.9,49.9,52.9,51,50.3,51.4,50,51.3,52.3,51.5,50.1,49.3,49.6,51.1],"script":[14.9,14.6,14.7,15.6,14.5,14.4,15.3,14.5,15.2,15.7,15.5,15.2,14.5,14.6,15.4],"paint":[36.4,35.9,34.8,36.8,36.1,35.4,35.6,35.1,35.6,36.1,35.6,34.5,34.4,34.5,35.2]}},{"b":2,"v":{"total":[17.6,16.9,17.2,16.6,18.4,17.1,17.6,18.5,18.2,17.4,18.2,17.3,17.9,17.9,16.9],"script":[2.1,1.6,1.8,1.8,2.4,1.3,1.9,2.6,1.5,1.8,1.5,1.8,1.9,1.4,1],"paint":[13.9,14.1,14.1,13.5,14.3,13.8,14.6,14.3,15.4,14.2,15.3,14,14.9,14.7,14.4]}},{"b":3,"v":{"total":[7.2,7,6.1,7,6.5,6.5,5.9,6.6,5.8,6.2,6.4,7.1,6.5,6.6,6.2,6.8,6.6,6.7,6.4,6.1,6.6,5.9,6,6,6.6],"script":[4.1,4,3.9,4.3,4,3.8,3.8,3.7,3.4,3.8,4.2,4.3,3.9,3.8,3.5,4.7,4.1,3.8,3.7,3.9,4.3,3.7,3.8,4.3,4],"paint":[3,2.8,2.1,1.4,1.5,1.7,1,1.3,1.2,2.4,2.1,2,2.4,2.2,2.6,2,2.4,2.8,1.8,1,2.1,2.1,1.4,1.1,2.5]}},{"b":4,"v":{"total":[19.7,19.5,19.7,20.3,19,20.8,19.4,19.6,20.5,19,19.2,20.5,19.7,19.6,20.1],"script":[1.7,0.9,1.4,2.1,1.4,1.5,1.3,1.3,1.4,1.3,1.3,1.4,1.5,1.5,1.8],"paint":[15.8,17,16.9,16.3,15.4,18,17.1,16.7,17.7,16.7,16.9,17.5,17.1,17.1,16.7]}},{"b":5,"v":{"total":[15.9,15.8,15.9,16,15.8,15.5,15.7,15.4,16.3,15.5,15.7,15.9,16,15.5,15.7],"script":[1.1,1.1,1.1,1.1,1,0.8,1,1,0.9,0.8,0.9,1.1,1.1,0.8,0.8],"paint":[14.1,14.1,14.1,13.9,14,13.7,13.8,13.5,14.6,13.8,13.8,14.1,13.9,13.6,14.2]}},{"b":6,"v":{"total":[431.9,429.2,433.9,435.8,436.3,436.1,440,436.7,438.4,437.2,436.8,435.5,436.6,438.1,437],"script":[96,97.6,97.5,98.5,99.4,98.4,99.9,98.7,98.8,98.6,98.4,97.5,99.4,99.5,100.2],"paint":[329.2,325,329.5,330.2,330.1,331.1,333.3,331.4,332.8,331.9,331.7,331.3,330.5,331.8,330.1]}},{"b":7,"v":{"total":[48.7,50.9,48.1,49.4,49.3,50,48.5,49.3,49.4,49.3,49.4,49.6,49.6,50.4,49.8],"script":[9.3,9.8,9.3,9.5,9.8,9.8,9.3,9.8,9.2,9.8,9.4,9.5,9.4,9.9,9.9],"paint":[38.4,40.2,38,39,38.7,39.3,38.2,38.6,39.3,38.5,39.1,39.3,39.4,39.6,39]}},{"b":8,"v":{"total":[15.8,15.9,16.1,15.9,16.4,15.2,16.1,14.6,14.7,15.1,14.8,15.3,15.6,15,15.3],"script":[13.7,13.8,13.8,14,14.1,13,14.1,12.7,13.4,13.1,13.4,13.1,13.2,13.5,13.8],"paint":[2,2,2.2,1.2,1.7,2.1,1.6,1.8,0.7,1.2,1.4,1.1,1.8,1.5,1]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[4.7]}},{"b":11,"v":{"DEFAULT":[4.7]}},{"b":12,"v":{"DEFAULT":[3.4]}},{"b":13,"v":{"DEFAULT":[40.6]}},{"b":14,"v":{"DEFAULT":[157.5]}},{"b":15,"v":{"DEFAULT":[47.2]}},{"b":16,"v":{"DEFAULT":[277.6]}}]}, +{"f":123,"b":[{"b":0,"v":{"total":[41.6,41.9,41.1,41.7,42.3,41.9,41.7,43,42.3,41.6,42.7,42,41.7,41.5,42.3],"script":[8.1,7.8,8,8,8.1,7.9,8.1,7.7,8.5,7.9,7.8,8.6,8,8.1,8],"paint":[33.1,33.6,32.7,33.3,33.7,33.6,33.1,34.9,33.4,33.3,34.3,33,33.3,32.9,33.8]}},{"b":1,"v":{"total":[46.5,46.8,46.5,46.4,46.1,46.6,46.7,47.6,46.8,46.6,47.9,46.4,47.3,46.9,47.6],"script":[11.8,11.1,11.5,11.5,11.4,11.4,11.4,11.3,11.7,11.3,11.4,11.4,11.8,11.5,11.8],"paint":[34.3,35.2,34.6,34.4,34.3,34.8,34.9,35.9,34.6,34.8,36,34.5,35.1,34.9,35.3]}},{"b":2,"v":{"total":[17.2,16.6,16.3,17.2,17.4,15.6,15.8,15.9,16.5,16.2,17.9,16,15.9,16.3,15.8],"script":[1,1.1,0.9,0.2,1,0.3,0.9,0.6,0.2,0.2,1.2,0.9,0.6,1,0.9],"paint":[14.9,13.6,13.8,15.6,14.5,14.5,13.7,14,15.1,15,15.3,13.5,14.2,14.3,13.6]}},{"b":3,"v":{"total":[2.9,3.3,2.8,3.8,3.2,2.5,2,2.9,3.1,6.4,2.6,2.6,3.1,3.1,3.7,3.2,3.2,2.7,2.8,3,3.9,2.5,4.8,2.8,2.4],"script":[0.6,0.1,0.1,0.1,0.1,0.3,0.1,0.5,0.6,0.7,0.1,0.1,0.1,0.1,0.1,0.1,0.5,0.6,0.8,0.8,0.1,0.1,0.1,1,0.7],"paint":[2.2,2.9,2.6,1.9,0.8,1.7,1.8,1.7,1.8,1.7,2.4,1.4,1.9,2.4,2,1.9,1.5,2.1,1.5,1.4,2.6,1.6,3.2,1.7,1.6]}},{"b":4,"v":{"total":[25.7,25.3,25.2,24.5,27.2,25.8,25.9,27.3,27.6,26.6,26,25.8,24.8,25.7,26.3],"script":[7.2,6.3,6.9,6,7.3,6.2,6.1,7.4,7.3,7.8,6.3,6.2,6.1,6.7,7.1],"paint":[17.2,18,16.7,17.7,18.8,18.5,18.5,18.8,18.7,16.7,18.6,17.7,16.4,18.1,16.3]}},{"b":5,"v":{"total":[19.4,19.6,18.7,19.6,19.4,18.9,20.5,19.2,19,19.5,19.3,19.2,18.9,19.2,19.2],"script":[4,4,3.8,3.9,4.3,4,5,3.9,3.8,4.3,4.1,4.3,4,3.5,4.3],"paint":[14.4,13.9,14.1,14.9,13.9,14.1,14.6,14.5,14.1,14.5,14.4,14.1,13.8,14.9,13.8]}},{"b":6,"v":{"total":[432.9,427,425.7,426.6,427.8,430.1,430.8,432.9,427,421,421.5,429.7,429.3,426.1,429.1],"script":[95.5,88.9,92.6,90.9,92.3,94.6,94.3,94.2,91.5,89.3,90.4,93.7,93.6,88.8,93.2],"paint":[330.6,331.4,326,328.9,328.8,328.7,329.8,332,328.7,324.9,324.1,329,328.7,330.5,329.2]}},{"b":7,"v":{"total":[51.3,51,51.7,50,50.6,50.9,50.5,50.4,50.4,50.5,50.8,51.7,50.7,50.4,50.3],"script":[10.7,10.2,11.3,10.1,10.3,10.1,10.2,10.2,10.9,10.3,10.2,10.8,10.4,10.1,10.3],"paint":[39.7,39.9,39.5,39,39.3,39.8,39.4,39.3,38.7,39.2,39.6,39.9,39.4,39.5,39.1]}},{"b":8,"v":{"total":[13.2,13.5,14,13.6,14.4,13.2,13.7,13.1,14.1,13.5,14.1,13.5,13,13.5,13.5],"script":[11.2,11.9,11.9,11.4,12.3,11.1,11.6,11.2,12.2,11.6,12.4,11.4,11.4,11.6,11.5],"paint":[1.4,1.3,1.8,2.1,1.3,1.2,2,1.8,1.1,1.7,0.7,1.5,1.4,1.8,1.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[21.9]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[91.4]}}]}, +{"f":124,"b":[{"b":0,"v":{"total":[41.6,41,40.6,41.5,41.4,42.7,40.8,40.2,41,40.6,41.1,41.7,41.5,41.4,41.5],"script":[7.4,7.2,7.1,7.3,7.4,8,7.5,7.8,7.3,7.3,7.3,7.4,7.6,7.5,7.6],"paint":[33.8,33.3,33,33.7,33.6,34.2,32.9,31.9,33.3,32.9,33.4,33.8,33.4,33.4,33.5]}},{"b":1,"v":{"total":[48.1,48.1,47.4,49.3,47,47.3,48.5,48.6,48.7,47.9,49.6,49,46.6,46.9,48.2],"script":[12.5,12,11.9,12.4,11.6,11.7,12.3,12.7,12.2,11.8,12.7,12.2,11.3,11.7,12.3],"paint":[35.1,35.7,35.1,36.3,35,35.2,35.8,35.4,36.1,35.7,36.4,36.3,34.9,34.8,35.4]}},{"b":2,"v":{"total":[16.8,17.3,16.7,17.1,16.1,15.7,16.5,17,15.9,16.2,17.8,15.5,16.5,16.8,17.2],"script":[1.6,0.9,0.6,0.9,1,0.6,0.6,1,0.9,0.8,0.9,0.9,0.8,1.1,0.6],"paint":[14.2,15.3,14.6,14.9,13.8,13.5,14.6,14.2,13.8,14.5,15.6,13.1,14.2,14.9,14.5]}},{"b":3,"v":{"total":[5,3.8,2.6,2.6,2.3,2,3.4,2.8,2.5,2.2,3.2,2.9,3.7,2.6,3,2.4,3.3,2.8,2.7,3.7,2.8,2.5,2.6,2.6,3.6],"script":[0.1,0.8,0.1,0.3,0.1,0.1,0.3,0.8,0.1,0.1,0.6,0.1,0.7,0.1,0.1,0.1,0.5,0.1,0.7,0.1,0.8,0.1,0.5,0.1,0.1],"paint":[2.2,1.1,2,1.9,1.3,1.1,1.3,1.9,1.1,2,2.1,2.4,1.6,2.4,2.5,1.9,1.8,2.5,1.9,1.1,1.1,2.4,1.6,1.5,2.2]}},{"b":4,"v":{"total":[24.9,28,25.9,25.5,26,24.7,25.4,25.5,26.2,27,25.9,25.7,24.9,25.9,26.1],"script":[5.6,7.3,7.1,7.2,7.1,5.8,6.7,6.7,6,7.6,7.2,6.8,6.7,6.6,6.7],"paint":[17,18.9,17.6,17.3,17.3,17,18,17.7,18,18.2,17.2,17.4,16.5,17.9,17.3]}},{"b":5,"v":{"total":[18.6,18,19,18.4,18.4,18.3,19,17.9,18.4,19.6,19.7,18.8,18.1,18.9,19.2],"script":[3.7,3.2,3.8,3.6,3.6,3.5,3.8,3.2,3.3,3.6,4,3.7,3.2,3.7,3.7],"paint":[14.1,14,13.9,13.9,13.8,13.6,14.5,14.1,14.4,15.1,14.9,14.3,13.8,14.4,14.7]}},{"b":6,"v":{"total":[429.7,429,426.2,425.6,427.4,429.1,430.8,434.6,436,424.5,428,428.9,430.3,427.9,426.8],"script":[88.5,87,84.5,85,86.4,86.1,87.5,96.1,85.9,85,87.4,87.9,91.8,86.9,85.9],"paint":[334.5,335.1,334.9,333.6,334,336.2,336.5,331.7,343.3,332.7,333.9,334.3,331.7,334.3,334.1]}},{"b":7,"v":{"total":[51.1,52.1,51.1,49.6,51.4,49.7,50.1,49.7,50.1,49.6,49.5,51,50.9,51,51],"script":[10.3,11.5,11,10,10.5,10.2,9.9,10,10,10,9.9,10.2,10.3,10.3,10.1],"paint":[39.9,39.7,39.1,38.7,40.1,38.5,39.3,38.8,39.1,38.7,38.8,39.9,39.6,39.8,40]}},{"b":8,"v":{"total":[12.2,13.5,13.4,13.3,13.2,12.9,13.2,12.6,13.7,12.8,13.7,13.3,14.1,13.4,12.6],"script":[10.5,11.8,11.5,11.6,11.7,11,11.3,10.7,11.7,11.2,11.9,11.4,12,11.5,10.7],"paint":[1.2,1.6,0.9,0.7,0.8,1.8,1.8,1.2,1,1.5,0.9,1.2,1.9,1.5,1.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[22]}},{"b":14,"v":{"DEFAULT":[13.4]}},{"b":15,"v":{"DEFAULT":[5.2]}},{"b":16,"v":{"DEFAULT":[100.3]}}]}, +{"f":125,"b":[{"b":0,"v":{"total":[39.1,38.9,39.1,39,40.1,39.3,39.8,40.7,39,40.2,40.1,38.9,39.7,39.8,40.1],"script":[5.3,5.3,5.8,5.4,5.8,5.5,5.5,5.9,5.3,5.7,5.5,5.8,5.4,5.6,5.7],"paint":[33.3,33.1,32.8,33.2,33.9,33.4,33.9,34.4,33.2,34.1,34.2,32.7,33.8,33.7,33.9]}},{"b":1,"v":{"total":[43.9,45.1,45.2,45.3,45.3,45.3,44.7,45.1,45,44,45.4,44.7,44.1,45.7,46.7],"script":[8.5,9.1,9.4,8.8,9,9.6,8.9,9.4,9.6,8.6,9.7,8.9,8.7,9.7,9],"paint":[34.9,35.5,35.3,36,35.9,35.2,35.4,35.2,34.9,35,35.3,35.4,35,35.6,37.2]}},{"b":2,"v":{"total":[19.2,18.1,19.8,17.5,17.2,18.3,17.2,19.1,17.6,18.3,18,17,17.6,17,18.2],"script":[2.3,1.9,2,1.8,1.8,2,1.6,2.2,2.4,1.9,1.8,1.9,2,2.1,1.7],"paint":[15.5,14.2,16.2,13.7,14,14.6,14.3,15,13.8,14.8,14.7,13.6,14.2,13.4,15.1]}},{"b":3,"v":{"total":[2.8,2.8,3.2,3.6,3.9,2.8,2.5,5.3,2.8,2.6,2.5,5.8,3.5,2.5,4.1,2.4,3.1,2.4,2.9,5.9,2.8,3.1,4.1,5.4,2.7],"script":[0.9,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.6,0.1,0.2,0.5,0.1,0.1,0.1,0.1,0.8,0.2,1,0.1,0,0.7,0.1,1,0.1],"paint":[1.8,2.7,1.7,1.6,3.2,2.6,2.4,2.3,2,1.6,0.9,1.8,1.2,2.3,1.5,2.3,1.6,1.6,1.8,2.6,2.6,2.3,1.9,2.5,2.6]}},{"b":4,"v":{"total":[20.3,20.1,19.5,19.5,20.1,18.4,19.7,19.6,19.4,19.9,19.9,19.6,19.4,19.3,19.3],"script":[0.9,0.3,0.9,1.1,0.9,1,0.8,1.1,0.7,1.2,0.9,0.2,0.2,0.9,0.7],"paint":[17.7,18.8,17,17,17.5,16.4,18,17.5,17.3,16.7,17.8,17.9,18.5,16.9,17.1]}},{"b":5,"v":{"total":[16,15.5,15.5,15.4,15.3,15.6,15.3,15.4,15.4,15.4,15.7,15.7,15.1,15.3,15.8],"script":[0.6,0.3,0.6,0.6,0.5,0.3,0.5,0.6,0.6,0.6,0.5,0.3,0.4,0.6,0.5],"paint":[14.6,14.5,13.9,14.1,14.3,14.8,14,13.8,13.8,14.1,14.1,14.6,13.7,13.9,13.9]}},{"b":6,"v":{"total":[423.1,423.9,423.8,419.1,418.7,418.9,417.7,419.1,419.4,423.1,420.8,418,418.8,420.2,417.1],"script":[80.4,80,79.1,79.6,79.1,79.7,78.2,79.8,79.3,81.6,79.7,79.7,79.2,75.3,75.3],"paint":[335.1,336.8,337.6,332.3,332.3,331.8,332.4,332.4,333.2,334.5,333.9,331.1,332.6,338,335]}},{"b":7,"v":{"total":[44.8,44.7,45.2,45.1,45.9,45.4,46.1,45.5,44.9,46.1,46.3,46,45.9,46,47.5],"script":[5.7,5.6,5.6,5.7,5.7,5.6,6,5.6,5.6,6.2,6,6.1,6.2,5.8,6.1],"paint":[38.3,38.3,38.7,38.6,39.3,38.8,39.2,38.9,38.4,39,39.5,39,38.8,39.2,40.4]}},{"b":8,"v":{"total":[14.5,14.1,13.2,13.4,14.1,13.8,14,13.3,14.5,14.7,14.4,14,14.9,13.6,14.9],"script":[12.2,11.9,11.3,11.8,12.5,11.4,12.4,12.2,11.8,12.6,12.4,12.1,12.6,11.1,12.9],"paint":[1.3,2.2,1.8,1.5,0.7,1.9,1.3,1.1,1.4,2,2,1.8,2.2,1.6,2]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.3]}},{"b":11,"v":{"DEFAULT":[2.3]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[18.1]}},{"b":14,"v":{"DEFAULT":[9.7]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[51.5]}}]}, +{"f":126,"b":[{"b":0,"v":{"total":[47.1,47.5,44.5,47.8,40.9,47.3,50.2,41.2,49.9,41.7,47.1,45.1,46.8,47.5,42.4],"script":[7.5,7.3,8.5,7.9,7.6,8.3,8.5,7.2,7.6,8.1,7.7,7.5,7.5,7.5,7.4],"paint":[34.1,33.2,34.1,34.2,33.1,32.9,33.2,33.4,33.8,33.3,33.4,33.9,33,33.3,33.4]}},{"b":1,"v":{"total":[54.5,54.7,55,48.9,54.3,50.8,51.4,52.2,52.7,54.7,51.7,55.4,54.1,48.1,55.3],"script":[10.6,10.4,10.7,10.2,10.8,10.5,10.5,10.4,10.7,10.7,10.8,10.7,10.7,10.3,10.7],"paint":[35.5,34.8,35.7,35.2,35.2,35.9,34.9,35.8,34.8,35.8,36,35.9,34.9,35.5,35.5]}},{"b":2,"v":{"total":[17.5,21.3,36.2,34.9,20.1,34.4,20.4,18.3,21.5,18.1,19.4,34.9,18.4,18.2,20.4],"script":[3.5,3.6,3.5,4.2,3.7,3.6,2.8,2.6,3.5,2.1,3.2,3.1,3.9,4.5,2.8],"paint":[12.9,14.5,16.3,14.7,15.8,14.8,15.1,14.7,15.6,14.9,14.1,14.9,14.4,13.6,15.1]}},{"b":3,"v":{"total":[5.7,5.9,5.9,6,5.5,6.2,5.7,6,5.8,5.9,6.2,7,5.8,6.7,5.3,6.2,6.8,5.6,6.2,5.6,5.8,6.7,5.6,5.7,6.7],"script":[3.2,3,2.2,2.3,2.8,3.7,2.8,3.6,2.6,2.2,2.7,3.4,2.6,3.3,2.9,2.8,3.3,2.5,2.9,2.5,2.8,4,2.7,3.2,3.9],"paint":[2.3,2.7,3.2,2.4,1.8,2,2.1,2.2,2,2.6,2.9,2.9,2.6,3.3,1.3,2.4,2.5,2.8,3.2,2,2,2.6,2,2.3,1.6]}},{"b":4,"v":{"total":[23.4,21.7,21.1,36.6,21,37.8,37.3,37.2,36.2,21.7,36.7,24.6,38.5,19.9,20.7],"script":[2.2,2.8,2.4,2,2.9,3.3,2.7,2.9,2.6,2.2,3.3,2.5,4.1,2.9,2.6],"paint":[20.2,18.2,18.6,18.1,18,18.6,17.8,18.2,18.1,18.2,17.2,18.5,18,16.7,17.9]}},{"b":5,"v":{"total":[16.7,15.5,20,15.3,15.4,21.6,18.3,18,18.3,16.6,15.9,15.6,20.8,15.5,18.4],"script":[1.5,1.8,1.7,1.5,1,1.3,1.3,1.3,1.7,1.6,1.5,1.5,1.4,1.1,1.7],"paint":[13,13,13.9,13.7,13.6,13.4,13.5,13.1,13,14.1,13.6,13.7,13.3,13.8,13.4]}},{"b":6,"v":{"total":[429.3,431.9,440.1,440.7,419.8,423.2,438.4,423.4,425.7,430,439.5,441.6,446.3,436.9,425.8],"script":[83.7,84.1,82.1,83.2,80.8,82.3,83.9,82.3,82.7,85.7,82.9,83.9,86.8,84.7,83.1],"paint":[338.9,342.3,355.3,355.5,336.2,338.8,350.8,339,340.9,340.7,353.9,354.5,357.5,347.6,340.5]}},{"b":7,"v":{"total":[56,57.5,57.7,58.1,58,56.3,57.8,58,56.3,56.7,55.6,58.1,55.8,57.4,58],"script":[7.1,7.7,7.2,7.4,7.2,7.2,7.9,7.1,7.1,7.3,7.1,7,7.1,7.2,7.3],"paint":[37.6,37.1,37.8,37.9,38,37.6,38.5,38.2,37.7,37.8,37.2,38.6,37.6,38.5,38.1]}},{"b":8,"v":{"total":[15.8,30.6,14.8,17.2,15.3,31.6,15.3,31.2,14.3,18.6,14.5,14.7,18.3,15,32.1],"script":[13.4,13.1,12.9,12.9,12.2,13.6,12.3,12.8,12,13.4,11.6,12.7,13.4,13.3,14.3],"paint":[1.6,1.5,1.9,1,2,2,2.9,2.1,1.4,1,2.8,1.9,1.6,1.6,1.9]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[21.9]}},{"b":14,"v":{"DEFAULT":[48.9]}},{"b":15,"v":{"DEFAULT":[14.7]}},{"b":16,"v":{"DEFAULT":[93.7]}}]}, +{"f":127,"b":[{"b":0,"v":{"total":[50.7,49.5,50.6,49.1,49.1,50.2,48.6,48.8,50.1,49.9,49,49.2,49.1,48.3,48.8],"script":[15.9,15.5,16.1,15.6,15.5,16.5,15.5,15.8,16.1,15.9,15.4,15.8,15.7,15.5,15.8],"paint":[34.4,33.5,34,33.1,33.2,33.3,32.7,32.5,33.6,33.5,33.2,33,32.9,32.3,32.6]}},{"b":1,"v":{"total":[61.3,60.1,60.4,60.8,60.1,60.6,60.4,60.9,60.6,60.6,60.7,60,60.3,60.7,60.4],"script":[23.5,23.4,23.9,23,23.3,23.8,23.6,23.9,23.4,24,23.8,23.4,23.4,23.8,24],"paint":[37.2,36.2,36,37.4,36.3,36.3,36.4,36.6,36.8,36.2,36.5,36.1,36.5,36.4,35.9]}},{"b":2,"v":{"total":[26.2,27.8,26.2,25.8,26.8,26.5,26.6,25.6,27,26.1,27.6,28.6,25.8,26.1,27.5],"script":[10.9,10.8,10.6,10.3,11.1,10.9,10.2,10.2,10.8,10.7,10.9,12,11.1,10.5,11.1],"paint":[13.8,14.8,14.2,14.5,14.3,14.6,14.2,13.6,14.8,14.4,15.1,15.5,13.5,14.4,15.1]}},{"b":3,"v":{"total":[7.6,8.6,7.6,8.3,8.7,7.6,8,7.8,7.6,7.4,8.1,7.4,8.5,7.7,8,9.7,9.2,7.9,7.6,7.7,8.4,7.9,8.8,7.7,8.1],"script":[5.1,5.8,5.5,5.8,5.8,5.1,5.4,5.2,5.4,4.9,5.3,4.9,5.5,5.5,4.8,6.3,6.5,5.3,5.2,5,5.8,5.3,5.6,5.1,5.2],"paint":[2,2.3,2,2.4,1.6,1.6,1.8,1.7,1.2,2.2,2.2,2.3,2,1.8,3.1,2.1,2.4,2,1.5,2.6,1.6,2.6,1.8,2.5,2.8]}},{"b":4,"v":{"total":[25.1,24.5,24.6,24.4,24.1,24.2,24.5,25.7,25.4,25.3,24.2,24.2,25.6,24.5,24.1],"script":[5.7,5.7,5.6,5.9,5.9,5.6,5.9,5.7,6.3,5.6,4.9,5.3,6.5,5.9,5.6],"paint":[17.7,16.6,17.7,17,16.9,17.2,17.7,18,16.7,16.9,17.9,17.6,17.4,17,17.2]}},{"b":5,"v":{"total":[19.4,19.2,18.4,18.9,18.7,18.5,18.4,18.5,18.4,19.4,18.7,19.3,18.2,18.5,18.6],"script":[3.5,3.3,3.5,3.7,3.3,3.5,3.2,3.5,3.2,3.5,3.6,3.4,3.5,3.2,3.2],"paint":[14.7,14.3,14.2,14.2,14.6,13.9,14.4,14.4,14.6,15.2,14.1,14.9,14,14.3,13.4]}},{"b":6,"v":{"total":[519.8,521.4,516.5,527.6,536,528.1,518.9,531,526.3,515.5,516,530.4,530.2,502.9,529.9],"script":[166.2,166.7,164.9,166.2,167.1,165.3,164.7,164.9,165.8,164.8,166,166.8,165.2,167.8,165.9],"paint":[346.8,348,344.8,354.7,362.1,356.2,347.6,359.3,353.6,344.1,343,356.8,358.3,328.5,357.4]}},{"b":7,"v":{"total":[57.2,56.3,53.5,53.9,58,55,54,53.5,56,56,56.7,56.5,56.3,57.1,56.5],"script":[16.4,16.5,15.8,15.7,17.3,16.5,16.1,15.6,16.5,16.7,16.8,16.8,16.5,16.9,16.6],"paint":[39.9,38.9,36.8,37.4,39.8,37.7,37.1,37.1,38.7,38.4,39,38.8,38.9,39.2,39]}},{"b":8,"v":{"total":[19.7,18.7,18.7,16.4,17.1,17,19.5,20,16.5,19.3,18.3,19.4,18.8,20,19.4],"script":[17.3,16.5,17.2,14.4,15.2,15,18.2,18.1,14.2,17.1,16.9,17.4,16.3,17.5,17.5],"paint":[1.9,2.1,1.4,1.9,1.8,1.8,1.3,0.9,2.2,2.1,1.3,1.7,2.4,2.4,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[6.9]}},{"b":11,"v":{"DEFAULT":[6.9]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[60.9]}},{"b":14,"v":{"DEFAULT":[16.9]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[76.8]}}]}, +{"f":128,"b":[{"b":0,"v":{"total":[53,52,53.1,52.8,52,52.9,52.3,52.1,53.1,53,52.7,52.5,51.9,53.6,52.3],"script":[19.7,18.6,19.5,19.3,18.4,19.5,19.5,18.6,19.5,19.4,19.1,19.1,19.3,20.2,19.2],"paint":[32.9,33.1,33,33,33.2,33,32.3,33,33.2,33.2,33.2,33,32.2,33,32.7]}},{"b":1,"v":{"total":[59.9,61.8,58.8,59.7,59.1,59.4,60.8,59.7,60.7,60,59.3,58.8,59.5,59.8,60.6],"script":[23.8,24.4,22.7,23.4,23.6,23.1,24.2,24,24.1,23.6,22.7,22.5,23.5,23.1,24.3],"paint":[35.6,36.9,35.6,35.8,35.1,35.9,36.1,35.2,36.1,36,36.2,35.8,35.5,36.2,35.9]}},{"b":2,"v":{"total":[33.5,33.4,33.1,33.4,34.3,33.1,33.4,33.1,32,33.8,34.1,34.7,32.6,33.6,33.2],"script":[17.3,17.6,16.8,17.4,16.6,16.9,16.6,17.1,15.5,18,17.2,18.2,16.9,17,16.9],"paint":[14.5,14.5,15.2,14.2,16.4,15,15.5,13.7,15.2,13.1,15.3,14.3,14.6,15.5,14.9]}},{"b":3,"v":{"total":[13.2,10.9,11,11.6,11.9,11.1,12.1,11.3,10.5,10.3,11.2,11.6,11.7,10.1,11.6,10.7,11.3,10.3,10.6,10.4,10.3,11.5,11.5,10.6,11.8],"script":[9.5,8.5,8.4,8.7,9.4,8.5,9.4,8.7,8.1,8.6,8.4,8.2,9.2,7.7,8.6,8.5,8.6,7.9,7.6,7.8,7.6,8.7,8.9,8.5,8.8],"paint":[3.1,1.6,1.8,2.8,2.3,1.8,1.9,1.9,1.4,1,2.3,2.8,2,1.3,1.3,2,2.7,2.3,1.9,1.7,1.7,2.7,1.3,1.2,2.2]}},{"b":4,"v":{"total":[175.8,174.9,179.7,174.2,174.1,176.5,178.3,173.3,176.5,172.7,175.1,172.4,176.5,179.4,176.7],"script":[35.2,34.2,36.1,35.2,33.8,37.2,37.8,34.6,35,33.5,34.4,34.4,36.3,39.4,36.1],"paint":[138.8,137.8,141.7,136.4,138.6,137.4,139.1,136.5,139.7,137.1,138.8,136.4,138.2,137.7,138]}},{"b":5,"v":{"total":[24.4,24.6,25.1,24.6,24,24.4,24.1,24.3,24.1,24.4,24,24.1,24.1,24.3,24.3],"script":[9.1,9.1,8.7,9.4,8.8,9.1,8.7,9.1,8.9,9.2,8.6,8.8,8.9,9.1,8.9],"paint":[14.3,14.6,15.5,14.3,14.1,14.5,14.5,14.5,14.1,14.5,14,14.6,14.1,14,14.3]}},{"b":6,"v":{"total":[672.2,681.1,671.7,640.8,643.6,644.8,698.5,658.6,691.2,685.8,686.1,683,689.2,688.2,679.7],"script":[311.2,327.5,316.7,292.7,294.9,293.1,338.2,308,335.2,331.7,333.4,333.3,330.7,327.3,329.2],"paint":[354.1,346.6,348,341.3,342,344.9,353.4,343.9,349.2,347.4,345.5,342.8,351.8,353.7,343.5]}},{"b":7,"v":{"total":[63.2,63,63.1,64.2,63.2,63,64.3,63.4,63,62,62.5,61.5,65.7,62.7,64.7],"script":[23.7,23.6,23.6,24.6,23.9,23.5,24.8,24.1,23.6,23.2,23.8,22.8,24.7,23.7,24.8],"paint":[38.6,38.5,38.6,38.7,38.4,38.6,38.7,38.4,38.4,38,37.7,37.8,40.1,38.1,38.9]}},{"b":8,"v":{"total":[19.2,18.9,18.6,18.8,18.7,19.1,18.6,19.6,18.8,18.8,19.5,18.6,18.1,17.8,19.2],"script":[16.8,17.4,16.1,16.5,16.9,16.6,16.9,17.4,16.6,17,17.5,16.9,16.8,15.9,16.8],"paint":[1.7,1.4,1.4,2.3,1.2,1.4,0.7,2,2.1,0.8,1.9,1.6,0.9,1.8,2]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5.9]}},{"b":11,"v":{"DEFAULT":[6.7]}},{"b":12,"v":{"DEFAULT":[2.7]}},{"b":13,"v":{"DEFAULT":[45.8]}},{"b":14,"v":{"DEFAULT":[146.7]}},{"b":15,"v":{"DEFAULT":[41.6]}},{"b":16,"v":{"DEFAULT":[225.8]}}]}, +{"f":129,"b":[{"b":0,"v":{"total":[34.9,35.6,36.4,37.2,35.3,37.2,35.2,35.2,36.1,34.7,35.8,35.4,37.9,34.8,36.5],"script":[2.5,2.4,2.5,2.5,2.5,2.5,2.5,2.4,2.5,2.5,2.4,2.5,2.5,2.6,2.4],"paint":[31.9,32.7,33.5,34.3,32.4,34.3,32.3,32.4,33.1,31.9,32.9,32.5,34.9,31.8,33.7]}},{"b":1,"v":{"total":[39.3,39.1,39,39.2,38.9,38.2,39.3,39.6,39.2,39.1,39.9,40.4,41.2,38.5,39.3],"script":[4.8,4.9,4.8,4.9,4.7,4.8,4.8,4.9,4.9,4.7,4.8,4.8,5,4.9,4.9],"paint":[34,33.8,33.7,33.9,33.8,32.9,34.1,34.3,33.9,33.9,34.6,35.2,35.8,33.2,34]}},{"b":2,"v":{"total":[17.4,16.8,17.3,17,16.6,16.3,16.3,17.6,16.5,16.5,16.4,16.5,16.3,16.8,16],"script":[1.1,0.9,0.9,0.8,0.2,0.7,0.7,0.9,0.6,0.2,0.6,0.8,0.2,0.8,0.6],"paint":[15.3,14.2,15.3,14.4,15.1,14.4,14.4,15.2,14.6,15.2,14,14.1,15.1,14.1,13.8]}},{"b":3,"v":{"total":[2.8,2.6,2.3,3.2,3.4,2.3,5.2,3.3,2.5,3,5,5.1,2.6,2.5,2,2.3,2.6,3.6,4.7,2.9,4.5,4.6,3.8,2.9,2.4],"script":[0.1,0.2,0.1,0.4,0.8,0.1,0.1,0.8,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.2,0.1,0.1,0.1],"paint":[2.4,2.3,1.5,2.7,1.3,0.9,2.6,2.3,2.1,2.5,1.5,3,1.8,1.9,1.2,1.4,2.4,1.8,2.5,2.8,2.2,1.7,2.7,2.6,2.2]}},{"b":4,"v":{"total":[18.2,19,18.8,17.9,19,19.1,18.6,18.8,18.7,18.7,18.1,18.9,18.1,17.9,18.7],"script":[0.1,0.9,0.6,0.1,0.8,0.5,0.5,0.1,0.1,0.1,0.6,0.2,0.3,0.5,0.1],"paint":[16.5,16.7,17.2,16.4,15.8,17.2,16.5,17.6,17.1,17.5,16.5,18,16.6,15.8,16.4]}},{"b":5,"v":{"total":[15.4,15.2,14.9,15.1,15.3,15.4,15.2,15.5,15.3,15.4,14.8,14.9,15.1,15.3,15],"script":[0.1,0.3,0.1,0.2,0.4,0.3,0.1,0.2,0.2,0.3,0.1,0.1,0.1,0.1,0.2],"paint":[14.4,14.3,14.1,14,13.7,14.3,14.4,14.4,14,14.2,13.4,14.1,14.3,13.8,14.1]}},{"b":6,"v":{"total":[368.6,371.9,373,369.1,375.2,372.1,369.5,371.1,368.4,372.9,367.3,369.6,376.1,377.7,369.1],"script":[30.3,28.3,30.4,29.3,31.2,30.1,29.6,30.3,29,29,29,28.4,30,30.7,29.9],"paint":[331.5,336.9,335.9,333,337.4,335.3,333.3,334.1,332.8,337.3,331.6,334.4,339.3,340.3,332.5]}},{"b":7,"v":{"total":[40.6,41.3,41,40.6,40.6,42,41.2,40.2,40.8,41.2,40.5,40.6,42,40.8,40.9],"script":[2.5,2.6,2.6,2.5,2.5,2.6,2.5,2.4,2.5,2.6,2.5,2.5,2.6,2.5,2.5],"paint":[37.3,37.9,37.5,37.3,37.2,38.5,37.8,36.9,37.4,37.9,37.1,37.3,38.5,37.5,37.5]}},{"b":8,"v":{"total":[12.2,11.9,11.1,12.7,12,12.8,11.6,12.2,11.4,11.4,11.8,12.1,12.1,12.9,12.2],"script":[9.8,10.1,10.2,10.7,10.9,10.8,9.5,9.8,9.8,9.6,9.9,10.5,10.4,10.7,10.3],"paint":[1.9,1.1,0.9,1.1,1.1,1.9,1.9,1.8,1.5,1.7,1.7,1.6,1,1.8,0.9]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.8]}},{"b":11,"v":{"DEFAULT":[1.7]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.2]}},{"b":14,"v":{"DEFAULT":[11.4]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[60.6]}}]}, +{"f":130,"b":[{"b":0,"v":{"total":[35.6,35.2,35.2,35.5,35.5,35.4,35.3,36,35.1,35,35.4,35.3,35.1,35.5,35.7],"script":[2.6,2.5,2.6,2.6,2.6,2.5,2.5,2.5,2.5,2.5,2.5,2.6,2.4,2.6,2.5],"paint":[32.6,32.3,32.2,32.5,32.5,32.4,32.4,33,32.2,32.1,32.6,32.4,32.3,32.6,32.8]}},{"b":1,"v":{"total":[38.8,38.9,38.9,38.5,38.6,38.4,39.5,39,39.1,39.4,39.4,39.7,40.4,38.8,41],"script":[4.9,5,5,4.8,4.8,4.9,5,4.8,4.9,4.9,5,5.1,5.1,5,5.2],"paint":[33.5,33.5,33.6,33.3,33.4,33.1,34.1,33.8,33.7,34,34,34.2,34.9,33.4,35.4]}},{"b":2,"v":{"total":[15.5,16,15.1,15.5,15.9,15.6,15.8,15.8,16.2,16.4,16.2,15.2,16,16.5,16.2],"script":[0.2,0.2,0.6,0.2,0.9,0.9,0.8,0.2,0.6,0.8,0.2,0.2,0.8,1.1,0.5],"paint":[13.7,14.2,13.4,14,14.1,12.9,13.6,14.1,14.4,14.4,14.5,13.3,14.2,14.4,14.4]}},{"b":3,"v":{"total":[5.5,2.2,2.6,2.3,1.8,3.2,2.8,3.1,3.5,4,4.5,2.5,2.6,2.6,3.8,3,3.1,2,4.2,3,3.7,2.4,3.5,2.2,2.5],"script":[0.1,0.1,0.1,0.1,0.2,0.8,0.1,0.6,0.1,0.1,0.1,0.6,0.1,0.3,0.1,0.1,0.8,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1],"paint":[1.9,2.1,1.6,1.3,1.5,1.8,2.6,2.4,2.3,2.4,1.5,1.6,2.4,2.2,1.3,1.7,2.2,1.2,2.4,2.8,2.1,2.2,2.7,1.4,2.3]}},{"b":4,"v":{"total":[17.3,17.6,18.7,17.6,17.8,17.8,17.9,18.7,17.7,18.5,18.1,19,17.8,18.3,18.3],"script":[0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[15.7,16.5,17.3,15.9,16.5,16.5,17.1,16.8,16.7,17.2,16.3,18.3,16,17,16.9]}},{"b":5,"v":{"total":[14.6,15.1,14.6,14.7,14.2,14.4,15.1,14.7,14.7,15.3,15.1,14.7,14.4,14.7,15.2],"script":[0.1,0.4,0.1,0.1,0.1,0.2,0.1,0.2,0.1,0.3,0.3,0.2,0.2,0.1,0.1],"paint":[13.8,14.1,14.1,13.9,13.5,13.3,14.3,13.8,14.1,14.3,14.4,13.8,13.5,13.9,14.1]}},{"b":6,"v":{"total":[370.8,363.7,367.3,366.1,366.1,373.4,364.5,368.1,376.5,374.8,370.9,364.9,368.1,365.9,377.4],"script":[27.7,27.8,26.9,27.2,26.5,27.2,27.6,28.1,28.2,29.1,29.7,27.6,28.9,27.3,28.2],"paint":[336.3,329.5,333.9,332.3,332.4,339.4,330.4,333.4,341.5,339.2,334.3,330.8,332.6,331.9,342.4]}},{"b":7,"v":{"total":[40,39.8,39.5,39.7,39.8,40.7,41.4,40.8,40.3,41.1,40.3,40.1,39.3,40.7,40],"script":[2.5,2.4,2.5,2.4,2.5,2.5,2.6,2.6,2.5,2.6,2.5,2.6,2.5,2.6,2.5],"paint":[36.7,36.5,36.2,36.5,36.6,37.4,38,37.3,37,37.7,37,36.6,36,37.3,36.7]}},{"b":8,"v":{"total":[11.7,12.1,11.7,11.8,11.5,11.8,11.7,11.8,11.9,11.7,11.7,11.7,11.1,12.4,12.2],"script":[9.5,10.1,10.1,10.2,9.6,9.7,10.1,10,10.4,9.8,10,10.1,9.8,10.1,10.3],"paint":[2.1,1.3,1.5,1.5,1.2,1.9,1.5,1,1.2,1.9,0.8,1.4,1.3,1.8,1]}},{"b":9,"v":{"DEFAULT":[0.4]}},{"b":10,"v":{"DEFAULT":[1.7]}},{"b":11,"v":{"DEFAULT":[1.6]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.1]}},{"b":14,"v":{"DEFAULT":[9.1]}},{"b":15,"v":{"DEFAULT":[2]}},{"b":16,"v":{"DEFAULT":[45.1]}}]}, +{"f":131,"b":[{"b":0,"v":{"total":[38.5,37.9,38.2,37.9,38.2,37.7,38.5,38.7,37.8,38,38.6,37.6,38.7,38.5,37.4],"script":[4.8,4.6,4.8,4.7,4.8,4.8,4.8,4.8,4.7,4.7,4.9,4.6,4.8,4.8,4.7],"paint":[33.3,32.9,33.1,32.8,33,32.5,33.2,33.5,32.7,32.9,33.4,32.5,33.4,33.3,32.3]}},{"b":1,"v":{"total":[41.2,41.3,41.2,41.4,40.6,41.1,41.7,41.2,40.5,41.8,41,40.4,40.1,40.9,41.2],"script":[6.8,6.7,6.8,6.8,6.8,6.8,6.9,6.6,6.6,6.9,6.8,6.7,6.7,6.7,6.6],"paint":[34,34.2,33.9,34.1,33.4,33.8,34.4,34.2,33.4,34.5,33.8,33.3,33,33.8,34.1]}},{"b":2,"v":{"total":[16.2,16.5,15.4,16.3,16.7,17.3,16.6,16.9,16.5,17.7,16.3,19,16.3,17.1,16.5],"script":[0.5,0.9,0.6,0.2,0.9,1.1,1,1,0.8,1.3,0.2,0.8,0.6,0.7,0.9],"paint":[14.1,14.6,13.2,15.1,14.1,14.3,13.5,14.9,15,14.5,14.7,16.2,15,14.8,14.6]}},{"b":3,"v":{"total":[2.4,2.4,4,2.6,2.3,3.2,2.5,3,2.6,2.6,3.4,4.6,2.6,2.7,3.2,2.3,2.7,2,4.1,2.4,3.2,3.7,2.9,4,2.5],"script":[0.6,0.3,0.1,0.1,0.1,0.8,0.5,0.9,0.1,0.2,1,0.2,0.1,0.1,0.9,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.4,0.6,0.4],"paint":[1.4,2,1.1,1.5,2.2,1.4,1.9,2.1,2.4,1.8,1.9,1.6,1.9,1.7,1.8,1.9,2.6,1.1,1.7,2.2,1.8,2.2,2.3,1.9,2]}},{"b":4,"v":{"total":[17.9,18.3,18.6,18,18.5,17.6,18.2,18.9,18.5,19,18.3,18.9,18.7,18.1,18.4],"script":[0.1,0.2,0.7,0.1,0.8,0.1,0.5,0.5,0.1,0.1,0.1,0.3,0.5,0.1,0.6],"paint":[16.3,16.8,16.7,16.5,16.1,16.5,15.1,16.7,16.9,18.2,16.8,17.3,16.7,16.7,15.4]}},{"b":5,"v":{"total":[15,14.8,15.8,14.9,14.7,15.2,14.8,14.7,14.7,15.2,14.9,15.2,14.9,15.7,15.1],"script":[0.1,0.4,0.4,0.3,0.1,0.1,0.2,0.3,0.4,0.1,0.1,0.4,0.1,0.3,0.1],"paint":[13.9,13.7,14.7,13.9,13.9,14.3,13.8,13.9,13.6,14.1,13.8,14.1,13.8,14.5,14.4]}},{"b":6,"v":{"total":[407.3,403.6,404.8,407.1,404.3,403.8,406.1,405.7,406,406.2,404.4,405,402.8,405.1,407.7],"script":[60,59.2,60,61.1,59.8,59,59.6,60.5,58.8,60.4,59.4,58.7,57.4,60.2,58.8],"paint":[340.5,337.6,338.1,339,337.8,338.2,339.9,338.4,340.5,339.1,338.1,339.7,338.7,338.3,342.2]}},{"b":7,"v":{"total":[44.7,43.7,43.5,45.2,43.1,44,43.1,43.7,43.8,44.2,43.3,44,44,43.9,44],"script":[4.6,4.2,4.4,4.3,4.3,4.4,4.3,4.5,4.4,4.4,4.3,4.4,4.5,4.4,4.3],"paint":[39.3,38.6,38.3,40,38,38.8,38,38.4,38.5,38.9,38.1,38.7,38.7,38.6,38.8]}},{"b":8,"v":{"total":[12.9,12.9,12.3,12.4,11.9,11.9,13.1,12.4,13.1,12,12.6,12.1,12,11.8,13.1],"script":[11.1,10.8,10.4,10.8,10.4,9.9,11,10.6,10.8,10.6,10.7,10.6,10.9,9.9,10.7],"paint":[1.7,1.8,1.8,1.1,1.3,1.9,1.3,1.3,1.2,0.4,1.1,1.4,0.4,1.8,2.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.8]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[13.6]}},{"b":14,"v":{"DEFAULT":[9.8]}},{"b":15,"v":{"DEFAULT":[2.5]}},{"b":16,"v":{"DEFAULT":[45.7]}}]}, +{"f":132,"b":[{"b":0,"v":{"total":[46.2,45.7,45.7,44.2,44.4,45.4,45.3,45,44.8,45.8,45.3,45.3,46.6,45.6,45.3],"script":[10.2,9.5,9.6,9.3,9.3,10,9.8,10,10,9.8,9.9,10.1,10.2,10,9.5],"paint":[35.5,35.8,35.7,34.5,34.6,34.9,35.1,34.6,34.4,35.5,35,34.8,35.9,35.2,35.3]}},{"b":1,"v":{"total":[50.1,47.7,48.2,49.1,49.1,48.5,49.4,49.1,48.9,48.7,49.5,48.1,48.7,49.5,49.6],"script":[12.5,12,11.9,12.2,12.7,12,12.6,12.6,12.6,12.4,12.6,11.7,12.6,12.2,12.7],"paint":[37.2,35.3,35.8,36.4,35.9,36.1,36.4,36.1,35.9,35.9,36.5,36,35.7,36.8,36.5]}},{"b":2,"v":{"total":[39.3,37.4,15.8,39.1,35,39.6,15.8,35.3,16.9,38.7,35.4,35.8,38.8,36.1,17],"script":[1.1,1.9,1.4,0.3,1,1.4,1.2,1.9,1.1,1.3,1.3,0.3,1,1.7,1.2],"paint":[16.6,14.2,13.8,17.3,14.8,15.3,13.2,13.7,14.2,17.1,14.1,13.8,15.7,14.7,14.8]}},{"b":3,"v":{"total":[3.1,2.6,5.5,2.5,2.3,3.1,2.7,2.3,5.6,2.5,3.1,2.8,2.4,3,2.2,2.4,2.7,2.4,4.4,2.6,5.1,5.8,2.7,4,3.4],"script":[0.9,0.3,0.1,0.1,0.1,0.9,0.1,0.1,1,0.1,0.4,0.1,0.3,0.8,0.1,0.1,0.5,0.1,0.3,0.1,0.1,0.1,0.5,0.9,1],"paint":[2.1,2.2,1.7,1.6,0.9,2,2.5,1.1,1.4,2.4,1.5,2.6,1.6,1.6,2.1,2.3,0.6,2.2,1.6,2,2.2,2.2,1.5,1.7,2.3]}},{"b":4,"v":{"total":[18,18.9,18,19.6,19,18.5,18,18.7,17.7,18.2,18.9,18.9,18.6,19.4,19],"script":[0.4,0.1,0.1,0.7,1.1,0.5,0.3,0.6,0.5,0.1,0.1,0.3,0.1,0.1,0.2],"paint":[16.4,17.5,16.4,16.7,16.8,16.7,15.9,16.8,15.9,16.8,17.4,16.8,17.4,17.8,17.7]}},{"b":5,"v":{"total":[15.3,15.3,15.4,16.6,15.9,15.1,15.3,17.8,15.6,15.4,15.9,15.2,15.9,15.9,15.3],"script":[0.1,0.5,0.4,0.5,0.1,0.3,0.1,0.5,0.4,0.4,0.4,0.2,0.4,0.4,0.1],"paint":[14,13.7,13.7,14.8,14.9,14,14,15.9,13.7,13.9,14.5,13.8,14.2,14.2,14]}},{"b":6,"v":{"total":[467,459.3,447.3,459.7,460.1,455.2,467.4,444.4,458.2,460.4,448.3,457.5,467.4,449.1,462.8],"script":[111.7,107.8,108.1,107.6,107,107.9,111.8,107.4,107.6,108.1,109,106.6,112.2,110,110.6],"paint":[348.1,345,332.6,345.5,346.1,340.7,348.7,330.5,344,345.6,332.6,344.1,348.6,332.5,345.3]}},{"b":7,"v":{"total":[49.1,49.1,48.9,49.1,50.1,49.5,49.2,49,47.9,48.9,48.2,48.2,47.8,48.6,50.2],"script":[8.8,8.8,8.8,9.5,9.5,9.4,9.3,8.7,8.8,8.9,9.5,8.7,8.8,8.8,9],"paint":[39.4,39.4,39.2,38.7,39.7,39.2,39,39.4,38.2,39.2,37.8,38.6,38.1,38.9,40]}},{"b":8,"v":{"total":[12.6,12.4,13,12.3,12.9,11.7,12.2,12.9,13,12.8,13.1,12,12.9,13.3,13.4],"script":[11.1,10.7,11,10.7,10.8,10.6,10.8,11.4,11.4,10.9,11,10.5,11.3,11.3,11.5],"paint":[1,1.6,1.6,1.5,2.1,0.4,1.3,1.3,0.4,1.9,2,1.5,1.5,1.7,0.5]}},{"b":9,"v":{"DEFAULT":[0.4]}},{"b":10,"v":{"DEFAULT":[2.2]}},{"b":11,"v":{"DEFAULT":[2.3]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[17.7]}},{"b":14,"v":{"DEFAULT":[5.5]}},{"b":15,"v":{"DEFAULT":[1.9]}},{"b":16,"v":{"DEFAULT":[49]}}]}, +{"f":133,"b":[{"b":0,"v":{"total":[40.6,40.7,39.8,39.9,39.5,39.9,39.1,39.6,39.8,39.9,40.3,40.1,40,40,39.7],"script":[7.1,7.2,7,7,7.1,7.2,6.7,6.8,7.1,7.1,7.4,7,7.2,7.3,7.1],"paint":[33.1,33.1,32.3,32.6,32.1,32.3,32,32.3,32.3,32.4,32.5,32.8,32.3,32.3,32.2]}},{"b":1,"v":{"total":[43.4,42.6,41.9,43.5,43,43.4,41.9,43.7,43.1,43.8,44.1,42.2,43.4,43.3,44.1],"script":[8.8,8.3,8.4,9.1,8.7,8.7,8.9,9.1,9.3,9.1,8.9,8.4,8.9,9.1,8.9],"paint":[34.2,33.9,33,34,33.9,34.2,32.5,34.2,33.4,34.3,34.7,33.4,34,33.8,34.8]}},{"b":2,"v":{"total":[16.2,16.6,16.8,16.7,15.9,16.3,16.5,16.2,16.2,16.3,15.8,16.5,16.7,15.5,16.5],"script":[1.4,1.7,1.3,1.7,1,1.3,0.9,1.3,1.4,1.3,1.2,0.6,0.9,1.1,1.7],"paint":[13.5,13.3,13.9,14.1,13.6,13.8,13.4,13.8,13.6,13.5,12.9,14.3,14.5,13.4,13.2]}},{"b":3,"v":{"total":[5.9,2.3,2.9,2.9,2.8,3.1,2.7,2.5,4,3.1,3.5,2.6,3.4,6.7,4.2,5.4,3.3,2.9,2.8,2.7,2.8,2.8,3,3,3.3],"script":[0.6,0.1,0.7,0.6,0.8,0.1,0.5,0.2,0.8,1.1,0.5,1.1,0.4,0.8,0.1,0.1,0.1,0.1,0.6,0.5,0.8,1,0.7,0.2,1.1],"paint":[1.6,2,1.6,2.2,1.2,2.9,2.1,1.3,1.3,1.9,1.1,1.5,2,1.8,2.3,2.5,2.4,2.6,1.6,1.2,1.9,1.3,2.2,2.7,2.1]}},{"b":4,"v":{"total":[20.9,20.3,20.2,20.7,20.4,20.1,20.4,20.4,20.4,20.7,20.3,22.4,21.2,19.9,20.1],"script":[1.9,1.6,1.5,1.9,2,1.4,1.8,2.2,1.6,1.4,1.1,1.4,1.7,2.1,1.3],"paint":[16.8,17,17.8,17.5,16.5,17.7,17.6,17,17,18.2,17.7,17.6,18,16.6,16.7]}},{"b":5,"v":{"total":[16.2,16.5,15.8,15.9,15.8,16.2,15.8,15.5,16,15.5,15.9,16,15.7,16,15.8],"script":[0.9,0.7,0.7,0.9,0.7,1,1,0.7,0.9,0.7,0.7,0.9,0.7,1,0.7],"paint":[14.3,14.9,13.8,14.2,14.3,14.2,13.9,14.1,14.2,13.8,14.5,14.4,14.3,14.3,14.1]}},{"b":6,"v":{"total":[394.7,391.9,396,396.4,394.5,403,391.7,395.4,392.7,393.8,394.1,396.5,396.5,399.1,393.1],"script":[67.8,68.6,70.3,67.1,67.5,67.7,69,68.3,68.3,69.4,68.1,68.7,69.5,69.7,67.1],"paint":[320.3,316.5,318.9,322.7,320.6,328.7,316.2,320.4,317.8,317.9,319.3,321.2,320.4,322.5,319.6]}},{"b":7,"v":{"total":[45.1,44.5,44.3,44,44.1,44.7,43.8,44.9,44,43.9,43.7,44.2,44.1,44.7,44.3],"script":[6.3,6.6,6.7,6.7,6.5,6.7,6.7,6.6,6.6,6.3,6.3,6.7,6.5,6.7,6.6],"paint":[38,37,36.7,36.5,36.7,37.1,36.3,37.4,36.6,36.7,36.5,36.7,36.8,37.2,36.9]}},{"b":8,"v":{"total":[13.2,15.4,13.5,13.2,14,13.1,13.3,12.9,15.1,13.4,14.6,13.9,13.5,13.9,15.4],"script":[11.4,13.5,12,11.7,11.7,11.3,11.8,11.5,13,11.9,13,11.8,12,12,13.3],"paint":[1.7,1.1,1.5,1.5,1.5,1.1,1.4,0.4,2,1.4,0.5,1.1,1.3,1.9,2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[23.3]}},{"b":14,"v":{"DEFAULT":[33.7]}},{"b":15,"v":{"DEFAULT":[11.8]}},{"b":16,"v":{"DEFAULT":[77.6]}}]}, +{"f":134,"b":[{"b":0,"v":{"total":[43,44.2,46,43.4,45.8,42.6,44,44.3,45.1,44.4,43.5,46.1,43.2,44.5,44.2],"script":[8.8,8.8,9.6,8.9,9.7,8.9,9.9,9.4,9.8,9.8,9.1,10.1,8.9,9.3,9.4],"paint":[33.7,35,36,34.1,35.7,33.3,33.7,34.5,34.9,34.2,34,35.6,33.9,34.8,34.3]}},{"b":1,"v":{"total":[49.3,46.6,49.4,49.2,47.5,48.8,48.2,48.3,48.6,49.1,46.3,48.4,48.5,47.3,48.8],"script":[12.2,11.5,11.7,12.5,11.6,11.7,11.8,12.2,12.2,12.5,11.4,12,11.8,12.4,11.7],"paint":[36.7,34.4,37.2,36.3,35.5,36.6,35.9,35.7,36,36.2,34.4,35.9,36.3,34.4,36.7]}},{"b":2,"v":{"total":[19.2,19.1,20.5,21.6,19.3,19.5,20.1,19.7,20,19.9,19.6,19.4,19.3,19.7,19.1],"script":[3.1,3,4,3.7,3.3,3,3.7,3.6,3.3,3.6,3.6,3.2,3.5,4.2,3.1],"paint":[14.6,15.2,15.4,15.1,13.7,15.6,14.7,14.8,15.2,14.6,14.6,14.3,14.5,13.8,15]}},{"b":3,"v":{"total":[4.4,3.7,4.2,5,4.2,3.9,4.1,4.1,4,4.9,4.1,4.6,5,4.6,5,3.8,3.8,4.3,4.5,4.2,3.9,4.9,4.3,4.3,5],"script":[1.2,1.2,1.8,1,2,1.1,1.1,1.6,1.8,2.2,1,1.3,2.4,1.8,1,1.5,1.8,1.8,1.8,1.8,1.2,2,1.5,2.3,1.1],"paint":[2.8,0.8,2.3,2.7,2.1,2.3,2.9,1.4,2.2,1.3,2.9,3.2,2.5,2.6,3,1.6,2,1.6,1.9,1.7,2.5,1.9,1.8,1.8,3]}},{"b":4,"v":{"total":[20.6,20.7,20.8,20.8,20.9,19.4,20.9,20.9,20.6,20.1,20,21.1,19.8,20.9,20],"script":[2.2,1.7,2.4,1.4,1.5,1.8,2.4,1.9,1.3,1.6,1.1,2.3,2,2.4,2.3],"paint":[17.1,17.4,17.1,18.3,17.3,15.3,16.6,17.8,18,16.8,17.7,17.1,16.2,16.4,16.3]}},{"b":5,"v":{"total":[18.8,18.6,19.8,18.6,19.2,18.4,18.6,19.1,18.8,20.2,19.8,18.8,18.2,19.8,18.6],"script":[2.8,3.2,3.3,3.1,3.3,3,3.3,3.3,3.4,3.1,3.2,3.3,2.8,3.5,3.4],"paint":[15.1,14.2,15.8,14.7,15.1,14.6,14.6,14.8,14.3,16.2,14.8,14.7,14.3,15.7,14.5]}},{"b":6,"v":{"total":[444.7,443.6,445.3,443.5,445.7,448.6,444.5,450.1,446.2,442.4,445.8,448.7,447.2,444.9,448.7],"script":[97.1,101.1,99.5,100.4,101.2,100.5,98.5,100.7,101.4,99.5,98.8,97.7,102.1,98.4,100.4],"paint":[340.7,335.8,339.2,336.4,337.8,341.4,339.3,342.6,338,336.3,340.3,344.3,338.4,339.9,341.5]}},{"b":7,"v":{"total":[49.9,50.7,50.5,51.2,50.2,49.4,49.7,50.9,48.9,49.3,47.8,48.9,48.9,48.9,48.4],"script":[8.8,8.9,8.8,8.4,8.9,8.7,8.8,9.2,8.6,8.8,8.9,8.6,9,8.5,8.5],"paint":[40.1,40.9,40.9,41.9,40.4,39.9,40,40.9,39.4,39.6,38.1,39.5,39,39.6,39]}},{"b":8,"v":{"total":[16.2,16.2,15.3,15.8,15.7,15.3,14.7,16.9,15.6,15.1,15.7,15.3,16,17.1,15.4],"script":[14.4,13.5,13.1,13.6,13.8,13.7,13.3,14.4,13.9,13,13.4,13.2,14.1,14.9,13.8],"paint":[1.8,2.6,1.1,2.1,1.3,1,1.3,0.6,1.7,2,2.2,1.7,1.2,2,1.5]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.8]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[28.3]}},{"b":14,"v":{"DEFAULT":[55.9]}},{"b":15,"v":{"DEFAULT":[20.5]}},{"b":16,"v":{"DEFAULT":[108.4]}}]}, +{"f":135,"b":[{"b":0,"v":{"total":[44,42.6,42.6,42.9,43.4,43.2,43.9,42.3,42.2,43,43.2,42.8,42.5,43.2,43.8],"script":[9.2,9,9,8.9,9.6,9,9.5,8.5,9,9.4,9.4,8.5,8.7,8.9,8.7],"paint":[34.4,33.2,33.2,33.5,33.4,33.7,34,33.4,32.8,33.2,33.4,33.8,33.3,33.8,34.6]}},{"b":1,"v":{"total":[50.4,49.8,49.1,49.4,49.9,51.5,50.9,48.9,48.9,49.1,48.8,49.2,49.2,49.2,49.1],"script":[12.8,13.3,13.2,13,13.2,13.5,13.6,13.2,13,12.8,12.7,12.9,12.7,13.2,12.6],"paint":[37,36.1,35.4,35.9,36.2,37.6,36.9,35.3,35.4,35.8,35.7,35.9,36,35.6,36.1]}},{"b":2,"v":{"total":[29.1,28.3,28.5,28.9,28.1,28.4,28.4,27.7,28.4,28.3,30.6,28.4,27.1,27.9,27.8],"script":[13,12.6,12.5,13.1,12,12.3,12.6,12.3,11.7,12.4,13.4,12.4,11.4,12.2,11.6],"paint":[14.5,13.2,14.2,13.9,14.3,14.8,14.5,13.5,15.7,14.3,15.6,13.7,14.6,14.2,14.4]}},{"b":3,"v":{"total":[13.4,13.5,12.3,12.9,12.4,12.6,13.4,12.5,13.8,14.2,13.1,12.7,13.2,13.3,13.8,13.6,13.2,12.8,12,14,13,11.7,13.3,12.7,12.7],"script":[10.4,10.4,9,9.7,9.4,10,10.1,9.5,10.7,10.8,9.9,10.3,10.1,10.4,10.3,11,9.7,10,9.3,10.5,9.7,9.5,10.2,10,9.7],"paint":[2.6,2.3,2.8,3.1,2.8,0.5,3.1,2.8,2.9,2.2,2.8,1.3,2.1,2,3.3,2.1,3.3,1.9,1.8,3.4,2.4,1.4,2.3,2.6,2.3]}},{"b":4,"v":{"total":[30.4,28.8,29.7,30,28.3,28.5,29.4,28.9,29.7,29.9,28.4,29.5,29.7,30.9,32.2],"script":[11,10.1,10.7,10,9.8,9.3,10.2,10.3,10.6,10.3,10,10.6,10.3,11.8,12.1],"paint":[17.8,17.5,17.9,18.6,16.8,18.2,17,17.3,17.6,18.3,17.2,17.3,17.5,16.6,18.7]}},{"b":5,"v":{"total":[20.6,20.7,21.1,21.3,20.4,21.2,21.7,21.9,20.5,21.7,21,21.9,20.5,20.9,21.3],"script":[5.2,5.4,5.2,5.5,5,5.2,5.6,5.6,5,5.2,5.5,5.6,5,5.3,5.6],"paint":[14.6,14.7,14.8,15,14,14.6,15.3,15.5,14.4,15.1,14.1,15.5,14.3,14.8,14.9]}},{"b":6,"v":{"total":[446.8,442.3,446,448.3,447.6,446.9,450.6,439.7,445,440.8,446,446.2,449.1,445.6,447.4],"script":[99.9,97.5,99.3,103.3,104.5,100.6,102.2,99,98.3,99.9,98.4,100.4,101.2,102.5,100],"paint":[339.7,338.2,339.9,338,336.4,339.6,341.4,334,340,334.2,341,339.2,341.2,336.4,340.7]}},{"b":7,"v":{"total":[56.9,54.9,54.1,53.4,54.8,55.4,54.2,53.6,54.1,54.3,53.4,53.4,53.5,52.6,53.9],"script":[13.6,12.9,13.8,13.4,13.7,13.7,13.6,13.2,13.1,13.5,13.5,13.3,13.3,13.5,13.2],"paint":[42.3,41.1,39.4,39.1,40.2,40.8,39.7,39.5,40,39.9,39,39.2,39.3,38.3,39.8]}},{"b":8,"v":{"total":[16.6,16.6,17,17.8,17.3,17,16.8,16.3,18,17.5,15.7,16.5,16.8,16.3,15.7],"script":[14.4,13.9,14.8,16.3,14.9,14.8,14.9,15.1,16.2,15.6,13.6,14.2,15,13.6,14.2],"paint":[2,2.6,1.3,1.4,1.9,2.2,1.8,0.4,0.4,1.8,2,2,1.7,2.1,1]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[4.2]}},{"b":11,"v":{"DEFAULT":[4.2]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[32.4]}},{"b":14,"v":{"DEFAULT":[53.8]}},{"b":15,"v":{"DEFAULT":[19.6]}},{"b":16,"v":{"DEFAULT":[108.5]}}]}, +{"f":136,"b":[{"b":0,"v":{"total":[47.7,44.6,45.2,46.7,47,46.8,46.8,44.9,45.7,47.7,45.4,46.5,46.2,45.9,46.5],"script":[12.4,11.1,10.8,11.3,10.6,11.7,11.6,11.2,11,11.4,10.5,11.8,11.6,10.6,11.6],"paint":[34.8,33.1,33.9,35,36,34.7,34.8,33.2,34.3,35.9,34.4,34.3,34.1,34.9,34.4]}},{"b":1,"v":{"total":[51.6,49.1,49.7,51.2,50.1,49.6,49.3,50.4,50,49.3,50.4,49.4,50.4,49,49.9],"script":[14.4,13.7,14,15.3,14.9,14.3,14.4,14.5,14.8,14.5,14.5,14.2,14.5,13.7,14.4],"paint":[36.7,34.9,35.2,35.5,34.8,34.8,34.2,35.5,34.8,34.4,35.5,34.7,35,34.8,35.1]}},{"b":2,"v":{"total":[24.4,22.6,22.7,23.1,23.8,23.2,23.7,23.8,22.9,22.8,23.2,23.1,24.4,24.4,22.2],"script":[7.4,7,5.8,6.7,7,6.8,7.4,6.6,6.1,6.3,6.6,6.7,7.3,7.4,6],"paint":[15.4,14.1,13.7,15.6,15.4,14.9,14.7,15.9,15.7,14.8,15.3,14.6,14.9,15.1,13.4]}},{"b":3,"v":{"total":[7.8,7.2,7.1,6.1,6.8,6.7,6,6.6,6.8,6.2,6.2,6.7,6.8,6.9,6.9,7.2,6.6,7.1,6.6,6.8,7.3,7.2,7.3,6.6,7.1],"script":[4,4.6,3.8,4.2,4.5,5,4.3,4.3,4.2,3.6,4.2,4.2,3.4,4.3,4.2,4.3,3.9,4.3,3.9,4.4,4.8,4,4.6,3.8,4.1],"paint":[3.6,2.2,2.8,1.3,1.5,1.6,1.4,2.2,2.4,2.4,1.2,2.2,3.2,1.9,2.4,2,1.6,2.6,2,1.9,1.6,3,2.2,2.7,2.1]}},{"b":4,"v":{"total":[22.6,23.9,23.4,24,24.1,24.1,23.3,23.7,22.9,23.8,23.2,22.8,22.5,23.4,23.4],"script":[4.6,4.8,4.6,4.9,4.4,4.6,4.5,4.6,4.7,4.2,4.4,3.9,4.4,4.4,4.5],"paint":[16.5,17.7,17,17.8,17.8,18.3,17.6,18.1,16.2,18.2,17.4,16.5,16.7,17.4,17.3]}},{"b":5,"v":{"total":[22.8,23.4,22.4,23.6,22.5,23.2,22.2,23.5,22,23.4,23.2,22.3,22.3,23.1,22.6],"script":[7.1,6.8,6.5,6.5,6.6,6.8,6.7,6.8,6.7,6.8,6.6,6.8,6.6,6.7,6.1],"paint":[14.8,15.8,15.1,15.8,14.9,15.4,14.1,15.6,14.6,15.6,15.8,14.1,14.6,15.5,15.5]}},{"b":6,"v":{"total":[457.2,458.9,458.6,458.7,455.9,457.1,458,457.1,459.6,459.5,453.9,458.3,456.2,455,457.7],"script":[117.2,112.8,115,109.6,110.4,110.8,111.3,110.4,111.3,113.5,109,111.4,109.1,110.2,112.4],"paint":[333.2,339.4,336.9,342.4,338.8,339.7,340,340,341.7,339.2,338.1,340.2,340.4,338.1,338.6]}},{"b":7,"v":{"total":[52.5,52.4,54.3,52,52.6,53.8,53.6,52.9,53.4,52.9,52.3,53.7,51.2,52.1,52.7],"script":[13.1,13,13.5,12.4,13.1,13.3,13.3,12.4,12.8,12.7,12.6,13.1,12.2,12.2,12.9],"paint":[38.5,38.6,39.9,38.7,38.5,39.7,39.4,39.7,39.7,39.2,38.9,39.6,38.1,39,38.9]}},{"b":8,"v":{"total":[18,17.9,18.1,16.6,17.5,17.7,17.4,16.8,17.4,17.4,17.4,17.2,17.8,18.4,18.4],"script":[16.1,16.2,16.3,14.9,15.6,15.3,15.2,14.7,15.9,15.6,15.4,14.9,15.6,16.2,16.6],"paint":[1,1.6,1.7,1.5,1.2,1.8,2.1,2,0.5,1,1.9,2.2,1.4,1.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[4.5]}},{"b":11,"v":{"DEFAULT":[4.5]}},{"b":12,"v":{"DEFAULT":[1.4]}},{"b":13,"v":{"DEFAULT":[35.3]}},{"b":14,"v":{"DEFAULT":[60.5]}},{"b":15,"v":{"DEFAULT":[22.2]}},{"b":16,"v":{"DEFAULT":[104.4]}}]}, +{"f":137,"b":[{"b":0,"v":{"total":[38.6,41.1,39.6,41.6,39.8,42.1,40,39.9,42.1,40,40.1,39.3,40.1,39.4,43.2],"script":[6,6.4,6.2,6.4,6.6,6.5,6.5,6.6,6.2,6.6,6.6,6.3,6.7,6.5,6.8],"paint":[32.2,34.3,32.9,34.7,32.9,35.2,33,32.9,35.4,33,33.1,32.5,33,32.4,36]}},{"b":1,"v":{"total":[47.6,45.2,44.9,47.2,45.3,45,45.3,46.9,45.4,46.2,47.2,45,46.2,45.6,45.4],"script":[10.3,9.9,9.7,9.9,9.9,9.6,10.1,9.4,10.1,10.2,9.8,10.1,9.9,9.9,9.3],"paint":[36.8,34.9,34.8,36.8,34.9,35,34.8,37,34.9,35.6,36.9,34.4,35.9,35.3,35.6]}},{"b":2,"v":{"total":[19.7,19.6,18.9,18.8,19.6,19.9,21.3,19.4,18.3,19.5,19.7,19.6,19.2,19.1,20.2],"script":[3.8,3.8,3.7,3.6,3.3,4,4.1,3.6,3.1,3.6,3.4,3.7,3.3,3.4,3.4],"paint":[14.1,14.7,13.9,13.6,15,14.5,16,13.8,12.4,14.1,15.2,14.8,14.6,14.5,15.8]}},{"b":3,"v":{"total":[5.3,5.6,6.1,4.5,6,5.1,5.3,4.7,5.2,4.6,5.2,5.4,5.4,5.6,4.9,5.6,5.2,5.3,5.2,6.6,5.6,5.1,5,5.3,4.8],"script":[3.2,2.4,3.2,2.4,2.7,3,2.2,2.7,2.8,2.5,2.5,2.9,2.9,3.1,2.2,3.2,3,2.7,2.4,3.4,3.4,2.7,2.7,2.3,2],"paint":[2,2.4,2.4,1.2,2.6,2,2.8,1.2,1.3,1.2,2.6,2.4,2.4,2.4,2.6,2.3,2,1.4,1.5,3.1,2.1,2.3,2,2.8,2.6]}},{"b":4,"v":{"total":[21,21.1,20.7,20.7,21.8,20,20.9,21.1,22.2,21.3,21.5,20.6,22.4,21.2,21.4],"script":[2.6,2.6,2.5,2.5,2.7,2.2,2.9,1.9,2.5,2.4,2.5,1.9,2.3,3,2.7],"paint":[16.3,17.6,16.1,16.3,18.1,16.5,15.7,18.2,18.6,17.5,16.5,17.1,18.5,16.7,17.2]}},{"b":5,"v":{"total":[16.4,15.6,16,16,16.6,16.6,16.2,16.6,16.9,16.7,16.5,16.2,16,16.6,16.8],"script":[1.3,1.2,1.2,1.2,1.2,1.3,1,1.2,1.3,1.3,1.2,1.2,1.2,1.3,1.3],"paint":[14.5,13.7,14.1,14.1,14.4,14.4,14.4,15,14.4,14.5,14.3,14.3,14,14.4,14.8]}},{"b":6,"v":{"total":[408.3,405.8,400.6,398.4,409.1,399.7,398.2,401.5,401.5,400.4,403.1,401.9,404.9,413.1,405.2],"script":[66.7,63.8,64.3,60.6,64.5,63.4,63,61.8,63.3,61.3,63,63.3,63.3,65.4,63.1],"paint":[334.9,335.2,329.5,331,337.9,329.5,328.5,333.1,331.4,332.4,333.4,332,334.9,341.1,335.4]}},{"b":7,"v":{"total":[47.2,44.8,45,46.5,46.8,45.2,45.4,45,47.5,46.1,45.7,45.1,44.6,46.1,45],"script":[6.1,6.1,6.2,6.9,6.1,6.4,6.6,6.1,6.8,6.1,6.7,6.4,6,6.8,6.5],"paint":[40.2,37.8,37.9,38.6,39.8,37.9,37.9,38,39.8,39.1,38.1,37.8,37.7,38.4,37.7]}},{"b":8,"v":{"total":[15.5,15.9,14.2,14.9,15,15.7,16.5,14.7,16.4,14.8,16.6,15.8,15.4,16.4,14.3],"script":[13.6,13.8,12.9,12.9,12.8,13.8,14.3,12.7,14.9,13.4,14.2,14.7,13.1,14.5,12.8],"paint":[1.8,2,0.9,1.8,1.8,1.4,2,1.9,1.4,1.3,2.3,1,1.3,1.8,0.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[27.7]}},{"b":14,"v":{"DEFAULT":[29.4]}},{"b":15,"v":{"DEFAULT":[11]}},{"b":16,"v":{"DEFAULT":[88.6]}}]}, +{"f":138,"b":[{"b":0,"v":{"total":[38.9,38.9,40.6,38.4,40.3,39.1,39,38.8,40.3,37.1,39.7,36.9,38.9,38.6,38.1],"script":[5.7,5.5,5.2,4.9,5.5,5.7,5.5,5.2,5.5,5.5,5,4.8,5,5.3,5],"paint":[32.9,33,35,33.1,34.4,32.9,33,33.2,34.4,31.3,34.2,31.7,33.5,32.8,32.7]}},{"b":1,"v":{"total":[46,44.3,44.1,44.4,45.5,44.5,45.3,45.5,44.1,44.8,44.4,44,45.3,44.1,45.2],"script":[10.6,9.8,9.5,9.5,9.7,9.8,10.3,10.1,9.7,9.9,9.9,9.6,10.4,9.7,10.1],"paint":[34.9,34.1,34.2,34.4,35.3,34.3,34.5,35,34,34.5,34,34,34.4,34,34.6]}},{"b":2,"v":{"total":[17.9,17.6,17.7,17,17.2,17.6,17.3,17,16.6,17.5,17.5,17.3,17.6,17.3,16.7],"script":[2.3,1.5,1.5,1.4,2,1.8,1.8,1.4,2.1,2,1.8,1.6,1.4,1.1,1.6],"paint":[14,14.8,14.5,14.2,14.1,14,14.5,14.3,12.9,14,13.3,14.1,14.2,14.3,13]}},{"b":3,"v":{"total":[3.1,3.3,2.6,5.6,4.4,3,2.8,3.4,2.9,2.8,3.2,3.5,3.8,3.3,3.5,3.3,2.7,2.5,3.4,3.6,6.2,5.4,4,4.7,2.6],"script":[0.5,0.1,0.5,0.7,0.9,0.7,0.9,0.1,0.1,0.4,0.5,0.9,0.9,0.1,1.3,0.1,0.1,0.6,0.9,1.3,0.1,0.8,1,0.8,0.5],"paint":[1.8,3.1,1.1,2,1.6,2.2,1.8,3.1,2.7,2.3,1.8,2.4,1.6,3.1,2.1,3.1,1.5,1.8,1.8,2.3,2.7,1.6,1.7,2.4,1.2]}},{"b":4,"v":{"total":[22.6,22.6,22.2,22.6,22.4,22.3,22.8,22.3,22.6,22.8,22.4,23.2,21.9,20.9,23.5],"script":[4,4.3,4.3,4.1,4,3.4,4.1,4.5,3.9,3.6,3.5,4.5,3.8,3.9,4],"paint":[17.4,16.4,17.2,17.1,16.8,17.6,17.8,16.3,16.8,16.6,17.4,17.4,16.6,15.9,18]}},{"b":5,"v":{"total":[16.9,17.3,16.6,16.8,17.3,17.3,16.7,17.3,17,17.8,16.9,17.1,16.6,16.7,16.7],"script":[1.5,1.6,1.6,1.5,1.8,1.6,1.9,1.8,1.6,1.7,1.6,1.7,1.7,1.7,1.8],"paint":[14.7,14.9,14.1,14.6,14.7,14.9,14.1,14.6,14.3,14.8,14.4,14.4,14.2,14.1,13.9]}},{"b":6,"v":{"total":[404.4,401.3,410.9,404.7,408.4,406.7,404.4,404.4,406.4,405.8,404.1,411.7,403.6,407,404.2],"script":[65.6,63.4,64.8,65.9,69,68.3,64.8,66.4,67.9,66.7,64.4,64.9,63.8,65.3,64.4],"paint":[332,331,339.3,332.1,332.7,331.7,332.7,331.3,331.9,332.5,333,340.1,332.7,335,333.1]}},{"b":7,"v":{"total":[47.5,46.3,47.6,47.5,46.8,46,46.5,46.6,49.1,47,47.4,47.2,47.8,47.6,47.1],"script":[7.9,7.8,8.2,7.8,7.8,7.8,7.9,8.1,8.7,8,7.9,8.1,8,7.9,7.9],"paint":[38.6,37.6,38.5,38.8,38.1,37.3,37.8,37.6,39.4,38.1,38.6,38.2,38.8,38.9,38.3]}},{"b":8,"v":{"total":[14.7,14.3,14.7,14.5,14.4,14.6,14.9,14.5,14.6,14.7,14,14.7,15.3,14.5,14.6],"script":[12.8,12.2,12.8,12.7,12.6,12.8,12.5,12,12.4,12.8,12.2,13.1,13.6,13.1,12.4],"paint":[1.2,1.3,1.4,1.8,1.7,1.4,1,2.4,2.1,1.8,0.8,1.1,1,0.7,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.3]}},{"b":11,"v":{"DEFAULT":[3.5]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[26.2]}},{"b":14,"v":{"DEFAULT":[17.9]}},{"b":15,"v":{"DEFAULT":[6.5]}},{"b":16,"v":{"DEFAULT":[62.7]}}]}, +{"f":139,"b":[{"b":0,"v":{"total":[37.4,37.6,37.4,37.5,37.1,39,37.2,37.9,38.3,37.9,37.7,37.7,38,38.2,38.3],"script":[4.6,4.6,4.6,4.7,4.4,5,4.6,4.9,4.9,4.7,4.8,4.7,4.6,5.1,4.7],"paint":[32.4,32.6,32.4,32.4,32.3,33.6,32.2,32.6,33,32.8,32.5,32.5,33,32.7,33.2]}},{"b":1,"v":{"total":[42.4,42,41.2,43.7,42.1,41.1,41.5,40.9,41.2,43.2,41.9,42,42.4,42.4,42],"script":[7.1,7.2,6.8,7,7.2,6.9,7.1,6.9,6.9,7,7.2,7.1,7.3,7.4,7.3],"paint":[34.8,34.3,33.9,36.3,34.4,33.8,34,33.6,33.8,35.8,34.3,34.4,34.6,34.6,34.3]}},{"b":2,"v":{"total":[17.2,16.9,17.3,17.5,17.7,16.8,16.5,17.1,16.4,17.7,16.2,16.4,16.4,16.5,16.5],"script":[1.2,1.2,1.2,0.9,1.7,0.9,1.2,1.1,1.1,0.9,1,0.6,1,1,1.2],"paint":[14.9,13.8,14.8,15.9,13.4,14.6,13.9,15.1,14,14.6,14.5,14.5,13.9,13.8,13.9]}},{"b":3,"v":{"total":[4.5,3.3,2.8,2.6,2.6,2.7,3,3.1,3.8,3.1,3.7,3.5,4,2.5,4.3,2.8,2.4,5.4,2.9,3.3,3,2.2,2.8,5.5,4.3],"script":[1.1,0.3,0.1,0.1,0.1,0.5,0.1,1,0.7,0.6,0.5,0.1,0.1,0.5,0.3,0.1,0.2,0.9,0.7,0.9,0.5,0.5,0.5,0.9,0.6],"paint":[2.2,1.5,1.7,2.4,2.1,2,1.7,1.7,1.6,2.4,1.9,1.2,1.6,1.2,1.9,2.6,1.6,2.5,2.1,1.9,1.6,1.6,2.2,2.6,2.5]}},{"b":4,"v":{"total":[18.3,19.1,17.9,19.5,18.8,18.2,18.6,19.1,18,18.4,18.3,18.1,19.4,19,18.9],"script":[0.8,0.7,0.1,0.1,0.1,0.4,0.1,1.1,0.1,0.1,0.1,0.8,0.8,0.1,0.8],"paint":[16.4,17.3,16.4,18.1,17.2,16.6,17.2,16.9,15.9,17.3,16.4,15.9,17.2,17.6,16.6]}},{"b":5,"v":{"total":[15.6,14.8,14.9,15.3,15.6,15.4,14.8,15.2,15.6,15,14.8,14.8,15.3,15.2,15],"script":[0.2,0.1,0.1,0.1,0.3,0.2,0.1,0.1,0.1,0.3,0.1,0.1,0.4,0.1,0.3],"paint":[14.8,13.7,14,14.5,14.6,14.5,14,14.3,14.8,13.9,14,14,14.2,14.4,14]}},{"b":6,"v":{"total":[399.5,393.2,396.8,398.8,399.2,390.9,396.7,393.1,392.6,396.6,395.4,395.8,397.2,391.3,394.6],"script":[52.6,51.6,53.7,52.4,53.3,52,51.8,52.1,52.4,51.5,51.8,53,56,52.9,50.9],"paint":[340.1,335,336.2,339.7,339.3,332.2,338.2,334.3,333.5,338.1,336.9,336.2,334.4,331.9,337.1]}},{"b":7,"v":{"total":[42.5,42,42.3,42.3,42.3,42.8,41.9,42.7,42.8,43.1,42,43.2,43.6,41.8,42.7],"script":[4.5,4.4,4.4,4.3,4.4,4.6,4.4,4.5,4.5,4.5,4.3,4.9,4.8,4.3,4.4],"paint":[37.1,36.7,37,37.1,37,37.4,36.6,37.4,37.5,37.8,36.8,37.5,37.9,36.7,37.5]}},{"b":8,"v":{"total":[11.3,11.9,11.7,11.4,11.6,12.1,11.9,12.3,12.2,11.8,11.9,11.5,11.9,12,11.7],"script":[9.4,10.1,10.3,10.1,10.2,10.2,10.4,10.2,10.4,10,10.2,9.3,10,10.7,9.8],"paint":[1.8,1.7,1.3,0.8,0.4,1.6,1.4,1.5,0.9,1,1.6,2,1.8,1.2,1.8]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.9]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[13.3]}},{"b":14,"v":{"DEFAULT":[47]}},{"b":15,"v":{"DEFAULT":[14.5]}},{"b":16,"v":{"DEFAULT":[96.3]}}]}, +{"f":140,"b":[{"b":0,"v":{"total":[52.4,51.3,52.7,51.8,51.5,51.6,51.7,51.9,51.6,50.9,50.9,51,50.9,52.1,51.4],"script":[15.8,15.6,16.5,15.9,15.5,16,15.7,16.1,16,15.6,15.4,15.6,15.7,15.9,15.8],"paint":[36.1,35.2,35.8,35.5,35.6,35.1,35.5,35.4,35.2,34.9,35,35,34.7,35.7,35.1]}},{"b":1,"v":{"total":[60.2,56.7,57.6,57,57.9,57,57.4,57.4,57.8,58,58.1,57.1,57.8,57.5,57.5],"script":[21.3,19.9,21,20.4,20.8,20,20.2,20.5,21,20.5,20.6,20.7,20.2,19.7,20.9],"paint":[38.2,36.4,36.2,36.2,36.6,36.6,36.7,36.4,36.3,36.9,37,36,37.1,37.4,36.2]}},{"b":2,"v":{"total":[25.2,24.5,25,24.6,25.3,24.6,26.3,25.8,24.9,25.3,24,26.1,24,24.5,22.9],"script":[9.5,8.3,8.5,7.8,9.2,8.6,10.1,9.5,8.6,8,8.7,9.1,7.9,8.7,7.6],"paint":[14.6,13.6,14.6,15.4,14.4,14.4,13.8,14.8,13.4,15.7,13.8,14.4,15.1,14.6,14.1]}},{"b":3,"v":{"total":[5.5,5.5,4.2,5,5.2,4.9,5,4.8,5.2,4.4,4.3,4.6,4.7,4.9,4.6,4.8,4.6,5.2,4.7,5.1,4.6,4.6,5,4.9,5],"script":[2.5,3.1,1.7,2,2.8,2.2,2.4,2.4,2.1,2.1,1.8,2.1,2.2,2.5,2.3,2.7,2.2,1.9,1.6,1.9,2.2,1.8,2.4,2.3,2.2],"paint":[2,1.7,2.3,2.1,2.3,2.4,1.5,1.7,2.1,1.7,2.2,1.4,1.6,2.1,2.2,1.9,0.9,2.1,3,2.2,1.7,1.7,1.5,2.5,1.7]}},{"b":4,"v":{"total":[23.1,23,22.1,23.4,22.8,23.4,24.3,23.6,23,22.7,23.6,23.1,24.1,23.6,22.6],"script":[4.3,3.9,3.6,4.3,4,3.8,4.3,4.1,3.8,3.8,4,4.7,4,4.3,3.7],"paint":[17.6,18,17.3,18.1,17,18.2,18.6,17.9,17.6,17.8,18.6,16,18.3,18.2,17.8]}},{"b":5,"v":{"total":[16.7,16.7,16.8,17.2,17.2,17,16.7,16.6,16.7,16.8,16.7,17.8,17,16.7,16.7],"script":[1.7,1.4,1.4,1.8,1.6,1.7,1.4,1.6,1.5,1.8,1.3,1.8,1.7,1.8,1.5],"paint":[13.9,14.6,14.5,14.6,14.6,14.5,14.6,14,14.5,13.9,14.7,15.2,14.4,14.1,14.4]}},{"b":6,"v":{"total":[547,560.2,545.1,538,543.4,562.1,543.1,560.2,539.3,538.8,525,554.7,557.7,557.2,544.9],"script":[178.4,180.5,179.5,178.4,179.8,180.9,180.4,178.7,178.9,178.3,177.6,177.4,177.3,176.7,181.7],"paint":[361.5,372.8,358.9,352.4,356.1,374.3,356,374.6,353.6,353.7,340.6,370.5,373.8,373.8,356.4]}},{"b":7,"v":{"total":[59.7,57.4,57.8,58.3,57.9,57.6,57.6,60.6,57.4,58.2,58.4,58.1,58.2,58.8,57.3],"script":[17.4,17.2,16.7,17.1,16.8,16.7,16.9,17.5,16.8,17.3,17.5,17.2,17.5,17.7,16.8],"paint":[41.3,39.2,40.2,40.2,40.1,40,39.8,42,39.7,40,40,40,39.7,40.2,39.5]}},{"b":8,"v":{"total":[18.1,18.5,17.8,18.5,18.1,18.4,17.1,18.5,18,19.5,16.9,18.4,17.2,17,16.9],"script":[16.4,16.3,15.6,16.6,16.6,16.7,15.5,16.1,15.4,17.2,15,16.2,14.7,15.6,15.1],"paint":[0.8,1.8,1.2,1.8,1.3,1.4,1.3,2.3,2.4,1.9,1.8,2.2,2.3,0.9,1.5]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[8.5]}},{"b":11,"v":{"DEFAULT":[8.6]}},{"b":12,"v":{"DEFAULT":[3]}},{"b":13,"v":{"DEFAULT":[74.6]}},{"b":14,"v":{"DEFAULT":[36.1]}},{"b":15,"v":{"DEFAULT":[10.9]}},{"b":16,"v":{"DEFAULT":[80]}}]}, +{"f":141,"b":[{"b":0,"v":{"total":[54.4,54.9,54.8,55.1,55.4,55.2,55.7,56,55.7,56.5,56.6,56.6,55.9,54.9,54.8],"script":[19.4,19.4,19.3,19.2,19.3,19.3,20,20.4,19.3,20.1,20.8,20.5,20.2,20.6,19.4],"paint":[34.6,35,35.1,35.6,35.6,35.5,35.2,35.2,36,36,35.3,35.7,35.4,33.8,35]}},{"b":1,"v":{"total":[62.8,63.7,62.1,62,62.5,61.9,63.2,61.8,63.7,62.3,64,64,63.6,62,60.4],"script":[25.9,25.8,25.5,25.8,25.5,26.4,26.9,25.7,26.1,25.9,27,27.6,26.9,25.7,25.2],"paint":[36.5,37.5,36.2,35.8,36.5,35.1,35.8,35.7,37.2,36,36.5,36,36.3,35.9,34.7]}},{"b":2,"v":{"total":[21.2,20.5,20.9,20.6,21.2,20.9,20.6,22.3,20.8,20.9,20.3,20.3,20.5,20.9,20.6],"script":[5.3,4.8,4.9,4.9,5.6,4.6,4.7,5.3,4.6,4.2,4.3,4.8,4.4,4.1,4.1],"paint":[14.1,14.4,14.7,14.5,13.8,15,15.2,15.3,15,15.1,14.1,14.2,14.5,15.5,14.5]}},{"b":3,"v":{"total":[5.6,5.2,4.8,5.6,5.1,4.9,5,5.4,5.6,5.2,4.8,5.5,4.6,5.2,5.3,5,5.7,5.2,5.4,5.3,4.6,5.3,4.6,6.8,5.3],"script":[2.7,3.1,2.8,2.8,2.3,2.9,2.6,2.7,2.5,2.9,2.2,2.3,2.5,2.8,3.1,2.8,2.5,2.5,2.3,2.5,2.7,2.5,2.1,2.2,2.2],"paint":[2.7,2,1.1,2.6,2.5,1.2,1.4,2.6,1.9,2.2,1.7,1.7,1.4,2.2,2.1,1.4,2.4,1.8,1.8,2.7,1.3,2.7,0.6,3.3,3]}},{"b":4,"v":{"total":[21.2,21.4,21.2,21,21.6,21.2,22.3,21.5,21.5,21.7,22.6,21.6,21.2,22.4,21.4],"script":[2.8,3.1,2.9,2.2,2.8,2.5,3.1,2.4,2.8,3.1,2.6,2.8,2.2,2.7,3.5],"paint":[15.5,16.5,17.1,17.8,17.3,17.5,18,16.5,16.6,16.9,18.7,17.6,16.5,18.3,15.3]}},{"b":5,"v":{"total":[16.5,16.4,16.5,16.1,16.5,16.2,16.1,16.5,16.1,16.6,16.6,16.1,16.1,17.9,16.4],"script":[1.2,1.3,1.3,1.3,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.3,1.3,1.3,1.3],"paint":[14.9,13.9,14.5,14.1,14.5,14.2,14.1,14.3,14.1,14.6,14.4,13.7,13.9,15.5,13.8]}},{"b":6,"v":{"total":[698.1,679.2,671.5,693.9,679.8,702.2,691.3,694.3,699.5,677.1,687.1,690.7,688.2,681.8,690],"script":[310.6,291.4,286.2,304.9,291.1,308.9,306.4,303.5,311.9,294.3,300.3,302.7,299.9,296.2,304.7],"paint":[380.7,381.1,378.5,382.2,382,386.7,378.2,384.3,380.9,376.1,380.2,381.4,381.5,378.8,378.7]}},{"b":7,"v":{"total":[66.8,65.6,66.9,66.9,66.5,66.7,65.4,65.9,65.7,66.9,65.8,66.4,66.1,66.2,66],"script":[24.7,23.6,24.4,24.8,24.5,24.7,23.6,23.4,23.6,23.6,24.2,23.8,24.8,24,24.6],"paint":[41.2,41.1,41.6,41.2,41.1,41.1,40.9,41.6,41.3,42.2,40.6,41.7,40.5,41.3,40.5]}},{"b":8,"v":{"total":[26.5,25.6,26.3,26.2,24.1,24.9,24.6,24.4,25,26.5,27,26,25.4,26,24.9],"script":[24.3,23.4,23.9,24.6,21.9,23,23.1,22.6,22.9,24.6,24.5,23.6,23.4,24.2,23.1],"paint":[1.1,2.1,2.3,1.4,1.5,1.8,0.4,1.8,2,1.7,2.3,1.7,1.7,1,1.4]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[6.4]}},{"b":11,"v":{"DEFAULT":[6.4]}},{"b":12,"v":{"DEFAULT":[4.9]}},{"b":13,"v":{"DEFAULT":[47.6]}},{"b":14,"v":{"DEFAULT":[207.4]}},{"b":15,"v":{"DEFAULT":[58.5]}},{"b":16,"v":{"DEFAULT":[351.2]}}]}, +{"f":142,"b":[{"b":0,"v":{"total":[56.1,56.4,54.4,55.6,56.4,57.1,56.3,56.3,55.1,54.1,55.1,55.8,56.8,56.2,56.4],"script":[21,20.8,19,20.1,20.5,20.7,20.3,20.3,20.2,19.4,20.2,20.2,20.9,20.2,20.4],"paint":[34.7,35.2,34.9,35.1,35.5,36,35.6,35.6,34.5,34.2,34.4,35.3,35.4,35.6,35.5]}},{"b":1,"v":{"total":[63.4,64.8,64.7,61.3,62.7,59.5,62.4,63.5,59.4,61.6,62.7,63.8,63.7,63.3,61.6],"script":[26,27.8,27.3,25.6,27,25.2,25.2,27,25.1,25.1,25.8,27.8,27.1,27.5,25.2],"paint":[37,36.5,37,35.3,35.3,33.9,36.8,36,33.9,36.1,36.5,35.6,36.2,35.4,35.9]}},{"b":2,"v":{"total":[30.5,28.1,29.5,28.8,29.2,29.9,30.2,32,30.2,29.2,29.8,31.2,29.6,29.7,30.1],"script":[13.9,12.7,13.1,12.9,13,13.9,13.6,14.2,13.2,13,13.6,13.9,13.5,13.1,13.3],"paint":[14.8,14.7,15.1,14.8,13.8,13.9,14.8,16.8,15.5,15.2,14.9,14,14.7,15.4,16.1]}},{"b":3,"v":{"total":[14.6,15.2,16,14.3,14.7,14.8,14.4,15.3,14.6,14.8,15,15.2,14.8,14.9,14.5,15,15.1,15.5,14.8,15.1,14.3,14.8,15.1,14.7,15.1],"script":[12.4,12.3,13.1,11.5,12.3,12.3,12,12.4,11.6,12.2,12.5,12.1,12.4,12,12,12.4,12.5,12,11.4,12.6,12,11.8,12.2,11.7,12.6],"paint":[1.5,2.7,1.9,1.9,1.5,1.9,1.2,2.2,2.9,2.4,1.6,3,2,2.7,2.4,1.5,1.9,3.4,3.3,1.5,1.7,1.9,1.9,1.9,2.4]}},{"b":4,"v":{"total":[31.8,33.3,31.6,32.4,31.8,32.1,31.8,31.1,30.9,32,32,32.1,32,31.5,31.1],"script":[12.6,13.6,12.5,13.4,13.1,12.5,12.8,12.7,12.1,12.9,12.6,12.4,13.2,12.8,12.9],"paint":[18,18.3,18.1,17.5,17,18.1,17.7,17.7,17.7,18.1,17.9,18.3,17.5,17.3,16.3]}},{"b":5,"v":{"total":[21.3,22,21.4,22.3,21.1,20.9,21.1,21.6,21.4,21.2,21.3,21.5,21.5,21.2,21.5],"script":[6,6.2,5.7,6.2,5.7,6,5.7,6.1,6.1,5.9,6.1,5.8,5.9,6,5.8],"paint":[14.6,15,14.7,15.3,14.6,13.7,14.7,14.5,14.6,14.5,14.2,14.7,14.8,13.8,14.4]}},{"b":6,"v":{"total":[691.9,688,698.8,700.7,690.6,688.3,689.6,700.2,693.7,683.4,677.1,701.7,706.1,696.2,699],"script":[307.4,302,309.7,313.5,304.8,299.8,300.2,310.5,307.1,298.7,289.8,313.6,313.6,308.3,302.4],"paint":[377.7,379.5,382.4,380.6,378.5,381.9,382.8,382.9,379.9,378.1,380.4,381.5,385.9,381.3,389.8]}},{"b":7,"v":{"total":[69.4,68,67.8,68.4,68.9,68.2,69,69.7,69.4,68.3,68.9,69.7,68,69.1,69],"script":[27.4,26.1,26,26.4,26.4,26.8,26.2,26.5,26.7,26.8,26.7,27.2,25.6,26.9,26.8],"paint":[41.1,41,41,41.1,41.7,40.7,41.9,42.3,41.9,40.6,41.2,41.6,41.4,41.3,41.3]}},{"b":8,"v":{"total":[25.5,26.1,26,26.5,26.3,25.5,25.6,26.7,25.9,25.7,25.8,26.3,26.9,26.8,25.6],"script":[24,24,23.9,24.5,23.9,24.1,24,25,23.4,23.9,24,24.5,24.9,24.5,23.2],"paint":[0.8,1.6,2.1,1.8,2.3,1.3,0.5,1.6,2.1,1.6,1.7,1,1.7,1.6,1.9]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[6.5]}},{"b":11,"v":{"DEFAULT":[6.8]}},{"b":12,"v":{"DEFAULT":[5]}},{"b":13,"v":{"DEFAULT":[48.8]}},{"b":14,"v":{"DEFAULT":[211.9]}},{"b":15,"v":{"DEFAULT":[59.2]}},{"b":16,"v":{"DEFAULT":[355.9]}}]}, +{"f":143,"b":[{"b":0,"v":{"total":[54.2,53.6,55.3,53.5,54.4,54,54.6,55.8,54,53.9,54,53.2,53.6,53.2,53.6],"script":[19.8,19.5,19.5,19.1,19.4,18.7,19,19.5,18.9,18.8,19.3,18.7,19.6,19.1,18.8],"paint":[33.9,33.6,35.3,33.9,34.6,34.9,35.1,35.8,34.7,34.6,34.3,34.1,33.6,33.7,34.4]}},{"b":1,"v":{"total":[20.8,19.7,19,19.4,19.2,19.6,22.1,20.8,20.4,20.8,19.8,20.1,20.6,20,20.5],"script":[5.6,5.4,4.8,5.1,4.9,5.3,5.9,5.6,5.7,5.7,5.3,5.4,5.6,5.7,5.6],"paint":[14.7,13.9,13.8,13.9,13.8,13.9,15.8,14.7,14.3,14.6,14,14.2,14.5,13.9,14.5]}},{"b":2,"v":{"total":[17.3,17.9,17.9,16.9,17.5,18.2,18.3,17.3,17.5,18.1,18.6,17.2,17.6,17.9,17.6],"script":[1.8,1.8,2,1.8,2.1,1.8,1.6,2.2,1.7,1.6,2.4,1.7,1.6,2.2,1.7],"paint":[14.4,14.7,14.8,14,14.3,15,15.6,14.1,14,14.1,15,13.8,14.2,13.7,14.9]}},{"b":3,"v":{"total":[4.2,4.3,4.1,4.2,4.3,4.1,3.9,4.2,4.2,4.5,4.4,3.7,4.1,3.9,3.7,5,3.5,4.1,4.5,4.7,4.2,4.2,5.3,3.8,4.5],"script":[1.4,1.5,1.2,1.6,1.6,1.5,1.3,1.6,0.9,1.7,2,1.8,1.5,1.4,1.3,0.9,1.6,1.9,1.8,1.9,1.3,1.5,1.8,1.7,1.6],"paint":[2.5,2.6,2.7,2.5,2.6,1.8,2.2,1.9,3.2,2,1.9,1.3,2.4,2.4,2.2,2.4,1.8,1.8,2.1,2.3,2.7,2.5,1.7,1.5,2]}},{"b":4,"v":{"total":[11.5,11.7,11.4,12,11.8,11.6,11.3,12,12.1,11.5,12.2,12.2,11.4,12.2,12.1],"script":[0.1,0.1,0.1,1.1,0.8,0.6,0.1,0.9,0.7,0.5,0.1,0.7,0.1,0.8,0.1],"paint":[9.9,10.2,9.7,9.6,9.7,9.2,9.7,9.6,9.8,9.6,10.7,9.9,9.8,10.3,11.2]}},{"b":5,"v":{"total":[18,18.2,18.4,18,18,17.9,18.6,18.1,18,17.6,18.1,18,18.1,18,17.9],"script":[2.9,2.9,2.7,3,2.7,2.8,3.2,2.8,2.6,2.7,2.6,2.7,2.7,2.6,2.6],"paint":[14.2,14.4,15,14.3,14.7,14.4,14.7,14.4,14.7,14.2,14.8,14.5,14.7,14.7,14.6]}},{"b":6,"v":{"total":[546.6,547.2,545.6,534.5,542.9,552.4,544.9,551.3,543.6,547.1,554.1,551.1,554.6,545.7,548.1],"script":[186.6,184.1,185.8,187.2,184,182.5,185.8,185.4,184.3,183.7,189.9,184.2,187.1,185.7,187.9],"paint":[352.9,356.1,352.6,340.4,351.9,363,352.3,358.7,352.5,356.5,357.4,360.2,360.6,353.3,353.3]}},{"b":7,"v":{"total":[58.9,58.6,59.1,58.6,58.9,59.5,59.7,59,59.1,59.7,59.3,58.3,58.6,59.5,59.7],"script":[17.7,18.1,17.9,18.1,18.2,18.4,18.7,18.2,18.3,18,17.9,17.5,18.1,18.4,18.4],"paint":[40.3,39.6,40.3,39.6,39.8,40.1,40,39.9,39.9,40.8,40.5,39.9,39.6,40.3,40.4]}},{"b":8,"v":{"total":[18.5,18.6,18.4,18.3,17.7,18.3,18.3,18.4,18.3,17.5,19.2,17.8,17.8,17.8,17.7],"script":[16.3,16,16.3,15.9,15.6,16.3,16.2,16.3,16.2,15.9,16.5,15.2,15.9,16.2,15.3],"paint":[1.6,2.5,1.4,2.2,1.8,1.2,1.8,1.6,1.5,1.5,1.9,2.5,1.3,1.5,2.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[5.4]}},{"b":11,"v":{"DEFAULT":[5.4]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[46.1]}},{"b":14,"v":{"DEFAULT":[24.5]}},{"b":15,"v":{"DEFAULT":[7.9]}},{"b":16,"v":{"DEFAULT":[81.9]}}]}, +{"f":144,"b":[{"b":0,"v":{"total":[44.7,45.2,45.7,45.5,44.1,44.1,44.3,45,44.3,44.1,44.4,45,45.2,45.1,46],"script":[10.8,11.1,11.7,11.4,10.9,11,11.1,11,11.4,11.3,11.2,11,11.2,11.1,11.8],"paint":[33.5,33.6,33.5,33.6,32.7,32.7,32.8,33.5,32.5,32.4,32.8,33.6,33.7,33.6,33.7]}},{"b":1,"v":{"total":[26.9,25,25.6,26.4,25.5,25.5,24.7,25.3,24.8,25.9,26,26,25.9,24.7,25.5],"script":[10.5,10.3,10.4,11,10.3,10.5,10,10.4,10.2,10.5,10.7,10.9,10.8,10.1,10.4],"paint":[15.9,14.3,14.7,14.9,14.7,14.5,14.3,14.5,14.1,14.9,14.8,14.6,14.6,14.2,14.6]}},{"b":2,"v":{"total":[55.9,56.1,58.4,58.4,54.2,56.1,56.2,55.1,56.3,58.3,55.1,54.6,55.7,56.2,56.9],"script":[39.6,39,40.3,41.7,37.9,38.9,39.2,38.4,39.9,41.7,38.5,37.7,39.3,39.6,40],"paint":[14.6,15.9,15.8,15.6,14.4,15.7,14.2,15.1,15.3,15.3,14.7,15.3,14.6,15.4,15.1]}},{"b":3,"v":{"total":[37.5,37.3,38.2,38.7,37.7,39.9,38.7,39.4,38.4,38.1,38.2,39.7,40.7,40.3,42,39.8,39.1,40,39.2,38.5,39.4,38.2,40,37.9,38.3],"script":[34.3,34.1,35,35.9,34.3,36.6,35.5,36.7,35.5,35,35.4,36,37.6,36.7,38.6,36.1,35.7,36.8,36.2,35.5,36.5,35.2,36.3,34.7,35],"paint":[2.6,2,2.2,2.6,2.9,2.1,2,2.4,1.9,1,2,2.8,2.5,3.4,2.7,3.1,2.2,2.4,2.4,2.9,1.9,2.1,2.7,3,2.8]}},{"b":4,"v":{"total":[48.1,46.9,45.7,47.7,47.9,45.7,48.3,48.4,45.5,45.8,50,45.6,51.8,48.4,49.8],"script":[36.5,35.4,34.9,36.5,35.7,34,35.8,35.9,34.1,35,38.4,34.6,38.8,36.8,37.2],"paint":[9.6,10.3,9.2,9.5,10.7,9.1,10.3,10.8,10.6,9.8,10.2,8.5,11.3,9.2,11.2]}},{"b":5,"v":{"total":[49,53.9,48.6,47.8,54.8,54.3,53.5,49.3,49.2,49.4,54.6,48.5,54.5,53.5,51.6],"script":[18.6,20.2,18.1,17.6,20.3,20.5,20,19,18.7,18.4,21,18.6,20.6,20,19.5],"paint":[29.5,32.9,29.1,29.2,33.7,32.6,32.5,29.5,29.6,29.8,32.4,29.1,32.9,32.4,31.2]}},{"b":6,"v":{"total":[480.7,486,485.1,482.2,475.6,479.8,475.2,487.4,476.5,476.6,473.1,482.1,475.7,473.5,484.4],"script":[137.6,140.4,140.1,140.4,140.1,140.2,135.1,139.7,138.9,135.2,136.1,141.3,135.1,139,136.4],"paint":[336.6,338.8,338.2,335.4,328.9,333,333.5,341,331.1,334.9,330.5,334.2,334,327.6,341.2]}},{"b":7,"v":{"total":[60.8,60,61.5,62.4,61.9,62.6,57.7,56.6,62,57.5,57.2,59.5,61.5,61.4,60.7],"script":[21,20.7,19.9,21.6,21.7,20.9,19.2,19.2,20.8,19.3,19.3,19.8,21,21.3,20.9],"paint":[38.9,38.5,40.5,39.9,39.3,40.8,37.6,36.5,40.2,37.3,37,38.5,39.5,39.2,39]}},{"b":8,"v":{"total":[16.9,17.5,14.5,16.7,17.1,15.6,14.2,15.2,14.2,14.6,16.9,16.7,16.7,17.1,14.9],"script":[15.3,15.7,12.7,14.7,15.2,14.2,12.6,13.5,12.2,12.9,15.2,15,15,15.3,13.2],"paint":[1.4,1.7,0.9,1.8,1.6,1.4,0.9,1.5,1.7,1.3,1.6,0.7,0.8,1.3,1.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[17.9]}},{"b":14,"v":{"DEFAULT":[18.2]}},{"b":15,"v":{"DEFAULT":[5.9]}},{"b":16,"v":{"DEFAULT":[54.7]}}]}, +{"f":145,"b":[{"b":0,"v":{"total":[88.8,88.6,89.7,91.4,89.7,90.4,89.5,89.1,89.5,88,88.9,88.3,89.4,88.8,89],"script":[51.2,51.3,52.2,52.9,52,52.4,52,51.5,52.2,51.1,51.6,51.3,51.4,51.7,51.7],"paint":[37.4,37.1,37.3,38.2,37.5,37.8,37.3,37.3,37.1,36.6,37.1,36.8,37.8,36.9,37]}},{"b":1,"v":{"total":[95.1,96.3,94.4,94.9,98.5,95.2,97.1,95,95.2,96.9,94.4,93.3,94.8,96.4,95.5],"script":[57.5,58,56.6,57.5,59.5,57.6,58.6,57.5,57.4,58.4,56.8,56.3,56.9,58.2,57.5],"paint":[37.4,38.1,37.6,37.2,38.6,37.3,38.1,37.3,37.4,38.1,37.4,36.8,37.6,37.8,37.7]}},{"b":2,"v":{"total":[83.3,83.5,81.8,85.6,87.4,84.9,80.7,79.7,80,86,85.6,79.4,83.9,79.5,81.2],"script":[47.3,49.6,48.2,49.8,49.9,48.1,47.9,47,46.9,48.2,50.3,47,46.1,46.5,46.4],"paint":[34.2,32.9,33.4,35.3,36.3,35.6,31,32.5,32.9,37.6,34.1,32.2,37.6,31.7,33.4]}},{"b":3,"v":{"total":[16.9,17.4,14.3,15.6,13.3,13.6,13.3,15.8,10.1,13.5,14.3,9.9,13,13.8,13.4,13.5,9.9,13.9,16.1,17.8,13.3,13.3,16,11.7,14.2],"script":[8.4,8.6,8.5,7.6,7,8.2,8.3,8.6,6.7,8.2,7.8,7.4,7.2,8.3,7.5,7.5,5.9,8.1,7.8,8.2,7.1,9,8.3,7.9,8.3],"paint":[8.1,7.3,4.1,5.3,3.3,3.4,3,4.6,3.2,3.4,4.3,1.9,4.3,4,4.7,4.1,2.2,4.4,6.8,6.1,3.8,3.1,6.3,2.8,4.9]}},{"b":4,"v":{"total":[51.3,52,46.6,50.5,49.1,50.1,48.7,48.9,49.3,49,48.4,46,47,51.7,51.6],"script":[28.1,27.8,26.7,26.4,27.6,28,26.3,26.5,24.6,26.6,26.8,26.6,26.3,26.9,26.6],"paint":[22.8,23.8,19.7,22.5,21,21.3,21.8,20.7,24,20.1,21.4,19.2,20.5,23.9,24.1]}},{"b":5,"v":{"total":[193.2,192.9,193.1,188.7,190.5,193.9,192.3,189.6,194.5,190.7,196.3,193.8,199,191.6,194.2],"script":[122.9,123.2,123.5,119.8,122,123.6,119.1,119.5,122.7,120,123.5,124,124.9,123.8,122],"paint":[68.2,68.3,68.4,67.6,67.2,68.8,71.8,68.3,70.6,68.9,71.6,68.3,72.3,66.8,70.6]}},{"b":6,"v":{"total":[804.5,797.8,801.1,790.3,789.3,801.5,799.4,791.3,798.6,785.4,789.8,792.8,793.6,793.3,796.1],"script":[443.1,437.2,432.4,432.9,430.2,439.3,439.4,429.3,437.3,429,430,434.6,433.7,433.2,434.2],"paint":[357.7,356.7,364.9,353.9,355.3,358.4,356.2,358.3,357.5,352.7,355.9,354.6,356,356.4,358.2]}},{"b":7,"v":{"total":[105.3,105.5,106.4,104.3,104.2,104.5,103.2,105.4,104.1,104.5,104.2,104.7,104.1,102.8,104.8],"script":[67.3,65.4,66.8,66.3,65.7,66.9,65.2,66.6,65.2,64.7,66.3,65.8,65.3,65,65.9],"paint":[37.5,39.7,39.2,37.6,38.1,37.2,37.6,38.4,38.4,39.4,37.5,38.3,38.3,37.4,38.5]}},{"b":8,"v":{"total":[21.7,21.1,18.1,22,19,21.9,18.6,19.5,23.2,21.5,21.8,23.6,22.7,18.9,22.5],"script":[16.9,17.2,15.8,17.4,16.8,17.5,17,16.6,18.6,17.6,17.4,18.6,18.7,16.9,18.6],"paint":[3.7,3.2,2.2,3.4,1.5,3.4,0.8,2.9,4.3,2.3,3.4,2.4,3.1,1.9,3.6]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[9.5]}},{"b":11,"v":{"DEFAULT":[15.3]}},{"b":12,"v":{"DEFAULT":[43.5]}},{"b":13,"v":{"DEFAULT":[88.5]}},{"b":14,"v":{"DEFAULT":[11.6]}},{"b":15,"v":{"DEFAULT":[4.3]}},{"b":16,"v":{"DEFAULT":[50.5]}}]}, +{"f":146,"b":[{"b":0,"v":{"total":[44.6,43.3,44.1,44.5,44.4,44.7,45.2,44.7,44.5,43.9,44.7,43.8,44.4,44,44.3],"script":[11,10.3,9.9,10.3,10.6,10.3,10.4,10.3,10.1,10.3,10.4,10.1,10.4,10.7,10.2],"paint":[33.2,32.6,33.7,33.8,33.4,33.9,34.4,33.9,33.9,33.1,33.9,33.3,33.5,32.9,33.7]}},{"b":1,"v":{"total":[25.3,26.1,25.7,27.1,26.1,26.3,25.7,26.3,25.4,25.4,26.3,27.2,26.4,26,25.4],"script":[9.7,9.9,9.9,10,10,10.2,10,10,9.6,9.6,10.2,9.9,9.5,10,9.4],"paint":[15.1,15.8,15.3,16.6,15.7,15.6,15.3,15.9,15.4,15.4,15.7,16.8,16.4,15.5,15.5]}},{"b":2,"v":{"total":[22,22,21.8,21.8,22.8,20.9,21.5,21.8,22.3,21,21.7,22,21.8,21.6,21.5],"script":[6.6,6.5,6.3,6.4,6.9,5.9,6,6.1,6.8,5.9,6.1,5.8,6.3,6.3,6.4],"paint":[14.1,13.6,14,13.7,14.6,13.9,13.3,14.4,13.2,13.4,13.9,14.4,14.4,14.1,13.6]}},{"b":3,"v":{"total":[4.6,5.6,4.7,5.1,4.7,4.9,5.2,5.6,4.3,4.7,4.9,4.9,4.6,5,4.8,5,4.8,4.7,4.5,4.7,4.7,5.6,5.2,5.2,5.3],"script":[2.2,2.9,2.3,2.4,2.2,2.2,2.1,3.2,1.9,2.4,2.4,2.7,2.5,2,2,2.2,2.8,2.4,2.3,2,2.8,2.7,2.3,2.5,2.9],"paint":[1.9,2.6,1.8,2.6,1.9,2,2.9,2.1,2.4,1.6,1.6,1.3,2,2.9,2.6,2,1.8,1.2,2.1,2.2,1.8,2.7,2.7,2.6,2.3]}},{"b":4,"v":{"total":[13.4,12.8,13.4,14.8,13.6,13.3,13.2,13.4,13.7,14,13.7,13.7,13.7,14,13.7],"script":[2.6,2.3,2.4,2.6,2.1,2.6,2,3,2.7,2.5,2,2.7,2.2,2.2,2.8],"paint":[9,8.4,9.6,10.6,9.8,8.9,9.9,9.5,10,10.4,9.6,9.7,10.2,10.6,9.7]}},{"b":5,"v":{"total":[50.7,49.3,49.7,49.4,50,51,49.6,53,49.3,52,49.4,49.8,49.7,48.8,51],"script":[17.4,17,17.2,16.8,17.3,17.4,17.3,19.2,17.3,18.6,16.8,17.4,17.5,16.9,17.2],"paint":[32.2,30.8,31.4,31.3,31.6,32.7,31.1,32.9,31.2,32.2,31.8,31.5,31.2,30.7,32.9]}},{"b":6,"v":{"total":[434.4,433.5,435.6,435,433.7,440.3,436.7,436.4,439.7,436.1,436.1,437.4,436.7,438.3,437.8],"script":[98.8,99.2,98.9,97.8,98.5,100.9,99.2,100.6,100.3,99.1,100.8,101,100.1,101.1,98.7],"paint":[328.7,327.3,329.8,330.2,328.5,331.7,330.8,329.1,332.6,330.2,328.4,329.7,329.9,330.5,332.3]}},{"b":7,"v":{"total":[51,51,50.9,50.9,49.3,52.4,49.7,50.4,50.8,50.4,50,49.6,50.1,50.7,48.8],"script":[10,10.9,11,10.3,9.8,11,10.1,10.1,10.7,10.2,9.8,9.7,10.8,10.9,9.8],"paint":[40,39.1,39,39.7,38.5,40.5,38.6,39.4,39.2,39.3,39.3,39,38.4,38.9,38]}},{"b":8,"v":{"total":[11.7,11.9,11.8,12.8,12.1,12.5,12.5,11.9,12.3,12.5,12.9,13.1,12.7,13.1,13],"script":[10.6,9.9,9.9,10.8,10.3,10.4,10.6,10.2,10.3,10.5,10.8,10.9,10.7,11.3,11],"paint":[0.4,1.1,1.8,1.9,0.7,2,1,1.3,1.1,1.9,2,1.3,1.9,1.5,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[32.1]}},{"b":14,"v":{"DEFAULT":[8.7]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[43.1]}}]}, +{"f":147,"b":[{"b":0,"v":{"total":[53.8,51.7,51.7,50.8,51.8,52.4,51.7,51.7,52.5,50.8,51.9,52.4,51.8,52.3,51.3],"script":[19.1,17.7,18.2,17.5,18.1,18.5,17.8,17.8,18.3,17.8,18.1,18.6,18.3,18.4,18],"paint":[34.2,33.4,33,32.8,33.3,33.3,33.4,33.4,33.7,32.5,33.3,33.4,32.9,33.4,32.9]}},{"b":1,"v":{"total":[18.7,19.2,18.5,18.4,18.4,18.9,18.7,18.6,20.1,18.5,18.9,18.6,19.8,18.7,18.8],"script":[4.4,4.9,4.3,4.3,4.3,4.7,4.4,4.2,5,4.3,4.2,4.3,4.7,4.2,4.3],"paint":[13.9,13.9,13.8,13.7,13.6,13.8,13.9,14,14.8,13.8,14.4,14,14.6,14.2,14.1]}},{"b":2,"v":{"total":[16.8,16.7,17.6,19.2,17,17.2,17.3,17.1,17.6,17.3,20.3,17,16.8,16.8,16.2],"script":[1.7,1.6,2,2.6,1.3,1.8,1.6,1.9,1.8,1,2.5,1.6,1.3,1.6,1.5],"paint":[13.4,13.4,14.3,15.5,13.6,13.2,13.8,13.3,13.8,15.2,15.6,13.9,14.4,14.1,13.6]}},{"b":3,"v":{"total":[8,7.6,8.2,8.7,8.5,8.2,7,7.4,7.9,8.4,8,8.1,7.3,7.8,7.5,8.8,7.7,8.3,7.8,7.7,7.1,8.1,7.7,8.2,7.8],"script":[5.5,5.5,5.7,6,5.7,5.5,5,5.2,5.3,5.6,5.5,5.7,4.8,5.3,5.2,5.9,4.8,5.7,4.9,5.2,4.7,5.6,5.8,4.7,5.2],"paint":[2,1.6,1.7,2.5,2.7,1.3,1.3,2.1,2.4,1.6,2.4,1.5,1.5,1.6,2.2,2.8,2.8,1.7,2.8,2.4,2.3,1.6,1.9,3,1.6]}},{"b":4,"v":{"total":[12.6,12.8,12,12.1,12.6,12.2,12.3,12.4,13.2,11.8,12.5,12.4,12.2,11.7,12.1],"script":[1.3,0.6,0.9,1.3,1.8,1.5,1.4,1,1.3,1,1.2,1.3,1.3,0.9,1.8],"paint":[10,10.6,9.5,9.3,9.4,9.3,9.1,9.6,10.3,9.6,10.2,9.7,9.9,9.3,9.2]}},{"b":5,"v":{"total":[37.5,39,36.8,37.5,37.3,40.2,37.9,37.7,37.5,36.3,36.8,37.7,37.3,36.6,37.3],"script":[7.3,7.2,7.2,7.7,7.4,6.9,7.8,7.8,7.6,6.9,6.8,7.2,7.4,6.9,7.4],"paint":[29.3,31,28.5,28.6,29.2,32.2,29.3,28.9,29.1,28.4,29.2,29.4,29,28.7,28.7]}},{"b":6,"v":{"total":[933.3,903.6,926.5,932.9,922.8,930,933.8,925.7,920.7,927.4,923.7,924.8,931.8,913.1,913.6],"script":[203.4,178,208.5,204.5,202.9,190.7,212.2,206.6,203.2,205.9,204.3,204.1,206.3,194.8,197.6],"paint":[355,350.5,352.1,354,350.2,362.8,350.3,352,350.8,355.4,352.8,356.3,352.5,353,350.8]}},{"b":7,"v":{"total":[59.6,60.3,62.5,61.3,61.1,60.7,60.9,59.3,61,60.3,60.6,60.1,60.5,60.4,61.2],"script":[20.2,21.7,22.1,22,21.8,21.4,21.7,20.4,21.5,21.5,21,20.9,21.2,21.3,21.6],"paint":[38.4,37.7,39.3,38.3,38.4,38.4,38.2,38,38.5,37.8,38.7,38.2,38.3,38,38.6]}},{"b":8,"v":{"total":[25.8,25.6,25.1,24.4,25,24.4,25.2,25.2,24,24.4,24.9,23.9,26,25.7,24.5],"script":[23.4,23.5,22.7,21.9,23.1,22.7,23.3,23.7,21.9,22.3,22.7,21.6,23.7,23.7,22.4],"paint":[1.8,2,1.9,2.4,1,1.2,1.8,1,1.6,2,2.1,1.6,1.6,1.9,2]}},{"b":9,"v":{"DEFAULT":[2.2]}},{"b":10,"v":{"DEFAULT":[5.6]}},{"b":11,"v":{"DEFAULT":[5.6]}},{"b":12,"v":{"DEFAULT":[3.2]}},{"b":13,"v":{"DEFAULT":[33.7]}},{"b":14,"v":{"DEFAULT":[300.4]}},{"b":15,"v":{"DEFAULT":[62.5]}},{"b":16,"v":{"DEFAULT":[469]}}]}, +{"f":148,"b":[{"b":0,"v":{"total":[46.6,46.7,46.7,47.5,48.3,46.8,46,47,47.1,45.4,46.4,44,48.2,43.8,47.3],"script":[12.5,12.5,12.8,13.3,12.7,13,12.3,12.7,12.5,12.5,12.7,11.9,13.3,12.1,12.6],"paint":[33.7,33.7,33.5,33.8,35.2,33.3,33.1,33.8,34.1,32.5,33.2,31.6,34.3,31.2,34.2]}},{"b":1,"v":{"total":[52.6,51.2,52,51.7,50.7,52.5,52,51,50.9,51,51,52,52.4,52.2,51.4],"script":[16,15.3,15.4,15.9,16.4,16.4,16.2,15.3,15.6,15.6,15.3,15.7,16.7,16.6,15.5],"paint":[36.1,35.5,36.1,35.3,33.8,35.5,35.3,35.2,34.8,34.9,35.2,35.8,35.3,35.2,35.4]}},{"b":2,"v":{"total":[18.8,19.6,17.8,18.6,18,17.9,18.5,17.7,18.7,18.2,17.6,17.7,18.2,17.6,18.2],"script":[2.8,2.6,2.8,2.6,2.7,1.6,2.5,2.2,2.3,2,1.7,2.6,2.5,2.3,3.2],"paint":[14.9,15.1,12.8,14.8,14,14.6,14.6,13.9,15.3,13.8,14.6,14.1,14.7,14,14.3]}},{"b":3,"v":{"total":[5,4,4.5,4.4,4.4,4.5,3.8,3.9,4.9,4.1,4.1,4,4.4,4.1,3.9,4.9,4.7,4.4,3.8,4.4,4.5,6.7,4.8,4.2,6.9],"script":[2.8,2.7,1.8,1.8,2.4,1.8,1.6,1.2,2.1,1.9,1.9,2,2,1.9,1.1,2,2,2,1.6,1.1,2.2,1.8,2.3,1.7,1.3],"paint":[1.8,1.1,1.7,1.7,1.3,2.6,2.1,1.3,2.4,1.2,1.8,1.9,1.8,0.5,2.1,1.4,0.9,2.3,2.1,1.3,1.8,1.6,2.1,2.3,2.2]}},{"b":4,"v":{"total":[20.1,20.8,20.3,21.3,19.6,20.2,20.9,19.7,20,20.3,20.1,20.3,20.7,21.1,20.6],"script":[1.5,1.8,1.9,2,1.6,1.6,2.5,2,1.7,1.9,1.8,1.7,2.1,1.8,2.5],"paint":[17.3,17.1,15.8,17.7,16.6,17.4,17.6,16.7,15.9,17.3,15.8,17.1,16.3,17.9,17]}},{"b":5,"v":{"total":[15.8,15.8,16.3,16.3,15.4,15.6,15.9,15.3,16,15.8,15.4,16,15.5,15.9,15.8],"script":[1,1,0.8,1,0.7,0.7,1,0.4,0.7,0.7,0.9,1,0.7,1,0.7],"paint":[14,14.1,14.7,14.5,14,13.9,14,14,14.6,14.4,13.7,14,14,14.1,14.2]}},{"b":6,"v":{"total":[482.4,481,484.2,492,479.7,482.5,475.9,481.4,487.3,484,483.3,486.5,480.3,480.3,480.7],"script":[138.5,139.5,141.2,140.7,138.5,139.9,137.2,137.4,142.1,142,139.5,143,140.2,138.3,140.5],"paint":[336.4,334.2,335.7,343.8,333.8,335.1,331.3,336.6,337.7,334.8,335.7,336.1,332.6,334.4,332.6]}},{"b":7,"v":{"total":[52.9,53.1,53.6,54.2,52.6,52.2,52.9,54.3,52.7,54.1,52.8,51.9,52.5,51.6,51.1],"script":[12.1,13.3,12.7,12.6,12.1,12.2,12.4,12.9,12.5,12.9,12.3,12.6,12.1,12.4,12.2],"paint":[39.8,38.8,40,40.6,39.6,39,39.4,40.4,39.2,40.1,39.5,38.4,39.4,38.2,37.9]}},{"b":8,"v":{"total":[14.2,14.1,14.7,13.9,14.3,14.7,14,13.6,13.8,14.2,14.7,14,14.3,14.3,13.7],"script":[11.6,11.8,12.2,11.9,12.4,12.2,11.9,11.6,12.3,12.7,12.8,11.9,11.9,12,11.9],"paint":[1.6,1.4,1.7,1.4,1.8,1.6,1.9,2,1.4,1.3,1.8,1.9,2.3,2.2,1.7]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[20.6]}},{"b":14,"v":{"DEFAULT":[6.7]}},{"b":15,"v":{"DEFAULT":[3.1]}},{"b":16,"v":{"DEFAULT":[45.3]}}]}, +{"f":149,"b":[{"b":0,"v":{"total":[63.4,63.4,62.7,63.6,62.7,63.1,63.4,63.9,62.9,62.8,63.4,64.5,62.5,63.1,63.4],"script":[28,28.4,27.1,27.4,27.2,27.8,27.9,28,27.7,27.5,27.6,29.1,27.3,27.9,27.1],"paint":[35,34.5,35.2,35.7,35,34.9,35.1,35.4,34.7,34.9,35.4,35,34.8,34.8,35.8]}},{"b":1,"v":{"total":[73.7,74.3,73.6,73.3,72.2,72.9,75.1,72.2,73,73.5,74.1,74.1,74,75.6,73.8],"script":[37.1,37.9,36.6,36.2,35.7,36.3,37.9,35.3,36.5,36.7,36.9,37.4,36.9,38.5,37],"paint":[36.2,35.9,36.6,36.7,36,36.1,36.7,36.4,36.1,36.4,36.7,36.2,36.6,36.6,36.3]}},{"b":2,"v":{"total":[20.8,18.5,19.3,19.4,20.1,20.5,19,20.9,19.2,20.2,20,20.1,19.6,20.1,19.8],"script":[4.8,3.5,4,3.2,3.4,3.9,3.9,4.3,3.7,3.7,4,4.2,4,3.8,3.5],"paint":[15,13.8,14,14.7,15.1,15.4,13.8,15,14.6,14.1,14.1,14.7,13.9,15.6,15]}},{"b":3,"v":{"total":[8,7.1,7.2,7.2,8.8,7,7.4,7.9,6.8,7.9,7.7,7.8,8.4,7.4,7.1,7.1,7.9,6.6,7,7.4,8.3,7.7,7.1,7.9,7.5],"script":[5.4,4.7,4.6,4.1,4.5,4.8,5.1,4.6,3.9,4.9,4,4.4,5.3,4.6,4.8,4.5,4.6,3.8,4.5,4.7,4.3,4.6,4.3,5,4.3],"paint":[1,2.3,1.5,2.6,2.2,1.6,1.4,2.7,2.8,2.2,3.6,2.9,2.9,2.2,1.2,1.7,2.2,2.6,1.7,2.6,3,2.9,2.7,2,2.9]}},{"b":4,"v":{"total":[21.3,22.6,22.8,22.7,23.7,22.9,21.7,22.4,23.3,22.5,22.8,22.6,22.6,22.9,24.1],"script":[3.4,3.8,4.6,4,4.4,4,3.9,4.5,4.4,4.3,4.3,3.9,4.4,4.1,4.1],"paint":[15.3,17,17.1,17.3,18,17.2,17,16.5,17.4,16.9,16.9,17.7,16.7,17.5,18.9]}},{"b":5,"v":{"total":[16.2,16,16.1,16.3,16.8,16.5,16.2,16,16.7,16.3,16,16,16.6,16,16],"script":[1.4,1.5,1.3,1.3,1.5,1.7,1.4,1.3,1.3,1.4,1.3,1.3,1.6,1.5,1.5],"paint":[13.9,13.5,14,14.1,14.6,14.2,13.8,13.7,14.6,14.1,13.7,14,14,13.7,13.8]}},{"b":6,"v":{"total":[572.5,567.2,551.7,564.6,560.8,556.4,568.3,556.4,558.6,561.5,558,552,560.3,565.4,570.1],"script":[214.1,212.8,212.3,204.6,207.9,202.9,205.3,205.4,205.3,208.2,205.2,205.3,207.7,213,210.2],"paint":[351.6,347.6,332.6,353.3,346.3,346.8,356.1,344.4,346.7,346.5,346.1,339.9,346,345.6,353.1]}},{"b":7,"v":{"total":[70.9,68.1,68,68.1,69.3,67.8,69.6,67.7,69.3,68.1,69.3,69.7,70.9,68.7,68.9],"script":[30.1,27.9,27.8,27.7,28.8,27.3,29.1,27.2,28.5,28.1,29.2,28.8,29.3,28.4,27.9],"paint":[39.9,39.4,39.3,39.6,39.6,39.6,39.7,39.6,39.9,39.1,39.1,39.9,40.6,39.5,40]}},{"b":8,"v":{"total":[37.1,34.1,36,35.8,36.2,35.5,37.7,36.9,35.7,35.6,36.5,35.3,33.7,34.9,35.1],"script":[35,31.7,33.4,33.9,33.5,32.9,35.9,35,33.5,34.2,34.6,33.3,32,32.5,33.5],"paint":[1.7,1.9,1.8,1.8,2.7,2.5,1.4,1.8,2.1,1.4,0.8,0.9,0.8,2.2,1.5]}},{"b":9,"v":{"DEFAULT":[2.1]}},{"b":10,"v":{"DEFAULT":[10.4]}},{"b":11,"v":{"DEFAULT":[10.5]}},{"b":12,"v":{"DEFAULT":[3.2]}},{"b":13,"v":{"DEFAULT":[76.7]}},{"b":14,"v":{"DEFAULT":[284.5]}},{"b":15,"v":{"DEFAULT":[44.8]}},{"b":16,"v":{"DEFAULT":[408.2]}}]}, +{"f":150,"b":[{"b":0,"v":{"total":[57.9,60.6,58.5,56.8,59.2,57,60.2,55.2,57.8,60.5,60.3,61.2,59.2,59.9,59.4],"script":[22,22.6,22.5,20.9,22.9,21.2,22.7,20.4,21.8,22.9,22.8,22.4,21.9,22.6,22.8],"paint":[35.5,37.6,35.6,35.5,35.9,35.4,37.1,34.3,35.6,37.1,37.1,38.3,36.9,36.9,36.2]}},{"b":1,"v":{"total":[64,64,62.7,63.8,62.7,63.8,66,64.9,65.6,66.2,64.1,63.2,64.4,65.2,63.9],"script":[25.9,25.8,25.5,25.7,25.3,25.8,27.3,26.3,27.1,27,26,25.7,26.3,27.5,25.9],"paint":[37.8,37.8,36.7,37.6,37,37.6,38.3,38.2,38.1,38.8,37.6,37.1,37.7,37.3,37.5]}},{"b":2,"v":{"total":[167.6,174.3,171.8,169.5,169.5,169.5,170.9,171.1,170.7,169.5,170.5,170.7,170,174.9,170.1],"script":[136.4,140.9,139.5,137.9,137.5,137.4,138.1,138.3,137.7,137.9,138.4,137.8,137.9,140.4,138.3],"paint":[30.1,31.3,30.8,30.1,29.3,30.4,31.4,30.6,31.4,29.3,30.5,30.6,30.1,32.5,30.4]}},{"b":3,"v":{"total":[4.8,5,5.2,4.7,4.6,5.4,5.5,5.2,6.3,5.2,4.7,4.7,5.5,5.3,6.2,5,5.1,5.5,4.9,5,5,4.7,5,4.9,5.5],"script":[2.6,2.6,2.7,2,2.7,3,2.5,2.5,2.6,1.9,1.6,2.2,2.7,3,2.7,2.4,2.4,2.4,2.5,2.4,2.5,1.8,2.5,2.7,2.9],"paint":[1.9,1.9,1.5,2.2,1.1,1.6,1.8,1.8,2.8,3.1,2.9,1.7,1.3,0.6,2.3,2.5,2.6,1.8,1.3,2.5,3.2,1.7,2.4,1.4,1.7]}},{"b":4,"v":{"total":[23.3,24.1,23.2,23.6,23.9,22.4,23.3,23.6,23.7,23.7,23.6,24.9,22.7,23.6,23.7],"script":[4.5,4.5,3.9,4,4.6,4.4,4.6,4.9,5,4.6,4.2,4.7,4.6,4.6,4.9],"paint":[16.5,18.2,17.8,17.5,17.9,16.8,17.7,17.7,17.5,18.2,17.8,18.3,16.5,18.1,17.2]}},{"b":5,"v":{"total":[17.1,17.3,17.2,17.3,18.2,17.5,16.8,16.8,17,16.7,17.2,17.8,17.3,16.8,16.9],"script":[1.8,1.7,1.7,1.9,1.9,1.9,1.8,1.5,1.6,1.8,1.9,2,2.1,1.9,1.9],"paint":[14.2,14.7,14.8,14.7,15.2,14.8,14.2,14.3,14.4,14.1,14.3,15,14.4,14,14.3]}},{"b":6,"v":{"total":[590.2,587.8,592.5,591.6,598.7,588.7,584.7,591.3,589.4,592,587.8,590.3,580.2,587.2,587],"script":[224.7,220.9,220.4,222.9,225.6,220.2,220,220.3,222,223,221.6,224.1,217,221.4,220.9],"paint":[357.6,359.3,364.8,361.3,365.7,361.4,357.4,363.6,360.1,361.5,358.6,358.4,355.8,358.4,358.6]}},{"b":7,"v":{"total":[126.8,125.6,128.8,127.8,127.1,128.4,127.8,126.3,125.4,128.8,126.5,126.2,125.9,124.9,124.2],"script":[54.4,51.8,54.3,54.4,52.4,53.7,53.3,53.4,51.7,54.3,52.9,52.6,53.1,52.1,51.7],"paint":[71.5,73,73.6,72.5,73.8,73.9,73.6,72,72.8,73.6,72.6,72.7,72,71.9,71.6]}},{"b":8,"v":{"total":[20.2,20.1,20.5,19.8,19.8,19.9,19.8,20.6,19.9,20.6,20.9,19.4,19.7,20.6,20.5],"script":[18.7,17.5,18.5,17.9,17.9,18.3,17.6,19.2,17.5,18.7,18.8,17.9,17.7,17.9,18.7],"paint":[1.4,2.5,1.6,1.8,1.8,1,2.1,1.3,1.8,1.8,1.4,0.3,1.4,2.4,1.7]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[3.9]}},{"b":12,"v":{"DEFAULT":[2.1]}},{"b":13,"v":{"DEFAULT":[20.9]}},{"b":14,"v":{"DEFAULT":[413.1]}},{"b":15,"v":{"DEFAULT":[100.4]}},{"b":16,"v":{"DEFAULT":[574.3]}}]}, +{"f":151,"b":[{"b":0,"v":{"total":[42.4,42.1,44.1,42.7,43.5,44.8,42.2,42.4,42.8,42.9,42.3,42.7,44,45.4,43.2],"script":[8.9,8.7,9.5,8.8,9.5,9.5,8.6,8.8,9.5,8.8,8.8,8.6,9.7,9.9,9],"paint":[33.2,33,34.2,33.5,33.6,35,33.2,33.2,33,33.6,33.1,33.6,33.9,35.1,33.8]}},{"b":1,"v":{"total":[22.1,22,21.5,23.5,21.8,21.9,21.9,21.6,21.5,22,21.5,21.3,22,22.5,21.2],"script":[7.2,7.3,7.2,7.3,7.3,7.3,6.9,7.1,6.9,7,6.7,6.9,7.1,7.3,6.9],"paint":[14.5,14.3,13.9,15.8,14.1,14.2,14.6,14.1,14.1,14.5,14.3,14,14.5,14.7,13.9]}},{"b":2,"v":{"total":[34.1,34,33.4,34,35.9,33.5,33.6,33.1,34.6,33.8,33,35.3,33,35.6,32.7],"script":[17.3,17.6,17.7,18.3,19,17.2,17.9,17.1,18.2,17.6,17.1,18.3,18,18.4,17],"paint":[15.3,15.1,14.4,14.3,15.3,14.7,14.3,13.6,14.8,14.3,14,15.5,13.7,15.8,14.5]}},{"b":3,"v":{"total":[21.5,21,21.6,21.4,19.8,23.5,20.7,20.8,20.7,21.8,21.7,21,20.1,22,19.8,21,20.2,21.8,21,23.1,19.9,21.3,19.5,20.4,22],"script":[18.4,17.5,17.8,18,17.1,20.4,17.7,18.1,17.6,18,18.7,17.5,16.2,18.3,16.6,17.9,17.1,18.3,17.8,19.4,16.6,18.1,16.3,17.9,18.4],"paint":[2,2.5,3.6,2.8,2.6,2.9,1.5,1.5,2.5,3.1,2.1,2.7,2.8,2.9,2.2,1.7,2.9,2.5,2.2,3.2,2.5,2.9,1.9,1.7,3.3]}},{"b":4,"v":{"total":[28.6,29.8,30.2,29.1,28.5,29.9,29.2,27,29.7,28.8,28.3,29.4,26.9,27.3,27.8],"script":[17.8,18.8,18.5,18.2,17.2,18.1,17.3,16.5,18.3,17.4,17.7,16.5,15.2,15.8,16.3],"paint":[9.3,9.8,9.6,10.2,10,10,10.8,9.5,9.8,10,9.4,11.4,9.8,9.1,10.2]}},{"b":5,"v":{"total":[43,41.3,45,43,42.5,42.5,41.8,43.5,42.8,44.5,41.9,43,42.4,42.4,41.8],"script":[12.2,11.4,13.5,13.1,12.4,12.4,12.3,12.9,12.8,13.2,11.8,13,12.5,12.3,12.2],"paint":[29.9,28.9,30.4,29,29.2,29,28.7,29.2,29.3,29.9,28.9,28.9,28.9,29.3,28.2]}},{"b":6,"v":{"total":[452.7,455.1,448.7,454.7,449.6,448.2,456.1,451.1,452.2,450.6,452.4,453.4,452.9,454,450.7],"script":[120.4,118.9,113.8,122.2,115.7,116.1,122.3,116.7,119.2,115.8,115.5,118,119.1,119.5,116.7],"paint":[325.4,329.5,328.2,325.7,327.3,325.2,326.9,327.6,326.4,328.2,330.2,328.8,326.9,327.7,327.1]}},{"b":7,"v":{"total":[54.6,54.2,54.1,53.2,55.5,55.1,54.4,55.9,55.3,55.4,54.1,54.2,52.8,55.2,56.1],"script":[13.3,13.7,13.3,13.6,13.7,13.5,14,13.8,13.5,13.5,14,13.7,13.4,13.7,13.5],"paint":[40.2,39.7,39.9,38.7,40.8,40.7,39.5,41.2,40.9,41,39.2,39.5,38.5,40.5,41.7]}},{"b":8,"v":{"total":[20.9,20.9,20.4,19.7,19.6,19.3,20.2,19.1,19.8,20.9,21,20.1,19.6,20.2,19.7],"script":[19,19.2,18.2,18.2,17.7,17.1,18,17.7,17.4,19.2,18.7,17.9,17.6,17.8,18.2],"paint":[1.4,1.3,1.8,1.4,1.8,2,2.1,0.4,2.3,0.8,1.7,1.5,1.8,2.4,1.5]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[3.5]}},{"b":11,"v":{"DEFAULT":[3.5]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[26]}},{"b":14,"v":{"DEFAULT":[83.4]}},{"b":15,"v":{"DEFAULT":[21.6]}},{"b":16,"v":{"DEFAULT":[130.7]}}]}, +{"f":152,"b":[{"b":0,"v":{"total":[40.5,40,39.2,40.4,40,40,40,40.5,42.5,40.3,39.8,40.1,40.4,40.6,40.2],"script":[6.9,7.1,6.4,7,6.7,7,7.1,7,6.8,7,6.8,6.8,7,6.9,6.7],"paint":[33.1,32.5,32.3,33,32.9,32.6,32.5,33.1,35.3,32.9,32.5,32.8,33,33.2,33.1]}},{"b":1,"v":{"total":[17,16,16,18,17.7,18,16.2,17.7,16.6,17.7,16.1,17.8,17.8,17.9,17.7],"script":[1.9,1.9,1.9,2.1,2.1,2.1,1.9,2,1.9,2.1,1.9,2.2,2.1,2,2.1],"paint":[14.6,13.6,13.7,15.4,15.2,15.5,13.9,15.3,14.2,15.2,13.8,15.2,15.3,15.4,15.2]}},{"b":2,"v":{"total":[19.1,19.6,19.7,19.5,19.4,19.7,19.5,19.3,19,20.5,19.5,18.8,18.8,19.5,19.5],"script":[4.1,3.9,3.7,3.9,4.7,4.2,4.1,4.6,4,4,4,3.9,3.7,4,4.1],"paint":[14.3,14.2,14.9,14.5,12.5,13.8,13.5,12.9,13.1,15.4,13.7,13.7,13.4,14.4,13.8]}},{"b":3,"v":{"total":[2.7,2.7,2.5,3.2,4.3,3.7,3,2.6,2.8,3.8,2.4,4.5,3.2,2.7,2.5,4,4.1,2.3,2.7,4.4,4.8,2.1,3.3,3.1,3],"script":[0.1,0.7,0.1,0.9,0.1,0.9,1,0.1,0.3,0.8,0.6,0.1,0.5,0.5,0.8,1.2,0.8,0.1,0.1,0.5,0.1,0.3,0.9,0.1,0.8],"paint":[1.6,1.9,1.8,2.2,2.6,2.5,1.9,1.3,1.8,2.1,1.7,2.5,2.3,2.1,1.6,1.9,1.5,1.1,2.4,1.9,2.7,1.8,2.3,1.6,1.5]}},{"b":4,"v":{"total":[14.7,14.1,13.3,14.4,14.5,13.5,13.7,14.4,13.3,14.3,13.4,14.4,13.9,14,14.6],"script":[3.6,3.6,3,2.3,3.4,2.3,3.1,3.5,3.2,3.2,3.2,2.9,3,2.8,3.3],"paint":[9.5,8.9,9,10.9,9.7,9.8,8.9,9,8.9,9.7,9,9.7,9.6,10.3,9.8]}},{"b":5,"v":{"total":[33.3,33.5,34.3,33.8,34.1,34,34.2,33.3,33.3,33.5,33.6,33.4,33.8,33.4,34],"script":[3.8,3.7,4.2,4.2,4,4.1,4.1,3.9,4,4.1,4.2,3.8,4.1,3.9,4],"paint":[28.5,28.8,29.1,28.6,29.4,29,29.4,28.5,28.5,28,28.6,28.7,28.7,28.7,29.2]}},{"b":6,"v":{"total":[412.3,414.6,413.1,412.5,414.2,412.2,410.8,410.8,411.7,413.2,416.4,412.4,413.7,412,412.7],"script":[66.2,68.2,68.4,70.5,67.8,67.2,65.6,66.8,67.7,70.2,67.9,67.4,67.6,65.9,67.4],"paint":[339.5,339.7,337.9,334.8,339.7,338.3,338.2,337.3,337.3,336.3,341.5,338.4,339.4,339.5,338.6]}},{"b":7,"v":{"total":[47.6,48.6,46,45.3,46.5,46.3,47.8,46.6,47.8,46.5,46.1,45.7,46,45,46.7],"script":[7.1,7.4,7.3,7,7.2,7.4,7.3,7.2,7.1,7.3,7.3,7.2,7.3,6.5,7.3],"paint":[39.7,40.3,37.9,37.4,38.4,37.8,39.7,38.5,39.8,38.3,37.9,37.6,37.9,37.6,38.5]}},{"b":8,"v":{"total":[12.6,12.7,12.6,12.8,12.8,12.3,13,12.6,12.9,12.5,12.8,13.2,12.1,12.1,12.3],"script":[10.3,10.1,10.2,10.9,10.7,10.7,11.2,10.3,11.1,10.2,10.4,10.9,10.3,10.2,10.9],"paint":[2.3,2.5,1.8,1,1.6,1.5,1.1,2.2,1.8,1.6,2.3,1.4,1.7,1.8,0.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.2]}},{"b":11,"v":{"DEFAULT":[2.3]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[16]}},{"b":14,"v":{"DEFAULT":[8.8]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[54.2]}}]}, +{"f":153,"b":[{"b":0,"v":{"total":[38.5,38.7,39.4,41.9,39.9,39.5,39.3,39.6,39.7,40,39.2,40.4,39.7,39.4,39.7],"script":[5.3,5,5.3,5.2,5.1,5.2,5.3,5.4,5.3,5.2,5.1,5.2,4.9,5.2,5.1],"paint":[32.7,33.3,33.6,36.2,34.4,33.8,33.6,33.8,33.9,34.3,33.7,34.7,34.5,33.8,34.1]}},{"b":1,"v":{"total":[20,21.2,19.5,19.8,18.7,19.3,20.1,19.8,19.2,18.8,19.6,19.7,19.7,19.3,19.6],"script":[4,4.8,4.7,5,4.1,4.5,4.9,4.7,4.5,4.1,4.9,4.9,4.8,4.5,4.9],"paint":[15.6,15.9,14.4,14.4,14.2,14.5,14.7,14.6,14.3,14.2,14.4,14.4,14.6,14.4,14.3]}},{"b":2,"v":{"total":[16.3,17.3,17,17.1,16.4,16.1,16.3,16.8,17.2,16.4,16.8,17.3,16,15.8,16.7],"script":[0.5,0.9,0.9,1.2,0.9,0.9,0.8,0.9,0.9,1.1,0.9,0.9,1,0.7,0.2],"paint":[13.6,15.4,14.8,14.6,13.7,14.1,14.2,14.7,14.3,13.5,13.7,13.8,13.8,13.7,15.2]}},{"b":3,"v":{"total":[5.3,2.2,2.3,2.6,1.9,2.7,2.6,5.1,2.5,3,3.1,3.2,2.8,3.3,2.5,2.5,2.5,2.2,5.2,2.7,2.9,2.2,4.1,2,2.7],"script":[0.1,0.3,0.1,0.1,0.1,0.1,0.7,0.1,0.1,0.3,0.1,1.1,0.1,0.7,0.1,0.1,0.1,0.1,0.9,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[1.8,1.4,1.2,2.4,1.7,0.9,1.2,2.3,2.1,1.8,3,2.1,2.2,2.5,2.2,2.3,2.4,2,1.8,1.7,2.7,1.3,2.3,1.8,1.9]}},{"b":4,"v":{"total":[12.8,11.3,12,12.5,11.8,11,11.5,11.4,11.4,11.6,11.5,11.5,11.5,12.1,12.2],"script":[0.1,0.6,0.1,0.8,0.8,0.1,0.1,0.1,0.1,0.6,0.1,0.1,0.6,0.8,0.4],"paint":[11,9.4,9.7,10.8,9.9,9.6,9.4,10.2,10.3,10,9.8,9.7,9.8,10.1,10.7]}},{"b":5,"v":{"total":[15.4,14.8,15,14.8,14.7,16,15.4,15,14.9,14.8,15.1,15,15.4,15.4,15.7],"script":[0.2,0.1,0.3,0.4,0.1,0.2,0.1,0.4,0.1,0.1,0.2,0.1,0.4,0.3,0.3],"paint":[14.5,13.1,14,13.7,13.8,14.8,14.6,13.9,13.7,14.3,14.1,13.9,14.2,14.1,14.7]}},{"b":6,"v":{"total":[415.6,415.1,416.6,413.7,408.2,415.4,416.3,413.4,415.7,413.8,417.8,418.6,411.4,411.9,410.8],"script":[63.9,62.4,65.6,63.3,63.4,62.9,64.1,63.9,64.2,64.4,65.6,62.8,63.4,61.7,62.2],"paint":[345,346,344.1,343.7,338.2,345.7,345.5,342.6,344.8,342.7,345.5,349.1,341.3,343.7,341.8]}},{"b":7,"v":{"total":[43.3,44.3,43.3,43.9,44.6,43.5,44,43.8,44.9,43.8,43.6,44.9,44,44.8,44.4],"script":[4.5,4.6,4.5,4.5,4.6,4.5,4.6,4.5,4.7,4.7,4.5,4.8,4.5,4.7,4.6],"paint":[38,38.8,38,38.5,39.1,38.1,38.6,38.4,39.3,38.1,38.3,39.3,38.7,39.2,38.8]}},{"b":8,"v":{"total":[12.2,12.2,12.7,12.1,12.9,12.2,12.3,11.8,12.1,12.2,12.5,12.7,13.3,12.3,12.2],"script":[10.4,10.8,11.3,10.1,11.3,10.4,11.1,9.7,10.7,9.9,10.4,10.5,10.8,10.7,9.9],"paint":[1.6,1.3,1.3,1.9,1.1,1,1.2,1.7,0.4,2.3,2,2,2.3,0.9,2]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[3.2]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[1.9]}},{"b":13,"v":{"DEFAULT":[17.7]}},{"b":14,"v":{"DEFAULT":[101.1]}},{"b":15,"v":{"DEFAULT":[36.1]}},{"b":16,"v":{"DEFAULT":[43.9]}}]}, +{"f":154,"b":[{"b":0,"v":{"total":[37.5,36.1,38.2,36.3,36.8,37.5,38.4,38.3,37,37.8,37.5,37,37.5,37.1,37.1],"script":[4.1,3.9,3.8,3.8,3.8,4.3,3.9,4.2,3.9,4.1,4.2,4,3.9,3.9,4],"paint":[32.9,31.8,33.9,32.1,32.5,32.8,34.1,33.7,32.6,33.3,32.9,32.6,33.1,32.8,32.7]}},{"b":1,"v":{"total":[16.6,16.6,16.6,16.8,16.7,17.8,16.3,16.9,16.7,17,16.8,16.3,16.8,17.4,16.7],"script":[2.1,2.1,1.9,2.2,2,2.1,2,2.2,2.1,2.1,2.2,2,2.2,2.3,2.1],"paint":[14.1,14.1,14.3,14.3,14.3,15.2,14.1,14.3,14.1,14.5,14.2,14,14.2,14.6,14.2]}},{"b":2,"v":{"total":[19.3,18.9,20.1,18.9,20.7,19.7,19.9,19,21,19.1,19.9,18.8,19.6,19.7,18.5],"script":[3.7,3,3.6,3,3.4,4,3.9,3,3.6,3.7,3.1,3,3.3,3.3,3.4],"paint":[14.6,14.2,13.9,14.1,15.7,15,14,13.9,16.1,14.1,15.5,14.5,15.3,14,13.3]}},{"b":3,"v":{"total":[2.7,3.4,2.6,3.3,2.4,3.3,3.1,3.6,2.5,3.1,3.3,3.9,3.3,3,2.9,3.1,4.4,4.1,2.6,3.4,2.5,3.1,4,2.8,2.7],"script":[0.1,0.8,0.1,0.5,0.3,1,1,0.8,0.1,0.9,0.8,0.1,1.1,0.6,0.9,0.1,0.1,0.6,0.1,0.7,0.5,0.1,0.1,1.1,0.5],"paint":[0.7,1.7,2.4,1.8,2,1.8,2.1,1.7,1.4,2,1.6,2.7,2.1,1.9,1.8,2,2.3,2,1.3,2.2,1.1,2.1,3.2,1.6,0.6]}},{"b":4,"v":{"total":[12.6,12.4,12.5,13.7,12.8,13.1,12.2,12.6,12.1,12,12.8,12.2,13.3,12.8,11.6],"script":[1.2,1.1,1.1,2,1.8,1.3,0.9,1.3,1.1,1.2,1.7,1.3,2.1,1.1,1.3],"paint":[10,9.6,10.2,10.2,9.4,10.3,9.3,10.4,9.1,9.2,9.7,9.1,9.9,10.4,7.7]}},{"b":5,"v":{"total":[34.6,34.5,34.4,34,34.2,35.3,36.8,33.8,33.8,33.8,34.3,34.5,33.8,34.6,34.4],"script":[3.1,3.1,3.1,3.1,3.2,3.2,3.5,3,3.1,3,2.8,2.9,3,2.8,3],"paint":[30.4,30.6,30,29.8,29.6,31.2,32.4,29.7,29.7,30,30.4,30.8,29.7,31.1,30.5]}},{"b":6,"v":{"total":[388.8,388.8,386.4,391.7,388.1,385.7,393.6,395.8,392.4,387.3,387.5,390.8,390,388.7,389.7],"script":[43.3,42,42.5,42.5,43.5,42.4,45.1,46,45.4,42.2,41,44.4,44.7,43.7,44.8],"paint":[338.8,340.3,337.3,342.6,338,336.7,341.8,343,340.4,338.5,339.8,339.7,338.5,338.6,338.3]}},{"b":7,"v":{"total":[44.1,44.3,43.7,45.1,42.9,42.7,43.5,43.1,44.4,43.1,43.2,43.1,42.7,42.9,44.9],"script":[4.9,4.9,4.5,4.7,4.6,4.6,4.5,4.6,4.7,4.8,4.6,4.7,4.6,4.7,4.8],"paint":[38.3,38.5,38.3,39.4,37.4,37.3,38.1,37.6,38.8,37.5,37.8,37.5,37.2,37.4,39.2]}},{"b":8,"v":{"total":[14.2,14.1,14.9,13.8,14.3,14.9,14.9,14.5,14.4,14.3,14.6,15.2,14.7,15.4,15.2],"script":[12.3,12.2,13.1,12.5,12,12.9,12.7,11.9,12.8,12.3,12.3,13.6,12.2,13.3,13.1],"paint":[1.7,1,1.7,0.9,1.4,1.8,2.1,2.5,0.8,1.8,2.2,1,2.1,1.7,2]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.1]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[15.7]}},{"b":14,"v":{"DEFAULT":[18.3]}},{"b":15,"v":{"DEFAULT":[5.1]}},{"b":16,"v":{"DEFAULT":[59.5]}}]}, +{"f":155,"b":[{"b":0,"v":{"total":[59.3,58.7,59.4,58.8,58.5,58.5,60.2,59.4,60.1,59.6,60,58.9,58.6,60.5,59.9],"script":[25.8,25.2,26,25.6,25.2,24.9,26.2,25.7,26.3,26,26.2,25.3,25.2,26.5,25.9],"paint":[33,33.1,33,32.7,32.8,33.2,33.6,33.3,33.3,33.2,33.4,33.2,32.9,33.5,33.5]}},{"b":1,"v":{"total":[39.6,40.1,37.5,38.1,38.4,39.7,40.4,38.6,38.2,38.1,38.7,38.3,38.8,38.6,38.6],"script":[24,23.4,22.3,23.1,23.2,23.2,23.5,23.3,23.1,23,23.3,23.2,23.1,23.2,23.2],"paint":[15.1,16.3,14.8,14.6,14.7,16,16.4,14.8,14.7,14.6,15,14.6,15.3,15,15]}},{"b":2,"v":{"total":[25.9,26.1,26.2,26.2,25.6,26.2,25.5,25.5,25.7,25.5,26.1,25.3,26.4,27.9,25.7],"script":[9.8,10.5,10.3,10.6,9.6,10.3,9.8,10.1,10.1,9.6,9.6,10.1,9.8,10.1,9.8],"paint":[15,13.7,14.3,13.9,14.3,14.9,14.2,14.3,14.1,14.5,14.8,13.3,14.8,16.9,14.5]}},{"b":3,"v":{"total":[8.4,7.1,7.8,7.8,7.5,8.4,7.9,8.2,7.7,8.5,7.8,8,7.3,8.2,7.4,7.6,7.7,7,7.7,8,8.3,7.7,8.2,8.5,8.8],"script":[5.5,4.6,5,5,5.2,5.6,5,5.5,5.4,5.2,5.5,5.2,4.9,5.1,4.8,4.8,5.4,4.9,5.6,5.5,5,5.3,5.3,6,6.1],"paint":[2,2.1,2.6,2.4,1.5,2,2.8,2.7,2.2,2.9,1.5,2.6,1.9,2.9,2,2.7,2.2,1.3,2,2.4,3.1,2.3,2.8,1.7,2.2]}},{"b":4,"v":{"total":[16.9,16.2,16.3,16.6,16.3,16.1,16.3,16.6,16.2,16.1,16.5,16.7,17.1,16.6,16.5],"script":[5.6,5,6.1,5.1,5.7,4.6,5.4,5.9,5.4,5.1,5.5,5.6,5.3,5.2,4.8],"paint":[9.5,9.6,8.7,9.7,7.7,10.6,9.2,9,9,9.5,9.7,10.1,10.4,10.1,10]}},{"b":5,"v":{"total":[50.3,50.2,53.9,53.1,53.3,50.5,51,49.7,49.7,53.4,52.2,50.1,50.2,49.4,50.8],"script":[19.5,18.7,19.5,18.8,19.7,19.3,19.4,19,18.9,19.7,19.5,18.7,18.9,18,19.1],"paint":[29.2,30.6,33.7,33.2,32.4,30.4,30.7,29.6,29.7,32.9,31.6,30.6,29.9,30.4,30.6]}},{"b":6,"v":{"total":[672.9,673.2,672,664.7,664,677.2,668.9,672.6,672.2,668.6,668.9,661.7,669.1,671.6,670.6],"script":[323.7,318.9,314.7,314.1,312.4,325,317,314,316.9,318.9,316.4,310.6,318.9,318.8,319.9],"paint":[342.5,347.6,350.7,344.1,344.9,345.6,345.3,352.2,348.7,343.2,345.8,344,343.7,346.2,344.1]}},{"b":7,"v":{"total":[79.9,80.6,80.1,80,80.3,82.2,80.6,83,80,81,79.8,80.6,80.5,81.8,81.4],"script":[40.9,41.2,41.1,41.1,41,41.2,41.4,43.2,41.1,41.2,41.1,41.3,41.4,42,41.3],"paint":[38.2,38.4,38,38.1,38.4,39.7,38.4,38.9,38.1,38.9,37.8,38.5,38.3,38.8,39.2]}},{"b":8,"v":{"total":[16.9,18.9,16.6,17.8,17.7,17.7,17.3,17.6,17.1,17.6,17.5,18.5,19,17.9,17.1],"script":[15.3,17,14.6,15.7,15.3,15.2,15.8,15,15.2,16,15,16.5,16.9,15.4,15.5],"paint":[1.4,1.8,1.8,2,1.3,2.4,1.4,2.2,1.1,1.5,2.4,1.9,2,1.8,1.5]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[4.3]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[8.5]}},{"b":13,"v":{"DEFAULT":[33.8]}},{"b":14,"v":{"DEFAULT":[77.3]}},{"b":15,"v":{"DEFAULT":[19.9]}},{"b":16,"v":{"DEFAULT":[116.7]}}]}, +{"f":156,"b":[{"b":0,"v":{"total":[35.4,36.6,35.6,35.4,35.2,38.6,36.6,35,35.6,35.8,35.9,35.9,37.1,35.5,36.6],"script":[2.3,2.4,2.2,2.3,2.4,2.3,2.4,2.3,2.3,2.3,2.2,2.3,2.1,2.4,2.3],"paint":[32.7,33.7,32.9,32.7,32.5,35.8,33.8,32.3,32.8,33,33.3,33.2,34.5,32.7,33.9]}},{"b":1,"v":{"total":[15.9,15.2,16.3,15.5,15.1,15.3,17.2,15.4,15.4,15.3,15.2,15.1,14.9,15.6,15.5],"script":[1.1,1.2,1.2,1.2,1.1,1.1,1.1,1.3,1.2,1.1,1.1,1.2,1.1,1.1,1.2],"paint":[14.4,13.6,14.8,13.9,13.6,13.7,15.6,13.7,13.8,13.9,13.7,13.5,13.4,14.1,13.9]}},{"b":2,"v":{"total":[16,16.1,16.5,15.6,15.5,17.7,16,16.2,16.2,16.1,16.8,16.6,17.6,16.5,16.4],"script":[1.2,1,1.1,1.1,1.1,1.4,1,0.7,1.1,1.2,1.2,1.2,0.9,1.4,0.6],"paint":[13.2,13.3,13.9,13.2,13.4,14.3,13.2,14.1,13.4,12.9,14.3,13.8,14.1,14,14.5]}},{"b":3,"v":{"total":[2.8,3.6,3,2.9,4.3,3,2.2,2.6,3.2,2.7,4.1,2.6,3.2,2.5,4.2,2.5,3.5,2.9,6,3,2.8,2.7,3,2.8,5.5],"script":[0.9,0.8,0.7,0.5,0.8,0.7,0.1,0.5,0.8,0.6,0.1,0.1,1,0.1,0.3,0.1,1.1,0.1,0.1,0.8,0.1,0.1,0.9,0.5,0.8],"paint":[1.8,2,2.2,2.3,1.9,2.2,2,2,2.3,2.1,2.8,1.6,1.5,2.3,2.3,1.3,2.3,2.7,1.3,2.1,1.8,1.6,1.4,2.2,1.9]}},{"b":4,"v":{"total":[11.4,12.2,11.1,11.6,11.5,11.1,11.3,10.8,11.3,10.7,10.9,11.4,11.8,11.7,11.6],"script":[0.2,0.6,0.1,0.1,0.2,0.1,0.6,0.4,0.1,0.5,0.1,0.5,0.6,0.4,0.8],"paint":[8.4,10.3,9,9.1,10.2,9.6,9.1,9.4,10.5,9.2,8.8,9.4,10,9.8,9.5]}},{"b":5,"v":{"total":[15.2,14.7,14.7,15.4,14.7,15.6,14.8,15.1,14.8,15.1,14.8,15.3,14.8,14.9,14.8],"script":[0.4,0.3,0.3,0.1,0.1,0.4,0.1,0.5,0.1,0.2,0.4,0.4,0.3,0.2,0.1],"paint":[14.1,13.7,13.3,14.8,13.7,14.5,14,13.9,14,14.2,13.4,13.9,13.8,13.6,13.7]}},{"b":6,"v":{"total":[505.6,481.6,482.5,484.3,491.9,485.9,487,481.8,485.5,484.7,486.9,489.4,479.4,484.9,483.7],"script":[140.4,141.3,141.9,141.2,141,140.1,141.2,137.9,140.1,140.3,141.3,143,138.4,141,139.9],"paint":[357.4,333.3,333.9,336.3,343.9,339.1,338.9,337.1,338.7,337.7,338.9,339,334.3,337.2,337.1]}},{"b":7,"v":{"total":[57.1,55.6,56.9,55.4,55.8,57.4,56.2,57.1,55.6,56.5,56.1,56.1,54.9,55.2,55.6],"script":[15.7,15.9,16.2,15.2,15.3,16.1,15.6,16,15.5,16,15.8,15.9,15.7,15.1,15.3],"paint":[40.6,38.9,39.8,39.3,39.6,40.4,39.8,40.2,39.3,39.6,39.4,39.4,38.3,39.2,39.5]}},{"b":8,"v":{"total":[17.4,17.9,18.1,17.5,17.5,16.8,17.4,16,18.7,16.7,17.3,18.1,18.2,17.8,18],"script":[15.6,15.4,15.9,15,15.9,15.2,15.6,14.8,16.5,14.8,15.6,16.1,15.8,15.8,16.1],"paint":[1.6,1.8,1,2.5,1.3,0.7,0.4,0.5,2.1,1.8,0.8,1.9,2.1,1.8,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4.7]}},{"b":11,"v":{"DEFAULT":[4.7]}},{"b":12,"v":{"DEFAULT":[4.7]}},{"b":13,"v":{"DEFAULT":[38.8]}},{"b":14,"v":{"DEFAULT":[25.4]}},{"b":15,"v":{"DEFAULT":[8.3]}},{"b":16,"v":{"DEFAULT":[79.8]}}]}, +{"f":157,"b":[{"b":0,"v":{"total":[46.9,46.8,46.4,42.4,51.6,42.1,44.1,47.2,51,46.1,44.4,46.7,47.5,45.3,50.3],"script":[9,8.3,8.8,8.7,9.1,8.6,8.5,8.9,9.1,8.8,8.8,8.7,8.4,8.8,8.9],"paint":[33.8,32.9,32.2,33,33.8,33,31.8,33.5,32.6,32.7,33.5,32.4,32.4,32.3,36.1]}},{"b":1,"v":{"total":[24.7,24.8,27,29.9,26.8,27.9,30,28.6,26.8,27.3,28.9,20.9,30.4,31,23.1],"script":[5.6,5.7,5.5,6,5.5,5.6,6.1,5.9,6.1,6.2,5.7,5.9,5.6,5.6,5.9],"paint":[16,14.3,14.6,14.8,14.5,14.6,14.8,14.8,14.7,14.3,15.1,14.6,14.7,14.9,16.7]}},{"b":2,"v":{"total":[23.4,42.8,41.5,42.9,44.8,19.5,22.7,45.3,20.9,21.3,20.6,22.4,20.5,45,42.5],"script":[3.2,3.7,4.1,4.3,3.9,4,3.5,3.5,3.3,3.7,3.6,3.8,3.8,3.7,3.6],"paint":[15.9,14.6,14.9,14.1,14.3,13.7,15.3,15,14.7,14.5,14.3,15.7,14.2,15.7,13.7]}},{"b":3,"v":{"total":[4.6,4.8,7.6,9.1,11.5,6.7,4.7,6.6,9.6,7.6,5.6,8.7,7.8,4.4,9.9,10.3,5.3,9.7,12.1,6.5,5.6,12.9,5.2,8.7,10.8],"script":[0.9,0.9,1.2,1.1,1.1,1.4,1.4,0.6,0.6,1,1.7,0.3,0.9,1.8,0.3,1.1,1.9,0.7,0.4,1.3,1.5,1.8,1.4,1.6,0.9],"paint":[2.2,2.9,1.7,1.6,2.7,1.8,2.3,1.5,2.3,1.8,1.7,3.4,1.6,1.4,2.3,1.8,1.7,1.7,2.6,1.4,1.7,2,1.8,2.2,2.4]}},{"b":4,"v":{"total":[39.6,14.1,13.7,36.2,14.9,40.1,35.6,36.1,13.6,33.2,12.5,14.9,14.9,35.2,38.4],"script":[1.1,1,0.4,0.9,1.9,1.2,1,1,0.5,1.1,0.9,0.4,2.3,1.9,1.1],"paint":[10.7,10.8,10.3,9.1,10,10.4,10.2,10,10.1,10.4,10.5,9.9,10.9,9.7,11.4]}},{"b":5,"v":{"total":[38.1,40.6,40.6,39.6,36.9,42.3,36.3,43.2,42.3,37.6,44.3,41.4,39.6,38.2,43.9],"script":[7.4,7.2,7.9,7.4,6.5,7,6.6,7,8,7.3,7.1,6.6,6.6,7.5,6.5],"paint":[29.9,32.4,31.9,31.4,29.2,33.3,28.8,30.5,31.6,29.3,29.3,32.1,28.7,29.3,29.9]}},{"b":6,"v":{"total":[455.1,449.1,433,448.5,447.4,445.4,456.3,447.4,451.9,446.8,432.1,429.2,429,431.1,790.9],"script":[93.9,94.2,93,92.9,93,92.2,95.4,93.9,93.9,93,93.4,93.3,91.9,95.3,91.5],"paint":[352,345.7,331,345.7,344.9,344.4,347.1,344.5,348.8,343.3,330.2,326.4,326.1,327.3,339.8]}},{"b":7,"v":{"total":[52.8,51.9,46.8,57.8,54.7,57.7,53.7,52.7,47.4,57.1,56.6,56.3,57.6,55.5,53.1],"script":[7.6,7.3,7.4,7.6,7.7,8.4,8.6,7.8,7.9,7.8,7.9,7.6,7.6,7.5,7.9],"paint":[37.8,37.5,37.4,38.5,39.8,38.7,38.1,38.3,37.9,38.8,37.7,38.4,38.2,38.3,37.1]}},{"b":8,"v":{"total":[12.5,14.6,37.4,12.5,13.4,11.6,12.3,16.9,37.1,12.3,13.3,13.2,12.2,12.2,40.1],"script":[9.9,10.4,10.2,10.5,11.2,10,10.1,11.5,9.9,9.6,10.2,10.6,9.1,10,12.1],"paint":[2.5,1,2.3,1.9,2,1.6,2.1,1.9,2.2,1.7,1.4,0.5,3,1.7,1.9]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[28.9]}},{"b":14,"v":{"DEFAULT":[22.4]}},{"b":15,"v":{"DEFAULT":[8.2]}},{"b":16,"v":{"DEFAULT":[79.9]}}]}, +{"f":158,"b":[{"b":0,"v":{"total":[40.9,45.1,45.8,41.8,48.3,48.6,45,43,43.9,46.9,46.2,44.7,48.3,46.1,46.5],"script":[2.7,2.9,3.1,2.9,2.9,3,3,2.9,3,3.1,2.8,2.8,2.8,2.9,2.9],"paint":[33.5,34.2,33.2,33.7,33.7,33.9,33.8,34.2,33.8,34.1,33.9,34.3,34.1,33.7,34]}},{"b":1,"v":{"total":[25.4,27.5,29,23.9,29.3,27.8,20.9,22.3,24.3,19.8,26.7,28.1,27.4,29,28.4],"script":[3.6,4.5,4.1,4,3.7,4.4,4.4,4.2,4.4,4.1,4.4,4.4,4.1,4.2,4.5],"paint":[14.4,14.3,14.7,13.8,14,14.3,14.5,14.1,14.3,13.7,14.5,14.4,14.7,14.8,14.5]}},{"b":2,"v":{"total":[20.3,20.1,35.5,19.5,19.3,19.2,35.1,19.3,35.8,19.3,20.6,34.3,22.1,34.6,34.7],"script":[3.2,3.5,4.9,3.2,3.4,3.7,4.2,4,4,3.9,3.1,3,4,3.6,3.4],"paint":[14.8,14,14.6,15.3,15.1,15.4,14.7,14.2,15.7,14.3,14.4,16.1,15.5,14.9,14.8]}},{"b":3,"v":{"total":[8.4,8.5,7.8,11,8.4,7.8,8.2,9.2,7.9,8.3,8.3,9.3,7.8,8.8,8,11.4,8.6,9.7,8.8,8.8,8.8,8.2,8,7.6,8.2],"script":[6.2,6.3,4.7,5.8,5.4,5.6,4.7,5.1,5.2,4.7,5.9,6.2,5.5,6.8,5.7,5.9,6.3,6.1,6.1,6,5.9,5.8,5.5,5.4,5.2],"paint":[1.7,1.5,2.1,1.8,2.4,2.1,2.4,1.6,2.7,3.4,2,1.6,2.3,1.9,2.1,2.4,2.3,2.1,2.6,2.7,2.1,1.7,2.4,2.1,2.1]}},{"b":4,"v":{"total":[12,13.2,28.5,12.4,13.4,27.7,27.5,11.3,11.7,14.2,27.5,14.2,13.1,12,12.8],"script":[0.8,0.5,1.3,0.2,0.2,1.9,1.1,1.1,1,0.7,0.2,1.4,0.3,0.3,1.4],"paint":[10.1,9.7,11.1,11.2,12.2,9.9,10.1,9.8,9.6,10.8,12,11.1,11.2,9.8,10.5]}},{"b":5,"v":{"total":[18.7,22.1,16.6,15.8,17.8,17.2,23.7,16,20.2,17.2,16.2,15.3,16.6,20.2,19.4],"script":[1.7,1.4,1.4,1.5,1.6,1.4,1.6,1.7,1.7,1.7,1.5,1.6,1.6,1.7,1.4],"paint":[14.2,14.7,13.8,13.7,14.3,13.8,14.5,14.2,13.5,14.6,14.2,13.7,13.6,14.6,13.6]}},{"b":6,"v":{"total":[491.1,487.1,483.6,498.9,486.4,483.3,482,479.2,494.9,478.1,488.1,477.9,477.6,487.3,479.4],"script":[130.1,131.6,138.4,129.4,139,138.4,136.2,135.7,135,136.6,131.3,135.2,135.2,127.8,136.3],"paint":[350.1,344.3,331.7,356.9,335.1,335.1,335.3,334.6,346.3,333.9,347.1,335.1,332.5,347.7,333.6]}},{"b":7,"v":{"total":[61,59.6,59.5,59.2,61.8,61.3,62,61.4,62.1,62.3,61.8,62.7,62.1,60.4,64],"script":[11.8,11,11.3,11.5,12,12,12.2,11.6,12.3,11.8,12.1,11.7,12.1,11.5,12],"paint":[39.9,39.6,39.4,38.7,40.1,40.1,40.5,41.3,40.6,41.3,40.4,40,40.9,40.2,43.4]}},{"b":8,"v":{"total":[14.3,15.6,15.6,15.3,15.7,18.1,30.5,14.9,15.5,15.1,15.4,31,17.9,15.8,16.6],"script":[12.7,13.6,13,13.2,13.3,13.6,12.9,13.3,13,13,12.5,13.1,13,12.5,12.3],"paint":[1.6,1.2,1.8,0.8,1.6,1.8,2.3,1.5,1.5,2.1,1.6,1.8,2.8,1.9,2.7]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4.2]}},{"b":11,"v":{"DEFAULT":[4.5]}},{"b":12,"v":{"DEFAULT":[4.2]}},{"b":13,"v":{"DEFAULT":[35.7]}},{"b":14,"v":{"DEFAULT":[41.4]}},{"b":15,"v":{"DEFAULT":[12.2]}},{"b":16,"v":{"DEFAULT":[80.1]}}]}, +{"f":159,"b":[{"b":0,"v":{"total":[44.7,45.1,59.2,57.1,59.1,56.1,45,44.9,45.2,57.1,44.8,45,57.9,57.1,46.5],"script":[12.4,12.3,12.1,11.8,12.9,11.5,12.7,12.1,11.4,12,12.5,12,12.7,11.8,12.8],"paint":[32,32.6,33.4,32.6,32.8,32.2,32.1,32.5,33.6,32.8,32.1,32.7,32.8,32.7,33.4]}},{"b":1,"v":{"total":[25.3,23.5,25.4,21.8,23,24.3,24.2,22.2,22.2,22.3,24.4,25.1,22.5,25.1,25.8],"script":[8,8.3,7.5,7.4,7.4,7.6,8,7.8,7.7,7.5,8,7.6,7.6,7.1,7.5],"paint":[14.8,14.9,14.6,14.2,15,15.8,14.6,14.1,14.3,14.5,14.4,14.7,14.4,14.8,15.8]}},{"b":2,"v":{"total":[19.9,19.7,18.9,18.1,21.6,18.7,18.3,19.8,21.5,18.4,19.9,18.9,17.9,23,18.5],"script":[4.9,3.6,3.7,4.4,4.6,3.8,3.9,4.1,4.4,3.5,3.7,3.9,3.8,4,4.3],"paint":[14.6,14.8,15.1,13.6,15.4,14.7,13.7,13.5,16.3,14.1,14.8,13,13.6,16,13.3]}},{"b":3,"v":{"total":[8.3,7.9,15.2,11.9,10.5,6.8,8.9,8,8.2,7.1,4.4,6.5,13.4,10.4,4.3,6.8,8,3.8,16.2,10.7,4.6,5.7,3.7,3.8,6.8],"script":[2.6,3.1,2.5,1.8,2.3,3.3,1.8,1.8,2.9,1.9,1.5,2.1,1.3,2.8,2.3,3.4,2.8,1.4,3.8,2.9,1.4,1.3,1.2,1.7,2.7],"paint":[4.3,3.8,5.1,4.5,3.2,3.7,4.4,3.9,3.1,2.8,2.7,4.6,3.1,4.1,1.2,3.8,4.8,1.4,4.4,4.2,1.8,2.2,1.8,1.7,3.2]}},{"b":4,"v":{"total":[17,13.9,12.2,54.8,54.9,54.2,11.5,56.8,53.2,56.4,12.9,60.4,11.9,54.9,12],"script":[2.2,1.3,1.6,2,1.5,1.8,1.7,1.5,1.3,1.7,1.4,1.6,2.4,1,2],"paint":[10.3,10,9.7,10.1,10.2,10,9.7,11.5,9.1,11.5,9.6,11.4,9.3,11.2,9.2]}},{"b":5,"v":{"total":[45,43.3,45,46.9,45.1,45.2,45.2,45.7,46.6,45.6,43.8,49.1,44.3,42.4,41],"script":[12.3,13.7,37.1,13.4,37.3,37.3,36.7,37.8,13,37.5,35.6,13.4,36.5,11.8,12],"paint":[31.7,28.9,30.1,29.6,29.7,31,30.3,31.6,32.9,31,30.5,31.2,29.9,29.5,28]}},{"b":6,"v":{"total":[1485.2,1472.9,1438.9,1447.2,454.5,455.6,453.9,454.6,1445.4,454.5,1412.3,457.3,456.9,1453.1,452.6],"script":[113.1,113.2,113.6,113.8,117.2,115.3,115.5,114.5,113.3,116.9,113.2,119.1,119.4,111,116],"paint":[352.6,342.5,353.2,346,323.2,325.2,324.3,324.3,344.9,322.9,342.5,323.6,322.6,338.2,322]}},{"b":7,"v":{"total":[54.4,55.7,53.1,55.7,54.3,54.5,54.8,52.6,95.5,55.2,55.1,55.4,56.1,54,53.9],"script":[14.4,14.3,12.9,13.9,14.7,14.4,14,13.6,14.2,13.7,14.9,14.6,13.9,14.6,13.5],"paint":[39.5,40.1,38.9,40.4,39.2,39.3,40.2,38,38.7,40.2,39.6,40.2,40.8,39,39.4]}},{"b":8,"v":{"total":[11.9,11.7,11.3,14.2,14.2,13.8,11.6,11.9,14,11.2,12.1,12.1,15.3,11.7,13.8],"script":[10.2,10,9.5,10.5,9.9,10.5,9.7,10,10.2,9.6,9.8,10.1,10.9,9.6,11.2],"paint":[1.6,1.6,1.4,2.6,3.2,2.5,1.8,1.1,2.8,1.5,2.2,1.9,3,2,2.5]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[5.7]}},{"b":11,"v":{"DEFAULT":[5.7]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[49.6]}},{"b":14,"v":{"DEFAULT":[16.9]}},{"b":15,"v":{"DEFAULT":[6.1]}},{"b":16,"v":{"DEFAULT":[85]}}]}, +{"f":160,"b":[{"b":0,"v":{"total":[51.1,50.4,51,51.1,51.4,50.6,49.5,48.6,50.7,49.4,51.7,49.5,50,49.7,50],"script":[15.7,15.2,15.5,15.3,15.6,15.5,14.9,15,15.6,14.8,15.3,15.2,15.1,14.6,15.3],"paint":[35,34.7,35.1,35.3,35.4,34.7,34.2,33.1,34.7,34.1,35.9,33.9,34.4,34.7,34.2]}},{"b":1,"v":{"total":[24.4,22.6,22.5,22.9,22.2,23.1,23.5,22.4,22.3,22.2,22.8,22.8,22.4,23.5,23.3],"script":[8.2,7.8,7.9,8,7.6,8.3,8.4,7.9,7.8,7.6,7.9,7.9,8,8.2,8],"paint":[15.8,14.3,14.1,14.5,14.2,14.4,14.7,14,14.1,14.2,14.5,14.5,14,14.9,14.9]}},{"b":2,"v":{"total":[26.9,25.8,27.9,27,25.6,28,25.6,26.7,26,27.3,26.4,25.2,26.7,26,25.9],"script":[10.2,10.2,11.9,10.8,9.3,10.9,10.2,10.1,10.1,10.1,10.1,9.9,9.5,10.2,10.3],"paint":[15.7,13.8,13.2,15,14.6,14.4,13.7,14.9,13.9,14.8,14.9,14,15.6,13.7,14.3]}},{"b":3,"v":{"total":[6.6,6.8,7.1,7,7.3,7.6,7.8,6.3,7.5,6.5,6.6,6.9,8.3,7.3,6.6,7.9,7.3,7.1,6.5,6.4,6.8,6.5,6.5,8.1,6.7],"script":[4.4,4.1,4.5,4.3,4.8,4.6,5.3,4.5,5.1,4.3,4.4,4.3,5.1,4.1,4.4,5.1,4.3,4.1,4.4,4.3,4.6,4.6,4,4.4,4.8],"paint":[2,2.6,0.9,2.2,1.4,1.9,1.6,1.6,2.3,1.3,1.1,2.5,1.9,2.5,1.7,2,2.1,2.8,1.9,1.2,2.1,1.6,1.4,3.2,1.8]}},{"b":4,"v":{"total":[15.7,14.7,15.5,15.7,16,15.3,15,15.8,15.4,16,15.7,15.3,15,15.1,16],"script":[4.8,4.1,4.1,4.5,3.8,4.4,4,4.7,4.2,4.8,4.4,4.2,4.2,4.3,4.3],"paint":[9.2,9.5,9.9,9.7,10.5,10,9.5,9.3,9.9,9.1,10.5,9.5,8.6,9.8,10.4]}},{"b":5,"v":{"total":[46,45.3,46.7,45.1,45.4,45.6,47.9,46.1,46.4,46.6,45.4,45.8,47.4,45,47.6],"script":[15.2,14.7,15,14.5,14.8,15.4,15.3,14.8,15.1,15.5,14.8,14.9,15.4,14.5,16.1],"paint":[30,29.3,30.3,29.7,29.7,29.4,31.8,30.3,30,30,29.8,30,30.8,29.7,30.4]}},{"b":6,"v":{"total":[495.7,492.3,492,515.3,492.6,492,493.4,493.3,495.8,492.9,489.9,515.5,492.5,489.9,494.9],"script":[149.4,150.1,148.4,149.5,148.3,150.1,150.1,149.4,151.2,148.6,148.7,149.6,149.1,146.9,149.7],"paint":[338.2,335.3,336.9,358.9,337.2,335.1,335.9,337,337.9,337.5,334.5,358.9,336.6,336.3,337.8]}},{"b":7,"v":{"total":[58.2,59.2,58.6,58.3,58.7,58.8,59.4,58.3,58.4,59.2,60.4,58.1,58.7,58.5,57.9],"script":[17.5,18.3,17.9,17.7,18,17.8,18.4,17.3,17.9,18.4,18.9,17.1,17.3,17.8,17.6],"paint":[39.8,40,39.8,39.7,39.8,40.1,40.1,40.1,39.4,39.9,40.6,40.1,40.4,39.9,39.4]}},{"b":8,"v":{"total":[21.7,21.5,20.9,22.1,22.3,22.8,22.2,21,21.6,21.5,21.2,20.7,21.4,21.2,21.1],"script":[19.4,19.6,19.3,20.4,19.9,20.8,20.1,19.6,19.4,19.1,19.2,19.1,19,19.1,19.2],"paint":[2.1,1.6,1.2,0.8,1.5,1.2,2,0.7,2.1,1.8,1.6,0.4,2.2,1.6,1.7]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[4]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[2.3]}},{"b":13,"v":{"DEFAULT":[31.1]}},{"b":14,"v":{"DEFAULT":[63.1]}},{"b":15,"v":{"DEFAULT":[13.3]}},{"b":16,"v":{"DEFAULT":[114.7]}}]}, +{"f":161,"b":[{"b":0,"v":{"total":[49.4,47.3,49.7,46.8,47,48,49.2,47.3,48.8,47.5,48,47.9,48.3,49,48.6],"script":[13.2,11.8,12.9,11.4,12,11.8,13,11.6,11.7,11.8,12.1,12.8,12.1,12,12.8],"paint":[35.8,35,36.3,35,34.6,35.8,35.8,35.3,36.7,35.3,35.4,34.6,35.7,36.5,35.3]}},{"b":1,"v":{"total":[21.1,22.2,20.9,22.2,21.1,21.8,21.7,23.3,23.4,22,21.8,22.6,21.8,22.1,22.9],"script":[6.6,7.4,6.5,7.2,6.4,7.3,7.3,7.8,7.2,7.3,7.2,7.5,6.6,7.3,7.5],"paint":[14.1,14.3,14,14.6,14.2,14,13.9,15.1,15.8,14.2,14.2,14.7,14.7,14.4,14.9]}},{"b":2,"v":{"total":[37.4,40.4,38,40.9,37,38.1,38,41.5,38.5,41.5,38.9,37.9,38.9,38.3,38.8],"script":[21.1,22.8,21.3,24.7,21,22.2,21.8,23.1,22.1,23.9,22.3,21.2,21.9,22.2,21.7],"paint":[14.2,16.3,15.6,14.8,14.6,14.6,14.7,16.4,14.7,16.2,14.4,15,15,14.9,14.6]}},{"b":3,"v":{"total":[23.7,24.3,25.9,23.6,25.7,23.9,24.6,24.8,25.3,25.7,25.2,25.3,24.6,24.4,24.3,24.5,24.5,24.8,25.4,24.1,23.3,24.7,26,23.9,23.3],"script":[20.4,20.7,22,19.9,21.7,20.9,21.4,21.1,21.6,22,21.6,21.9,20.8,21.3,20.5,20.8,21.3,21.5,22.2,20.1,19.9,21.8,22,21.1,19.7],"paint":[1.4,2.3,2.4,2.6,2.3,2,1.3,3.4,2.5,2.7,2.5,2.8,2.6,2.4,2.1,3,2.1,3.1,1.6,3.1,2.4,2.2,3,2.1,2.7]}},{"b":4,"v":{"total":[32.5,33,33.1,32.1,33.7,32.3,33.3,34.2,31.9,33.2,35.2,34,32.1,34.6,32.6],"script":[20.8,21.4,21.9,20.3,22.5,20.6,21.6,21.6,20,21.3,22.2,21.1,20.4,21.9,20.9],"paint":[10.3,9.2,9.7,10.2,9.6,9.5,9.9,11.8,9.3,10.4,11.7,10.6,10.3,9.9,9.9]}},{"b":5,"v":{"total":[42,45,41.6,45.4,41.8,46.1,46,45.9,42.6,44.3,42.4,47,42.4,42.3,46.8],"script":[11.4,11.8,10.8,10.6,10.9,11.1,11.4,11.8,11.4,11.4,11.2,11.3,11.4,11.3,12.3],"paint":[29.8,32.2,29.9,34,29.9,33.9,33.6,33.3,30,31.9,30.2,34.7,29.9,30.1,33.5]}},{"b":6,"v":{"total":[524.2,509.1,483.2,488.1,479.7,500.9,506.5,509.9,482,485.6,498.5,499.6,497.7,484.2,482.4],"script":[134.4,134.6,129.3,130,130.8,135.7,133.8,134.3,134.6,135.6,134.7,134.7,134.3,135.2,133.9],"paint":[382.5,367.2,347,351.2,341.7,358.3,365.8,368.7,340.6,343.1,357.1,358.1,356.5,342.1,341.6]}},{"b":7,"v":{"total":[61.6,61.1,62.2,61,62.4,62.3,62.3,61.7,62.8,61.6,62.3,62.3,63.7,61,61],"script":[20.8,20.7,21.2,20.8,21.7,21.8,21.1,20.6,21.1,20.7,21.6,21.7,21.6,20.8,20.5],"paint":[39.9,39.5,40.1,39.3,39.7,39.6,40.3,40.2,40.8,39.9,39.8,39.7,41.2,39.2,39.7]}},{"b":8,"v":{"total":[27.2,25.9,28.1,27.4,28.8,27.8,27.3,27.1,24.9,25.9,27.2,28.1,27.7,24.1,27.7],"script":[25.2,23.7,25.9,25.8,26.4,25.4,25.2,25,22.8,24.2,25.3,26,25.4,22.7,26.1],"paint":[1.8,1.6,2,1.1,1.3,1.8,2,2,2.1,1.5,1.8,1.7,2.2,0.4,1.5]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[5.9]}},{"b":11,"v":{"DEFAULT":[8.4]}},{"b":12,"v":{"DEFAULT":[6.2]}},{"b":13,"v":{"DEFAULT":[49.2]}},{"b":14,"v":{"DEFAULT":[152.4]}},{"b":15,"v":{"DEFAULT":[21.9]}},{"b":16,"v":{"DEFAULT":[213.1]}}]}, +{"f":162,"b":[{"b":0,"v":{"total":[56.7,57.3,58.3,57.3,57.2,56.1,57,57.5,56.8,56.6,57.7,56.7,57.3,56.5,56.4],"script":[21.9,22.5,22.6,22.3,22.1,21.7,22.2,22.8,22.3,22.7,22.5,22.8,22.2,22.1,21.7],"paint":[34.5,34.4,35.2,34.6,34.6,33.9,34.2,34.3,34.1,33.5,34.7,33.5,34.7,34,34.3]}},{"b":1,"v":{"total":[26,27.4,26.1,26.2,25.8,26.3,26.8,25.7,26.9,28.7,26.7,26.4,26.7,26.5,25.2],"script":[11.6,12.5,11.8,11.8,11.5,11.9,12,11.6,12.1,12.8,11.9,11.9,11.8,11.8,10.7],"paint":[14,14.4,13.9,13.9,13.9,14,14.4,13.7,14.3,15.5,14.4,14,14.5,14.3,14.1]}},{"b":2,"v":{"total":[17.6,17.5,18.3,17.4,18.1,17.4,17.3,18.4,17.5,16.9,17.6,17.6,18.3,16.9,17.9],"script":[2.4,1.8,1.6,1.3,1.9,2.4,1.1,2.6,1.4,2,2.7,1.6,2.4,1.5,2.3],"paint":[13.8,14.2,15,14.8,14.5,13.9,14.5,13.6,14.6,13.1,13.5,14.8,14.7,14.3,14.1]}},{"b":3,"v":{"total":[5.8,5.9,5.4,6.4,5.9,5.5,5.1,6,6.3,5.3,5.9,6.4,5.5,5.9,6.1,6.1,6,5.6,5.7,5.5,5.2,6.1,5.4,7.4,5.4],"script":[3.4,3.8,3.1,3.9,3.3,3.3,3.1,2.9,3.4,3.1,3.4,4,3.2,2.9,3.6,3.5,2.8,3.7,2.9,3,3.1,3.4,3.2,3.8,3.2],"paint":[1.9,2.1,1.4,2.4,1.7,1.4,1.2,3,2.2,2.1,1.7,2.3,2.1,2.9,1.6,1.3,2.7,1.5,2.3,2,2,2.6,2.1,2.4,1.6]}},{"b":4,"v":{"total":[11.6,11.4,11.5,11.6,11.2,11.2,12.4,11.1,11.1,11.8,13,11.2,12.1,12.1,11.9],"script":[0.4,0.7,0.1,0.1,0.1,0.1,0.5,0.1,0.1,0.1,0.6,0.2,0.9,0.9,0.8],"paint":[9.4,8.7,9.5,8.6,10,8.8,9.7,10,10,10.3,10.7,8.6,9.1,10,10.1]}},{"b":5,"v":{"total":[15.3,15.1,15.3,15.1,16,15.5,15.3,15.2,15.4,15.4,15.4,15.4,15.4,15.1,15.3],"script":[0.1,0.3,0.4,0.3,0.4,0.2,0.1,0.1,0.1,0.4,0.5,0.4,0.1,0.1,0.4],"paint":[14.4,14,13.9,14,14.8,14.6,14.4,14.3,14.6,14,14.1,14.3,14.5,14,14.2]}},{"b":6,"v":{"total":[597.7,591.3,607.6,596.9,612.3,600.5,599.1,596,594.3,602.9,595.9,594.2,595.2,606,593.9],"script":[231.7,229.9,243.3,234.5,243,232.4,237.8,234.3,229.6,242.2,231,231.9,229.1,231.1,230.5],"paint":[359.1,354.1,357.5,355.9,362,361.1,354.4,354.8,358.2,354.1,358,355.4,359.3,368.3,356.7]}},{"b":7,"v":{"total":[68.6,68.5,68,69.8,69,68.5,69.3,68.8,69.2,69.8,68.6,69.8,68.7,70.5,69.5],"script":[28.6,29,28.6,28.7,28.4,28.6,29.3,28.8,28.3,28.8,28.7,29.4,28.6,29,29.2],"paint":[39.1,38.6,38.5,40.1,39.7,39.1,39.1,39.1,40.1,39.8,38.9,39.4,39.2,40.6,39.4]}},{"b":8,"v":{"total":[13.5,14,13.9,15.4,13.8,13.9,14.7,13.9,14.3,14.9,13.8,14.1,14.2,14.2,13.5],"script":[11.8,12.1,12,12.8,11.6,12.2,12.7,11.8,11.7,12.2,11.4,11.8,11.9,12.4,12.2],"paint":[1.5,1.8,1.1,2.1,2,1.4,1.9,1.4,2.1,2.4,2.3,1.2,1.2,1.7,1.3]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[4]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[31.4]}},{"b":14,"v":{"DEFAULT":[14.8]}},{"b":15,"v":{"DEFAULT":[5]}},{"b":16,"v":{"DEFAULT":[58.5]}}]}, +{"f":163,"b":[{"b":0,"v":{"total":[40.2,45.9,46,46.1,39.9,42.5,43.2,46.4,45.7,44.4,44.7,40.7,45.8,43.9,39.8],"script":[1.4,1.4,1.4,1.3,1.3,1.3,1.4,1.3,1.4,1.3,1.4,1.4,1.4,1.4,1.2],"paint":[32.7,32.7,33.1,33,32.8,33.8,33,36,33.1,34.4,33,32.8,32.9,32.9,33.3]}},{"b":1,"v":{"total":[23.7,18.7,15.3,22.7,24.6,18.3,17.1,15.2,16.4,16,17.7,19,19.6,20.7,22],"script":[1.2,1.2,1.1,1.1,1.2,1.2,1,1,1.1,1.1,1.1,1.2,1.2,1.2,1.2],"paint":[14.2,13.7,13.5,13.7,14.7,14.2,14.3,14,15.2,14.2,13.7,14.1,14,14,13.8]}},{"b":2,"v":{"total":[15.6,15.6,19,17.2,16,17.5,14.9,15.4,16,16.9,16.3,15.9,19.4,16.5,32.1],"script":[1.6,1,1.3,2.1,1.7,1,0.8,1.5,0.7,2,1.3,1,1.1,2.1,1.7],"paint":[13.8,14.3,15.3,13.3,14.2,13.8,12.3,13,12.6,14.8,14.5,13.8,15.4,13.4,14.7]}},{"b":3,"v":{"total":[3.6,3.2,3.5,3.4,3.9,6.4,3.6,4.1,4,3.7,6.2,3.4,3.3,3.5,4.2,3.7,3.8,3,3.8,3.8,4.5,3.8,3.4,3.6,3.6],"script":[0.8,0.8,1.2,1,0.3,1.6,1,1.5,1.5,1,1.1,1.7,1.1,1.6,1.6,1.8,1.2,1.4,0.3,1.2,1.5,1.6,1.3,1.3,1.2],"paint":[2.4,1.5,1.5,1.9,3.5,2.4,1.6,1.6,2.4,2.6,1.7,1,2.1,1.3,2.5,1.4,2.5,1.4,2.4,1.4,2.8,1.7,1.9,1.8,1.2]}},{"b":4,"v":{"total":[11.1,11.8,26.8,12,11.4,27,26.3,27.1,10.5,11.6,11.6,27,26.4,11,26.5],"script":[0.2,0.2,1.2,0.8,0.2,1,1.1,0.9,1.6,0.3,1.4,0.8,0.3,0.2,0.3],"paint":[9.8,9.7,9.6,10.2,10.4,10.3,9.1,10.2,8.8,10.4,9.5,10.2,9.7,10,10.2]}},{"b":5,"v":{"total":[35.5,30.6,30.5,36.1,30.9,33.7,30.9,30.4,30.1,31.7,31.2,31.2,31.3,31.9,33.9],"script":[2,1.7,1.7,1.9,1.5,1.6,1.5,1.4,1.8,1.5,1.8,1.8,1.9,1.6,1.4],"paint":[28.6,28.8,28.7,31.8,28.9,29.8,29.3,28.9,28,29.9,28.1,28.6,29.3,28.3,28.4]}},{"b":6,"v":{"total":[457.9,441.1,462,438.1,443.8,459.9,439,452.9,458.2,458.3,455.6,455.5,459.2,459,445.3],"script":[97.9,99,97.9,98.5,97.8,98.2,98,96,96.3,99.7,96.6,99,97.8,96.8,99.1],"paint":[354.8,335.5,351.8,335.1,333,350.5,336.1,344.1,348.8,350.8,354,345,350.1,350.8,334.7]}},{"b":7,"v":{"total":[53.9,54.4,53.4,59,56.8,60.1,58.1,57.1,58.6,53.3,58.5,54.2,53.9,57.2,54.5],"script":[10.6,10.8,10.4,10.7,10.7,10.7,10.4,10.7,10.5,9.9,10.7,10.6,10.5,11.1,10.4],"paint":[37.5,37.6,37,38.1,37.5,38,38,37.5,36.9,37.6,37.4,37.5,37.4,37.6,37.7]}},{"b":8,"v":{"total":[13.5,13.9,14.4,14.3,13.8,30.1,15.9,13.4,14.2,14.4,13.2,14.8,14.1,13.6,14.5],"script":[11.2,10.8,11.6,12.2,11.5,13,13.6,11.5,12.4,12.9,11.1,12.8,11,10.7,10.9],"paint":[0.9,2.2,1.8,1.1,1.9,1,1.9,1.9,1.8,1,1.7,1.1,3,1.9,1.8]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.7]}},{"b":12,"v":{"DEFAULT":[3.6]}},{"b":13,"v":{"DEFAULT":[27.3]}},{"b":14,"v":{"DEFAULT":[64.1]}},{"b":15,"v":{"DEFAULT":[15]}},{"b":16,"v":{"DEFAULT":[107.9]}}]}, +{"f":164,"b":[{"b":0,"v":{"total":[116.1,114.8,115.1,115,115.3,115.4,115,115.4,115,115.3,115.2,115.3,115.2,115.5,115.3],"script":[18.4,17.5,17.6,17.7,17.7,17.8,17.8,18.1,17.9,18.1,17.5,18.3,17.5,18,18],"paint":[29.8,29.6,29.3,29.6,29.1,29.5,29.8,29.4,29.8,29.5,29.7,29.8,29.6,29.6,29.5]}},{"b":1,"v":{"total":[89,89.4,88.6,89.7,88.2,88.7,90.2,88.9,88.5,89.1,89.7,88.7,88.8,88.6,89.7],"script":[16.7,16.3,16.6,16.4,16.3,16.5,16.2,16.1,16.3,16.4,16.3,16.5,16.4,16.7,16.5],"paint":[16.2,14.5,14.7,14.7,15.1,14.5,14.2,14.5,14.5,14.7,15.1,14.5,14.7,14.5,14.4]}},{"b":2,"v":{"total":[159.9,161.4,158.7,159.2,159.6,161,157.4,162.3,159.6,159.7,157.7,160.1,158.1,159.4,157.1],"script":[66.4,67.7,67.3,68,68.3,67.1,67,67.9,66.5,67,67.1,67.6,67.6,66.9,67.6],"paint":[15.1,14.8,16.4,14.8,15.8,14.5,15.9,15.4,15.9,14.2,14.5,16.1,15.5,16.2,16.2]}},{"b":3,"v":{"total":[116.9,122.2,124.5,121.5,116,124.8,116.1,122.6,123,115.9,122.8,114,115.1,122.5,123.1,124.9,122.9,123.5,115,123.3,123.1,120.8,116.3,122.6,113.6],"script":[61.6,62.6,64.1,62.1,62.2,63.2,61.1,63.4,63.5,63.4,61.7,61.4,62.8,64,64,64.4,65,64.9,62.4,66,62.4,66.5,62.6,62.3,61.1],"paint":[2.4,3.6,3.5,4.1,3.6,4.9,3.3,2.2,2.8,3.2,3.4,3.7,2.2,2.6,3.9,2,2.3,3.8,3.3,3.6,2.6,4.1,4.2,2.8,3.6]}},{"b":4,"v":{"total":[158.4,159.6,158.9,160.1,159.2,158.5,160.3,161.3,159.8,160.9,158.7,159.6,159.7,158,160.8],"script":[65.8,64.8,61.3,64.5,64.4,64.8,64.7,64,64.8,65.5,65.4,65.9,63.4,64.8,65.5],"paint":[11.5,11.5,11.6,10.8,11.9,12.2,11.4,9.6,11.8,11.3,12.2,11.5,11,11.3,11.5]}},{"b":5,"v":{"total":[117.4,118.2,117.8,118.3,117.2,116.4,116.9,117.5,117.8,119.4,119.5,118.3,120.3,117.1,116.2],"script":[35.6,36.1,35.8,36.1,34.8,34.7,35.1,36.6,35.2,35.5,36,34.4,36.3,34.9,35.1],"paint":[29.3,29.3,30.3,29.6,31.2,31.2,30.1,30.9,30,30.5,30.4,31.9,29.8,32.3,30.1]}},{"b":6,"v":{"total":[940.4,923.6,922.8,915,923.5,916.8,923.6,932.2,923.6,922.9,923.8,906.9,940.5,931.6,916.9],"script":[173.3,170.5,170.6,170.5,168.2,165.8,164.8,171.3,170.8,165.3,173.4,164.3,173.9,172.1,163.7],"paint":[348.5,340.9,342.2,338.9,343.8,343.1,344.9,351.4,340,347.3,342,339.6,351,341.2,342.6]}},{"b":7,"v":{"total":[145.8,146,139.2,139.1,139.3,139.1,139.4,139.2,139.1,138.8,139.4,139.3,139.3,138.9,139.1],"script":[33.1,32.4,33.1,32.6,33.4,32.1,33.5,32.9,31.6,32.1,32.2,32.4,33.2,33,32.9],"paint":[33.8,34.5,33.3,33.7,33.5,33.6,33.5,33.5,33.4,33.4,33.4,33.2,33.4,33.1,33.6]}},{"b":8,"v":{"total":[66.7,66.8,66.1,66,65.7,67.4,67.7,64.4,66.9,68.3,67.2,67.9,66.8,67.7,66.8],"script":[15.5,14.9,16.3,15.7,15.2,16.3,16.3,16.9,17.2,16.2,16.1,16.3,16.7,15.8,17.3],"paint":[3.2,3.1,1.6,2.5,2.4,1.9,1.6,2.2,1.9,2.3,1.6,2.6,2.2,2.4,1.9]}},{"b":9,"v":{"DEFAULT":[5.4]}},{"b":10,"v":{"DEFAULT":[9]}},{"b":11,"v":{"DEFAULT":[9.3]}},{"b":12,"v":{"DEFAULT":[5.9]}},{"b":13,"v":{"DEFAULT":[38.5]}},{"b":14,"v":{"DEFAULT":[946.8]}},{"b":15,"v":{"DEFAULT":[243.2]}},{"b":16,"v":{"DEFAULT":[1511.6]}}]}, +{"f":165,"b":[{"b":0,"v":{"total":[38.9,38.6,38.7,39.2,39.1,38,39,39.6,39.5,39,39.9,39.8,41.1,40.9,39.4],"script":[5.5,5.4,5.6,5.4,5.6,5.2,5.3,5.8,5.8,5.7,5.6,6,5.7,5.5,5.7],"paint":[32.9,32.7,32.7,33.3,33.1,32.3,33.2,33.4,33.3,32.8,33.9,33.3,34.9,35.1,33.3]}},{"b":1,"v":{"total":[15.7,15.2,16.9,15,16.5,15.8,15.2,15.3,15,15.2,15.2,16.4,15.3,15.4,15.1],"script":[1.4,1.2,1.1,1.2,1.2,1.2,1.1,1.1,1.2,1.2,1.2,1.1,1.2,1.1,1.2],"paint":[13.8,13.6,15.4,13.4,14.9,14.3,13.7,13.8,13.4,13.6,13.6,14.9,13.7,13.9,13.5]}},{"b":2,"v":{"total":[16.8,16.1,16.7,16,16.6,16.9,16.7,17.1,16.4,16.8,16.3,16.6,16.5,17.2,16.5],"script":[1.9,1.1,1.5,1.5,1.3,1.3,1.6,1.7,1.3,1.1,1,1.2,1.3,1.7,1.2],"paint":[13.4,13.5,13.8,13.2,13.5,14.1,13.5,14.3,13.1,14.6,14.3,13.9,13.6,13.4,14.1]}},{"b":3,"v":{"total":[3.4,3.2,3.4,2.9,3.1,3.2,6.6,3,2.9,3.3,2.7,3.1,5.1,3.1,3,3.2,2.6,3.3,4,3,3.2,4.6,5.6,3.1,4.4],"script":[1,0.6,0.9,0.5,0.8,1.1,1.2,0.8,0.5,0.9,0.2,0.9,0.7,1,0.7,0.8,0.6,0.9,1,0.6,0.2,0.9,1,0.9,0.6],"paint":[2,2.3,1.8,1.4,2.2,1.5,2,2.2,2.3,1.3,2.2,1.5,1.7,2,2.2,2.1,1.8,2.3,1.2,2.3,2.8,1.5,1.5,1.4,2.8]}},{"b":4,"v":{"total":[11.5,12.1,12.3,11.6,11.8,11.5,12.2,11,12.2,11.7,12,11.4,10.8,11.1,11.9],"script":[0.2,0.6,0.9,0.9,1.1,0.8,0.9,0.5,0.8,1,0.9,0.2,0.5,0.2,0.3],"paint":[9.9,9.1,10.4,9,9.3,8.7,9.7,9.6,9.7,9,9.6,10.4,9,9.8,10.6]}},{"b":5,"v":{"total":[34,32,32.2,31.6,31.9,31.4,31.1,31.3,32,31.9,32.1,32.3,31.3,31.5,31.6],"script":[2.4,2.5,2.5,2.5,2.4,2.5,2.5,2.4,2.5,2.5,2.4,2.6,2.5,2.5,2.3],"paint":[30.6,28.4,28.8,28.2,28.1,28.1,27.7,28.1,28.8,28.4,28.9,28.7,28.1,28.3,28.5]}},{"b":6,"v":{"total":[392.9,397,403.4,401.4,396.4,399.8,402.5,398.2,400.4,403.2,397,397.7,401,395.7,397.2],"script":[56.4,57.2,58.2,58.2,57.4,57.4,58.9,56.8,58.6,59.6,58.6,57.6,56.6,56.9,58.2],"paint":[329.8,332.3,338.5,336.4,332.1,335.7,336.9,334.6,335.2,336.8,331.7,333.3,337.7,332.1,332.2]}},{"b":7,"v":{"total":[43.6,43.2,44.2,43.6,44,43.9,43.5,44.6,42.8,44.7,45.1,44.5,44.2,44.1,46],"script":[5.3,5.4,5.1,5.9,5.7,5.5,5.7,5.8,5.4,5.4,5.6,5.8,5.7,5.7,5.6],"paint":[37.5,36.9,38.1,36.9,37.5,37.5,36.9,37.9,36.6,38.3,38.7,37.9,37.7,37.5,39.6]}},{"b":8,"v":{"total":[12.7,12.2,12.2,12.7,12.8,12.7,13.2,13.3,12.7,12.4,13.9,12.7,13.2,12.4,13.2],"script":[10.8,10.6,10.7,11,10.7,10.8,11.6,11.4,10.7,10,11.6,10.2,10.8,10.5,10.7],"paint":[1.8,1.5,0.4,1.6,1.8,1.7,1.6,1.8,0.8,2.3,1.3,2,2,1.6,2.3]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[21.2]}},{"b":14,"v":{"DEFAULT":[27.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[86.7]}}]}, +{"f":166,"b":[{"b":0,"v":{"total":[40.2,41.3,40.4,41,40.3,40.5,40.2,40.1,40.1,40.4,40.6,39.9,40.7,40.7,40.4],"script":[5.8,6.4,6.2,6.1,6,6.1,5.9,6,5.9,6,6.5,5.9,6.5,6.1,5.8],"paint":[34,34.5,33.8,34.4,33.9,33.9,33.9,33.6,33.7,33.9,33.7,33.5,33.8,34.2,34.2]}},{"b":1,"v":{"total":[14.6,14.8,15.2,16.5,14.4,14.8,14.7,14.7,15.3,15.6,14.6,14.9,15.5,14.4,15.7],"script":[1.1,1,1,1,1,1,1,1,1.1,1.1,1,1.1,1.1,1,1],"paint":[13.2,13.3,13.8,15.1,13,13.4,13.3,13.3,13.9,14.1,13.3,13.5,14,13,14.2]}},{"b":2,"v":{"total":[16.5,16.2,16.6,16,16.6,16.2,16.4,16.5,16.2,16,16.6,17,16.4,16.6,15.9],"script":[0.2,0.9,1.3,0.9,0.7,0.8,0.8,0.8,0.6,0.8,0.9,1.4,1.4,1.5,0.9],"paint":[14.5,13.5,13.1,13.5,14.9,14.2,14.2,14.1,13.9,13.8,14.2,14.6,13.5,13.7,13.7]}},{"b":3,"v":{"total":[4.7,4.8,2.6,3.1,2.7,2.7,2.4,3.3,2.7,2.3,5.7,4.2,5.4,3.8,6,2.5,2.8,2.5,3.9,3.3,2.5,3.3,2.9,2.9,3],"script":[0.5,0.1,0.1,0.7,0.3,0.7,0.2,1.1,0.1,0.1,0.9,0.1,1,0.1,0.1,0.6,0.1,1,0.7,0.9,0.1,0.1,0.1,0.9,0.9],"paint":[1.3,1.3,2.5,1.4,2.3,1.9,1.3,2.1,2.5,2.1,1.7,1.6,2.1,2.5,1.6,1.8,2.6,1.4,3.1,2.3,1.6,3.1,1.9,1.9,1.4]}},{"b":4,"v":{"total":[11.1,11.1,11.6,10.9,11,10.9,10.8,11.2,12.7,11.2,10.5,11.3,11.4,11.5,10.9],"script":[0.1,0.1,0.1,0.1,0.3,0.1,0.6,0.1,1,0.1,0.3,0.8,0.1,0.6,0.1],"paint":[9.4,9.3,10.3,9.5,9.4,9.1,8.8,8.7,9.6,9.8,8.8,9.5,9.2,9.8,10.1]}},{"b":5,"v":{"total":[31.8,32,31.5,31.9,32.4,31.5,31.9,32.6,33,33.7,33,32.7,31.9,34,32.9],"script":[2.3,2,2,2.3,2.3,1.9,2.2,2.2,2.2,2.3,2.3,2.3,2.3,2,1.9],"paint":[28.7,29.2,28.8,28.4,29.3,28.5,28.9,29.4,30,30.7,29.6,29.4,28.6,30.6,30.1]}},{"b":6,"v":{"total":[422.4,417.9,418.8,424.9,419.9,419.5,420.7,421.9,415.5,417.7,415.3,418.2,418.5,417.1,417.1],"script":[74.1,73.6,72,75.8,73.5,73.3,72,75.3,74.7,73,73.5,74.5,72,73.2,73.1],"paint":[341.4,337.4,340.2,342.4,339.6,339.4,341.5,339.8,334,338,335.2,337,339.8,337.3,337.3]}},{"b":7,"v":{"total":[44.4,44.8,43.8,44.8,45,45.1,45.2,45.2,45.8,45.1,45.6,45.5,45.8,45.3,45.5],"script":[5.4,5.5,5.5,5.6,5.5,5.5,5.9,5.6,5.6,5.6,5.5,5.6,5.6,5.7,5.7],"paint":[38.1,38.4,37.4,38.4,38.6,38.7,38.4,38.8,39.3,38.6,39.2,39,39,38.8,38.9]}},{"b":8,"v":{"total":[12.6,13.5,13.6,13.1,12.6,13.3,13.2,13,12.2,13.3,13,13.5,14.1,12.5,13.9],"script":[11.2,10.5,11.7,11.1,10.8,11.8,11.5,11.1,10.8,11.6,11.1,11.8,12.2,11,11.2],"paint":[1.3,1.9,1.2,1.9,1.7,1.3,0.9,1.8,1.3,1.6,1.1,1,1.8,1.4,2.6]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[15.6]}},{"b":14,"v":{"DEFAULT":[26.1]}},{"b":15,"v":{"DEFAULT":[9.7]}},{"b":16,"v":{"DEFAULT":[87.9]}}]}, +{"f":167,"b":[{"b":0,"v":{"total":[59.9,58.2,59.3,59.9,60.4,58.3,60.5,58.6,58.6,60.8,58.5,57.8,59.4,59.3,60.9],"script":[23.8,21.6,22.1,22.9,22.9,22,23.4,23.5,23.7,23.8,23.3,23.4,24.2,23.3,23.6],"paint":[35.6,36.1,36.8,36.6,37.1,35.8,36.6,34.7,34.5,36.5,34.7,34,34.8,35.6,36.9]}},{"b":1,"v":{"total":[35,36.4,35.7,37.2,37.3,36.8,38.9,35.9,37.8,35.9,35.7,37.1,36.2,35.5,37.5],"script":[20.4,20.9,20.9,22.2,21.9,21.6,22.7,21.1,21.1,21.1,20.9,21.2,21.4,20.7,22],"paint":[14.2,15.1,14.4,14.6,14.9,14.8,15.7,14.3,16.2,14.3,14.3,15.5,14.4,14.3,15.1]}},{"b":2,"v":{"total":[69.5,69.2,68.4,72.1,69.1,69.6,69.7,70.2,69.6,69.7,69.4,69.1,69.5,70.5,70.9],"script":[53.4,52.5,52.8,54.4,52.7,53.3,53.6,53.6,53.2,52.8,53.5,52.4,53,53.4,53.8],"paint":[14.1,14.1,14.2,15.7,15.1,14.1,13.2,15,15,13.9,14,15.5,14.4,15.1,15.6]}},{"b":3,"v":{"total":[53.5,53.5,53.3,53.5,54.3,53.6,53.5,53.1,53.6,54.2,53.5,53.5,53.2,52.7,53.5,53,53.2,53,53,52.6,56,52.9,58,52.6,53.9],"script":[50,49.9,50.2,50.5,50.6,50.7,49.7,50.3,50.8,51,49.5,50.4,50,49.9,49.8,50.5,50.6,49.9,50,49.9,51.6,50.1,53.7,50.1,50.4],"paint":[2,2.8,2.8,2.2,2.8,2.7,2.9,2.2,2.1,2.7,2.7,2.9,2.4,2.6,3,2.4,2.2,2.8,2.9,1.5,3.5,1.6,3.8,1.3,2.7]}},{"b":4,"v":{"total":[62.1,62.7,63.3,62.2,63.1,63.4,62.4,65.2,62.6,62.6,62.1,61.7,62.4,61.9,62.1],"script":[50.8,50.3,50.6,50.6,51.1,50.5,50.1,52.8,50.8,50.8,50.6,49.8,50.7,50.7,50.9],"paint":[9.8,10.7,11.5,10.3,10,10.9,10.5,10.8,10.4,10,9.8,11.2,10,10,10.2]}},{"b":5,"v":{"total":[75.6,74.9,75,76.3,75.3,74.3,75.7,72,74.7,74.6,75.7,75.9,76,75.1,74.6],"script":[43.7,42.8,43.7,44.5,43,43.1,44.2,40.8,42.1,42.5,42.3,43.4,44.2,43.8,43.4],"paint":[31,31,30.1,30.7,31.3,30.5,30.5,30.5,31.5,30.9,32.2,31.5,30.9,30.2,30.1]}},{"b":6,"v":{"total":[759.7,760.5,765.8,774.2,760.4,780.8,758.1,764.4,743.5,772,772.2,775.5,771.2,757.7,763.7],"script":[376.3,374.4,380.9,388.1,374.5,388.9,378.8,379.3,358.1,386.4,386.2,383.8,382.7,369.3,374.9],"paint":[376.8,379.4,378.2,379.3,378.7,385.1,372.6,378.1,378.4,378.7,379.2,384.8,381.4,381.7,382]}},{"b":7,"v":{"total":[85.5,84.6,85.5,84.2,85,86,84.1,86.2,84.8,84.8,85.8,84.9,86.1,84.7,84.4],"script":[43,44,44.5,43.5,44,44.5,43.7,44.7,44,44.2,44.5,44.1,44.8,44.3,43.6],"paint":[41.5,39.8,40,39.9,40.1,40.6,39.5,40.6,39.8,39.6,40.4,39.9,40.3,39.5,39.8]}},{"b":8,"v":{"total":[24.8,24.8,23.1,24.9,22.8,24.4,23.3,26.9,24.2,24.9,23.5,23.8,24.5,24.3,24.6],"script":[23,22.2,21.1,23,20.8,22.5,21.3,24.5,22,23,21.3,22.3,22.9,22.1,22.6],"paint":[1.2,2.5,1.8,1.5,1,1.8,1.9,2.3,1.2,1.8,2.1,1.4,1,1.6,2]}},{"b":9,"v":{"DEFAULT":[1.6]}},{"b":10,"v":{"DEFAULT":[7.3]}},{"b":11,"v":{"DEFAULT":[9.4]}},{"b":12,"v":{"DEFAULT":[5.9]}},{"b":13,"v":{"DEFAULT":[57]}},{"b":14,"v":{"DEFAULT":[253.1]}},{"b":15,"v":{"DEFAULT":[59.9]}},{"b":16,"v":{"DEFAULT":[395.3]}}]}, +{"f":168,"b":[{"b":0,"v":{"total":[50.5,50.6,49.6,50.5,51.3,49.5,50.5,50.2,52,49.8,49.4,49.7,50.2,49.9,50.3],"script":[16.9,17.1,16.7,17.4,16.5,16.4,17.2,17.1,18.1,17,16.7,16.6,16.7,16.6,17.2],"paint":[33.2,33,32.5,32.6,34.3,32.7,32.8,32.6,33.4,32.4,32.3,32.7,33.1,32.8,32.7]}},{"b":1,"v":{"total":[24.2,24,24.1,23.8,24.4,24.4,24.6,24.7,23.8,24,24.8,24.2,24.3,24.1,24.1],"script":[9.3,9.2,9.6,9,9.5,9.8,9.3,9.9,8.8,9.3,10.1,9.5,9.6,9.3,9.4],"paint":[14.6,14.4,14.1,14.4,14.4,14.2,14.9,14.3,14.6,14.2,14.2,14.3,14.2,14.3,14.3]}},{"b":2,"v":{"total":[23.2,23.3,23.3,23.8,22.9,23.8,22.2,23.5,22,21.8,24.1,23.6,23.7,22.8,23.7],"script":[7.5,7.6,7.9,7.2,7.6,6.4,6.5,7,6,6.2,7.6,6.7,7.2,7.1,6.7],"paint":[14.4,13.6,13.9,15.3,13.6,15.3,14.3,15.5,15,14.1,14.7,15.3,15.2,13.8,14.9]}},{"b":3,"v":{"total":[4.5,4.8,4.2,5.1,4.5,4,5.1,4.8,5.3,4.5,4.7,5.7,4.8,4.6,5.2,4.3,5,5.6,5.1,5,4.4,6.2,4.5,5,5.7],"script":[2.3,2.4,2.2,1.8,2.3,1.7,2.1,1.5,1.7,1.7,1.8,2.7,1.9,1.5,2.4,1.4,2.6,2.7,2,2.5,1.4,2.3,2.1,2.4,2.4],"paint":[1.4,2.2,1.9,2.7,1.7,1.2,2,2.1,3.5,1.6,1.8,2.1,1.8,2.6,1.6,2.8,2.3,1.9,3,1.6,2.6,3.5,2.2,2.4,2.8]}},{"b":4,"v":{"total":[12.8,13,13.4,14,12.9,13.6,13.2,12.8,13.5,12.9,13.1,13.3,13.2,13.4,13.3],"script":[1.5,1.8,2.2,2.5,2.1,2.7,1.7,2.2,2.2,1.4,2,1.7,2.3,1.8,2.4],"paint":[10.6,9.4,9.3,10.3,9.9,8.9,9.9,8.6,9.4,9.3,9.7,10.3,9.4,10.3,8.7]}},{"b":5,"v":{"total":[17.7,18.4,18,18.3,18.8,17.8,17.9,17.8,18,17.9,18.3,18.5,17.9,17.9,18.5],"script":[3,2.8,2.7,3.1,3,2.8,2.8,2.7,2.7,2.8,3,2.9,3,2.6,3.1],"paint":[13.9,14.7,14.5,14.4,14.9,14.1,14,14.4,14.6,14.1,14.5,14.9,13.8,14.3,14.3]}},{"b":6,"v":{"total":[628.3,619.5,617.8,619.6,622.4,619.5,618.2,621.4,617,624.5,619.9,620.4,618.4,619.8,618.3],"script":[268.4,264.6,264.9,266,267.5,265.1,264.2,266.9,263.5,266,264.4,263.6,266,265.9,265.5],"paint":[353,348.2,346.2,346.8,348.1,347.5,347.1,347.9,346.6,351.8,348.9,350.1,345.7,347.2,346.2]}},{"b":7,"v":{"total":[57.7,56,57,56,56.4,57.4,57.3,56.3,56.4,57.1,55.9,56.3,58,56.5,57],"script":[18,16.4,16.8,17.3,16.6,16.7,17.3,17,16.5,17.7,16.1,16.2,17.5,17,17.3],"paint":[38.8,38.6,39.3,37.8,38.9,39.8,39.1,38.4,38.8,38.5,38.9,39.2,39.6,38.5,38.9]}},{"b":8,"v":{"total":[16.9,16.7,16.7,16.1,17.1,14.7,16.4,15.7,16.1,16.1,16.2,15.9,16.4,15.6,16],"script":[14.5,14.7,14.6,13.6,14.7,13.3,14.2,13.8,14.3,13.9,14.3,14,14.3,14.1,14.1],"paint":[2.3,1,1.1,1.3,2.3,0.4,2.1,1.8,1.7,2.1,0.9,1.5,1.9,1.4,1.8]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[5.7]}},{"b":11,"v":{"DEFAULT":[6.3]}},{"b":12,"v":{"DEFAULT":[4.6]}},{"b":13,"v":{"DEFAULT":[43.7]}},{"b":14,"v":{"DEFAULT":[157.2]}},{"b":15,"v":{"DEFAULT":[45.2]}},{"b":16,"v":{"DEFAULT":[249]}}]}, +{"f":169,"b":[{"b":0,"v":{"total":[40.3,40.5,40.8,41,42.4,39.6,40.3,40.9,40.7,41,40.3,41,40.6,39.8,41.8],"script":[6.6,6.5,7.2,7.3,7.3,6.9,6.5,7,6.6,6.7,6.5,6.7,6.6,6.5,7.2],"paint":[33.4,33.5,33.2,33.3,34.7,32.3,33.4,33.5,33.6,33.9,33.3,34,33.6,32.9,34.2]}},{"b":1,"v":{"total":[16,16.3,16,16.2,16.5,16.1,16.9,15.8,16.2,16.8,16,16.2,16.3,16.3,17],"script":[1.7,1.7,1.8,1.7,1.8,1.8,1.8,1.7,1.8,1.6,1.7,1.8,1.8,1.8,1.7],"paint":[13.8,14.1,13.8,14,14.3,13.9,14.7,13.7,14,14.7,13.8,14.1,14.1,14.1,14.8]}},{"b":2,"v":{"total":[17.4,17.2,17.3,16.7,17.3,17.5,18.5,16.9,17.4,17.1,16.6,15.9,17.1,19,16.7],"script":[1.9,1.8,1.2,1.8,1.8,1.8,1.8,0.8,1.5,1.9,1.5,1,1.7,1.3,2],"paint":[14.2,14,14.1,13.7,13.3,14.4,15.7,15,14.8,14.2,13.7,13.5,14.3,16.1,13.7]}},{"b":3,"v":{"total":[4.4,4.4,4.5,4,4,4.2,3.7,4.5,4.7,3.5,3.6,3.8,3.8,3.3,4.2,4.7,4.7,3.8,4.1,4.1,4.4,3.5,4.5,3.7,4],"script":[1.7,1.6,1,1.3,1.7,0.6,1,1.2,1.6,1.3,1.5,1.1,1,1.3,1.2,1.5,1.2,1,1.3,1.3,1.5,1,1.7,1,0.6],"paint":[1.9,2.7,2.9,2.5,1.5,3.4,1.7,2.5,2.5,1.5,1.1,2.3,1.8,1.1,1.9,2.9,3.3,2.7,2.3,2.4,2,2.2,2.6,1.6,2.6]}},{"b":4,"v":{"total":[12.5,12.6,12.2,12.6,12.3,12.5,12.4,11.8,12.2,13,11.6,13.2,13.1,13.2,12.4],"script":[1.5,1.7,1.2,1.4,1,1.3,1.6,1,1.1,1.4,1.5,0.7,1.5,1.3,1.5],"paint":[9.7,9.6,10.1,10.1,10.7,9.6,8.7,9.3,9.6,10.3,7.6,10.3,9.4,10.4,9.2]}},{"b":5,"v":{"total":[34.4,32.8,34.3,33.3,32.7,33.6,33,34.9,33,32.6,33.1,32.5,33.4,33.2,33.2],"script":[2.7,3,3,3.1,2.7,3.1,3,3.1,2.8,2.8,2.6,2.8,3,3,3],"paint":[30.6,28.7,30.2,29.2,29.3,29.7,29.2,31,29.4,28.8,29.3,28.7,29.6,29.3,29.4]}},{"b":6,"v":{"total":[431.3,431.6,426.6,430.6,435.8,425.9,431.7,430.2,433.4,427.8,429.4,427.2,428.3,436.3,426.9],"script":[82.5,83,81.9,82.2,84.4,81.2,81.6,83.7,84,79.8,82.7,80.7,83,81.3,81.8],"paint":[342,341.6,338,341.7,344.7,337.4,343.4,339.8,342,341.2,339.9,339.7,338.4,348.3,338.4]}},{"b":7,"v":{"total":[47.2,46.7,46.7,46.4,46.4,47.3,46.3,48.5,46.7,46.8,47.7,46.9,48.2,46.3,45.6],"script":[6.7,6.9,6.9,6.6,6.7,7,6.6,6.8,6.8,6.9,7,6.9,6.6,6.6,6.7],"paint":[39.6,38.9,38.9,38.9,38.8,39.4,38.8,40.8,38.9,39.1,39.8,39.1,40.7,38.8,38]}},{"b":8,"v":{"total":[15.9,15.2,15.4,16.1,15.4,15.6,16.2,15,16.2,15.5,16,15.5,15.1,15.8,15.9],"script":[13.8,13.8,13.3,13.8,13.2,14,14.1,13.4,13.9,12.8,14,13.6,12.6,13.5,13.6],"paint":[1.2,1.4,1.4,2.1,2.1,1.5,1.5,1.2,2.1,2.6,1.9,1,2.4,2.2,2.2]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.2]}},{"b":14,"v":{"DEFAULT":[19.7]}},{"b":15,"v":{"DEFAULT":[6.6]}},{"b":16,"v":{"DEFAULT":[57.7]}}]}, +{"f":170,"b":[{"b":0,"v":{"total":[38.5,39.5,38.2,38.3,39.3,39.3,39.8,40.7,40.5,39.2,39.7,40.3,40.4,40,39.1],"script":[5.6,5.8,5.7,5.7,5.7,5.8,5.9,6.4,6.2,5.6,6,6.1,6.2,6,5.7],"paint":[32.5,33.4,32.2,32.3,33.2,33.1,33.4,33.9,33.9,33.2,33.3,33.8,33.7,33.6,32.9]}},{"b":1,"v":{"total":[15.6,15.4,15.2,15.2,16.5,15.3,15.5,15.6,15.7,15.3,15.6,15.9,15.4,15.7,15.3],"script":[1.3,1.2,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.2,1.3],"paint":[13.8,13.8,13.6,13.6,14.8,13.7,13.8,14,14.1,13.7,14,14.3,13.7,14.2,13.6]}},{"b":2,"v":{"total":[17,17.2,17.1,16.5,16.8,17.5,16.9,16.6,17.5,16.9,16.8,17.2,16.1,17.8,17.2],"script":[1,1.7,1.3,1,1.8,1.2,0.9,0.9,1,1.7,1.7,1.7,1.2,1.6,1.4],"paint":[13.5,14.3,14.7,14.2,13.1,15.3,14.9,15,15.2,14.2,13.6,14.1,13.5,14.7,14]}},{"b":3,"v":{"total":[3.4,3.6,4.5,4.2,3.8,3.2,4,3.6,4.1,2.9,4,3.2,3.5,4.1,3.6,3.2,3.2,2.8,5.4,4.6,4.5,3.9,3.3,3.8,3.9],"script":[0.2,0.6,0.2,0.8,1.2,0.9,0.8,1,1.4,0.7,0.9,0.7,0.7,0.9,0.7,0.9,0.7,0.5,0.9,0.3,1,1.1,1.1,1,1.1],"paint":[3.1,2.4,2.7,2.1,1.7,2.2,2.6,2.5,2.5,2.1,2.9,2.3,2.8,3.1,2.8,2.2,2.4,2,2.7,2.2,2.4,2.4,2.1,2.7,1.7]}},{"b":4,"v":{"total":[11.9,11.7,12.3,12.1,11.5,11.8,11.8,11.2,12,11.7,12,11.5,11.8,11.6,12],"script":[0.3,0.2,0.7,0.9,0.9,0.9,0.6,0.2,0.2,0.2,0.9,0.8,1.2,0.2,0.6],"paint":[9.9,9.9,9.8,9.9,9.2,9.8,9.6,9.7,9.2,9.6,10.3,9.5,9.9,10.1,9.8]}},{"b":5,"v":{"total":[31.2,31.5,31.1,31.2,32.5,32.4,32.4,31.2,31.2,31.3,32,31.5,31.6,31.3,31.5],"script":[2.2,1.9,1.9,1.9,1.9,2.1,1.9,1.9,1.9,1.9,2.1,2,2.2,1.9,1.9],"paint":[28.2,28.4,28.5,28.6,28.9,29.1,29.7,28.3,28.4,28.2,29.2,28.7,28.6,28.5,28.8]}},{"b":6,"v":{"total":[416.6,415.9,413.4,409.1,411.1,412.7,421,412.8,415.8,416.3,413.3,418.2,414.4,416.4,418.1],"script":[71.7,70.6,71,70,69.9,71.1,70,71.1,70.1,71.5,74,73,70.9,72.3,74.3],"paint":[338,338.5,335.7,332.2,334.5,334.8,344.3,334.9,338.6,338.1,332.6,336.6,336.8,337.3,337]}},{"b":7,"v":{"total":[45.7,44.2,44.5,45.7,43.6,44.2,45.4,44,44.7,45.3,45.5,44.8,44.4,44.2,44.8],"script":[5.8,5.5,5.6,5.8,5.5,5.5,5.8,5.5,5.6,5.7,5.9,5.5,5.4,5.7,5.6],"paint":[39,37.8,38,39,37.2,37.8,38.8,37.6,38.1,38.8,38.8,38.4,38,37.6,38.4]}},{"b":8,"v":{"total":[15.7,14.9,15.2,16.3,16.6,15.2,14.8,15.9,16.7,17.1,14.9,15.1,15.4,15.2,15.2],"script":[14.1,13.1,13.3,13.7,14.5,13.2,12.7,13.5,14.9,15,13.2,13.5,13.7,13.4,13.3],"paint":[1.5,1.6,1.8,2.5,2,1.8,2.1,2.3,1.8,2,0.7,1.5,0.9,1.1,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[2.5]}},{"b":11,"v":{"DEFAULT":[2.5]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[19.5]}},{"b":14,"v":{"DEFAULT":[9.7]}},{"b":15,"v":{"DEFAULT":[3.8]}},{"b":16,"v":{"DEFAULT":[56.8]}}]}, +{"f":171,"b":[{"b":0,"v":{"total":[44.4,45.2,45.7,44,44.6,44.6,44.1,43.9,43.8,43.7,43.5,43.7,45.7,44,44.6],"script":[9.9,11,10.6,10,10.1,10.2,10.2,10.2,9.5,9.8,9.6,10,10.7,10.4,9.8],"paint":[34.1,33.7,34.7,33.6,34.1,34,33.4,33.3,33.8,33.5,33.5,33.3,34.6,33.2,34.4]}},{"b":1,"v":{"total":[25.9,26.2,25.4,25.9,25.9,25.1,27.3,28.1,26,26.3,27.6,26.1,27.3,28.4,25.6],"script":[10.6,10.8,10.3,10.6,10.3,10.1,11.1,11.2,10.6,10.7,10.9,10.6,10.9,11.3,10.2],"paint":[14.8,14.9,14.7,14.9,15,14.5,15.7,16.5,14.8,15.1,16.2,15,15.9,16.6,15]}},{"b":2,"v":{"total":[47.1,47.1,49.8,46.8,46,47.2,45.8,47.5,48,48.9,47.9,50.3,49.2,50,49.9],"script":[29.7,30.5,31.4,29.7,29.5,29.9,29,30.1,31.2,31.3,30.3,33,32.4,33,31.1],"paint":[16,14.6,16.5,15.8,14.7,14.7,14.6,15.3,14.5,15.1,16,16.1,14.9,15.9,16.4]}},{"b":3,"v":{"total":[28.7,30,29.3,29,28.9,28,29.3,30.7,28.6,30.2,28.4,29.7,29.3,29.2,29.5,27.8,28.9,29.6,28.5,29.1,28.3,28.6,29.6,28.6,30.1],"script":[25.9,26.3,25.9,25.8,24.3,25.1,26.4,26.7,25.2,26.7,25.6,27,26.2,26.3,25.6,24.8,25.5,26.4,25.9,26.3,25.4,25.4,25.6,25.6,26.7],"paint":[1,2.8,2.4,2.5,3.7,2,1.9,3.1,2.5,2.6,2.2,2.5,2.5,1.8,3.7,2.1,2.8,2,2.4,2.6,1.9,1.8,2.9,1.8,2.6]}},{"b":4,"v":{"total":[37.4,37.2,38.6,37,39.1,37.1,38.2,38.2,38,38.5,37.4,39,37.5,38.9,37.6],"script":[24.6,25.2,27.1,24.7,26.5,25.7,25.7,26.2,25.3,26.4,25.2,26.9,25,26.5,25.6],"paint":[11.2,9.5,10.2,10.7,11.2,9.8,10.8,10.4,11,10.2,11.2,10.5,11.1,11.4,10.7]}},{"b":5,"v":{"total":[52,54.6,55.6,55.8,53,51.2,55.8,50.7,55.5,55.7,52.6,56,56.3,51.4,51.7],"script":[20.1,21,20.4,20.9,19.8,19,21.5,18.4,21,21.4,20.3,21.3,21.8,19.2,19.3],"paint":[30.7,32.5,34.3,33.8,32.3,31.5,33.3,30.9,33.7,33.5,31.2,33.9,33.5,31.5,31.2]}},{"b":6,"v":{"total":[466,448,454.3,450.5,450.4,458.9,459.5,458,460.8,466.8,465.4,464.3,456.9,462.3,463.2],"script":[107.5,106.8,102.4,110.6,108.1,105.1,104.1,107.7,106.1,110.9,109.1,106.4,104.8,106.2,107],"paint":[351.7,334.3,344.7,333.2,335.7,347.1,348.6,343.6,348,349.3,349.6,351.2,345.5,348.7,349.6]}},{"b":7,"v":{"total":[60.1,57.5,58.3,58.1,59.2,59.9,59.8,59.7,58.7,59,59.2,58,58.1,59.3,58.4],"script":[18.1,16.9,18.1,17.9,18.2,18.9,18.8,19.3,18.4,18.6,18.5,18.1,17.4,18.8,18.1],"paint":[41,39.7,39.3,39.4,40,40.1,40.1,39.5,39.4,39.5,39.8,39.1,39.9,39.6,39.4]}},{"b":8,"v":{"total":[20.6,18.2,17.4,17.5,16.8,16.9,17.5,19.5,18.7,18.4,18.2,17.5,17.2,19.6,17.4],"script":[18.3,16.1,15.6,16.1,14.9,15,15.1,17.9,16.7,16.5,15.7,15.1,15,17.5,14.9],"paint":[2.1,1.1,1.8,0.4,0.7,1,2.4,1.4,1.8,0.4,2.4,2.3,1.3,2,1.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3.3]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[26.3]}},{"b":14,"v":{"DEFAULT":[8.3]}},{"b":15,"v":{"DEFAULT":[2.9]}},{"b":16,"v":{"DEFAULT":[46.5]}}]}, +{"f":172,"b":[{"b":0,"v":{"total":[44.8,43.9,51.4,49,49.3,49.4,47.5,50,52.2,48.5,47.3,49.6,51.3,50.7,50.6],"script":[9.5,9.9,10.5,9.5,9.8,9.4,9.5,9.9,10,9.9,10,9.6,10.8,9.9,10.1],"paint":[33.3,33.1,35,33.1,32.7,32.9,33.5,32.4,32.8,33,34,33.3,33.4,33.2,33.6]}},{"b":1,"v":{"total":[68,66.3,64.7,63.6,66.8,66.9,62.4,66.4,60.6,65.7,59,63.9,64.9,61,65.4],"script":[20.4,20.3,20.4,20.4,21.3,20.7,20.1,20.7,20.2,20.4,20.7,20.4,20.5,18.7,20.7],"paint":[35.6,36.2,35.5,35.7,35.7,35.6,35.7,34.7,35.8,35.8,35.5,36,35.6,33.5,35.9]}},{"b":2,"v":{"total":[36.8,37.8,18.6,21.7,18.5,19.4,37.1,18.8,37.3,37.2,37.8,21.1,18.9,19.1,35],"script":[5.2,6.3,3.5,4.3,3,4.2,6,3.8,5.2,5.5,5.7,3.6,4.2,3.6,5.1],"paint":[15.6,15.4,15,15.8,14.4,15.1,14.4,13.5,16.1,14.6,16,16.3,14.6,13.4,13.8]}},{"b":3,"v":{"total":[32.2,32.1,36,37.6,35.9,36.1,34.2,31.1,35.9,33.1,32.8,32.3,34.4,40.4,35.7,35.6,36.2,39.9,35.2,38.6,32.2,31.1,35.8,31.6,35.3],"script":[3.8,3.8,4.7,3.8,3.6,3.1,4,4.6,4.3,4.2,4,4.8,4,4.6,4.9,4.3,4.8,4.4,4.2,3.5,3.9,3.8,4.7,4.4,4.4],"paint":[20.2,19.5,20,22.2,21.6,22.3,19.6,21.5,21.4,22,19.5,20.4,20.5,21.4,20.7,21.3,21.8,20.5,20.7,20.6,20.2,21.7,22.2,19.8,19.9]}},{"b":4,"v":{"total":[213.3,204.4,209.5,195.8,210.2,198.2,197.6,199.1,200.1,184.9,198.6,215.6,185.8,185.7,190.5],"script":[48.2,49.3,47.7,47.8,48.4,47.3,47.8,48.7,50.2,45.6,49.5,47.9,45.1,45.7,46.4],"paint":[148.9,152.3,145,144.7,145.7,147.5,147.6,147.9,149.7,138.9,149,150.8,139.8,137,143.2]}},{"b":5,"v":{"total":[20.5,23.6,32.4,29.5,20.4,21.7,33.3,20,33.9,26.8,20.5,34.4,19.1,21.9,26.8],"script":[1.6,1.9,1.9,1.6,1.8,1.7,2.2,1.8,1.9,1.6,1.8,1.8,1.5,1.6,1.7],"paint":[14.7,15.3,15,16.3,15.6,15.1,15.9,14.5,15.2,15,14.8,15,14.7,14.7,14.7]}},{"b":6,"v":{"total":[466.9,449,453.4,474.8,467.1,488.6,465.5,446.9,468.8,474.4,468.7,446.2,446.4,447,454.3],"script":[116.5,110.8,114.9,117.8,113.3,119.7,118.7,109.8,106.6,114.5,109.9,106.5,102.6,107.4,113.5],"paint":[348.2,334.9,330.4,350.2,349.3,358.7,341.7,328.2,356.6,356.3,355.6,334.6,339.4,337.4,336.1]}},{"b":7,"v":{"total":[60.6,58.6,56.3,54,58.2,57.6,53.6,60.6,58.8,54.9,55.1,55.6,54.8,59.8,56.3],"script":[11.2,11.5,10.9,10.8,11,11.1,10.8,11.3,10.6,11.1,10.9,11,10.9,11.2,11.2],"paint":[38.8,38.1,38.7,37.4,38.2,38.2,37,37.7,38,37.7,38.2,38.1,37.9,38,37.8]}},{"b":8,"v":{"total":[12.7,13.5,28.5,13.8,12.9,15.8,15.9,14.3,16.1,12.4,13,29.4,16.1,13.7,12.5],"script":[11.3,11.7,10.3,11.5,11.1,11.3,10.7,11.1,10.6,10.8,11.6,11.6,12,11.7,11.3],"paint":[1.4,1.8,2.1,1.9,1.8,2.3,1,2,2.1,1.6,1.3,1.6,2.3,2,1.1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[21.4]}},{"b":14,"v":{"DEFAULT":[43.8]}},{"b":15,"v":{"DEFAULT":[8.4]}},{"b":16,"v":{"DEFAULT":[86.9]}}]}, +{"f":173,"b":[{"b":0,"v":{"total":[35.3,35.5,35.6,35.3,35.3,35.3,35.8,36,36.6,36.3,36.8,35.8,36,36.8,36.2],"script":[2.6,2.5,2.5,2.5,2.5,2.5,2.6,2.6,2.5,2.6,2.6,2.7,2.5,2.6,2.5],"paint":[32.2,32.5,32.7,32.4,32.4,32.4,32.8,33,33.6,33.3,33.8,32.7,33,33.7,33.2]}},{"b":1,"v":{"total":[14.7,14.3,14.5,14.7,15.5,14.4,14.6,15,15.2,15,16.1,14.8,14.5,15,15.1],"script":[0.6,0.7,0.7,0.7,0.6,0.6,0.7,0.7,0.7,0.6,0.6,0.6,0.6,0.6,0.6],"paint":[13.6,13.2,13.4,13.7,14.4,13.3,13.6,13.9,14.2,14,15.1,13.7,13.5,14,14.1]}},{"b":2,"v":{"total":[17.9,15.8,15.2,15.8,15.3,15.4,15.8,16.5,19.2,15.5,15.7,16.3,16,15.8,17.7],"script":[1.5,0.9,0.1,0.7,0.8,0.1,0.1,0.8,0.7,0.1,0.1,0.8,0.1,0.6,0.9],"paint":[15.2,13.5,13.5,14,13.5,14.1,14.6,14.2,16,14.3,14.2,13.9,14.2,14.2,15.4]}},{"b":3,"v":{"total":[2.8,3,3,3.1,2.9,3.7,2.4,4.8,2.5,3.1,6.2,2.9,3,2.7,2.8,3,2.9,2.6,1.9,5,2.4,2.4,2.7,2.4,3],"script":[0.1,0.6,0.5,0.1,0.9,0.1,0.3,0.1,0.1,0.8,0.3,0.4,0.6,0.1,0.1,0.1,0.1,0.1,0.3,0.1,0.1,0.1,0.7,0.3,1],"paint":[2.6,2.2,2.4,2.9,1.9,2.3,2,1.5,2.3,1.7,2.3,1.5,1.9,1.8,2.7,2.6,2.8,2.4,1.1,3.1,1.2,1.7,1.3,2,1.3]}},{"b":4,"v":{"total":[11.9,11.4,11.4,10.9,11,12,11.5,11.4,11.6,11.3,11.2,11.7,10.9,10.5,11],"script":[0.9,0.1,0.1,0.4,0.6,0.8,0.7,0.1,0.8,0.1,0.1,0.8,0.1,0.1,0.1],"paint":[8.4,10.1,10.4,9.5,9.4,9.1,9.3,9.6,9,9.9,9.9,9.2,9.4,8.6,8.4]}},{"b":5,"v":{"total":[15.4,14.8,16,14.8,14.7,15.3,15.3,14.7,15.1,15.2,14.7,14.8,14.7,15.3,14.7],"script":[0.1,0.1,0.1,0.1,0.3,0.3,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1],"paint":[14.5,14,15.3,14,13.6,14.3,14.6,14.2,14.1,14.4,14,13.9,13.9,14.5,13.9]}},{"b":6,"v":{"total":[371.9,370.1,369.1,371.3,370.1,365.6,373.1,368.2,367.6,370.5,368.4,367.6,370.5,368.9,372.7],"script":[28.5,28.5,29,28.8,29.5,28.4,29.2,29.2,30.1,30.5,29.3,28,29.6,28.3,30.8],"paint":[336.9,335.1,333.4,335.6,333.9,330.5,336.8,332.2,330.8,333.2,332.4,332.9,334.2,333.5,335.3]}},{"b":7,"v":{"total":[39.9,41.8,43.7,40.2,40.1,41.2,40.5,40.5,41.4,42.2,41.2,41.2,41.1,41.4,41.5],"script":[2.5,2.6,2.6,2.4,2.4,2.6,2.4,2.5,2.5,2.5,2.4,2.4,2.4,2.5,2.5],"paint":[36.6,38.2,40.1,37,36.8,37.7,37.2,37.2,38.1,38.9,37.9,37.8,37.8,38.2,38.1]}},{"b":8,"v":{"total":[11.8,12.2,12.4,12.1,11.4,12.2,12.2,11.4,12.1,12.3,12,12.6,11.8,11.8,12.3],"script":[9.9,10.5,10.4,9.9,9.8,10.4,10.5,9.6,9.5,10.8,10.2,10.7,9.8,9.9,10.7],"paint":[1.8,1.3,1.9,2.1,1.6,1.7,1.6,1.7,2.5,1.4,0.7,1.1,2,1.8,1.5]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[1.8]}},{"b":11,"v":{"DEFAULT":[1.9]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[13.4]}},{"b":14,"v":{"DEFAULT":[10.5]}},{"b":15,"v":{"DEFAULT":[4.2]}},{"b":16,"v":{"DEFAULT":[42.6]}}]}, +{"f":174,"b":[{"b":0,"v":{"total":[47.8,47.3,47.7,48.7,46.8,48.1,48.9,48.4,47.6,48.9,48.9,48.2,47.8,47.7,48],"script":[13.5,12.9,13,14.1,12.9,13.5,14,13.4,13.8,14.3,14,13.5,13.2,13.1,13.3],"paint":[33.9,34,34.4,34.2,33.4,34.2,34.5,34.6,33.4,34.2,34.5,34.2,34.3,34.2,34.2]}},{"b":1,"v":{"total":[28.2,28.7,27,26.7,27.4,29.2,26.2,28.1,26.6,25.8,27,27.1,27.1,26.8,27.2],"script":[11.6,13.1,12,11.4,12.2,13.2,11.5,12.9,11.1,11.2,11.9,11.1,11.4,11.6,11.8],"paint":[16.1,15.2,14.6,14.8,14.8,15.5,14.2,14.8,15,14.1,14.6,15.5,15.2,14.7,15]}},{"b":2,"v":{"total":[16.8,16.6,16.8,16.1,16.4,16.3,16.2,15.5,16.2,15.5,16.3,17,16.8,16.4,15.6],"script":[1.1,0.8,0.2,0.2,0.8,0.9,0.9,0.2,0.9,0.2,0.9,0.9,0.2,0.9,0.6],"paint":[14.4,14,15.6,13.4,14.5,14.4,14,13.4,14.3,14.1,13.6,14.3,14.7,13.8,12.8]}},{"b":3,"v":{"total":[2.9,4.4,3.7,3.1,4.1,2.9,2.7,3.2,3,2.8,2.8,2.4,3.1,5.7,2.9,3.8,3.2,3.6,2.8,2.4,4.4,2.9,4.1,2.8,2.6],"script":[0.8,1.2,0.7,0.1,1.3,0.8,0.8,0.9,0.9,0.1,0.1,0.5,0.1,1,0.2,0.9,0.9,0.8,0.7,0.1,1.1,0.5,0.6,0.2,0.1],"paint":[1.2,1.7,2,2.8,2.7,1.9,1.1,0.7,1.2,2.5,2,1.1,2.8,2.2,2.6,1.6,0.8,1.8,1.6,2.1,1.6,1.6,1.7,1.8,2.3]}},{"b":4,"v":{"total":[12.5,12.3,11.8,12.3,11.9,12.4,11.7,12,12,12.5,11.9,12.4,11.8,11.9,12],"script":[1.2,1.6,1.1,1.2,0.6,1.1,1.1,1.3,1.3,1.1,1.2,1.2,1.3,1,0.9],"paint":[10.3,9.4,9,9.7,9.5,9.2,9.3,9.9,9.3,9.8,9.4,9.3,9.2,8.9,10.4]}},{"b":5,"v":{"total":[15.3,15.4,15.5,15.3,15.8,15.3,15.1,15.3,15.1,14.8,15,14.9,15.4,15.3,14.9],"script":[0.5,0.5,0.3,0.5,0.4,0.4,0.4,0.3,0.2,0.4,0.3,0.2,0.5,0.4,0.2],"paint":[14.1,14,14.3,13.8,14.2,14.1,14,14.2,14.2,13.6,13.7,13.9,14.1,14.1,14]}},{"b":6,"v":{"total":[467.8,461.7,464,473.3,473.7,462.7,469.9,474.5,470.2,478.7,462.1,471.6,468,471.9,475.1],"script":[121.3,121.9,122,127.1,128.4,120.6,128.5,126.2,127.2,126.9,121.8,126.3,127.1,125.7,129],"paint":[339.8,333,335.1,339.3,338.5,335.3,334.6,341.6,336.2,345.1,333.6,338.4,334.2,339.4,339.3]}},{"b":7,"v":{"total":[51.6,52.5,52.4,51.8,50.9,51.4,50.2,51.4,51.3,52.5,50.8,52.5,52.8,50.3,51.9],"script":[11.2,11.6,11.2,11.1,10.9,11.5,11,11.1,11.5,11.3,10.9,11,11.4,11.1,11],"paint":[39.5,40,40.2,39.8,39,39,38.3,39.3,38.8,40.3,39,40.6,40.5,38.2,40]}},{"b":8,"v":{"total":[14.4,14.6,13.7,13.5,13.8,13.3,13.4,13.9,13.8,14,12.9,13.9,13.3,13.6,13.3],"script":[12.5,12.1,11.8,11.6,11.9,11.4,11.7,11.1,11.9,11.9,11.5,11.9,12,11.7,11.8],"paint":[1.7,1.5,1.7,0.8,1.8,1.8,0.8,2.7,1.6,2,1.3,1.9,0.7,1.6,0.9]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[4.1]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[31.3]}},{"b":14,"v":{"DEFAULT":[51.2]}},{"b":15,"v":{"DEFAULT":[15.1]}},{"b":16,"v":{"DEFAULT":[94.9]}}]}, +{"f":175,"b":[{"b":0,"v":{"total":[61.7,60.2,61.4,60.8,58.8,60.6,59.9,59.9,59.1,59.2,59.4,59.9,59,62.1,59.6],"script":[26.7,26.6,26,26,25.1,26.1,25.8,25.5,25.7,25.8,25.4,25.8,25.1,26.4,25.8],"paint":[34.8,33.4,35.2,34.6,33.5,34.3,33.9,34.3,33.2,33.2,33.9,33.9,33.7,35.5,33.6]}},{"b":1,"v":{"total":[35.2,34.7,35.1,34.7,35.3,34.8,35.2,35.3,35.2,34.9,36.1,34.7,34.5,35.7,35.8],"script":[21.2,20.4,20.7,20.3,21,20.3,20.5,21.1,20.7,20.6,21.5,20.7,20.6,21,21.5],"paint":[13.9,14.2,14.2,14.2,14.2,14.4,14.4,14,14.3,14.1,14.3,13.9,13.8,14.5,14]}},{"b":2,"v":{"total":[64.4,65.9,62.8,60.9,67.3,60.7,66.2,64.6,65.5,63.5,61.9,59.7,60.7,63.9,60.8],"script":[45.3,48.9,45.7,45.6,48.7,45,48.9,47.4,49.5,45.5,45.6,44.6,45.2,46.3,43.5],"paint":[18.6,16.5,16.1,14.5,16.8,15.4,16.7,16.2,15.2,16.3,15.2,14.7,15.3,16.3,14.8]}},{"b":3,"v":{"total":[45.5,47.2,47.1,45.2,46.6,47,47.7,47.7,51,47.5,47.8,48.1,54.2,49.4,49.7,46.6,45.9,47.2,50.1,48.4,52.8,47.2,47.8,49.5,48.4],"script":[41,40.5,42.1,41.5,40.8,39.7,41.5,42.4,44.1,43.8,42.4,41.8,47.7,44.1,42.7,39.9,41.4,41.5,42.8,41.4,46.8,41.6,41.2,43.1,42.5],"paint":[2.9,5.3,3.9,2,4.4,5.5,3.7,3.4,5.4,2.8,4.3,4.4,4.7,4.4,5.1,5.2,2.2,3.6,5.5,4.5,4.5,3.7,4.6,4.6,4.9]}},{"b":4,"v":{"total":[57.7,56.8,52.4,51.9,55.1,51.7,52.2,53.1,54.8,51.4,49.8,50.3,50.9,54.8,50.8],"script":[43,43.8,40.6,42,43.7,40.3,39.1,41.4,43.7,39.5,39.3,38.5,40.3,41.1,39.8],"paint":[13.3,11,10.6,9.4,11.1,11.2,11.3,10.9,10.6,10.1,9.2,11.7,9.8,11.3,9.2]}},{"b":5,"v":{"total":[54.2,55.5,54.4,50.8,54.7,52.1,54.7,53.7,52.5,51.4,52.1,53.8,52.5,54.1,53.9],"script":[22.6,23.6,23.6,21.5,21.9,22.4,22.9,22.5,21.7,22.2,22.4,22.8,21.8,22,23.1],"paint":[30.9,31.8,30.2,29.1,32.6,29.6,31.1,30.8,29.8,29.1,28.7,30.5,30.3,31.9,30.5]}},{"b":6,"v":{"total":[602.6,596.3,593.7,590.1,600.7,591.4,592.3,592.6,599,591.9,590.9,595.6,588.9,606.2,595.6],"script":[247.1,245.6,248.7,244.1,248.1,243.4,242.4,245.3,239.2,247.7,245.5,248.9,245.5,246.7,246.7],"paint":[353.4,348.6,342.9,343.8,350.4,345.8,347.7,345.2,357.7,342.1,343.2,344.6,341.2,357.3,346.7]}},{"b":7,"v":{"total":[75.8,75.6,75.1,75.1,75,75.4,76.2,75.5,75.9,75,76.3,75.8,77.3,76.4,76.4],"script":[35,34.9,34.5,35,34.8,34.5,35.8,35.5,35.4,35.4,35.4,35.5,36.1,35.8,35.2],"paint":[40.4,39.8,40.2,39.8,39.9,40.7,40.2,39.6,40.3,39.4,40.6,39.2,41,40.4,40.9]}},{"b":8,"v":{"total":[27.9,38.6,35.6,34.3,36.2,57.3,35.6,30.8,36.5,57.2,30.5,30.6,57.9,56.1,57],"script":[25.9,34.2,29.7,29.4,31.9,27.2,28.9,28.7,30.3,28.5,28.6,29,27.9,28,29.6],"paint":[1.3,2.6,2.4,2.9,3.2,2.7,2.4,1.4,2.5,3.3,0.4,1.5,3,2.6,2.3]}},{"b":9,"v":{"DEFAULT":[2.7]}},{"b":10,"v":{"DEFAULT":[8.6]}},{"b":11,"v":{"DEFAULT":[8.8]}},{"b":12,"v":{"DEFAULT":[8.6]}},{"b":13,"v":{"DEFAULT":[49.5]}},{"b":14,"v":{"DEFAULT":[442.8]}},{"b":15,"v":{"DEFAULT":[90.8]}},{"b":16,"v":{"DEFAULT":[670.6]}}]}, +{"f":176,"b":[{"b":0,"v":{"total":[40.7,40.2,40.3,39.8,41.2,40.7,40.9,40.8,42.4,40.4,40,41.6,40.3,40.3,39.7],"script":[7.1,6.8,6.8,6.8,6.8,6.9,6.8,6.8,7.7,6.9,6.8,6.9,6.8,6.8,6.7],"paint":[33.1,32.9,33,32.6,33.9,33.4,33.7,33.6,34.2,33.1,32.8,34.2,33.1,33,32.6]}},{"b":1,"v":{"total":[45.7,45.4,45,45.9,45.3,45,45,46.8,45,45.7,44.3,44.6,45.7,46,46.1],"script":[10.2,10.1,9.9,10,9.9,9.9,9.8,11,9.9,10,9.9,9.7,9.8,10.8,10.7],"paint":[35.1,34.8,34.6,35.5,35,34.7,34.8,35.3,34.6,35.3,34,34.4,35.5,34.7,35]}},{"b":2,"v":{"total":[16.8,16.7,17.4,16,16,16.8,16.1,17.5,16,16.5,16.9,16.6,18.3,16.2,17.2],"script":[1.5,0.7,1.3,1,1.7,1.8,1.4,1.3,1,1.1,1.9,1.1,1,0.7,1.3],"paint":[13.8,14.9,15,14,12.3,12.3,12.7,15.1,14,14.4,13.3,13.9,15.2,13.1,14]}},{"b":3,"v":{"total":[6,2.9,4,3.8,3.3,2.6,2.8,3.7,2.9,3.3,3,3.5,3.4,4,2.6,3.3,3.2,3.4,3.6,3,3.7,3.1,3.3,3.4,3],"script":[1.3,1,1.7,0.9,0.9,1,0.6,0.9,1,1,0.7,1.1,0.9,1.3,0.8,0.9,1.1,0.6,0.8,0.9,1.3,0.9,0.9,0.7,0.8],"paint":[1.8,1.8,0.9,2,2.3,1,1.5,2.7,1.3,2.1,1.9,2.2,1.7,2.6,1.6,1.4,2,1.9,1.6,2,1.5,2.2,1.7,2.3,2.1]}},{"b":4,"v":{"total":[11.3,11.1,11.1,11.7,11.4,11,12,11.4,11.9,11.7,11.6,11.1,11.2,11.4,11.2],"script":[0.8,0.2,0.9,0.1,0.5,0.1,0.6,0.7,1.1,0.1,0.9,0.5,0.8,0.1,0.1],"paint":[9,9.8,8.7,10,9.9,9.1,10,9.2,9.8,10.1,9.4,8.6,8.3,9.6,9.6]}},{"b":5,"v":{"total":[15.7,16,15.8,16.2,16.2,15.6,15.7,16.4,15.6,16,16,15.6,15.7,15.8,16.4],"script":[0.7,0.7,0.7,0.9,0.8,0.7,0.6,0.9,0.8,0.6,0.7,0.7,0.6,0.6,0.7],"paint":[14.3,14.2,14.4,14.6,14.5,14.2,14.4,14.7,14,14.6,14.3,14.3,14.1,14.5,14.5]}},{"b":6,"v":{"total":[641.3,627.2,626.9,632,621.9,632.6,632.1,627,626.3,629.4,631.3,627,630.6,626.8,621.6],"script":[275.2,270.8,271.5,271.4,269.1,273.5,274.2,268.8,272,271.9,273,270.7,274.5,270,267.8],"paint":[359.2,349.7,348.7,354,346,352.4,351,351.5,347.7,350.7,351.6,349.4,349.3,349.9,347.1]}},{"b":7,"v":{"total":[75.4,75.1,75.8,76.1,76.2,75.4,76.5,75.9,77.7,75.6,76.1,76,76.7,75.8,76.3],"script":[35.4,35,35.4,35.7,35.3,35.1,35.7,35.2,35.1,35.9,35.5,35.3,36.3,35.5,35.7],"paint":[39.1,39.2,39.6,39.5,39.9,39.4,39.9,39.7,41.6,38.9,39.8,39.7,39.5,39.4,39.7]}},{"b":8,"v":{"total":[19.2,18.7,17.8,18.3,18.6,19,20.3,19.5,18,18.8,18.6,18.8,19.2,18.2,18.9],"script":[18.1,16.7,15.9,16,16.2,17.4,18.1,17.6,15.6,16.9,16.9,17.4,17.1,16.4,16.3],"paint":[0.4,1.8,1.4,1.2,1.4,1.1,2.1,1.8,1.4,1.7,1.7,1.4,2.1,0.9,2.2]}},{"b":9,"v":{"DEFAULT":[2.7]}},{"b":10,"v":{"DEFAULT":[9.8]}},{"b":11,"v":{"DEFAULT":[9.8]}},{"b":12,"v":{"DEFAULT":[10.3]}},{"b":13,"v":{"DEFAULT":[72.8]}},{"b":14,"v":{"DEFAULT":[229.6]}},{"b":15,"v":{"DEFAULT":[65.8]}},{"b":16,"v":{"DEFAULT":[396.4]}}]}, +{"f":177,"b":[{"b":0,"v":{"total":[57,56.5,54.8,56.4,56.1,55.3,55.6,56.4,55.5,56.3,56,56.2,56.1,57.1,56.1],"script":[20.9,21,19,20.3,19.9,19.7,20.2,20.6,20.4,21,20.6,20.7,20.7,21,20.9],"paint":[35.7,35.1,35.4,35.6,35.7,35.2,34.9,35.3,34.6,34.8,34.9,35.1,34.9,35.7,34.7]}},{"b":1,"v":{"total":[59.8,58.3,57.5,58.9,58.4,59,58,58.7,57.7,58.8,58.3,58.9,58.5,59.1,57.9],"script":[22,20.7,20.9,21.6,21.8,21.8,21.4,21.5,20.5,22.1,21.7,21.4,22,21.9,20.8],"paint":[37.3,37.2,36.1,36.8,36.1,36.8,36.1,36.8,36.8,36.3,36.1,37.1,36.1,36.8,36.6]}},{"b":2,"v":{"total":[20.8,21,20.9,22.7,20.6,20.5,20,20.9,20.5,20.6,20.6,21.7,20.3,21.9,22.1],"script":[2.8,2.7,2.1,2.6,2.8,2.3,2.5,2.7,2.8,2.5,2.3,2.3,2.4,2.5,3.2],"paint":[16.2,16.5,17.3,17.6,16.2,16.6,16.1,15.7,16.1,16.4,16.8,17.4,16,17.4,17.4]}},{"b":3,"v":{"total":[6.4,6.8,6.4,7.6,6.3,6.4,7.5,6.7,5.9,6.2,7,6.8,6,6.9,6.5,6,6.1,6.3,5.9,7.4,6.6,6.5,7.4,6,6.9],"script":[3.6,4.5,3.6,4.8,4,3.6,4.3,3.4,3.3,3.6,4,3.7,3.6,4,3.2,3.2,3.2,3.7,3.4,4,3.8,4.5,4.6,3.2,4.2],"paint":[2.1,2.1,2.6,2.7,1.5,2.3,2.5,3.2,2.5,2,2.8,2.7,1.8,2.4,2.4,2.6,1.9,2.5,2.4,3,2,1.2,2.3,2,1.9]}},{"b":4,"v":{"total":[21.5,23.3,22.3,21.6,22,21.8,21.1,21.5,21.2,20.8,21.5,20.6,21.1,21,20.9],"script":[0.9,0.9,0.2,0.9,0.7,0.9,0.9,0.9,0.6,0.7,0.7,1,1.5,0.2,0.5],"paint":[18.7,19.7,20,19.3,19.2,19.5,18.5,18.7,19.1,18.7,19.6,18.3,17.8,19.4,18.7]}},{"b":5,"v":{"total":[16.8,16.8,16.5,16.6,17,17.2,17.6,16.7,16.3,17.1,16.8,16.7,16.5,16.7,16.6],"script":[0.2,0.2,0.4,0.1,0.1,0.3,0.4,0.1,0.2,0.1,0.1,0.4,0.4,0.3,0.4],"paint":[15.5,15.8,15.3,15.4,15.9,16.1,16.4,15.5,15.4,15.9,15.6,15.5,15.3,15.4,15.3]}},{"b":6,"v":{"total":[581.8,592,580.6,586.4,588.9,584.9,576.9,586.8,588.2,570.9,584.9,584.9,589,580.5,596],"script":[208.2,212,208.9,214.1,214.1,212.1,208.2,213.4,213.3,203.9,212.3,212.3,212.7,211,211.9],"paint":[366.7,373,365,365.5,368,366.1,361.7,366.4,368,360.3,365.9,365.8,369.6,362.4,377.4]}},{"b":7,"v":{"total":[63.5,63,60,61.4,60,62,61.7,61.1,61.5,60.1,61.5,60.9,61.2,59.5,61.1],"script":[20.2,20.5,17.9,20.2,18.7,20.4,19.2,19.5,19.6,18.9,20.1,19.4,19.4,18.4,19.6],"paint":[42.4,41.5,41.2,40.3,40.4,40.6,41.6,40.7,40.9,40.3,40.5,40.6,40.9,40.1,40.6]}},{"b":8,"v":{"total":[20.8,20.8,19.3,18.7,19.8,19.9,20.6,20.1,18.8,20.6,19.6,20.2,19,20.7,19.9],"script":[18.6,19,16.7,16.5,17.8,17.8,18.4,18.1,16.4,18.3,17.8,17.8,17.2,19.2,18.4],"paint":[1.1,1.6,2,1.2,1.4,1.2,2.1,1,2.3,2.1,1.6,2.3,1.7,1.4,1.4]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[5.4]}},{"b":11,"v":{"DEFAULT":[5.6]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[46.2]}},{"b":14,"v":{"DEFAULT":[28]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[82.2]}}]}, +{"f":178,"b":[{"b":0,"v":{"total":[39.7,40.5,40.3,40.5,48,40.4,39.9,41.5,40.7,40.4,39.7,41,41.3,40.5,41],"script":[7.8,8.4,8.3,7.6,8,8.4,7.7,8.6,8.2,8,7.9,8.4,8.5,7.8,8],"paint":[31.8,32,31.9,32.7,33.5,31.8,32.1,32.8,32.4,32.1,31.7,32.4,32.7,32.5,32.9]}},{"b":1,"v":{"total":[23,26,24.3,24.5,24.5,22.8,24.3,24.5,24.1,24.3,24.2,24.2,22.8,24.7,25.8],"script":[9.1,10.5,10,9.8,9.9,9,10,10.1,9.4,10.1,9.7,10,9.1,9.8,10.1],"paint":[13.7,15.4,14.2,14.4,14.4,13.6,14.2,14.2,14.4,14.1,14.3,14.1,13.6,14.8,15.6]}},{"b":2,"v":{"total":[49.4,45.9,45.6,48.5,47.1,48.1,48.9,45.4,46.5,47.1,49.7,46.2,48.2,45.8,45.2],"script":[32.2,31.5,30.1,31.3,30.4,31.9,31.8,30.5,32,32.2,32.3,30.9,31.5,30.4,31.3],"paint":[16.5,14.3,13.6,15.2,16.5,13.9,15.9,14.8,14.4,14.8,16.1,15.2,16,14.7,13.2]}},{"b":3,"v":{"total":[37.2,37.2,38.6,37,39.5,39.1,34.4,38,38.1,37.1,36.6,37.1,36.9,37.3,37.8,37.1,34,37.4,37.9,37.2,37,38,36.7,36.8,36.8],"script":[30.9,31.7,32.4,31.6,32.8,33.2,31.6,32.4,31.7,32.4,30.6,30.9,32.4,31.4,31.4,31.4,31.2,30.8,31.7,31.6,31,31.8,31.1,30.7,30.8],"paint":[4.5,3.9,4.5,3.2,4,4.5,2.3,3.1,4.3,3.7,2.8,4.5,3.7,3.1,4.9,3.3,2.7,3.1,2.9,4.1,3.7,3.6,4.1,4.3,3.6]}},{"b":4,"v":{"total":[42.4,41.9,40.9,43.7,43.6,41.6,43.9,43.3,42.7,44.3,41.7,39.8,43.9,43.5,43.5],"script":[31.2,30.4,30.9,31.5,31.1,31.9,30.7,31.5,30.5,31.6,30.6,29.5,32.6,31.9,31.5],"paint":[11,10.5,9.2,10.6,10.7,8.9,11.6,10.4,11.8,11.6,10.3,9.6,11.1,10.9,11.7]}},{"b":5,"v":{"total":[47.3,50.7,47.1,53.9,46.7,48.7,50.6,51.3,47.5,47.2,47,48.6,49.1,50.9,47.2],"script":[17.6,18.5,17.8,20.4,17.8,18.3,18.3,19.1,17.8,17.8,17.6,18.3,18.1,19.3,17.3],"paint":[28.7,31,28.6,32.6,28.5,29.4,31.1,31.3,28.9,28.7,28.5,29.4,29.9,30.6,29.1]}},{"b":6,"v":{"total":[419.1,412.5,417.3,415.5,415.4,415.2,418.1,414,418.1,420.8,412,415.9,411.7,415.2,411.2],"script":[84.2,85.6,85.9,85.4,86.1,83.9,84.7,84.5,86.3,86.3,85.4,86.2,84.4,85.2,84.1],"paint":[332.8,324.7,329.3,327.9,327,329.2,331.1,327.2,329.3,332.3,324.4,327.4,325.2,327.8,325]}},{"b":7,"v":{"total":[52.5,53.6,54.5,52.2,53.7,54.3,53.2,53.2,54.6,53.9,54,54,54.3,54.9,53.9],"script":[15.7,16.2,16.2,15.5,15.1,16.6,15.7,15.9,16,16.4,16.4,15.7,15.2,16,16.2],"paint":[36.5,37,38.1,36.3,38.3,37.4,37.2,37.1,38.4,37.3,37.3,38,38.7,38.4,37.5]}},{"b":8,"v":{"total":[25,23.8,23.3,23.7,25.6,23.8,23.9,24.6,24.3,24.6,24.1,23.6,24.6,23.3,24.2],"script":[20.5,20.4,19.9,20.1,21.3,20.5,20.1,19.8,20.4,20.8,19.9,20.1,21.2,20,20.4],"paint":[3.1,3.2,2.1,3.4,3.3,2.2,3.6,3.7,2.5,3,3.1,2.4,3.2,3.1,2.9]}},{"b":9,"v":{"DEFAULT":[3.4]}},{"b":10,"v":{"DEFAULT":[4.9]}},{"b":11,"v":{"DEFAULT":[5.1]}},{"b":12,"v":{"DEFAULT":[3.9]}},{"b":13,"v":{"DEFAULT":[16.4]}},{"b":14,"v":{"DEFAULT":[885.9]}},{"b":15,"v":{"DEFAULT":[211.6]}},{"b":16,"v":{"DEFAULT":[150]}}]}, +{"f":179,"b":[{"b":0,"v":{"total":[46.2,44.4,45,45.3,46.7,45.7,44.4,45.1,44.8,46.1,45,45.2,44.9,44.9,45.9],"script":[10.7,10,10.5,10.6,10.5,10.9,10.4,10.5,10.4,11,10.5,10.7,10.4,10.4,10.4],"paint":[34.9,34,33.9,34.2,35.7,34.4,33.6,34.1,33.9,34.7,34,34.1,34.1,34.1,35]}},{"b":1,"v":{"total":[19.4,20,20,19,19.2,20.2,19.2,19.7,20,19.8,19.7,19,18.9,18.9,19.3],"script":[4.4,4.6,4.5,4.3,4.5,4.4,4.4,4.6,4.6,4.4,4.5,4.3,4.2,4.3,4.3],"paint":[14.5,14.9,15,14.2,14.2,15.3,14.4,14.6,14.8,14.8,14.7,14.3,14.2,14.2,14.5]}},{"b":2,"v":{"total":[21.7,20,20.7,19.9,20.6,21.1,19.9,19.4,20.6,19.4,19.8,19.9,19.4,20,20.3],"script":[3,4.1,4,3.7,3.8,3.7,3.7,3.4,3.6,3.7,3,3.4,2.9,3.3,3.7],"paint":[16.9,14.9,14.2,14.7,15.7,15.6,14.8,14.7,15.1,14.3,14.2,14.1,15.2,15.3,14.9]}},{"b":3,"v":{"total":[4.6,4,4.3,4.5,4,4.7,4,4.6,3.7,3.3,3.9,4.9,3.8,4.1,3.5,4.4,4.2,4.7,4.9,4.1,5.3,3.9,4.2,4.1,4.2],"script":[1.6,1.3,1.2,0.9,0.9,1.7,0.6,1.7,1.1,0.9,1.1,1.2,1,1,1.2,1.3,1,1.2,0.9,1.2,1.5,0.6,1,1.1,1],"paint":[2.9,2.3,3,2.9,2.4,2.9,2.8,2.7,1.8,1.5,2,3,2.7,3,2.2,2.2,2.6,3.4,2.8,2.8,2.7,3.1,3.1,2.7,1.8]}},{"b":4,"v":{"total":[13.2,14.8,13,13.4,13.5,13.2,12,12.6,12.5,13.7,12,12.1,12.8,12,12.7],"script":[1.8,1.7,1,1,1.7,1.6,1.1,1.1,1.2,1.4,0.7,1.2,1,1,1.2],"paint":[10.7,11.1,9.5,11.1,9.8,10.8,9.3,9.5,10,10.7,10,9.9,10.4,9.2,9.3]}},{"b":5,"v":{"total":[39.3,39.9,38.6,38.8,39,39.4,39.2,39.8,39.8,39.3,39.8,39.3,42,39.1,39.3],"script":[8.5,9,8,8.2,8,8.4,8.5,9.1,8.8,8.3,8.1,8.7,8.6,8.4,8.5],"paint":[29.9,29.7,29.9,29.5,30.2,29.8,29.5,29.9,30,30,30.4,29.5,32.3,29.7,29.9]}},{"b":6,"v":{"total":[581.7,573.6,569.5,585.2,580.4,569.2,587,570.9,581.4,562.9,578.4,571.9,568.1,572.4,590.3],"script":[210,205.7,202.3,207.2,205.9,203.3,209.8,203.7,207.4,198.3,208.5,205.1,200,202.3,206.1],"paint":[364.7,361.1,360.2,370.9,367.5,358.9,370,360.4,367,357.8,363,359.8,360.5,363.2,377.4]}},{"b":7,"v":{"total":[70,68.5,68.9,69.3,69.6,69.6,70.5,71,68.8,67.7,70.5,69.2,69.3,70.8,71],"script":[27.9,26.7,26.8,26.7,27.1,27.1,26.9,27.8,26.5,26.2,28.4,27.2,27.1,28,27.5],"paint":[41.2,40.9,41.2,41.7,41.5,41.5,42.7,42.2,41.4,40.6,41.2,41.1,41.3,41.9,42.6]}},{"b":8,"v":{"total":[26.4,22.8,24.8,20.7,22,20.9,22.9,21.1,22.7,22,25.2,23,22.3,23.9,23.3],"script":[23.6,21.2,23.1,18.9,19.9,19.4,20.3,19.3,20.3,19.8,23.2,21.3,20.3,21.1,21.3],"paint":[2.7,1.6,0.9,1.6,2.1,1.4,2.5,1.7,2.3,2.1,1.9,1.7,1.4,2.3,1.9]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[5.2]}},{"b":11,"v":{"DEFAULT":[5.3]}},{"b":12,"v":{"DEFAULT":[4.5]}},{"b":13,"v":{"DEFAULT":[39.7]}},{"b":14,"v":{"DEFAULT":[57.8]}},{"b":15,"v":{"DEFAULT":[15]}},{"b":16,"v":{"DEFAULT":[100.3]}}]}, +{"f":180,"b":[{"b":0,"v":{"total":[56.8,60.9,59.5,61,60.2,59.7,59.5,58.2,59.4,59.8,56.9,58.6,59,57,59.6],"script":[23.4,25.9,26.1,27.1,26.5,26.3,25.9,25.1,26.1,25.9,24.7,24.8,25.7,23.9,26],"paint":[32.9,34.5,33,33.4,33.3,32.9,33.2,32.6,32.8,33.5,31.8,33.3,32.9,32.7,33.2]}},{"b":1,"v":{"total":[17.5,17.4,17.2,17.6,17.2,17.1,17.6,17.7,18.5,17,17.2,17.5,19.1,17.3,17.4],"script":[3,3,2.7,2.8,3,3.1,2.9,3.1,3,3,2.9,2.9,3,3,2.9],"paint":[14.1,13.9,14,14.3,13.8,13.7,14.3,14.1,15.1,13.6,13.9,14.3,15.6,13.9,14.1]}},{"b":2,"v":{"total":[19.8,18.8,19.7,20.4,18.8,19.5,19.5,18.6,19,19,19.7,18.7,19.1,19,19.2],"script":[3.8,3.7,4,3.8,3.7,3.6,3.7,3.8,3.6,3.7,3.1,3.6,3.4,3.8,3.5],"paint":[14.5,13.3,13.5,15.4,14.2,13.4,14,13.4,13.9,13.8,14.9,14,13.6,14.5,13.4]}},{"b":3,"v":{"total":[9.2,9.3,8.6,8.3,8.6,7.7,8.3,7.2,7.7,8.6,9.3,8,7.3,7.2,8.9,7.7,7.2,7.4,8.7,7.8,7.6,8,8.7,8.6,8.4],"script":[5.9,6.9,6.2,5.2,5.8,5.2,5.4,5.1,4.7,6.3,6.4,5.2,4.8,5,6.2,5,4.7,5.2,6.2,4.7,4.9,5.4,5.8,5.8,5.7],"paint":[2.5,2,1.9,2,1.9,1.6,1.9,1.2,2.8,1.7,2,2.7,1.7,1.7,2.6,2.3,2.3,1.9,1.6,2,2.6,1.6,2.8,1.8,1.7]}},{"b":4,"v":{"total":[13.1,12.8,13.1,12.6,12.9,12.5,13.1,13,12.9,13.2,12.6,12.8,12.3,12.3,13.2],"script":[1.8,1.4,2,1.9,1.6,2,1.6,1.1,2.2,2.1,1.7,1.4,1.9,2,1.4],"paint":[8.7,9.9,9.6,9.2,10.3,9,10.5,9.8,9.1,10,9.6,10.1,9.1,9.1,9.9]}},{"b":5,"v":{"total":[35.8,36.6,35.4,35.4,35,35.8,35.5,35.7,35.6,35.5,36.4,35.6,35.7,35.6,35.3],"script":[5.5,5.9,5.3,5.5,5.6,5.6,5.6,5.5,5.6,5.6,5.6,5.5,5.4,5.9,5.5],"paint":[29.1,29.8,28.8,29.2,28.5,29.2,29,29.5,28.6,28.9,29.9,28.7,29.4,28.5,29.1]}},{"b":6,"v":{"total":[574.6,573.4,571.5,570.4,564.3,575.9,576.3,570.4,576.4,576.2,571.6,569,567.6,578,572.1],"script":[216.9,216.7,217.7,218.8,213.4,217.9,217.7,218.3,218.7,218.4,217.9,217.3,217.4,224.1,219.7],"paint":[350.6,349.8,346.8,344.8,344.1,351.2,351.9,345.4,351,351.1,347,345.1,343.6,347,345.3]}},{"b":7,"v":{"total":[61.3,61.3,60.5,61.5,61.6,61.5,60.6,61.7,62.3,60.7,61.3,63.6,61.7,64.1,62],"script":[21.3,22.3,21.8,22.3,21.3,22.5,21.2,22.1,22.6,21.3,21.8,22.9,21.7,22.3,22.3],"paint":[39.1,38.1,37.9,38.3,39.4,38.2,38.5,38.7,38.8,38.5,38.6,39.8,39.1,40.8,38.8]}},{"b":8,"v":{"total":[28.4,28.7,29,27.4,30.6,28.2,27.8,26.5,27.5,28.6,28.2,30.1,29.3,27.9,28.4],"script":[26.1,26.8,26.6,25.1,28.5,26,25.7,24.7,25.1,26.3,26.3,27.3,27.3,26.4,26],"paint":[2.3,1.8,2.3,2.2,0.9,2.2,2,1.7,1.5,2.3,1.8,2.7,1.8,1.5,1.6]}},{"b":9,"v":{"DEFAULT":[1.1]}},{"b":10,"v":{"DEFAULT":[8.7]}},{"b":11,"v":{"DEFAULT":[8.9]}},{"b":12,"v":{"DEFAULT":[2.5]}},{"b":13,"v":{"DEFAULT":[72.9]}},{"b":14,"v":{"DEFAULT":[224.1]}},{"b":15,"v":{"DEFAULT":[58.8]}},{"b":16,"v":{"DEFAULT":[320.9]}}]}, +{"f":181,"b":[{"b":0,"v":{"total":[45.8,46.7,46.3,47.1,46.6,46.6,46.5,47.1,47,47.2,47.4,46.9,45.9,47.2,48],"script":[12.8,13,12.5,12.6,12.9,13,12.8,13.7,13.4,13.4,13.2,12.8,12.7,13.4,12.9],"paint":[32.5,33.3,33.3,34.1,33.3,33.2,33.3,33,33.1,33.4,33.8,33.7,32.8,33.4,34.7]}},{"b":1,"v":{"total":[19.4,19.3,20.2,19.2,18.7,19.1,19.3,19,19.3,19.3,19.6,18.9,19.6,19.2,19.1],"script":[4.8,4.9,4.6,4.7,4.4,4.8,4.8,4.7,5,4.6,4.9,4.7,4.6,4.8,4.7],"paint":[14.2,14,15.2,14.1,13.8,13.8,14,13.9,13.9,14.3,14.3,13.8,14.5,13.9,13.9]}},{"b":2,"v":{"total":[23.3,21.1,20.4,21.6,21.8,20.9,22.2,21.4,21.1,22.7,21.7,21.5,22.1,22,21.6],"script":[6.1,4.6,4.9,5.9,5.8,5.3,5.7,6,5.7,5.3,5.8,5.3,5.9,5.5,4.8],"paint":[15.4,15.4,14.2,14.2,14.3,14.7,14.6,13.6,14,16,14,14.4,14.8,15.7,15.2]}},{"b":3,"v":{"total":[6.1,5.8,6.3,5.7,5.5,5.1,6.1,5.1,6.6,5,6.5,5.3,5.9,5.8,6.1,5.9,5.9,5.9,6.6,6.1,5.9,6,5.7,6.3,5.8],"script":[3.2,2.3,2.3,2.3,3,2.6,3.2,2.5,3.6,2.6,3.2,2.5,3.3,2.6,3.4,2.5,3.2,2.9,3.3,2.6,3.2,2.8,3.3,2.8,2.9],"paint":[2,2.9,3.9,1.8,2.4,2.2,2.7,1.9,2.1,2.3,2.7,2.1,1.6,2,2.6,3.2,2.6,2.6,2.7,3,2,3,1.2,2.3,2.7]}},{"b":4,"v":{"total":[13.6,14.2,13.8,13.1,15,14.3,14.6,14.6,14.5,14.8,14.5,13.9,14.5,13.8,14.4],"script":[2.2,3.1,2.5,2.1,3.6,2.9,3.5,3,3.2,3.2,3.2,2.9,2.8,2.6,3.2],"paint":[10.2,10.4,10.1,10,10.2,10,10,10.3,9.5,9.9,10.3,9.9,10,10.3,9.2]}},{"b":5,"v":{"total":[38.9,39.3,38.8,38.6,38.6,38.9,39.5,42.2,38.6,38.9,39,41.6,38.6,40.2,41.5],"script":[8.8,8.7,8.6,8.6,8.1,8.5,8.6,8.9,8.4,8.3,8.7,8.6,8.2,9.7,8.6],"paint":[29.3,29.4,29.1,29.3,29.7,29.7,29.7,32.2,29.5,29.9,29.2,32.1,29.6,29.7,31.7]}},{"b":6,"v":{"total":[606.8,606.6,607.9,602.1,606.1,603.3,582.1,605.1,602.1,610.4,607.2,599.2,600.8,607.1,602.9],"script":[253.6,253.1,253.4,253.7,254.6,251.8,246.5,252.4,250.6,255.6,254.4,250,248.7,254.5,252.5],"paint":[346.1,346.7,347.6,341.7,344.8,344.7,328.9,345.6,344.6,344.7,346.1,342.4,345.3,345.9,343.6]}},{"b":7,"v":{"total":[50.5,53.6,51.4,52.7,50.7,51.9,52.6,50.5,51.4,50.3,52.2,52.7,50.7,52.2,51.6],"script":[12.6,13.5,12.5,12.7,12.8,12.8,13.1,12.4,13.1,12.9,13.2,13.4,13.1,13.1,12.9],"paint":[37.1,39.2,37.9,38.9,37,38.1,38.6,37.1,37.4,36.5,38.1,38.3,36.7,38.2,37.8]}},{"b":8,"v":{"total":[15.2,15.2,15.2,13.7,15.1,15,15.8,15.2,15,14.6,15.9,15.7,15.8,15,15.3],"script":[13.2,13.1,13.6,11.9,13.4,12.8,13.6,12.8,12.8,12.9,14.4,13.8,14,13.2,13.6],"paint":[1.5,1.2,0.9,1.7,0.8,1.2,2.1,2.3,1,1.6,1.4,1.9,1,1.3,1.6]}},{"b":9,"v":{"DEFAULT":[1]}},{"b":10,"v":{"DEFAULT":[4.4]}},{"b":11,"v":{"DEFAULT":[4.9]}},{"b":12,"v":{"DEFAULT":[1.8]}},{"b":13,"v":{"DEFAULT":[31.7]}},{"b":14,"v":{"DEFAULT":[143.2]}},{"b":15,"v":{"DEFAULT":[40.2]}},{"b":16,"v":{"DEFAULT":[224.4]}}]}, +{"f":182,"b":[{"b":0,"v":{"total":[42.9,43.3,45.1,45.2,43.9,42.8,44.1,44.5,44,43.2,43.8,42.9,43.5,42.8,43],"script":[9.6,9.6,9.6,10.8,10,9.6,9.8,9.8,9.5,9.5,9.8,9.6,9.6,10.2,9.7],"paint":[32.8,33.3,35,34,33.5,32.7,33.8,34.2,34,33.2,33.6,32.9,33.5,32.1,32.9]}},{"b":1,"v":{"total":[16.1,16.1,16.6,16.8,15.8,15.7,15.7,15.7,16.6,16.4,16.1,16,16.6,16.3,17.5],"script":[1.5,1.5,1.6,1.4,1.4,1.4,1.4,1.4,1.6,1.5,1.5,1.6,1.5,1.5,1.5],"paint":[14.1,14.2,14.6,15,14,13.8,13.9,13.9,14.6,14.6,14.3,14.1,14.8,14.5,15.6]}},{"b":2,"v":{"total":[17.8,17.2,17.1,17.3,18.2,18.2,17.6,18,18.9,18.4,18.5,18.1,17,18.5,18.4],"script":[1.9,1.8,1.5,1,2.2,2,1.4,2.4,1.6,2,1.8,1.8,1.6,2.1,2.2],"paint":[14.1,13.9,13.4,15.1,14,15.2,15.1,14.3,15.2,14.8,15.2,14.7,13.2,14.4,15.2]}},{"b":3,"v":{"total":[3.9,2.9,3.4,3.5,3.6,3.3,3.4,3.7,5.8,3.4,3.4,3.1,3.6,5,3.1,3,2.8,3.6,3.1,4,4,3.3,2.9,3.7,3.7],"script":[1.3,0.2,0.7,0.9,1.5,0.5,0.9,0.9,0.9,1.3,0.9,1,1.8,1.6,0.9,0.9,0.9,1.5,1.2,0.8,1.4,0.2,1,1.5,1.7],"paint":[2.5,2.2,2.3,2.5,1.5,1.7,2.4,2.5,2.6,1.3,2.4,1.7,1.3,1.7,0.9,1.5,1.7,1.6,1.1,3,1.7,2.5,1.7,2.1,1.2]}},{"b":4,"v":{"total":[12.2,12.2,12.7,12.6,12.4,12.6,12.2,12.4,12.3,12.6,13.1,11.8,12.2,13.2,12.5],"script":[0.7,1,1.3,1.4,1,1.4,1.7,0.6,1.5,1.2,1.4,0.9,0.9,0.3,1.1],"paint":[10.3,9.7,9.8,9.6,9.8,9.7,8.9,10.2,9.3,9.7,10.7,10,10,10.7,10]}},{"b":5,"v":{"total":[33.4,35.8,34.7,33.7,34.8,33.1,33.6,33.8,33.6,35.1,33.6,33.4,33,33.7,35.5],"script":[2.8,3.2,3,3.1,2.9,2.6,3,2.6,3,3.1,3.1,2.8,2.9,2.8,3.4],"paint":[29.6,31.7,30.6,29.5,30.8,29.8,29.8,30.3,29.9,30.9,29.8,29.7,29.4,29.7,31.3]}},{"b":6,"v":{"total":[442.6,444.7,445.1,442.1,444.5,447.4,442.9,445.3,443.2,442.6,445.7,446,443.6,446.3,443.7],"script":[103.7,100.8,102.4,101.6,101.4,104.7,102.4,103.4,100.8,102.6,101.6,103.8,102,100.8,101.1],"paint":[332.2,337.4,336.2,333.8,336.4,336,333.9,335.3,335.8,333.3,337.4,335.5,335,338.8,335.9]}},{"b":7,"v":{"total":[50,50,49.3,51.1,48.6,49,46.7,49.8,49.7,50.3,49.4,49.3,48.9,50.3,49.6],"script":[10.5,11.1,10.8,11,10.2,10.4,8.6,10.3,11,11.2,10.2,10.6,10.5,11,10.3],"paint":[38.6,38,37.6,39.1,37.5,37.7,37.2,38.5,37.8,38.1,38.3,37.7,37.5,38.4,38.4]}},{"b":8,"v":{"total":[14.1,14.5,14.7,14.4,14.1,13.7,15.5,13.7,14.1,13.8,14.5,15,14.3,14.4,14.1],"script":[11.7,12.3,12.7,12,11.9,11.9,13.5,11.8,12.3,12.3,12.1,12.8,12.5,12.9,12.3],"paint":[2,1.6,1.9,1.9,2.2,1.6,1.3,1,0.9,1.4,2.2,2.1,0.9,0.9,1.7]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.4]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[2.4]}},{"b":13,"v":{"DEFAULT":[19.2]}},{"b":14,"v":{"DEFAULT":[9.5]}},{"b":15,"v":{"DEFAULT":[3.2]}},{"b":16,"v":{"DEFAULT":[54.4]}}]}, +{"f":183,"b":[{"b":0,"v":{"total":[120.5,125.2,119.8,127,127.8,120.9,121.6,125.5,120,121.1,121.4,121.9,123.6,119.3,124.2],"script":[85.4,88.5,84.1,91.6,92.4,85,86.4,88.4,83.8,85.6,86,86.5,88.3,84.1,88.2],"paint":[34.9,36.5,35.4,35.1,35.3,35.7,35,36.9,36,35.2,35.1,35.2,35.1,35,35.8]}},{"b":1,"v":{"total":[136.1,132.1,132.7,132.8,134,130.8,129.4,131.5,129.8,129.9,133.1,132.7,131.3,130.1,130.3],"script":[104.7,100.6,101.4,101.5,102.5,98.9,98.2,100.3,98.3,98.4,101.5,101.5,100.1,98.7,98.9],"paint":[31.2,31.3,31.1,31.2,31.3,31.6,31,31,31.2,31.3,31.4,30.9,31,31.3,31.1]}},{"b":2,"v":{"total":[79.7,75.7,79,80.6,79.2,78.1,78.7,79.1,75.5,77,74.7,77.1,76.5,79.8,79.1],"script":[44.7,42.7,44,46.5,47.2,42.6,45,47,44,45.2,43,43.4,44.4,45.5,43.1],"paint":[33.1,30.3,33.6,33.4,31.8,35,33.1,31.7,31.1,31,31,31.6,31.1,32.5,32]}},{"b":3,"v":{"total":[39.2,39.6,44.9,43.8,41.9,42.1,41.5,37.3,44.8,44,41.4,45.7,44.4,41.4,39.7,47.2,39.6,42.9,46.4,40.5,41.8,41,45.7,44.9,43.5],"script":[8.3,7.4,7.7,7.8,6.3,6.5,6.4,7.2,7.1,6.4,7.1,6.2,7.3,6.1,5.7,7.5,7.4,7.9,7.2,6.1,6.1,5.9,6.3,7.6,7.7],"paint":[25.1,24.3,24.9,25,24.8,24,23.6,23.3,26.2,25.5,24.3,26.1,25.9,25.7,26.7,25.6,23.2,24.3,25.1,25,25.2,24.4,25.7,24.9,24.4]}},{"b":4,"v":{"total":[24.3,57.8,25.2,24.7,57,25.4,25.2,24.8,57.3,24.7,57.1,24.6,56,25.6,25.8],"script":[6.5,7.3,6.4,6.7,8.1,6.7,6.3,6.8,7.3,6.3,8,6.6,8.7,6.2,6.8],"paint":[16.2,21.3,17.8,17.9,19.4,17.8,17.3,17.6,19.7,18.2,20,17.8,19.4,18.7,18.8]}},{"b":5,"v":{"total":[22.5,20.4,24.2,23.2,24.9,24.8,25.5,26.1,23.7,24.4,27.2,20.7,22.5,29.7,24.6],"script":[2.5,2.5,2.3,2.6,2.3,2.8,2.4,3.1,3.1,2.5,2.6,2.2,2.4,2.7,2.4],"paint":[16.5,15.9,16.2,15.7,15.8,16.7,15.4,16.2,16,15.1,16.9,15.4,15.6,15.5,15.7]}},{"b":6,"v":{"total":[1022.3,1024.3,1018.4,1033.4,995,1014.3,1020.6,1040.9,1031.1,1022,991,996.8,1021.6,1013.1,1021.5],"script":[644.1,641.4,640,652.1,630,637,639.8,662.1,653.3,639.3,626.3,635.2,643.7,632.1,639.4],"paint":[374.9,380.1,375.6,378.5,362.3,374.5,375.5,376,375.1,379.5,361.9,358.9,375.2,376,377.4]}},{"b":7,"v":{"total":[114.6,115.8,117.9,116.2,120.5,113.9,115.9,114,118.4,114.1,114.1,116.8,119.5,116.7,117.7],"script":[74.4,75.9,76.4,75.9,80.3,74.2,75.9,74.5,75.9,74.5,74.6,76.2,79.1,77.1,77.3],"paint":[39.9,39.5,41.2,40,39.9,39.4,39.6,39.2,42.1,39.3,39.2,40.2,40,39.3,40]}},{"b":8,"v":{"total":[82.5,82.8,83.7,80.5,81.9,81.3,84,85.8,81.3,84.4,80.2,80.5,83.1,83.2,82.5],"script":[79.6,81.4,80.1,78.7,79.1,77.6,81.4,80.7,76.7,79.3,77.7,78.7,80.9,78.8,80],"paint":[2.8,0.8,3.3,1.6,2.7,3.5,2.3,3.7,3.8,4.2,1.1,1.6,2.1,2.6,1.5]}},{"b":9,"v":{"DEFAULT":[8.1]}},{"b":10,"v":{"DEFAULT":[21.8]}},{"b":11,"v":{"DEFAULT":[25.1]}},{"b":12,"v":{"DEFAULT":[41.2]}},{"b":13,"v":{"DEFAULT":[128.5]}},{"b":14,"v":{"DEFAULT":[2739.7]}},{"b":15,"v":{"DEFAULT":[264.1]}},{"b":16,"v":{"DEFAULT":[3495.6]}}]}, +{"f":184,"b":[{"b":0,"v":{"total":[40.4,39.9,39.5,38.5,39.4,38.8,39.1,39.9,39.8,40.3,38.7,38.2,38.9,37.3,40],"script":[5,4.9,4.7,4.7,4.6,4.7,4.9,4.7,4.9,4.9,4.7,4.9,4.4,4.7,4.9],"paint":[35,34.5,34.3,33.4,34.4,33.7,33.8,34.8,34.4,34.9,33.5,32.9,34,32.2,34.7]}},{"b":1,"v":{"total":[17.8,16.6,16.8,18.1,17.4,17,16.8,17.3,17.1,17.4,18.2,17.4,17.1,17.2,17.3],"script":[2.2,2.2,2.2,2.7,2.3,2.4,2.4,2.4,2.5,2.4,2.4,2.5,2.4,2.5,2.4],"paint":[15.2,14,14.1,14.9,14.6,14.2,14,14.4,14.2,14.6,15.4,14.5,14.3,14.3,14.5]}},{"b":2,"v":{"total":[19.9,20.2,20.1,19.9,20.6,19.2,20,22,19.5,20.7,20.1,19.7,19.4,21.7,19.9],"script":[3.6,3.8,3.9,4.2,4,3.8,4,4,3.2,3.3,4.2,3.7,3.7,4.5,4],"paint":[14.2,13.5,14.6,14.3,15.4,13.7,14.3,15.6,14.9,15.8,14.3,14.6,14.4,14.7,14.5]}},{"b":3,"v":{"total":[6.2,6.1,6.2,5.9,6.1,6.1,5.6,5.5,5.9,8.4,5.8,6.4,6.6,5.7,5.8,6.1,6.7,5.5,6.4,6.2,6,6.3,6.1,5.4,6.7],"script":[3.4,3.4,3.6,3.3,3.4,3.9,2.9,3.3,2.9,4,3.4,3.8,4,3.4,3.1,3.1,3.4,3.1,3.6,3.4,3.4,3.4,3.6,3.2,3.6],"paint":[2.7,1.9,2.4,2.2,2.3,2.1,1.9,1.7,2.5,3.3,2.2,2.5,2.5,1.4,1.7,2.9,3.2,2.3,2.7,2.7,1.5,2.8,2.4,1.5,2.9]}},{"b":4,"v":{"total":[17,14.8,16.6,16.2,17.8,16.2,16.7,17.1,17,16.9,16.7,16.8,14.9,15.1,16.1],"script":[5.9,3,5,4.8,5.1,5.1,4.7,5.2,4.8,5.5,5.1,5.4,3.6,3.1,4.9],"paint":[9.3,9.8,9.3,9.8,10.7,9.9,11.3,10.5,10.8,9,9.2,10,10.3,10.7,9.6]}},{"b":5,"v":{"total":[36.8,35.8,36.1,36.4,36.4,35.1,36.7,39.6,36.7,36.3,36.2,36,36.1,36.2,35.5],"script":[6,4.8,4.8,4.9,5.1,4.9,5,5.5,5.9,5,5.4,4.9,4.7,5.1,4.8],"paint":[29.8,29.9,30.3,30.7,30.5,29,30.5,33.1,30,30.6,29.5,30.3,30.2,30,29.6]}},{"b":6,"v":{"total":[417.5,422.6,414.6,423.8,417.3,420.6,420.8,419.8,416.2,422.9,417.2,417.6,417.8,417,418.5],"script":[59.6,62.2,59.1,61.8,61.7,62.9,60.6,60.8,60.7,61.4,60.4,59.3,61.2,57.3,59],"paint":[350.3,352.8,348.1,354.4,348,349.9,352.7,351.4,348,354.1,349.2,350.9,349,352.4,352.1]}},{"b":7,"v":{"total":[46.4,45.4,47.1,46.4,44.8,45.3,45.3,45.7,45.5,45.4,46.3,45,47,45.9,45.9],"script":[5.9,5.5,5.8,6.2,6,6,5.6,6.2,5.7,5.9,5.4,5.8,6,5.8,5.9],"paint":[39.5,39,40.3,39.3,38,38.4,38.8,38.7,38.9,38.6,40,38.3,40.1,39.1,39.2]}},{"b":8,"v":{"total":[13.2,12.8,12.8,13.1,13,13.7,13.8,13.6,12.7,12.8,12.8,12.7,12.9,12.5,13.2],"script":[11.6,11,10.8,11.3,11.1,11.4,11.6,11.6,11.3,11.1,11.5,10.8,10.5,10.9,11.7],"paint":[0.4,1.1,1.9,1.8,1.4,1.3,2.1,1.4,0.7,1.6,1.2,1.8,2.3,1.2,1.3]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[20.6]}},{"b":14,"v":{"DEFAULT":[32.2]}},{"b":15,"v":{"DEFAULT":[8.9]}},{"b":16,"v":{"DEFAULT":[87.7]}}]}, +{"f":185,"b":[{"b":0,"v":{"total":[46.4,47.7,45.6,48.8,46.5,46.3,48.5,45.3,45,46,46,46.7,44.5,48.1,46.4],"script":[12.2,12.4,11.7,12.1,11.5,12.6,12.7,11.7,11.5,12.3,12.1,12.5,11.6,12.2,12],"paint":[33.8,34.9,33.5,36.2,34.5,33.2,35.4,33.1,33.1,33.3,33.4,33.8,32.6,35.4,34]}},{"b":1,"v":{"total":[17,16.7,17.2,17,17,17.7,16.9,17.1,16.8,17.2,16.8,18.2,16.8,16.6,16.8],"script":[2.3,2.3,2.4,2.5,2.3,2.4,2.3,2.3,2.3,2.5,2.3,2.4,2.3,2.1,2.5],"paint":[14.2,14,14.3,14.1,14.2,14.7,14.2,14.4,14.1,14.3,14.1,15.3,14.1,14,13.8]}},{"b":2,"v":{"total":[21.9,22.9,22.1,21.5,22.3,22,24,21.1,22.6,21.6,22.4,21.6,23.6,21.7,21.7],"script":[5.6,6.5,6.5,6.1,6.4,6,6.8,5.3,6.9,6.4,6,5.6,7.2,5.7,6.4],"paint":[14.5,14.5,14.1,13.9,14.6,14,15.4,14.3,14.7,14.3,14.4,15,15.4,14.8,14]}},{"b":3,"v":{"total":[8.2,8.1,8.9,8.3,8.2,7.9,8.5,8.6,8.3,8,8.5,8.7,7.6,8.5,8,8.4,8.6,8.1,8.1,9.2,8.3,8,8.3,8.1,7.1],"script":[5.6,5.6,6.1,5.5,5.6,5.5,5.4,5.8,5.4,5.4,5.5,5.8,5.5,5.6,5.4,5.5,5.1,5.2,5.5,6.2,5.7,5.2,6.2,5.2,4.8],"paint":[2,1.8,1.8,1.9,2,2.2,2,2,1.9,1.5,2,2.7,2,2,1.6,2,2.9,1.9,2.2,2.3,1.6,1.9,2,1.7,1.4]}},{"b":4,"v":{"total":[16.5,16.8,16.9,16.8,17.3,17.1,16.5,16.4,17.7,16.4,17.6,16.4,16.2,17.2,16.7],"script":[4.9,5.2,5.6,5.7,5.7,5.5,5.1,5.5,5.9,5.3,5.6,5.9,5.5,5.6,5.1],"paint":[10.1,10.3,10.3,10.4,10.5,9.4,9.4,9.6,9.9,9.3,9.3,9.1,9.5,9.8,10.2]}},{"b":5,"v":{"total":[35,39.4,34.4,35.6,35.4,33.9,36.1,35.8,34.2,34.4,34.2,35.8,34,35.1,34.9],"script":[4.3,4.4,3.8,4.2,3.9,3.7,4.3,3.9,4.2,4.2,4.2,4.5,3.8,4.4,4.3],"paint":[29.6,33.8,29.7,30,30.3,28.7,31,30.8,28.9,29,29,30.4,29.5,29.8,29.5]}},{"b":6,"v":{"total":[487,476.3,480.4,474.7,481,473.2,478.1,483,478.3,477,472.8,474.7,485.1,483.1,473.9],"script":[132.3,131,132.7,128.7,131.9,128.2,130,131.5,129.1,131.1,130,129.5,133.7,130.5,127.8],"paint":[346.9,338.4,340.9,339.2,342.3,338.2,341.4,344.5,342.5,339.1,336,338.4,344.7,345.8,339.3]}},{"b":7,"v":{"total":[56.5,53.4,53.7,55.2,54.8,54.4,56.7,55.5,54.3,53.7,55.8,54.7,53.8,54.9,54.6],"script":[14.6,12.7,13.3,14.1,13.4,13.8,14.1,13.8,13.3,13.2,13.9,13.1,13.2,13.3,13.6],"paint":[40.9,39.8,39.6,40.1,40.5,39.7,41.6,40.9,40.1,39.6,40.9,40.8,39.7,40.7,40.1]}},{"b":8,"v":{"total":[24.8,23.2,24.4,23.5,23.3,23.9,23.4,24.8,23.4,22.8,21.4,22.4,23.4,22.3,21.6],"script":[22.8,20.5,22.1,21.2,22,21.5,21.5,22.2,21.2,21.1,19.4,21.3,21.6,20.2,19.1],"paint":[1.2,2.1,2,1.4,0.5,2.3,1.8,2.4,1.8,1.3,1.1,1,1.7,2,1.9]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[0.9]}},{"b":13,"v":{"DEFAULT":[30.6]}},{"b":14,"v":{"DEFAULT":[19.2]}},{"b":15,"v":{"DEFAULT":[6.3]}},{"b":16,"v":{"DEFAULT":[78.5]}}]}, +{"f":186,"b":[{"b":0,"v":{"total":[40.2,39.6,40,39.6,39.8,40.1,39.6,40.3,40.7,43.2,41.4,40.3,39.4,39.1,40],"script":[7.2,6.8,6.7,6.6,6.7,6.5,6.6,7.2,7.4,6.9,7.1,7.1,6.7,6.7,7.2],"paint":[32.7,32.4,32.9,32.5,32.6,33.2,32.6,32.6,32.9,35.9,33.8,32.8,32.3,32,32.4]}},{"b":1,"v":{"total":[17.2,17.2,16.6,17.9,18,18.1,18.6,17.6,17.9,17.9,17.2,18.7,18,18.3,17.2],"script":[2.6,2.6,2.3,2.4,2.4,2.5,2.7,3,2.7,2.5,2.9,2.6,2.5,2.5,2.4],"paint":[14.1,14.1,13.9,15,15.2,15.1,15.4,14.1,14.8,15,13.9,15.7,15.2,15.3,14.4]}},{"b":2,"v":{"total":[18.2,19.2,18.4,17.8,18.7,17.9,17.6,18.1,17.8,17.3,17.7,17.7,19,17.8,16.7],"script":[2.9,2.9,2.8,2.3,2.5,1.9,2.4,2.8,1.9,2.6,2.8,2.4,2.5,2.4,1.7],"paint":[14.3,14.4,13.8,13,14.7,14.8,13.1,14,14.8,13.7,13.4,13.9,15,13.5,13.2]}},{"b":3,"v":{"total":[5,3.6,4.5,3.6,3.8,3.9,2.8,3.7,6.9,4,3.3,5.4,3.3,5.2,3.7,3.4,3.3,3.1,2.8,3.9,3.6,4.9,3.7,3.7,3.1],"script":[1.3,0.9,1.2,0.6,1.6,2,1.3,1.2,1.3,1.8,1.2,1.2,1.3,0.9,1.2,1.3,1.2,1.3,0.8,1.6,1,1.5,1.5,1.4,1.3],"paint":[1.8,1.2,3.1,2.8,2.1,1.8,1.1,0.5,2.6,1.4,1.2,3,1.2,1.5,2.4,2,1.6,1.1,1,1.5,2.6,1.3,1.4,1.3,1.4]}},{"b":4,"v":{"total":[12.2,12.1,12.2,12.4,12.7,11.5,12.5,11.7,11.8,12.3,11.7,12.5,12,12,12.3],"script":[1.5,1.4,1.1,0.9,1.3,1.6,1.6,0.6,1.4,1.5,0.6,0.6,0.9,0.9,1.4],"paint":[9.3,9,9.7,9.8,10.2,7.7,9.3,9.3,8.7,9.4,9.7,10.4,10,9.2,9.6]}},{"b":5,"v":{"total":[40.7,38.1,35.6,37.4,34.7,37.4,34.9,34.4,35.3,35.7,34,35.9,34.6,35.5,34.7],"script":[4.7,4.6,4.7,4.5,4.9,4.4,4.9,4.8,4.9,4.4,4.9,5,4.5,5.4,4.9],"paint":[34.9,32.3,29.9,32,28.7,32.2,28.9,28.7,29.4,30.2,28.3,29.4,28.9,29.3,29]}},{"b":6,"v":{"total":[417.9,418.1,422.9,401.7,419,401.2,404,426,404.7,421.4,422.9,420.2,418.6,418.2,425.1],"script":[79.2,79.1,81.5,73.3,78.2,76.4,75.4,84.1,75.7,80.3,80.7,79.5,78.9,75.5,81],"paint":[332,332.3,334.6,321.8,333.8,318.3,322,334.5,322.2,334.4,335.6,333.9,332.4,336.1,337.5]}},{"b":7,"v":{"total":[47.6,45.2,45.4,44.9,46.7,45.1,46,46.2,45.8,46.5,45.2,45.1,46,45.4,46.6],"script":[8,6.9,7.2,7.1,7.6,7.1,7,7.5,7.1,7.2,7,7,7.6,7.1,7.3],"paint":[38.6,37.4,37.3,36.9,38.2,37.2,38.1,37.7,37.8,38.5,37.3,37.2,37.6,37.2,38.5]}},{"b":8,"v":{"total":[15.6,16,15.9,16.2,16.4,15.3,15.9,15.5,15.7,16,15.1,16.6,15.5,16.3,16.5],"script":[13.7,14.2,14.1,14,14.2,14,13.8,14.4,14.2,14.7,13.8,14.3,13.8,14.7,14.8],"paint":[1.8,1.8,1.6,2.1,1.3,0.4,2,0.4,1.4,1.2,0.7,1.2,1.2,1.2,1.6]}},{"b":9,"v":{"DEFAULT":[0.8]}},{"b":10,"v":{"DEFAULT":[3.4]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[26.1]}},{"b":14,"v":{"DEFAULT":[71]}},{"b":15,"v":{"DEFAULT":[17.9]}},{"b":16,"v":{"DEFAULT":[117.1]}}]}, +{"f":187,"b":[{"b":0,"v":{"total":[42.1,42.9,43.2,43.4,42.6,42.6,42.9,42.7,42.3,42.6,41.7,44.2,43,42.7,43.2],"script":[7.7,8.3,8.2,8.2,8.2,8.5,8.1,8.3,7.5,8.3,7.5,8.1,8.3,8.3,8.4],"paint":[33.9,34.2,34.6,34.7,34,33.6,34.3,33.9,34.3,33.9,33.8,35.7,34.2,33.9,34.4]}},{"b":1,"v":{"total":[23.1,15.8,16.4,18.5,22,17.9,17,15.8,17.8,17.9,19.2,22.3,16.3,16.8,21.2],"script":[1.7,1.5,1.5,1.6,1.6,1.6,1.5,1.5,1.5,1.6,1.7,1.7,1.6,1.6,1.6],"paint":[13.8,13.5,13.6,13.8,13.5,14.2,14,13.9,14.1,14.7,14.2,14.4,14.3,15.1,13.6]}},{"b":2,"v":{"total":[17.6,19.8,18.9,32.6,16.5,18.4,19.3,18.2,18.6,18.3,17.6,17.1,18.1,17.3,17.2],"script":[2.2,2.7,1.1,1.9,1.6,1.2,1.1,2,1.6,1.6,1.3,1.2,1.5,1.9,2.3],"paint":[15.3,14.3,16.5,14.5,13.9,15.8,16.4,15.3,15,14.8,15.1,15.4,15.3,15.2,14.7]}},{"b":3,"v":{"total":[3.3,4.4,4,3.9,3.6,2.4,3.2,3.2,3.7,3.7,3.4,4,3.4,3.2,3.6,4.2,5.4,4.9,3.3,5,3.8,3.5,4.2,7.2,2.8],"script":[1,1.2,0.6,1.3,1.1,0.2,0.9,0.8,0.9,1.4,0.9,1,0.6,0.3,1,1.2,0.4,1.2,0.2,0.2,0.9,0.7,1,0.2,0.2],"paint":[1.8,2.1,2.4,2.3,2.4,2.1,2.2,1.2,2.1,2.2,1.6,2.1,2.6,2.2,2.5,1.9,2.7,2.9,1.7,1.4,2.8,1.4,2.5,2.5,2.4]}},{"b":4,"v":{"total":[26.9,26.7,12.7,12.7,11.2,11.9,11.5,11.9,13.7,11.5,13.7,12.1,27.3,12.1,26.9],"script":[0.6,0.2,0.9,1,0.3,1.6,0.8,0.3,0.9,0.2,0.9,1.1,0.8,0.7,0.6],"paint":[10.2,10.8,10.1,9.8,9.3,9.3,10.6,10.1,11.1,9.5,10.6,10,10.4,10.8,10.3]}},{"b":5,"v":{"total":[16.1,16.4,16.3,16.3,16.1,16.1,16,16.1,15.7,15.6,16.1,16.4,16.4,16.1,16.2],"script":[0.4,0.4,0.6,0.6,0.6,0.6,0.3,0.3,0.3,0.3,0.6,0.6,0.4,0.6,0.3],"paint":[14.7,14.8,14.6,14.7,14.7,14.8,14.8,15,14.5,14,14.5,14.7,15.3,14.8,14.6]}},{"b":6,"v":{"total":[434.8,434.1,434.8,432.2,433.6,437.2,436.5,439.2,445.3,442.1,438.7,445,444.5,437.8,432.9],"script":[90.3,88.6,89.3,89.6,90.3,95.6,90.5,89.8,100.4,96.4,91.4,100.2,89.2,89.4,89.7],"paint":[337,338.2,338,335.3,336.1,334.3,338.6,341.7,337.4,338.3,339.9,337.5,347.9,341.1,335.9]}},{"b":7,"v":{"total":[47.2,47.5,47.8,48,47.6,49.5,48.9,47.7,46.6,48,49.1,48.6,49.1,46.9,49.3],"script":[7.4,7,7.1,7.2,7.1,7.7,7.6,7.8,7,7.1,7.7,7.7,7.6,7.1,7.7],"paint":[38.9,39.5,39.7,40,39.5,40.8,40.4,39.1,38.7,40,40.4,40,40.5,39,40.7]}},{"b":8,"v":{"total":[13.7,14.2,15.1,15.1,13.8,13.8,14.2,13.9,14.4,13.9,14.3,15.7,13.7,13.9,13.9],"script":[11.8,11.8,12.6,12.6,11.4,11.6,11.9,11.8,11.9,11.9,12.5,13.4,11.6,11.5,12.4],"paint":[1.6,2.3,1.5,1.6,2.4,2.1,1.5,1.6,1.9,1.7,1.1,1.5,2,1.7,1.4]}},{"b":9,"v":{"DEFAULT":[0.9]}},{"b":10,"v":{"DEFAULT":[4.1]}},{"b":11,"v":{"DEFAULT":[4.3]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[31.6]}},{"b":14,"v":{"DEFAULT":[117.6]}},{"b":15,"v":{"DEFAULT":[30.5]}},{"b":16,"v":{"DEFAULT":[160.9]}}]}, +{"f":188,"b":[{"b":0,"v":{"total":[58.3,55.1,56.3,58.3,57.7,58.5,53.9,57.7,54.3,57.2,58.1,57,58.7,57.9,57],"script":[21.5,21,22,21.9,21.4,22.4,20.8,21,20.8,21.7,22.6,21.9,22.8,22,21.5],"paint":[36.4,33.7,33.9,35.9,35.9,35.7,32.7,36.3,33,35,35.1,34.7,35.5,35.4,35]}},{"b":1,"v":{"total":[28.6,30.2,29.4,29.9,30.8,30.6,29.7,30.4,30,29.4,28.4,30.1,28.5,30.2,30.2],"script":[14.4,15.9,15.2,15.3,16.1,16.3,15.3,15.7,15.5,15.1,14.5,15.5,14.4,15.4,15.7],"paint":[13.7,13.9,13.8,14.2,14.2,14,14,14.3,14.1,13.9,13.6,14.3,13.6,14.4,14.1]}},{"b":2,"v":{"total":[70,67.6,67.2,67.5,69.1,67.7,72,67.5,67.9,67.4,73.6,68,70.6,67,67.4],"script":[52.1,51.6,51.2,51.4,51.8,51.1,55.6,51.5,51.3,51,57.2,51.8,53.1,50.9,51.3],"paint":[15.8,14.9,13.6,15.1,15.2,14.3,14.3,13.4,15.5,14.2,14.6,14.9,15.2,14.3,14.2]}},{"b":3,"v":{"total":[53.9,59.4,53.6,55.9,54.4,55,54.1,54,54.4,53.2,56.9,53.1,59.9,55.4,53.8,60.5,53.5,55,53.6,61.4,53.9,54.6,60.4,53.9,54],"script":[50.2,55.8,50.5,52,50.6,50.5,49.9,50.9,51.5,49.5,53.1,49.7,56.5,52.3,50.4,57.8,50.3,51.6,50.5,57.7,50.7,50.3,56.6,50.7,50.6],"paint":[2.6,3.1,2.3,3.1,2.9,3.8,3.6,1.8,2.2,3.1,2.9,2.8,2.1,2.9,2.7,1.8,2.8,2.6,2.3,2.8,2.2,3.2,2.6,3,3.3]}},{"b":4,"v":{"total":[62.4,61,64.1,62,60.4,60.7,68.9,62.1,61.5,61.6,61.6,61.5,61.6,62,62.2],"script":[51,49.6,52.8,50.6,49.9,49.7,56.2,51.1,50.2,50.3,49.8,49.8,50.1,50.6,50.8],"paint":[9.6,10.3,10.3,9.6,8.7,9,11.4,9.4,11,9.6,10.5,10.3,10.7,9.8,10.1]}},{"b":5,"v":{"total":[60.3,57.9,59.5,60.1,59.7,59,61,60,58.8,60.6,58.3,59.4,60.6,60.8,59],"script":[29.6,28.4,29.8,30,29.4,28.8,30.4,29.3,28.8,30.2,28.7,30,30.2,30,29],"paint":[29.9,28.7,28.6,28.9,29.3,29.1,29.5,29.7,29.2,29.5,28.4,28.7,29,30.1,29]}},{"b":6,"v":{"total":[649.4,639.5,648.4,647.8,655.8,651.8,655.1,651.2,643.9,644.8,631.3,630,648.6,646.7,637.6],"script":[285.7,280.2,284.1,286.9,287.9,287.6,291.2,284.3,277.2,282.5,271.1,274.6,287.8,283.9,277.3],"paint":[356.9,352.6,357.7,354.1,361.1,357.3,357.2,360.2,359.8,355.4,353.4,348.7,354.1,355.9,353.7]}},{"b":7,"v":{"total":[83.9,84.8,84.4,82.9,84.2,83.2,83.4,84.5,84.3,85.4,83.3,83.7,85,85,82.8],"script":[43.3,43.8,44,43,43.1,41.4,42.6,43.4,44.1,44.3,43.5,43.8,44,43.8,42.5],"paint":[39.8,40.1,39.6,39,40.3,41,39.9,40.2,39.3,40.2,38.9,39,40,40.4,39.5]}},{"b":8,"v":{"total":[26.9,29.1,28.4,26.8,30.4,28.3,27.5,27.2,28.9,27.9,29.3,30.1,27.4,26.9,30],"script":[25.4,27.3,26.3,25.1,28.4,26.5,25.5,25,26.8,26.4,26.9,28,25.4,25.1,27.5],"paint":[1.4,1.7,2,1.6,1.2,1.8,1.1,2.1,2,1.5,2.3,1.9,0.8,1.1,2.3]}},{"b":9,"v":{"DEFAULT":[1.8]}},{"b":10,"v":{"DEFAULT":[10.9]}},{"b":11,"v":{"DEFAULT":[19.2]}},{"b":12,"v":{"DEFAULT":[10.1]}},{"b":13,"v":{"DEFAULT":[93.3]}},{"b":14,"v":{"DEFAULT":[436.8]}},{"b":15,"v":{"DEFAULT":[127.9]}},{"b":16,"v":{"DEFAULT":[772.4]}}]}, +{"f":189,"b":[{"b":0,"v":{"total":[36.2,36.5,36.2,36.2,35.8,36.5,35.6,36.1,35.7,35.4,35.2,35.7,36.7,35.5,36.1],"script":[1.9,2.1,1.9,1.9,1.9,1.9,1.9,1.9,2,1.9,2,1.9,2.1,2,1.9],"paint":[33.8,34,33.9,33.9,33.4,34.1,33.3,33.7,33.3,33,32.8,33.4,34.2,33.1,33.8]}},{"b":1,"v":{"total":[17.7,16.6,16.8,15.7,16,15.7,16.3,16.8,15.7,15.8,17,15.5,15.5,15.5,15.8],"script":[1.4,1.3,1.3,1.4,1.4,1.4,1.2,1.2,1.3,1.4,1.3,1.2,1.2,1.2,1.3],"paint":[15.7,14.8,14.9,13.9,14.2,13.9,14.6,15.2,14.1,14,15.2,13.9,13.9,13.9,14]}},{"b":2,"v":{"total":[17.2,16.9,17.2,18.8,17.2,17.7,17.2,18.3,18,18,17.4,17.3,17.4,17.4,17],"script":[1.9,2,1.1,2,1.4,2.2,1.9,1.9,1.9,2.2,1.8,1.3,1.2,1.3,1.3],"paint":[13,13.2,15,14.7,14.6,14.3,13.2,14.5,14.8,14.4,14.6,14.7,14.2,14.6,15]}},{"b":3,"v":{"total":[3.9,3.1,4,3.6,4.1,3.8,3.5,4.3,3.5,4.8,4.4,3.7,3.3,3.6,3.4,3.9,4,4.7,3.8,4.1,3.4,3.6,3.5,4.1,3.8],"script":[0.9,0.7,1.7,1.3,1.2,1,1.7,1.5,1.2,1,1.6,0.7,1.2,1.2,0.9,1.8,1.6,1,1,1.3,0.7,1.5,1.3,1.7,1.1],"paint":[2.3,2.3,1.3,2.2,1.8,2.7,1.6,1.9,1.7,1.9,1.6,2.1,0.5,2.3,1.4,1.4,2.3,2.1,1.9,2,2.5,1.9,1.5,2.4,2.3]}},{"b":4,"v":{"total":[11.7,11.8,11.6,10.9,11.5,11.8,11.4,11.6,11.8,11.9,11.3,10.9,11.2,11.5,12],"script":[0.8,0.6,0.6,0.1,0.6,0.5,0.2,0.1,0.4,0.5,0.1,0.1,0.1,0.1,0.1],"paint":[10.1,9.3,9,8.9,9.6,9.3,10.2,10.5,10.1,9.5,9.8,9.6,10.1,9.4,10.7]}},{"b":5,"v":{"total":[32.5,31.9,32.1,32.1,31.5,30.9,33.8,32.1,31.8,33.8,32.9,32.8,32.5,32.5,32.9],"script":[2.2,2.4,2.2,2.1,2.1,2,2.5,2.2,2.4,2.6,2.1,2.4,2.4,2.2,2.4],"paint":[29.6,28.5,28.9,29,28.4,28.1,30.1,29.2,28.4,30.4,29.7,29.5,29.3,29.4,29.8]}},{"b":6,"v":{"total":[563.3,544,543.5,559.9,547.6,563.7,560.6,558.8,541.8,542.7,556.4,558.5,546.2,539.4,537],"script":[192.4,193.7,194.6,195.7,196.8,197.7,193.8,193.2,193.2,194.4,192.8,194,190.8,189.8,191.3],"paint":[363.9,343.5,342.1,357.4,344,359,360,358.7,341.9,341.5,356.7,357.5,348.3,342.7,338.3]}},{"b":7,"v":{"total":[62.8,63.4,63.8,64.5,63.8,65.7,64.9,63.1,66,62.9,64.6,64.1,65.5,64.8,64.3],"script":[21.9,21.7,21.8,22.4,22.6,23.5,23.1,21.5,23.3,21.4,23.1,22,22.5,22.3,22.9],"paint":[40,40.7,41.2,41.1,40.2,41.3,40.8,40.7,41.9,40.6,40.6,41.2,42,41.6,40.4]}},{"b":8,"v":{"total":[13.8,14.7,14.5,14.4,14.4,14.3,14,13.8,13.7,13.6,14.8,13.4,13.6,14.2,14.2],"script":[11.7,12.4,12.3,11.8,12.4,12.5,12.4,12.2,12,11.8,11.8,11.9,12,11.4,12.1],"paint":[2,2.1,1.7,1.6,0.8,1.7,1.5,0.4,0.9,0.8,1.4,0.4,1.5,2,1.8]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.9]}},{"b":11,"v":{"DEFAULT":[4.1]}},{"b":12,"v":{"DEFAULT":[4.1]}},{"b":13,"v":{"DEFAULT":[33.6]}},{"b":14,"v":{"DEFAULT":[14.4]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[62.8]}}]}, +{"f":190,"b":[{"b":0,"v":{"total":[41.7,41.6,42.3,42.2,42.1,41.5,42.4,40.8,41.4,42.6,43,42.4,43.6,43.1,42.6],"script":[6.1,5.9,6.6,6.8,6.3,6.1,6.1,6.2,6.1,6.6,6.6,6.2,6.5,6.2,6.8],"paint":[35.2,35.3,35.2,35,35.4,34.9,35.9,34.2,34.9,35.5,36,35.8,36.7,36.5,35.4]}},{"b":1,"v":{"total":[18.8,19.7,18.6,20.1,18.8,18.3,18.7,18.9,20,19,18,18.8,19.9,18.2,18.4],"script":[3.4,3.3,3.3,3.4,3.4,3.2,3.3,3.4,3.3,3.4,3.1,3.4,3.3,3.3,3.3],"paint":[15,16,14.9,16.2,15,14.7,15,15.1,16.3,15.2,14.4,15.1,16.2,14.5,14.8]}},{"b":2,"v":{"total":[22.7,21.7,22.3,24.1,22.2,25.9,22.7,24.9,21.6,21.7,21.7,21.8,22.5,21.2,21.7],"script":[6.5,5.6,6.3,8.2,5.7,6.9,6.3,8.4,5.3,6.1,5.8,5.1,5.5,6,5.6],"paint":[14.6,14.3,13.8,14.8,15.2,17.7,15.2,15.5,14.7,14.1,14.4,15.1,15.1,14.2,14.7]}},{"b":3,"v":{"total":[10.2,9.6,9.3,9.6,10.4,9.6,8.5,8.8,8.8,9.9,10.5,9.6,10.2,9.9,9.4,11.2,9.6,9.5,9.8,10,9,11.7,9.5,9.2,9.9],"script":[6.3,6.1,6,6,6.7,6.1,6.2,5.8,5.8,6.4,6,6.9,6.7,6.4,6,7,6.4,6.1,6.4,6.3,5.4,7.4,6.1,6.2,6.2],"paint":[3.1,3.3,2.3,2.4,3.5,3.4,1.6,2,1.4,3.2,3.5,1.8,3.3,2.7,2.4,3.5,2.8,3.2,2.6,2.8,3.1,2.6,2.8,2.8,2.7]}},{"b":4,"v":{"total":[18,16.8,17.6,17.4,17.4,17,17.6,16.8,17.4,17.6,18.8,17.1,17,16.4,16.4],"script":[6.1,5.6,5.8,5.8,5.9,5,6.2,5.2,5.8,5.8,6.3,5.9,5.7,5.3,5.5],"paint":[10.9,10.3,9.5,10.3,10.5,10.2,10.1,10.5,10,10.5,10.2,9.7,9.6,9.8,9.3]}},{"b":5,"v":{"total":[42.6,41,41.4,41.1,42.1,41.9,43.4,41.6,42.5,41.8,42.1,40.8,42.4,40.9,42.1],"script":[8.6,8.1,8.1,8,9.1,8.4,8.1,8,8.1,8.6,8.1,8.1,8.5,8.1,8.4],"paint":[33.1,31.7,32.4,31.5,32.1,32.3,34.4,32.6,33.4,32.1,33.1,31.9,32.7,31.9,32.5]}},{"b":6,"v":{"total":[438.1,442.6,441.7,440,437.7,442.3,441.9,436.9,439.4,439.1,442,438.8,430.4,428.9,430.3],"script":[84.5,84.2,85.6,85.9,85.6,84.7,83.4,84.4,84.2,84.7,85.5,85,81.6,79.6,78.7],"paint":[346.8,351.7,349,347.4,345.3,350.8,351.5,345.8,348.3,347.4,349.7,347.1,342.3,342.6,344.8]}},{"b":7,"v":{"total":[50.8,47.4,51.2,50.2,50.5,50.2,51.5,50.6,50,51.5,52.3,50.6,51.1,50.1,50.9],"script":[8.5,8.2,8.9,8.6,8.5,8.9,8.9,8.5,8.3,9,8.9,8.4,9.1,8.3,8.8],"paint":[41.4,38.3,41.4,40.7,41,40.4,41.7,41.2,40.7,41.4,42.3,41.3,41,40.9,41]}},{"b":8,"v":{"total":[13.6,13.3,13.4,12.7,13,13.3,12.8,13.6,12.6,13.4,12.4,12.9,12.7,13.1,12.5],"script":[11.8,11.1,11.7,10.7,11.6,11.8,10.5,11.7,11,11.1,10.8,10.6,10.7,11,10.4],"paint":[0.9,1.5,1.6,1.9,1.3,0.9,1.3,1.8,1.5,2,1.5,2.1,1.9,1.1,1.8]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.1]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[14.2]}},{"b":14,"v":{"DEFAULT":[31.7]}},{"b":15,"v":{"DEFAULT":[8.6]}},{"b":16,"v":{"DEFAULT":[75.4]}}]}, +{"f":191,"b":[{"b":0,"v":{"total":[67.5,68.7,68.2,68.9,69.2,71.3,68.6,70.2,67.2,68.6,68.2,70.9,70.2,68.8,68.8],"script":[30.7,31.1,30.4,30.4,30.7,32.3,31,32.2,30,30.3,30.2,32.9,31.5,30.6,30.8],"paint":[36.4,37.2,37.3,38,38,38.5,37.1,37.4,36.7,37.8,37.5,37.4,38.2,37.6,37.6]}},{"b":1,"v":{"total":[21.4,19.3,21,19.2,19.8,19.3,20.6,18.9,18.7,20.4,18.6,19.5,19.3,19.3,21.2],"script":[3.7,3.6,3.3,3.6,4,3.7,3.2,3.8,3.2,3.2,3.1,3.9,3.7,3.9,3.4],"paint":[17.1,15.2,17.1,15.1,15.3,15.1,16.8,14.7,15.1,16.7,15,15.1,15.1,14.9,17.3]}},{"b":2,"v":{"total":[19.4,19.4,19,19.5,19.9,19.3,18.8,18.8,19.2,20.4,19.6,20.7,20.4,19.4,18.9],"script":[1.9,1.8,1.7,1.6,2.2,2.3,1.6,1.9,1.4,1.6,2.4,2.6,1.8,1.8,2],"paint":[16.5,16.3,16.3,15.7,16,15.6,15.7,15,16.3,17.4,15.3,15.8,15.5,15.8,15.3]}},{"b":3,"v":{"total":[10,9.1,9.2,9.6,9.6,9.3,9.3,8.8,8.7,7.5,8.2,8.2,8.7,8.2,8.2,8.4,7.7,9.6,8.2,7.8,7.6,8.7,8.4,7.4,9],"script":[5.8,5.4,6.4,5.9,6.7,6.5,6.3,6.1,5.8,4.3,5.7,5.5,5.7,5,5.5,6.2,5.1,6.7,5.6,5.1,4.8,6.2,5.6,5.1,6.3],"paint":[3.5,2.3,1.8,3.4,0.9,2,1.8,1.9,2.8,2.9,2.3,1.9,2.8,2.9,2.6,2.1,2.5,1.4,2.2,1.9,2.7,2.3,1.7,1.5,2.6]}},{"b":4,"v":{"total":[14,13.4,12.9,13.9,13.5,12.1,12.8,13.4,14.2,12.1,14,12.9,13.4,13.2,13.5],"script":[1.1,0.6,0.1,0.5,0.4,0.5,0.1,0.8,0.9,0.6,0.9,0.6,0.9,0.4,0.8],"paint":[11.8,10.5,11.1,12.4,12.4,10,10.9,11.3,11.8,9.9,11.6,11.2,10.8,11.9,10.8]}},{"b":5,"v":{"total":[39.4,40.8,39.2,38.7,39.1,38.2,38.9,39.8,38.5,38.4,39,39.4,39.1,38.8,38.4],"script":[6.7,6.6,6.1,5.8,6.7,6.4,6.6,6.1,6,6.1,6.6,6,6.4,6.5,6.5],"paint":[31.4,33,32,31.7,31.3,30.6,31.1,32.6,31.7,30.8,31.2,32.2,31.6,31.1,31]}},{"b":6,"v":{"total":[696.3,673.5,686.5,680.7,685.3,686,679.1,683.6,680,674.2,679.8,665.5,679.4,674.6,675],"script":[278,273.8,279.6,280.1,284.3,279.6,275.7,278.9,278.8,276.8,281,270.5,279.3,274.8,276.8],"paint":[410.8,392.1,399.2,393,393.4,399.1,394.9,397.2,393.5,389.8,391,387.4,392.5,392.1,390.6]}},{"b":7,"v":{"total":[77.2,74,73.1,73.6,74,73.2,74.9,74.4,74.6,74.5,74.6,75.4,73.9,75,74.2],"script":[31,31.6,30.7,30.7,31,30.6,32,31.7,31.1,31.3,31.5,32.4,31.2,31.7,32],"paint":[44.6,41.5,41.5,42,42.1,41.6,41.9,41.8,42.5,42.3,42.1,42,41.7,42.3,41.2]}},{"b":8,"v":{"total":[28.5,29.3,27.3,28.2,29.6,26.2,28.2,27.7,27.7,27.5,29.1,28.5,27.9,28.3,27.4],"script":[26.7,27,25.7,26.6,27.5,23.8,25.9,25.8,26,26.1,26.9,25.9,26.5,26.7,24.5],"paint":[0.9,2.3,1.4,1.5,1.1,1.6,2.1,1.8,0.8,1.4,2.1,1.9,1.3,1.5,2.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[6.3]}},{"b":11,"v":{"DEFAULT":[6.4]}},{"b":12,"v":{"DEFAULT":[1]}},{"b":13,"v":{"DEFAULT":[56.6]}},{"b":14,"v":{"DEFAULT":[16.3]}},{"b":15,"v":{"DEFAULT":[5.6]}},{"b":16,"v":{"DEFAULT":[47.4]}}]}, +{"f":192,"b":[{"b":0,"v":{"total":[45.9,46.7,48,47.2,46,46.8,46.1,47.5,48.1,47.8,48.7,47.3,46.3,46.5,46.8],"script":[12.8,13.2,14.1,14,13.2,13.7,13.5,13.5,14.2,13.3,13.3,13.8,12.9,13,13.6],"paint":[32.7,33,33.6,32.8,32.5,32.7,32.2,33.5,33.5,34.1,35,33.1,32.9,33.1,32.8]}},{"b":1,"v":{"total":[18.8,19,19,19.1,19.1,18.9,20.5,19.4,19.6,20.8,19.2,19.5,19.1,20.6,19],"script":[4.3,4.3,4.3,4.4,4.3,4.3,4.8,4.6,4.7,4.7,4.6,4.3,4.5,4.8,4.2],"paint":[14.1,14.4,14.3,14.2,14.3,14.1,15.3,14.4,14.6,15.6,14.2,14.7,14.3,15.3,14.3]}},{"b":2,"v":{"total":[16.6,16.6,16.1,16.8,16.4,16.6,17.2,16.8,17.1,16.8,16.3,16.8,17.3,16,16.2],"script":[1,1.4,0.9,1.2,0.3,1.6,1.6,1,1.4,1.3,1,1.2,1.5,1.3,0.7],"paint":[13,13.9,13.4,14.6,14.6,14.4,14,14.5,14.2,14.5,14.3,13.6,14.3,13.4,13.7]}},{"b":3,"v":{"total":[3.1,2.7,3,2.7,3,2.7,4.4,4.2,2.8,3,3.4,4.6,2.3,2.5,2.6,5.5,2.7,4.7,3.1,3.1,2.9,2.8,2.8,2.3,3],"script":[0.9,0.1,0.1,0.3,0.8,0.7,1.1,0.6,0.1,0.8,0.9,0.8,0.1,0.8,0.1,0.4,0.8,0.8,0.9,0.1,0.1,0.1,0.8,0.1,0.6],"paint":[2,2.5,2.2,2.4,2.1,1.9,1.8,2.3,2.6,1.4,1.1,1.7,1.9,1.7,1.6,1.3,1.8,1.1,1.6,2.9,2.4,1.8,1,2.1,2.4]}},{"b":4,"v":{"total":[11.9,12.1,12.2,12.2,11.4,11.5,10.9,11.4,11.8,12,11.3,12.3,11.7,11.7,12],"script":[1.1,0.8,0.7,0.6,0.1,0.1,0.1,1,0.1,0.1,0.5,0.5,0.8,0.3,0.5],"paint":[9.1,9.7,10.8,10.3,10.3,10.1,9.6,8.7,11.1,11,9.4,10.4,10.5,9.7,10.1]}},{"b":5,"v":{"total":[40.5,40.2,40.5,40.1,40.3,41.1,40.3,41.9,39.7,40.5,41,39,39.9,39.7,40.3],"script":[9.2,9.4,9.3,9.1,9.1,9.3,9.8,10.4,9.1,9.7,10.2,8.6,9.2,9.1,9.6],"paint":[30.4,29.9,30.3,30.3,30.4,30.9,29.7,30.6,29.7,29.8,30.1,29.7,29.9,29.5,30]}},{"b":6,"v":{"total":[437.7,436.2,439.9,441.5,444.6,435,445.1,441.8,441.1,435.5,439.4,440.9,437.7,438.4,443.6],"script":[102.4,98.1,100.7,100.8,105.6,99.1,104.1,100.7,100.8,100.5,99.9,101.6,99.2,100.2,102.5],"paint":[328.1,331.2,332.5,333,332.2,329.1,333.9,334.3,333.3,327.8,332.7,332.6,331.7,331.5,334.3]}},{"b":7,"v":{"total":[48.6,49.2,47.3,49,49,46.7,48.6,48.8,49.1,47.2,47.8,48.9,47.5,48,47.9],"script":[10.1,10.2,9.3,10.2,9.7,9.3,9.5,9.7,9.8,9.4,9.7,10.3,9.6,10,9.7],"paint":[37.6,38.2,37.1,37.9,38.5,36.5,38.3,38.2,38.4,36.9,37.3,37.7,37,37.2,37.1]}},{"b":8,"v":{"total":[17.4,18.4,18.4,18.1,18.1,17.7,18,17.3,17.1,16.9,17.7,18.8,18.1,19.9,18],"script":[15.5,15.9,16.8,16,16.3,15.3,15.9,15.6,15,15.5,15.9,16.6,16.4,17.9,16.1],"paint":[1.8,1.6,1.5,1.2,1.6,2.3,1.9,1,2,1.3,0.9,2.1,1.6,1.9,1.2]}},{"b":9,"v":{"DEFAULT":[1.7]}},{"b":10,"v":{"DEFAULT":[3.1]}},{"b":11,"v":{"DEFAULT":[3.2]}},{"b":12,"v":{"DEFAULT":[2.2]}},{"b":13,"v":{"DEFAULT":[16.5]}},{"b":14,"v":{"DEFAULT":[123.3]}},{"b":15,"v":{"DEFAULT":[33]}},{"b":16,"v":{"DEFAULT":[85.7]}}]}, +{"f":193,"b":[{"b":0,"v":{"total":[49.1,47,46.6,46.4,46.1,47.6,47.4,48.7,46.6,47,49,47.1,47.1,46.7,47.1],"script":[13.5,14.1,13.2,13.3,12.7,14.1,14,14.1,13.9,13.6,14.4,13.8,13.8,13.3,13.7],"paint":[35.1,32.5,33,32.6,33,33,33,34.2,32.2,32.9,34.1,32.9,32.9,33,33]}},{"b":1,"v":{"total":[25.3,25.6,26.8,25.9,26,28.3,26.7,26.4,26.5,26,25.8,25.4,26.1,26.2,26.6],"script":[10.1,10.2,10.6,10.2,10.5,11.4,11,10.6,10.9,10.4,10.3,10.1,10.7,10.4,10.9],"paint":[14.8,14.9,15.7,15.3,15.1,16.5,15.2,15.4,15.2,15.2,15,14.8,15,15.2,15.4]}},{"b":2,"v":{"total":[46.3,46.3,46.8,43.4,47.3,44.9,44.6,45.4,44.3,48.1,45.1,45.8,46.7,45.6,44.6],"script":[28.8,29.1,30.3,26.4,29.3,28.2,27.7,28.1,28,30.9,27.6,29.4,28.8,28.4,28.2],"paint":[16.4,15.5,14.3,15.5,16.8,14.8,14.9,15.3,15.3,14.6,15.9,14.5,16,15.5,14.9]}},{"b":3,"v":{"total":[29.8,30.4,29.7,30,31.3,30.6,31.3,29.7,29,33.2,29.5,31.1,29.6,29.5,31.1,30.1,29.5,29.8,29.4,30.2,27.8,30.5,29.2,27.9,29.9],"script":[26.6,26.3,26.3,27,28.4,26.8,27.9,25.9,25.8,29.5,26.3,27.2,26.4,25.7,28.6,26.7,26.6,26.4,26.4,26.8,24.7,26.6,25.8,25.2,27],"paint":[2.3,1.6,3.3,2.8,2.6,3.6,2.5,3.6,2.2,2.3,2.4,2.2,2,2.1,1.7,2.5,2,2.9,2.8,2.1,2.5,3,2.8,1.6,2.7]}},{"b":4,"v":{"total":[38.3,39,38.4,37.8,39.4,36.5,39.2,37.5,39.1,40.2,38.4,38.7,37.4,39.4,39],"script":[25.9,26.7,26.6,26.4,26.3,24.8,27.3,26,26.9,28.2,26.4,26.4,25.8,27.2,26],"paint":[10.5,10.9,10.2,9.9,11.4,9.7,10.3,10,11.4,10.4,10.6,10.3,10.3,10.9,11.5]}},{"b":5,"v":{"total":[51.4,56.4,52.2,51.9,51.9,51.4,51.7,51.7,51.8,55.7,51,56.9,51.5,56.6,51.4],"script":[19.7,21.6,19.8,20,19.6,20,19.4,19.9,19.7,21.6,19.1,21.9,20.1,22.1,19.5],"paint":[30.8,34,31.3,31,31.5,30.3,31.4,30.8,30.9,33.3,30.8,34.2,30.2,33.6,30.8]}},{"b":6,"v":{"total":[471.7,470.8,477.1,474.5,472.9,470.8,474.8,472,479.9,473.3,471.9,468.7,469,470.2,476.5],"script":[131.4,136.4,132.2,136.9,136.2,132.8,134.8,135.9,135.4,135.4,134.3,135.6,135,135.2,139.2],"paint":[333.5,327.6,337.9,330.9,330,331.2,333,329.1,337.8,331.1,331,326.5,327.3,328.1,330.6]}},{"b":7,"v":{"total":[60.8,60.6,60.1,61,60,59.6,61,60.9,60.3,60.6,60.4,59.6,60.2,59.8,60.6],"script":[20.8,20.2,20.2,21,20.1,20,20.8,20.6,20.2,20.8,20.7,20.3,20.2,20.3,20.4],"paint":[39,39.5,39,39.1,39,38.7,39.3,39.4,39,38.9,38.8,38.5,39.1,38.5,39.3]}},{"b":8,"v":{"total":[12.1,12.4,13,12,13.5,12.7,12.3,12.3,12.5,13.4,12.7,12.2,12,12,12.7],"script":[10.3,10.3,11.3,10.4,11.9,10.9,10.5,10.6,10.9,11.6,10.4,9.9,10.6,9.7,10.4],"paint":[1.6,1.9,1,0.9,1.5,1.6,1.7,0.7,1.4,1.7,2.2,1.5,1.3,2.1,2.2]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.6]}},{"b":11,"v":{"DEFAULT":[2.6]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[20]}},{"b":14,"v":{"DEFAULT":[11.1]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[59.1]}}]}, +{"f":194,"b":[{"b":0,"v":{"total":[39.3,36.9,38,38.3,38.1,37.6,37.6,37.4,38.9,40.1,37.5,38.3,37.7,38.3,38.2],"script":[5.1,4.8,5,5.1,5.1,5.1,5.2,4.8,5.1,5.1,4.8,5,5.1,5.1,5.1],"paint":[33.8,31.7,32.6,32.8,32.6,32,32.1,32.2,33.4,34.6,32.3,32.8,32.2,32.7,32.7]}},{"b":1,"v":{"total":[14.8,15.7,15.2,14.7,14.7,15.3,14.9,15.3,16.7,14.7,15.2,14.8,14.7,15.4,15.3],"script":[0.8,0.9,0.9,0.8,0.8,0.8,0.9,0.9,0.8,0.9,0.8,0.8,0.9,0.8,0.8],"paint":[13.6,14.4,13.9,13.4,13.5,14.2,13.6,14.1,15.5,13.4,14,13.5,13.4,14.2,14.1]}},{"b":2,"v":{"total":[17,16.2,17.6,17.2,17.2,17.1,17.6,17.4,17,17,18.9,17.1,17.3,18.9,17.3],"script":[1.4,1.9,2.1,1.9,1.6,2.1,1.7,1.9,2.1,1.8,2.4,2,1.8,2.1,1.4],"paint":[13.8,12.4,14.1,14,14,14,14.7,13.5,13.5,13.9,14.5,14.2,14.1,15.6,14.8]}},{"b":3,"v":{"total":[3.3,3.7,3.1,3.7,3.5,3.4,3.2,3.5,3.1,3.7,3.4,3.7,3.7,3.8,3.3,3.7,3.4,6.3,3.1,4.9,3.9,3.4,4.1,3.5,4.1],"script":[0.9,1.3,1.3,0.9,1.3,1.2,1.1,1,1.3,0.6,1.2,0.9,1.2,1.4,1,1.7,1.2,1.3,1,1.6,1.3,1,1.7,1.2,0.9],"paint":[1.4,2.2,1.7,2.7,2,2.1,1.5,1.3,1.1,2.6,1.2,2.6,1.5,1.7,1.7,1.9,2.1,2.1,2,2.3,2,2.4,2.3,1.4,1.7]}},{"b":4,"v":{"total":[11.8,11.9,11.8,11.9,12.2,11.8,12.3,11.3,12.2,12.4,12.5,12,12.5,12.1,11.9],"script":[1.2,0.9,0.6,0.6,0.9,0.3,1.5,1.2,1.1,1.3,1.6,0.9,1.5,1.3,1.2],"paint":[9.6,9.2,9.4,9.7,9.6,9.9,9.4,8.7,9.9,9.9,10,9.5,10.1,10.1,9.8]}},{"b":5,"v":{"total":[30.7,30.7,31.5,32,30.6,30.6,30.6,30.6,31.7,30.5,31.2,31,30.1,31.1,31.5],"script":[1.4,1.7,1.6,1.3,1.6,1.7,1.7,1.6,1.8,1.6,1.7,1.7,1.5,1.7,1.5],"paint":[28.6,28.2,29.2,29.2,28.3,27.9,28.1,28.2,29.2,28.1,28.6,28.6,27.9,28.4,29]}},{"b":6,"v":{"total":[407.3,392.4,396.1,394.5,399.6,395.9,393.9,398,396.6,396.7,396.3,392.7,397.7,391.4,397.8],"script":[56.9,52.8,53.9,54,54.1,53.4,53.9,53.3,54.1,54.1,55.6,55.2,53.8,55,53.6],"paint":[343.5,332.9,335.5,333.8,338.7,335.8,333.3,337.7,335.8,335.9,333.9,330.8,337.2,329.5,337.5]}},{"b":7,"v":{"total":[43.8,43.4,44,44.3,44.8,43.5,44,44.6,45.2,43.9,43,43.1,44.8,43.1,43.3],"script":[5.3,5.2,5.5,5.6,5.6,5.2,5.5,5.6,5.5,5.7,5.2,5.2,5.6,5.2,5.1],"paint":[37.6,37.3,37.7,37.9,38.4,37.4,37.7,38.2,38.7,37.4,37,37.1,38.3,37.1,37.3]}},{"b":8,"v":{"total":[12.5,12.5,12.4,12.5,12.9,12.4,12.2,12.3,12,12.9,12.6,12,12.7,11.9,12.6],"script":[10.4,10.4,10.6,10.9,10.7,10.1,10.4,10.5,10.4,10.7,10.4,10.6,10.8,10.1,10.3],"paint":[2,2,1.1,0.7,2.1,2.2,1.1,1.7,1.6,1.6,1.8,1.4,1.4,1.7,2.2]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.7]}},{"b":11,"v":{"DEFAULT":[2.8]}},{"b":12,"v":{"DEFAULT":[1.3]}},{"b":13,"v":{"DEFAULT":[20.9]}},{"b":14,"v":{"DEFAULT":[15.6]}},{"b":15,"v":{"DEFAULT":[6]}},{"b":16,"v":{"DEFAULT":[56.4]}}]}, +{"f":195,"b":[{"b":0,"v":{"total":[42.2,39.9,39.6,40.4,42.4,41.5,41.2,41.6,41.1,41.1,42.5,41.9,41.8,41.3,41.6],"script":[8,7.8,7.7,8.1,8.1,8,8,8.1,7.7,7.6,8.3,8.1,7.9,8.1,8],"paint":[33.7,31.6,31.4,31.9,33.9,33.1,32.7,33,32.9,33,33.8,33.3,33.4,32.8,33.2]}},{"b":1,"v":{"total":[19.1,19.4,19.1,19.7,19.3,20.5,19.2,19,19.4,19.4,19.3,19,20.4,19.3,19.9],"script":[4.3,4.6,4.4,4.5,4.4,4.4,4.3,4.4,4.4,4.4,4.4,4.2,4.3,4.4,4.5],"paint":[14.3,14.3,14.3,14.8,14.4,15.6,14.5,14.2,14.5,14.6,14.4,14.3,15.6,14.4,14.9]}},{"b":2,"v":{"total":[16.7,16.4,16.3,16.5,16.8,16.2,16.7,15.8,15.9,17,16.7,16.6,16.6,16.6,16.7],"script":[0.6,1.2,1.2,1,0.9,0.8,0.2,0.7,0.2,0.9,1.3,1.5,1,1.1,0.8],"paint":[15.2,14.2,14.1,14.5,14.6,14.2,15.4,13.6,14.2,15.2,14,14.1,14.2,14,13.8]}},{"b":3,"v":{"total":[2.3,4,2.8,3.3,3.3,2.6,2.4,2.8,6.2,2.6,2.6,3.5,3.5,3,3.9,2.5,2.3,4.4,1.9,3.6,2.6,3.1,2.5,4,2.6],"script":[0.1,0.7,0.9,1,0.8,0.1,0.1,0.5,0.6,0.1,0.4,0.1,0.4,0.6,0.5,0.1,0.1,0.2,0.1,0.1,0.5,0.8,0.5,0.5,0.1],"paint":[2.1,1.5,1.4,2.2,1.5,1.7,1,2.1,1.5,1.6,2.1,1.6,1.6,1.5,1.4,2,1.5,1.9,1.1,1.5,1.2,1.4,1.4,1.2,2.3]}},{"b":4,"v":{"total":[19.3,18.6,17.3,18.7,18.1,19.3,17.2,18.7,18.2,18,17.6,18.8,17.4,18.7,17.7],"script":[7.6,7.2,6.2,7.2,7.1,7.7,5.8,6.9,6.9,6.2,5.9,6.6,5.7,7.1,5.9],"paint":[10.3,9.2,9.3,9.5,9.7,10.1,10.1,11,9.5,10.7,9.3,10.6,9.8,9.8,10.6]}},{"b":5,"v":{"total":[38,37.9,39.1,37.3,37.9,37.7,37.2,37.5,41.3,39.7,37.8,39.5,38.3,37.3,40.6],"script":[7,7.3,7.3,7.2,7.4,7.1,6.8,6.9,7.4,7.3,7.2,7.6,7.4,6.8,7],"paint":[29.5,29.5,30.6,29.3,29.5,29.7,29.6,29.7,32.8,31.2,29.8,31,30,29.4,32.2]}},{"b":6,"v":{"total":[421.4,425,422.1,421.7,421.3,422.3,421.4,424.7,424,422.6,424.7,425.1,421.4,422,418.8],"script":[91.5,86.4,91.4,87.4,90.7,90.8,90.4,90.6,88.2,90.9,92.6,89.4,91.8,91.1,89.9],"paint":[323,331.6,323.9,327.5,323.8,324.6,324.2,327.4,329.1,324.9,325.3,328.9,322.8,324,322.1]}},{"b":7,"v":{"total":[49.8,49.3,49.3,48.8,49.5,49.6,50.6,51,49.6,49.7,50,50.4,50.5,49.2,50.3],"script":[10.3,10.2,10.3,10.4,10.1,10.1,10.9,10.4,10.5,10.7,10.2,10.3,10.5,10.1,10.5],"paint":[38.6,38.2,38.1,37.6,38.5,38.6,38.8,39.7,38.2,38.1,38.9,39.2,39.1,38.3,38.9]}},{"b":8,"v":{"total":[13.3,13.2,13.1,12.4,13,13.7,13,12.8,12.7,13.7,13.8,13.1,12.2,13.5,13.2],"script":[11.7,11.4,11.1,11.2,10.7,12,11.7,11.2,11.1,11.4,11.9,10.8,10.9,11.3,11.3],"paint":[1.1,1.6,1.3,0.4,2.2,1.7,1.3,0.8,1.5,1.9,1.3,2.2,0.4,2.1,1.1]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.8]}},{"b":11,"v":{"DEFAULT":[2.7]}},{"b":12,"v":{"DEFAULT":[0.8]}},{"b":13,"v":{"DEFAULT":[21.8]}},{"b":14,"v":{"DEFAULT":[12.9]}},{"b":15,"v":{"DEFAULT":[4.7]}},{"b":16,"v":{"DEFAULT":[87.2]}}]}, +{"f":196,"b":[{"b":0,"v":{"total":[36.9,36.8,37.3,37.9,36.5,37.1,37,36.6,37.2,38,37.1,36.4,37,37.2,37.1],"script":[3.8,4,3.9,3.9,3.8,3.9,4.2,3.9,3.9,3.9,4,3.7,3.9,3.9,4],"paint":[32.6,32.4,32.9,33.5,32.3,32.8,32.4,32.3,32.9,33.7,32.6,32.3,32.7,32.8,32.7]}},{"b":1,"v":{"total":[15.9,15.3,15.3,15.3,15.4,15.7,15.6,16.3,16.3,15.4,15.9,15.7,15.7,16.1,15.6],"script":[1.3,1.3,1.2,1.3,1.2,1.2,1.2,1.2,1.2,1.3,1.2,1.2,1.2,1.3,1.3],"paint":[14.2,13.6,13.7,13.6,13.8,14.1,14,14.7,14.6,13.7,14.3,14.1,14.1,14.5,13.8]}},{"b":2,"v":{"total":[16.5,16.8,17.2,18.7,18.1,18.8,18,18.3,19.6,16.4,18.4,17,17.2,17.3,17.5],"script":[1.5,1.5,1.6,1.5,1.8,1.8,1.5,1.3,2.3,2,2.2,1,1.4,1.3,1.7],"paint":[14,14.1,14.2,14.7,14.4,15.1,15.2,15.7,15.7,13.4,14.5,14.4,14.2,14.8,14.4]}},{"b":3,"v":{"total":[4.7,3.9,4,3.8,5.2,4,4.8,4.8,4,4.7,4.3,6.1,5.7,3.8,3.4,3.7,3.5,4.4,3.9,3.7,3.5,3.9,3.9,3.4,5.9],"script":[1.8,2,1.7,2.4,1.7,1.2,2,1.3,1,1.6,1.5,1.9,2.3,1.9,1.2,1.5,1.1,1.8,1.3,1.8,1.3,1.1,1.2,1,1.7],"paint":[1.5,1.8,1,0.8,1.6,2.4,2.6,2.9,2.4,3,2.7,2.2,2.2,1.8,1.6,2,2.4,2.5,1.7,1.1,2,2.7,1.9,1.5,1.9]}},{"b":4,"v":{"total":[13,12.9,12.4,12.3,12.8,12.4,12.7,12.2,12.8,11.6,12.6,12.1,13.7,12.3,12.9],"script":[2,2.2,1.4,1.1,1.5,1.3,1.6,1,1.6,1.6,2.1,1.5,1.5,1.1,2],"paint":[10,9.6,8.8,9.8,9.3,9.5,9.1,8.9,9.4,8.2,9.9,9.1,9.9,9.5,9.4]}},{"b":5,"v":{"total":[35.2,32.2,33.2,32.2,31.7,32.3,31.8,32.9,32.3,32.3,32.2,32.4,30.8,31.3,31.5],"script":[2.2,2.4,2.2,2.2,2.2,2.4,2.4,2.4,2.4,2.2,2.4,2.4,1.9,2.3,2.2],"paint":[32.1,28.9,29.5,29,28.3,28.8,28.3,29.7,29.1,29.4,29.1,29.2,27.7,28.2,28.4]}},{"b":6,"v":{"total":[404.5,402.6,403.8,402.3,404.3,403,411,404.7,400.5,400,402.3,403.6,400.3,402.4,401.3],"script":[65.4,62.1,64.6,61.7,64.6,62.8,62.1,64.7,62.4,61.6,62.3,63.8,62,63.9,62.2],"paint":[332.1,333.6,332.2,333.7,332.9,333.4,342,333.2,331.3,331.6,333.2,333,331.5,331.7,332.2]}},{"b":7,"v":{"total":[42.1,41.8,42.7,41.6,40.8,40.8,42.1,44.1,42.3,43.1,42.3,43.3,42.9,43.6,43.7],"script":[4.4,4.4,4.2,4.4,4.4,4.3,4.4,4.6,4.6,4.7,4.4,4.9,4.9,4.7,4.7],"paint":[36.9,36.5,37.6,36.4,35.5,35.7,36.8,38.6,36.9,37.5,37,37.4,37.1,38,38.1]}},{"b":8,"v":{"total":[13.1,13.4,13.1,13.8,13.7,13.9,13.6,13.3,13.9,13.6,13.3,12.9,13.4,13.5,14],"script":[11.1,11,12,11.4,11.6,12.4,11.1,11.1,12.1,11.5,11.1,11.4,11.9,11.3,11.9],"paint":[1.9,2.3,1,2.3,2,1.4,2.1,2.1,1.6,2,1.4,0.7,1.5,2.1,2]}},{"b":9,"v":{"DEFAULT":[0.5]}},{"b":10,"v":{"DEFAULT":[2.1]}},{"b":11,"v":{"DEFAULT":[2.1]}},{"b":12,"v":{"DEFAULT":[0.7]}},{"b":13,"v":{"DEFAULT":[16.3]}},{"b":14,"v":{"DEFAULT":[9.6]}},{"b":15,"v":{"DEFAULT":[4]}},{"b":16,"v":{"DEFAULT":[46.9]}}]}, +{"f":197,"b":[{"b":0,"v":{"total":[41.1,46.8,48,47.2,49.3,47,47.3,41.1,41.5,48.4,40.7,48.4,41.7,40.2,42],"script":[7.5,7.6,8.4,7.3,7.3,7.4,7.1,7.1,7.6,7.3,7.3,7.5,7.4,7.3,7.2],"paint":[32.9,34,32.8,32.6,32.6,33.7,32.5,32.7,33.7,32.6,32.5,34.1,33.4,32.6,32.8]}},{"b":1,"v":{"total":[25.9,16.7,18.2,20.4,17.1,17.4,20.6,24,22.2,17.5,17.5,23,23,16.1,18.1],"script":[2.3,2.2,2.4,2.2,2.2,2.2,2.1,2.2,2.2,2.1,2.3,2.2,2.2,2.2,2.2],"paint":[13.8,14.3,15.7,14,14,14.2,14.4,14,14.4,14.3,14.8,14.9,14,13.8,14.3]}},{"b":2,"v":{"total":[32.8,20.4,21,19.8,19.1,21.3,34.9,19.7,17.6,19.6,17,20.7,19.3,35.3,34.3],"script":[2.4,3.4,4.3,3.4,4.8,2.8,3.8,3,3.1,3.8,3,3.5,3.1,3.7,3.5],"paint":[14.3,14.3,13.6,14.9,13.5,15.1,15.9,14,13.8,15.7,13.9,14.6,13.2,15.5,15.1]}},{"b":3,"v":{"total":[6.2,6.1,5.4,6.4,5.3,6,7.1,5.5,6.8,6.6,5.9,6,5.7,6.3,7.2,7.6,6,7,6.1,6.2,5.3,5.8,5.7,5.3,5.7],"script":[3.3,3.3,2.9,3.3,3.3,2.9,3.1,2.8,3.7,3.8,3.1,3.2,3,3.3,3.9,2.9,2.9,4,2.6,3.5,2,3,3.5,3,1.6],"paint":[2.3,2.3,1.8,1.7,1.9,2.1,3,2.3,3,2.7,2.7,2.7,1.9,2,1.8,2.2,3,2.5,3.4,1.7,2.3,1.9,1.5,2.2,2.5]}},{"b":4,"v":{"total":[12.3,13.9,13.3,29.1,13,13.6,14.2,12.7,29.2,14.8,12.3,28.7,14.2,16.5,12.2],"script":[3,2.4,2.7,3,3.4,2.4,2.5,3.1,2.6,2.3,2.1,2.3,2.2,3.4,1.6],"paint":[8.8,9.4,10.5,9.6,9.5,9.5,9.4,9.4,10.6,9.6,9.7,9.9,9.7,9.2,10.5]}},{"b":5,"v":{"total":[33.2,36.1,35.5,37,33.1,33.1,39.6,32.1,33.3,36.9,32.5,33,34.4,32.5,39.4],"script":[3.9,3.5,3.8,4,3.7,3.4,3.9,3.8,3.7,3.5,3.7,3.8,3.8,3.7,4.1],"paint":[29.1,29,28.6,29.8,29.3,29.3,28.3,28.1,29.2,29.2,28.7,29,29.9,28.4,32.6]}},{"b":6,"v":{"total":[438.3,442,423.7,425.2,442.4,422.1,446.3,418.2,430.7,419.3,424.6,438.1,423.2,421.6,426],"script":[84.2,83,81.7,83,82.6,82.7,85.3,82,84.2,81.2,82.1,83.4,81.4,82,82.8],"paint":[344,351.4,338.2,338,351.6,336.9,355.7,333.7,337.6,335.3,340.5,351.6,339.4,335.7,340.9]}},{"b":7,"v":{"total":[58,56.4,56.2,57.7,57.8,57.6,56.1,56.5,58,57.8,58.7,56.6,58.6,56.8,57.7],"script":[7.4,7,7,7.2,7.1,7.4,7.1,7.3,7.4,7.1,7.1,7.4,7.6,7.2,7.3],"paint":[38.1,37.7,37.9,37.8,38.2,38.5,37.7,37.8,38.3,38.2,39.8,38.1,38.9,37.9,37.7]}},{"b":8,"v":{"total":[15.2,15.4,16.8,13.6,14.5,15.1,30.7,16.1,16.9,14.8,15.8,15,14,13.6,15],"script":[12.4,13,14,12.5,13.4,13.2,12.8,12.6,12.9,13.4,13.2,13.1,13,12.3,13.3],"paint":[1.9,1.5,1.5,1.1,1.1,1.9,1.9,1.9,1.8,1.3,1.6,1.8,0.9,0.4,1.6]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3]}},{"b":11,"v":{"DEFAULT":[3]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[21.8]}},{"b":14,"v":{"DEFAULT":[48.9]}},{"b":15,"v":{"DEFAULT":[14.7]}},{"b":16,"v":{"DEFAULT":[94.5]}}]}, +{"f":198,"b":[{"b":0,"v":{"total":[36.7,34.7,34.5,35.3,35,35.6,36.5,35.2,35.1,36,35.1,35.8,35.1,35.5,35.6],"script":[2.5,2.4,2.4,2.4,2.4,2.7,2.4,2.4,2.5,2.6,2.5,2.5,2.4,2.5,2.5],"paint":[33.8,31.9,31.6,32.5,32.3,32.6,33.7,32.4,32.1,33,32.3,32.9,32.2,32.6,32.7]}},{"b":1,"v":{"total":[16.3,18.1,16.3,16.3,16.5,16.5,16.4,16.1,16.2,16.5,16.5,16.6,16.7,16.3,16.6],"script":[1.9,2,1.9,1.9,2,2,2.1,1.9,1.9,2,2,2,2,1.9,1.9],"paint":[14.1,15.7,14,14,14,14.2,13.9,13.8,13.9,14.1,14.1,14.3,14.3,14,14.3]}},{"b":2,"v":{"total":[16.3,15.8,17,16,16.2,15.9,16.5,16.6,15.9,15.9,17.3,16,16.2,16.6,15.9],"script":[0.2,0.9,1.2,0.8,1.2,0.5,0.4,0.8,0.8,0.5,0.7,0.2,1.1,1.1,0.9],"paint":[14.9,13.1,14.3,14.5,13.3,14.3,14.5,14.4,13.8,13.3,14,14.5,13.6,14.5,13.8]}},{"b":3,"v":{"total":[2.6,2.7,2.5,4.6,3.2,2.7,2.3,2.9,2.2,3.1,2.1,2.6,3.6,3.2,2.5,2.7,2,2.2,4.1,2.5,2.5,3.7,2.6,2.5,2.2],"script":[0.1,0.1,0.5,0.1,0.1,0.1,0.1,0.1,0.5,0.7,0.1,0.1,0.2,0.7,0.1,0.8,0.2,0.1,0.1,0.1,0.5,0.1,0.1,0.6,0.6],"paint":[0.6,2.3,1.8,2.4,1.8,2.6,1.3,2.7,1,2.2,2,2.4,0.8,2.4,2,1.1,1.6,2,2.2,2.4,1.3,1.9,2,1.8,1.3]}},{"b":4,"v":{"total":[11.8,11,11.5,11.4,10.8,11.6,11.8,11.2,11.8,11.3,11.1,10.5,11.3,11.1,11.9],"script":[0.4,0.5,1.1,0.1,0.4,1.1,0.7,0.1,0.1,0.5,0.1,0.1,0.1,0.4,0.9],"paint":[10.2,9.5,9.2,10.1,9.1,9.4,8.9,9.9,10,9.9,9.8,9.1,9.9,10,9.8]}},{"b":5,"v":{"total":[35.4,33.4,34.2,33.7,34,34.7,33.8,34.2,33.7,33.7,35.2,34.2,33.6,34.8,33.9],"script":[3.1,3.2,3.5,3.6,3.5,3.5,3.2,3.4,3.2,3.2,3.4,3.2,3.4,3.8,3.4],"paint":[31.4,29.5,30,29,29.5,30.5,29.9,29.8,29.7,29.8,30.7,30.3,29.1,30.1,29.5]}},{"b":6,"v":{"total":[375.2,369.3,368.4,371,367.1,372.5,368.1,371,367.3,369,370.5,367.4,370.5,373.4,367.2],"script":[29.7,27.3,27.4,30,30.7,28.9,30,28.1,28.4,29.2,30.1,29.9,29,29.3,27.4],"paint":[338.9,335.4,334.4,334.3,329.7,336.8,331.5,336.2,332.3,333.1,333.8,330.9,334.2,337.5,333.2]}},{"b":7,"v":{"total":[40.5,40.1,39.3,39.2,40.6,39.8,39.6,40.4,41.8,40.1,40.6,40,41.2,39.3,40.4],"script":[2.6,2.5,2.4,2.5,2.5,2.5,2.5,2.6,2.6,2.6,2.6,2.6,2.6,2.4,2.6],"paint":[37.1,36.8,36.1,36,37.3,36.5,36.4,36.9,38.4,36.7,37.1,36.6,37.7,36,37]}},{"b":8,"v":{"total":[12.1,12,12,12.5,11.9,10.8,12,11.7,11.5,12,11.7,11.5,11.4,11,11.6],"script":[10.1,10.4,10.1,10.2,9.6,9.8,10.1,10.3,9.3,10.3,9.6,9.8,9.6,9.9,9.7],"paint":[1,0.8,1,1.4,1.9,0.6,1.6,1.3,0.5,1,2,0.7,1.7,1,0.9]}},{"b":9,"v":{"DEFAULT":[0.4]}},{"b":10,"v":{"DEFAULT":[1.7]}},{"b":11,"v":{"DEFAULT":[1.7]}},{"b":12,"v":{"DEFAULT":[0.6]}},{"b":13,"v":{"DEFAULT":[12.2]}},{"b":14,"v":{"DEFAULT":[12]}},{"b":15,"v":{"DEFAULT":[2.4]}},{"b":16,"v":{"DEFAULT":[54.9]}}]}, +{"f":199,"b":[{"b":0,"v":{"total":[35.5,36.1,34.7,34.3,35.9,34.3,34.4,35.5,35,34.9,34.5,35.4,35.6,35.4,35.6],"script":[2.4,2.6,2.4,2.4,2.5,2.3,2.3,2.4,2.4,2.4,2.3,2.5,2.4,2.5,2.5],"paint":[32.6,33.2,31.9,31.5,33,31.5,31.6,32.7,32.2,32.1,31.8,32.5,32.8,32.5,32.8]}},{"b":1,"v":{"total":[15.9,15.8,15.7,16.2,16.3,15.8,16,15.8,16.3,16.1,15.9,16.3,16.2,16,16.1],"script":[1.6,1.6,1.6,1.6,1.7,1.7,1.6,1.6,1.7,1.7,1.6,1.7,1.6,1.7,1.6],"paint":[13.9,13.8,13.8,14.2,14.1,13.7,13.9,13.8,14.1,14,13.9,14.3,14.2,13.9,14.1]}},{"b":2,"v":{"total":[15.4,15.2,16.2,15.5,16,15.7,16.9,15.3,15.4,16,15.7,15.1,15.7,15.1,15.7],"script":[0.7,0.2,1.4,0.7,0.2,0.2,0.9,0.6,1,0.6,0.2,0.2,0.8,0.5,0.2],"paint":[13,13.3,13.4,13.6,14.5,14.5,13.7,13.2,12.9,13.8,14.6,14.1,13.2,13.4,14.5]}},{"b":3,"v":{"total":[2.4,4.2,2.3,2.9,3,2.2,2.7,2.2,2.2,2.2,2.3,2.3,2.2,5.8,2.5,3.5,2.9,4.7,4.4,2.5,2.3,2.2,2.4,2.6,2.7],"script":[0.4,0.1,0.1,0.4,0.8,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.1,0.5,0.1,1,0.4,0.1,0.1,0.1,0.3,0.1,0.6,0.1,0.1],"paint":[1.1,1.2,2.1,2.4,1.4,1.3,1.9,2,2.1,2.1,2.2,1.2,0.5,2,1.5,1.9,2.4,1.7,2.5,2.3,1.6,2,1.8,1.7,0.8]}},{"b":4,"v":{"total":[11.4,11.9,11.8,11.9,11.4,11.7,11.5,11.1,10.7,11.1,11.4,11.1,11.4,11.5,11.5],"script":[0.7,0.6,0.3,0.8,0.6,0.8,0.6,0.1,0.4,0.6,0.1,0.1,0.6,0.7,1.3],"paint":[9.3,9.8,9.4,10.2,9.1,9.9,9.1,9.4,8.8,9.3,10.3,9.3,8.6,8.7,8.8]}},{"b":5,"v":{"total":[33.8,33.5,33,33.2,32.9,33.3,33.7,33.8,33.6,32.8,33.3,33.5,33.5,33.1,33.6],"script":[2.7,2.8,3,2.8,2.9,2.7,3,3.1,3,2.8,2.7,2.6,2.8,3,2.7],"paint":[30.4,29.8,29.3,29.6,29.2,29.7,29.6,29.9,29.9,29,29.8,29.8,30,29.3,29.8]}},{"b":6,"v":{"total":[368.3,377.4,372.4,364.2,366.9,363.8,368.3,366.2,365.5,366.5,365.7,365.5,378.3,367.9,366.1],"script":[27.2,27.7,27.8,27.6,27.5,28.1,27.1,27.2,27.2,28.9,27.1,27.3,28.6,27.7,27.4],"paint":[334.4,343,338.1,329.5,332.8,329.1,334.6,332.4,331.6,330.7,331.9,331.6,342.8,333.6,332.2]}},{"b":7,"v":{"total":[41.5,39.8,40.1,39.8,39.8,40.7,39.9,40.2,39.7,39.7,39.8,40,40.3,40.8,41.1],"script":[2.6,2.5,2.5,2.7,2.5,2.5,2.5,2.4,2.5,2.5,2.5,2.6,2.6,2.6,2.6],"paint":[38.1,36.5,36.8,36.3,36.4,37.4,36.5,36.9,36.4,36.3,36.4,36.6,37,37.3,37.6]}},{"b":8,"v":{"total":[12.5,11.8,11.6,12.4,12,11.2,11.6,12,11.9,12.4,11.6,12.1,11.6,11.9,12.2],"script":[10.4,10.1,10,10.2,9.4,9.3,10.2,10,10.5,10.6,9.5,10.6,10,9.7,10.6],"paint":[1.3,1.6,0.9,1.7,1.5,1.1,0.4,1.3,1.3,1.8,1.2,0.6,1.3,2.1,1.5]}},{"b":9,"v":{"DEFAULT":[0.4]}},{"b":10,"v":{"DEFAULT":[1.7]}},{"b":11,"v":{"DEFAULT":[1.7]}},{"b":12,"v":{"DEFAULT":[0.5]}},{"b":13,"v":{"DEFAULT":[12]}},{"b":14,"v":{"DEFAULT":[10]}},{"b":15,"v":{"DEFAULT":[2.2]}},{"b":16,"v":{"DEFAULT":[54.5]}}]}, +{"f":200,"b":[{"b":0,"v":{"total":[36.1,33.8,35.4,33.5,35.2,35.4,35.8,35.5,36.3,34.8,35.7,34.9,36.7,34.9,35.5],"script":[2.7,2.4,2.6,2.6,2.6,2.6,2.5,2.5,2.6,2.5,2.7,2.5,2.6,2.5,2.4],"paint":[33,31,32.4,30.6,32.2,32.4,32.8,32.6,33.1,31.8,32.6,32,33.7,32,32.7]}},{"b":1,"v":{"total":[16.2,17.4,16.1,15.8,16.5,16,17.1,15.9,16.1,16.4,15.9,16.1,16.1,16.1,16.3],"script":[2.2,2.1,2.2,2.1,2.2,2.1,2.2,2.1,2.1,2.2,2.1,2.1,2.1,2.1,2.2],"paint":[13.6,14.9,13.6,13.3,13.9,13.5,14.4,13.4,13.6,13.9,13.5,13.5,13.5,13.6,13.7]}},{"b":2,"v":{"total":[16.5,17.1,16.8,16.6,16.8,16.4,16.8,16.6,17,16.1,17.5,16.4,16.6,16.2,16.3],"script":[1.8,0.9,1.7,1.3,2.1,1.5,1.7,1.4,1.7,1.6,1.5,1.3,1.5,1.4,1.5],"paint":[13.4,13.9,14.2,13.5,13.8,12.8,12.9,13.5,13.9,13.2,14.2,14.1,13.5,13.9,13.5]}},{"b":3,"v":{"total":[3.7,3.8,4.1,3.4,3.1,3.5,3,3.1,3.9,3.6,4.2,3.6,3.1,3,3.3,3.7,3.4,3.3,4.1,3.3,3.2,3.5,2.9,3.3,4],"script":[1.5,0.9,1.2,1,0.6,1.1,1.3,1.2,0.9,1.5,1.9,1.6,1.2,1.1,1.3,1,0.9,1.3,0.9,0.9,1.6,0.3,0.8,1.1,1.8],"paint":[2.2,2.6,1.8,1.5,1.5,2.3,1.3,1.8,2.9,0.6,1.8,1.8,1.3,1.7,1.2,2.2,2.4,1.9,2.1,1.5,1,3.2,1.6,1.3,2]}},{"b":4,"v":{"total":[19.8,20.4,19.6,20.4,19.5,19.1,20,19.9,19.6,19.1,19.8,20.2,19.3,19.2,19.1],"script":[1.8,2.2,1.5,1.6,1.5,1,1.9,2,1.2,1.5,1.9,1.4,1,1.6,1.3],"paint":[16.8,16.5,16.7,17.7,16.6,16.3,16.7,16.5,17.4,16.6,16.6,17.1,17.3,16.5,17.1]}},{"b":5,"v":{"total":[15.7,15.5,15.4,15.9,15.8,15.7,15.5,15.4,15.7,15.4,15.5,15.5,16.2,16.2,15.7],"script":[0.7,0.7,0.7,0.7,1,0.7,0.7,0.7,0.7,0.7,0.8,0.7,0.9,0.8,0.7],"paint":[14.2,14,13.7,14.3,14.2,14.1,13.7,13.7,14.1,13.7,14,14.2,14.7,14.7,14.3]}},{"b":6,"v":{"total":[426.9,421,421,417.2,418.9,419.7,418.1,417.2,420.9,422.1,418.9,422,416.5,419.8,420.4],"script":[89.2,92.3,91.4,90.2,90.4,93.4,87.7,90.7,90.8,95.6,92.7,92.7,89.7,91.3,89.5],"paint":[331,322.1,322.9,320.3,321.5,319.6,323.7,319.8,323.8,319.6,319.6,322.4,320.1,321.6,324.1]}},{"b":7,"v":{"total":[47.8,47.7,47.4,47.8,47.5,47.8,47.5,47.5,47.2,47.3,49.1,47.1,47.9,47.5,47.6],"script":[9.8,9.5,9.4,9.6,9.8,9.7,9.7,9.6,9.7,9.5,9.4,9.7,9.7,9.5,9.8],"paint":[37.1,37.3,37.1,37.4,36.8,37.3,36.9,37.1,36.6,37,38.8,36.6,37.2,37.2,36.9]}},{"b":8,"v":{"total":[14.8,13.8,13.9,14.4,14.9,14.2,15,14.6,13.5,14.3,14.6,14.4,14.2,14.2,14.4],"script":[12.9,12.1,11.6,12.2,12.3,12.5,12.8,12.5,11.9,12.4,12.6,13,12.3,12.5,12.3],"paint":[1.7,1.2,2.2,1.1,2.4,1.7,1.9,2,0.7,1,1.3,1.3,1.8,0.7,1]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[4.9]}},{"b":11,"v":{"DEFAULT":[5]}},{"b":12,"v":{"DEFAULT":[5.2]}},{"b":13,"v":{"DEFAULT":[40.1]}},{"b":14,"v":{"DEFAULT":[33.1]}},{"b":15,"v":{"DEFAULT":[11.7]}},{"b":16,"v":{"DEFAULT":[85.5]}}]}, +{"f":201,"b":[{"b":0,"v":{"total":[43.2,45.3,44.7,42.9,46.7,42.6,45.4,44,43.7,45.4,45.7,44.3,45.3,45.3,45.5],"script":[9.6,10,9.4,9.6,9.9,9.2,10.3,9.3,9,10.7,9.6,9.6,9.8,9.9,9.6],"paint":[33.3,34.8,34.8,32.9,36.3,33,34.8,34.3,34.3,34.3,35.6,34.3,35.1,35,35.5]}},{"b":1,"v":{"total":[19.6,19.2,19.3,19.3,20,19.1,19.7,19.4,18.9,21.7,19.7,19,19,19.1,19.9],"script":[4.4,4.3,4.6,4.6,4.6,4.5,4.6,4.2,4.5,5,4.6,4,4.4,3.9,5],"paint":[14.7,14.5,14.3,14.2,15,14.2,14.6,14.8,14,16.3,14.7,14.6,14.2,14.8,14.4]}},{"b":2,"v":{"total":[19.3,19.4,19,20.3,19.8,19.9,19.2,19.5,19.7,19.7,20.5,19.9,21,19.3,20.2],"script":[3.7,3.7,3.2,3.9,2.9,3.2,3,3,3.2,3.8,3.8,3.5,4.1,3.6,3.2],"paint":[14.5,14.7,14.8,15.7,15.8,15.6,14.9,15.5,15.2,15.1,14.5,14.1,15.7,13.4,14.4]}},{"b":3,"v":{"total":[3.7,4.3,4.3,4.1,3.2,3.7,4.4,4.3,4,4,4.4,4.1,4.3,4.1,4.3,4.1,3.9,3.8,4.1,4.4,3.9,3.6,3.6,5.5,4.7],"script":[1.5,1.9,2.1,0.7,1.4,1,2.1,1.8,1.6,1,1.6,1.1,1.7,1.6,0.9,1.7,1.1,2.1,1.3,1.8,1.3,1.4,1.8,1.6,0.9],"paint":[2,1.9,2.1,3.2,1.7,2.3,1.4,2,1.6,2.9,1.7,2.9,1.6,2.4,3.2,2,2.2,1.6,1.7,2.5,1.5,2.1,1.7,2.2,2.6]}},{"b":4,"v":{"total":[13.2,12.2,13.9,13.3,13.1,12.8,13.3,12.9,12.7,12.9,13.6,13.1,12.9,13.3,13],"script":[2.2,1.2,1,1.4,1.6,2.2,1.4,1.9,1.6,1.1,1.2,1.2,1.3,1,0.9],"paint":[9.7,9.4,11.2,10.4,10,9.1,10.7,9.9,8.4,10.4,10.5,10.7,10.1,10.2,10.5]}},{"b":5,"v":{"total":[38.5,37.4,41.6,41.7,38.7,41.2,38.1,38.7,37.9,37.9,42.4,41.5,38.7,39.5,40.1],"script":[7.2,6.8,7.6,7.8,7.6,7.5,7.2,7.1,6.9,7.6,7.6,7.4,7.3,7.8,7.8],"paint":[30.2,29.8,33.1,33,30.3,32.2,30,30.6,30.2,29.5,33.6,33.2,30.2,30.8,31.1]}},{"b":6,"v":{"total":[441.7,442.5,442.2,454.3,445.8,442,448.1,448.3,445.2,443.3,445.9,442,438.2,445.6,444.4],"script":[100.3,98.5,95.3,100.8,101.8,101.8,104.8,104.7,105.9,98.9,98,96.4,99.8,101.7,101.4],"paint":[334.6,337.3,340.4,346.8,337.3,333.5,336.6,336.9,332.7,337.7,341.1,338.9,331.7,337.2,336.2]}},{"b":7,"v":{"total":[50.7,49.9,49.9,50.4,50.4,52.9,50,50.2,49.2,50.4,49.3,50.2,50.7,50.1,49.8],"script":[8.7,8.6,8.8,8.8,9.7,9.2,8.8,8.8,8.4,8.9,8.4,8.7,9.4,8.8,9],"paint":[41.1,40.2,40.2,40.7,39.8,42.8,40.3,40.5,39.9,40.6,40.1,40.6,40.4,40.4,39.9]}},{"b":8,"v":{"total":[17,16.5,15.9,15.1,15.7,15.7,15.1,17.3,15.4,15.2,15.6,15.4,16.9,16.3,15.9],"script":[14.9,14.6,13.4,13.5,13.8,13.2,13.1,15,13.5,12.9,13.9,13.6,15,14.2,14],"paint":[1.3,1.8,2.4,1.5,1.8,2.4,1.5,2.1,1.8,2,1.6,1.7,1.7,1.5,1.9]}},{"b":9,"v":{"DEFAULT":[0.7]}},{"b":10,"v":{"DEFAULT":[3.7]}},{"b":11,"v":{"DEFAULT":[3.8]}},{"b":12,"v":{"DEFAULT":[1.2]}},{"b":13,"v":{"DEFAULT":[28.3]}},{"b":14,"v":{"DEFAULT":[55.9]}},{"b":15,"v":{"DEFAULT":[20.5]}},{"b":16,"v":{"DEFAULT":[111.1]}}]}, +{"f":202,"b":[{"b":0,"v":{"total":[39.6,39.2,41,41.4,39.6,39.9,39.7,42.5,40.1,42.7,41.3,40.4,41.2,42.2,40.4],"script":[6.2,6.5,6.8,6.4,6.5,6.6,6.8,6.5,6.6,6.7,6.1,6.4,6.3,6.7,6.4],"paint":[33,32.3,33.8,34.6,32.7,32.9,32.4,35.5,33.1,35.5,34.9,33.6,34.4,35.1,33.6]}},{"b":1,"v":{"total":[18.6,18.1,17.6,18,18.4,17.8,19.1,17.4,19.3,17.8,17.6,18.4,17.6,17.9,19.1],"script":[2.6,2.9,2.6,2.8,2.9,2.7,2.7,2.5,2.8,2.5,2.8,2.7,2.6,2.8,2.8],"paint":[15.5,14.7,14.6,14.8,15,14.7,15.9,14.4,16,14.8,14.3,15.2,14.5,14.6,15.8]}},{"b":2,"v":{"total":[20.3,19.4,18.8,20,19.5,20.4,20,19.5,19.5,19.7,20.3,19.9,19.5,19.4,20],"script":[4.5,3.5,2.9,3.7,3.3,3.7,3.5,3.5,3.2,3.5,4.3,3.5,4.1,3.1,3.9],"paint":[12.8,14.9,15,14.3,15,13.9,15.1,14.8,15,14.9,14.7,14.7,14.2,15.1,14.6]}},{"b":3,"v":{"total":[5.2,5.3,5.4,6.2,5.4,5.9,6,5.1,5.4,4.9,5.7,5.2,6.4,5.6,5,5,5.2,5.3,5.2,5.1,5.3,5.2,5.2,5.1,5.9],"script":[2.4,3.1,2.7,3.3,2.7,3.3,3.4,2.7,3.1,2.9,3,2.5,3.3,2.4,3.4,2.6,2.5,2.8,2.5,2.8,2.6,2.9,2.5,2.1,2.9],"paint":[1.6,2.1,2.3,2.7,1.7,2.4,1.8,2.1,2.2,1.9,1.8,2.3,1.2,2.8,1.5,1.6,2.6,2.5,2,1.5,2.2,2.2,2.6,2.5,2.9]}},{"b":4,"v":{"total":[14.6,12.6,12.8,13.3,13,12.2,13.9,12.6,13.1,13.7,13.1,13.5,12.7,13.3,12.9],"script":[1.7,1.3,1.7,1.8,1.9,1.7,2.5,1.5,1.8,1.9,2.2,2,1.9,1.8,1.8],"paint":[10.1,9.5,9.9,10.3,9.3,9.5,9.7,10.1,9.8,9.3,9.6,10.6,8.8,9.9,9.7]}},{"b":5,"v":{"total":[35.1,34.7,36.8,35.4,35.1,35.8,35.7,35.7,35.3,36,35.5,34.7,36.4,36.1,36],"script":[3.9,4.4,4.3,4.6,4.3,4.5,4.7,4.4,4.1,4.8,4.3,4,4.6,4.6,4.6],"paint":[30.4,29,31.6,29.7,29.7,30.2,29.9,30.2,30.5,30,30.1,30,30.6,30.6,30.2]}},{"b":6,"v":{"total":[408.7,403.9,405.4,401.2,402.4,404.3,409.4,401.5,399.6,405.9,402.2,403.1,398.6,402.2,403.3],"script":[65.3,63.2,65.3,64,64.3,62.6,65.5,63.1,62.6,64.4,65.3,63.9,61.6,64.2,65.7],"paint":[336.4,334,333.4,330.4,331.5,335,337.2,331.7,330.2,334.7,330.2,332.6,330.5,331.3,330.9]}},{"b":7,"v":{"total":[45.6,44.3,44.6,45.3,44.7,44,44.7,45.8,45.6,45.3,45.2,45.3,43.9,45.5,45.1],"script":[6.5,6,5.9,6.1,6,5.9,6.1,6.6,6.5,6.4,6.4,6.5,6,6.4,6.1],"paint":[38.2,37.4,37.7,38.4,37.9,37.3,37.7,38.4,38.2,38,37.9,38,37.1,38.3,38]}},{"b":8,"v":{"total":[16.6,16.4,16,16.3,15.5,16.6,14.8,17,14.7,15.4,14.7,16.6,16.8,15.9,15.7],"script":[14.6,14.2,14.4,14.7,14.2,14.1,13.2,14.7,12.5,13.8,12.8,14.4,15.1,14,13.6],"paint":[1.8,1.5,1.2,1.6,1,1.7,0.7,1.3,2.1,1.5,1.8,2.1,1.6,1.8,1.1]}},{"b":9,"v":{"DEFAULT":[0.6]}},{"b":10,"v":{"DEFAULT":[3.6]}},{"b":11,"v":{"DEFAULT":[3.6]}},{"b":12,"v":{"DEFAULT":[1.1]}},{"b":13,"v":{"DEFAULT":[27.7]}},{"b":14,"v":{"DEFAULT":[29.4]}},{"b":15,"v":{"DEFAULT":[11]}},{"b":16,"v":{"DEFAULT":[94.8]}}]},]; +export const frameworks = [{"name":"alpine-v3.12.0-keyed","dir":"keyed/alpine","keyed":true,"issues":[1139],"frameworkHomeURL":"https://alpinejs.dev/"},{"name":"anansi-v0.14.0-keyed","dir":"keyed/anansi","keyed":true,"issues":[1139],"frameworkHomeURL":"https://saru-tora.github.io/anansi/"},{"name":"angular-cf-v17.0.2-keyed","dir":"keyed/angular-cf","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-cf-nozone-v17.0.2-keyed","dir":"keyed/angular-cf-nozone","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-cf-signals-v17.0.2-keyed","dir":"keyed/angular-cf-signals","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"angular-ngfor-v17.0.2-keyed","dir":"keyed/angular-ngfor","keyed":true,"frameworkHomeURL":"https://angular.io/"},{"name":"apprun-v3.30.2-keyed","dir":"keyed/apprun","keyed":true,"issues":[801],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-keyed","dir":"keyed/arrowjs","keyed":true,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v1.1.0-keyed","dir":"keyed/art","keyed":true,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"better-react-v1.1.3-keyed","dir":"keyed/better-react","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/better-react"},{"name":"blazor-wasm-v8.0.0-keyed","dir":"keyed/blazor-wasm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blazor-wasm-aot-v8.0.0-keyed","dir":"keyed/blazor-wasm-aot","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor"},{"name":"blockdom-v0.9.28-keyed","dir":"keyed/blockdom","keyed":true,"issues":[1261],"frameworkHomeURL":"https://github.com/ged-odoo/blockdom"},{"name":"bobril-v20.6.0-keyed","dir":"keyed/bobril","keyed":true,"issues":[1139],"frameworkHomeURL":"https://bobril.com/"},{"name":"cample-v3.2.0-alpha.15-keyed","dir":"keyed/cample","keyed":true,"issues":[1139],"frameworkHomeURL":"https://camplejs.github.io"},{"name":"crank-v0.4.1-keyed","dir":"keyed/crank","keyed":true,"frameworkHomeURL":"https://crank.js.org/"},{"name":"dark-v1.0.2-keyed","dir":"keyed/dark","keyed":true,"frameworkHomeURL":"https://github.com/atellmer/dark"},{"name":"dioxus-v0.4.0-keyed","dir":"keyed/dioxus","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dioxuslabs.com/"},{"name":"dlightjs-v1.0.0-next.1-keyed","dir":"keyed/dlightjs","keyed":true,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"dojo-v8.0.0-keyed","dir":"keyed/dojo","keyed":true,"issues":[1139],"frameworkHomeURL":"https://dojo.io/"},{"name":"dominator-v0.5.0-keyed","dir":"keyed/dominator","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/Pauan/rust-dominator"},{"name":"doohtml-keyed","dir":"keyed/doohtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com"},{"name":"doohtml-dom-keyed","dir":"keyed/doohtml-dom","keyed":true,"issues":[772],"frameworkHomeURL":"https://doohtml.com"},{"name":"doz-v5-preview-keyed","dir":"keyed/doz","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-keyed","dir":"keyed/ef-js","keyed":true,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-keyed","dir":"keyed/elm","keyed":true,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"ember-v5.3.0-keyed","dir":"keyed/ember","keyed":true,"frameworkHomeURL":"https://emberjs.com/"},{"name":"fntags-v0.3.3-keyed","dir":"keyed/fntags","keyed":true,"frameworkHomeURL":"https://srfnstack.github.io/fntags/"},{"name":"fre-v2.5.5-keyed","dir":"keyed/fre","keyed":true,"frameworkHomeURL":"https://fre.deno.dev"},{"name":"frei-hooks-v1.1.9-keyed","dir":"keyed/frei-hooks","keyed":true,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"glimmer-2-v2.0.0-beta.21-keyed","dir":"keyed/glimmer-2","keyed":true,"frameworkHomeURL":"https://glimmerjs.com/"},{"name":"goui-v0.1.2-keyed","dir":"keyed/goui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/twharmon/goui"},{"name":"gxt-v0.0.37-keyed","dir":"keyed/gxt","keyed":true,"frameworkHomeURL":"https://github.com/lifeart/glimmer-next/"},{"name":"gyron-v0.0.16-keyed","dir":"keyed/gyron","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"helix-v0.0.10-keyed","dir":"keyed/helix","keyed":true,"frameworkHomeURL":"https://github.com/thheller/shadow-cljs#readme"},{"name":"hydro-js-v1.5.14-keyed","dir":"keyed/hydro-js","keyed":true,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"hyperapp-v2.0.22-keyed","dir":"keyed/hyperapp","keyed":true,"frameworkHomeURL":"https://github.com/jorgebucaran/hyperapp"},{"name":"imba-v1.5.2-keyed","dir":"keyed/imba","keyed":true,"frameworkHomeURL":"https://imba.io/"},{"name":"incremental-dom-v0.7.0-keyed","dir":"keyed/incremental-dom","keyed":true,"frameworkHomeURL":"http://google.github.io/incremental-dom/"},{"name":"inferno-v8.2.2-keyed","dir":"keyed/inferno","keyed":true,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"ivi-v3.0.0-keyed","dir":"keyed/ivi","keyed":true,"frameworkHomeURL":"https://github.com/localvoid/ivi"},{"name":"karyon-v2.0.0-keyed","dir":"keyed/karyon","keyed":true,"issues":[801],"frameworkHomeURL":"https://karyon.dev"},{"name":"knockout-v3.5.1-keyed","dir":"keyed/knockout","keyed":true,"issues":[1139],"frameworkHomeURL":"https://knockoutjs.com/"},{"name":"ko-jsx-v0.16.1-keyed","dir":"keyed/ko-jsx","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ryansolid/ko-jsx"},{"name":"laminar-v16.0.0-keyed","dir":"keyed/laminar","keyed":true,"frameworkHomeURL":"https://laminar.dev"},{"name":"legend-state-v18.2.0 + 2.1.1-keyed","dir":"keyed/legend-state","keyed":true,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"leptos-v0.6.3-keyed","dir":"keyed/leptos","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/leptos-rs/leptos"},{"name":"lit-v3.0.0-keyed","dir":"keyed/lit","keyed":true,"issues":[801],"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.0.0-keyed","dir":"keyed/lit-html","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"lui-v1.2.3-keyed","dir":"keyed/lui","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/L3P3/lui"},{"name":"lwc-v3.0.1-keyed","dir":"keyed/lwc","keyed":true,"frameworkHomeURL":"https://lwc.dev/"},{"name":"malina-v0.7.3-keyed","dir":"keyed/malina","keyed":true,"frameworkHomeURL":"https://www.npmjs.com/package/malinajs"},{"name":"marionette-v5.0.0-alpha.2-keyed","dir":"keyed/marionette","keyed":true,"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marionette-backbone-v5.0.0-alpha.2-keyed","dir":"keyed/marionette-backbone","keyed":true,"issues":[772],"frameworkHomeURL":"https://marionettejs.com/"},{"name":"marko-v5.31.12-keyed","dir":"keyed/marko","keyed":true,"issues":[1139],"frameworkHomeURL":"https://markojs.com/"},{"name":"maverick-v0.23.1-keyed","dir":"keyed/maverick","keyed":true,"frameworkHomeURL":"https://github.com/maverick-js/maverick"},{"name":"metron-v0.0.2-keyed","dir":"keyed/metron","keyed":true,"frameworkHomeURL":"https://github.com/robbiespeed/metron"},{"name":"michijs-v1.1.7-keyed","dir":"keyed/michijs","keyed":true,"frameworkHomeURL":"https://github.com/michijs/michijs"},{"name":"michijs-map-v1.1.7-keyed","dir":"keyed/michijs-map","keyed":true,"frameworkHomeURL":"https://github.com/michijs/michijs"},{"name":"mikado-v0.8.327-keyed","dir":"keyed/mikado","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mikado-proxy-v0.8.327-keyed","dir":"keyed/mikado-proxy","keyed":true,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"million-v2.3.3-keyed","dir":"keyed/million","keyed":true,"issues":[801],"frameworkHomeURL":"https://github.com/aidenybai/million"},{"name":"mimbl-v0.10.4-keyed","dir":"keyed/mimbl","keyed":true,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-keyed","dir":"keyed/miso","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"misojs-v1.1.0.0-keyed","dir":"keyed/misojs","keyed":true,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mithril-v2.2.2-keyed","dir":"keyed/mithril","keyed":true,"frameworkHomeURL":"https://mithril.js.org/"},{"name":"mobx-jsx-v0.14.0-keyed","dir":"keyed/mobx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/mobx-jsx"},{"name":"mogwai-v0.6.5-keyed","dir":"keyed/mogwai","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"openui5-v1.120.0-keyed","dir":"keyed/openui5","keyed":true,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"owl-v2.2.6-keyed","dir":"keyed/owl","keyed":true,"issues":[1139],"frameworkHomeURL":"https://odoo.github.io/owl/"},{"name":"plaited-v5.3.0-keyed","dir":"keyed/plaited","keyed":true,"issues":[800,772],"frameworkHomeURL":"https://github.com/plaited/plaited"},{"name":"pota-v0.9.98-keyed","dir":"keyed/pota","keyed":true,"issues":[801],"frameworkHomeURL":"https://pota.quack.uy/"},{"name":"preact-classes-v10.19.3-keyed","dir":"keyed/preact-classes","keyed":true,"frameworkHomeURL":"https://preactjs.com/"},{"name":"preact-hooks-v10.19.3-keyed","dir":"keyed/preact-hooks","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/hooks"},{"name":"preact-signals-v10.19.3 + 1.2.2-keyed","dir":"keyed/preact-signals","keyed":true,"frameworkHomeURL":"https://preactjs.com/guide/v10/signals"},{"name":"qwik-v1.3.0-keyed","dir":"keyed/qwik","keyed":true,"issues":[1139],"frameworkHomeURL":"https://qwik.builder.io/"},{"name":"ractive-v1.3.6-keyed","dir":"keyed/ractive","keyed":true,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"rax-v0.6.7-keyed","dir":"keyed/rax","keyed":true,"frameworkHomeURL":"https://github.com/alibaba/rax"},{"name":"react-classes-v18.2.0-keyed","dir":"keyed/react-classes","keyed":true,"frameworkHomeURL":"https://www.reactjs.org"},{"name":"react-diagon-v18.2.0 + 0.14.3-keyed","dir":"keyed/react-diagon","keyed":true,"frameworkHomeURL":"https://www.diagon.dev/"},{"name":"react-focal-v18.2.0 + 0.9.0-keyed","dir":"keyed/react-focal","keyed":true,"frameworkHomeURL":"https://github.com/grammarly/focal"},{"name":"react-hooks-v18.2.0-keyed","dir":"keyed/react-hooks","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-hooks-use-transition-v18.2.0-keyed","dir":"keyed/react-hooks-use-transition","keyed":true,"frameworkHomeURL":"https://reactjs.org/"},{"name":"react-jotai-v17.0.1 + 1.7.2-keyed","dir":"keyed/react-jotai","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/jotai"},{"name":"react-mlyn-v0.5.16-keyed","dir":"keyed/react-mlyn","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vaukalak/mlyn"},{"name":"react-mobX-v18.2.0 + 6.9.0-keyed","dir":"keyed/react-mobX","keyed":true,"frameworkHomeURL":"https://mobx.js.org/"},{"name":"react-recoil-v18.2.0 + 0.7.7-keyed","dir":"keyed/react-recoil","keyed":true,"frameworkHomeURL":"https://recoiljs.org/"},{"name":"react-redux-v18.2.0 + 8.0.5-keyed","dir":"keyed/react-redux","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","dir":"keyed/react-redux-hooks","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","dir":"keyed/react-redux-hooks-immutable","keyed":true,"frameworkHomeURL":"https://react-redux.js.org/"},{"name":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","dir":"keyed/react-redux-rematch","keyed":true,"frameworkHomeURL":"https://rematchjs.org/"},{"name":"react-rxjs-v18.2.0 + 0.10.4-keyed","dir":"keyed/react-rxjs","keyed":true,"frameworkHomeURL":"https://react-rxjs.org/"},{"name":"react-signalis-v18.2.0 + 0.0.8-keyed","dir":"keyed/react-signalis","keyed":true,"frameworkHomeURL":"https://github.com/cafreeman/signalis"},{"name":"react-starbeam-v18.2.0 + 0.6.0-keyed","dir":"keyed/react-starbeam","keyed":true,"frameworkHomeURL":"https://www.starbeamjs.com/"},{"name":"react-tagged-state-v18.2.0 + 1.23.2-keyed","dir":"keyed/react-tagged-state","keyed":true,"frameworkHomeURL":"https://github.com/oleggrishechkin/react-tagged-state"},{"name":"react-tracked-v18.2.0 + 1.7.11-keyed","dir":"keyed/react-tracked","keyed":true,"frameworkHomeURL":"https://react-tracked.js.org/"},{"name":"react-zustand-v18.2.0 + 4.3.6-keyed","dir":"keyed/react-zustand","keyed":true,"frameworkHomeURL":"https://github.com/pmndrs/zustand"},{"name":"reagent-v0.10-keyed","dir":"keyed/reagent","keyed":true,"frameworkHomeURL":"https://reagent-project.github.io/"},{"name":"redom-v3.29.0-keyed","dir":"keyed/redom","keyed":true,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"rendrjs-v0.2.50-keyed","dir":"keyed/rendrjs","keyed":true,"frameworkHomeURL":"https://rendrjs.com"},{"name":"rendrjs-atoms-v0.2.50-keyed","dir":"keyed/rendrjs-atoms","keyed":true,"frameworkHomeURL":"https://rendrjs.com"},{"name":"rescript-react-v0.10.3-keyed","dir":"keyed/rescript-react","keyed":true,"frameworkHomeURL":"https://rescript-lang.org/"},{"name":"rezact-v1.0.15-beta.9-keyed","dir":"keyed/rezact","keyed":true,"frameworkHomeURL":"https://rezact.io/"},{"name":"riot-v9.1.4-keyed","dir":"keyed/riot","keyed":true,"frameworkHomeURL":"https://riot.js.org/"},{"name":"s2-v1.0.17-keyed","dir":"keyed/s2","keyed":true,"issues":[800],"frameworkHomeURL":"https://gr0uch.github.io/s2"},{"name":"san-composition-v3.12.2 + 1.3.0-keyed","dir":"keyed/san-composition","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"san-store-v3.12.2 + 2.2.1-keyed","dir":"keyed/san-store","keyed":true,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"sauron-v0.57.4-keyed","dir":"keyed/sauron","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ivanceras/sauron"},{"name":"scarlets-frame-v0.34.6-keyed","dir":"keyed/scarlets-frame","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"silkenweb-v0.6.0-keyed","dir":"keyed/silkenweb","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/silkenweb/silkenweb"},{"name":"sinuous-v0.32.1-keyed","dir":"keyed/sinuous","keyed":true,"issues":[800,801],"frameworkHomeURL":"https://sinuous.netlify.app/"},{"name":"skruv-v0.6.3-keyed","dir":"keyed/skruv","keyed":true,"frameworkHomeURL":"https://skruv.io"},{"name":"solid-v1.8.0-keyed","dir":"keyed/solid","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"solid-store-v1.5.4-keyed","dir":"keyed/solid-store","keyed":true,"frameworkHomeURL":"https://www.solidjs.com/"},{"name":"spair-v0.0.8-keyed","dir":"keyed/spair","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"spair-qr-v0.0.8-keyed","dir":"keyed/spair-qr","keyed":true,"issues":[1139],"frameworkHomeURL":"https://docs.rs/spair/latest/spair/"},{"name":"stdweb-v0.4.17-keyed","dir":"keyed/stdweb","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"stencil-v4.11.0-keyed","dir":"keyed/stencil","keyed":true,"issues":[1139],"frameworkHomeURL":"https://stenciljs.com/"},{"name":"strve-v6.7.0-keyed","dir":"keyed/strve","keyed":true,"frameworkHomeURL":"https://strvejs.github.io/strve-doc/"},{"name":"strve-reactivity-v1.5.0-keyed","dir":"keyed/strve-reactivity","keyed":true,"frameworkHomeURL":"https://strvejs.github.io/strve-doc/"},{"name":"svelte-v5.0.0-next.64-keyed","dir":"keyed/svelte","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"svelte-classic-v5.0.0-next.64-keyed","dir":"keyed/svelte-classic","keyed":true,"frameworkHomeURL":"https://svelte.dev/"},{"name":"sycamore-v0.9.0-beta.2-keyed","dir":"keyed/sycamore","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sycamore-rs.netlify.app/"},{"name":"udomsay-esx-v0.4.9-keyed","dir":"keyed/udomsay-esx","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"udomsay-tpl-v0.4.9-keyed","dir":"keyed/udomsay-tpl","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v4.4.1-keyed","dir":"keyed/uhtml","keyed":true,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v1.3.1-keyed","dir":"keyed/ui5-webcomponents","keyed":true,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"unis-v1.2.2-keyed","dir":"keyed/unis","keyed":true,"frameworkHomeURL":"https://www.github.com/anuoua/unis"},{"name":"valtio-v18.2.0 + 1.10.3-keyed","dir":"keyed/valtio","keyed":true,"frameworkHomeURL":"https://valtio.pmnd.rs/"},{"name":"vanillajs-keyed","dir":"keyed/vanillajs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-keyed","dir":"keyed/vanillajs-1","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-wc-keyed","dir":"keyed/vanillajs-wc","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"vanjs-v1.1.0-keyed","dir":"keyed/vanjs","keyed":true,"issues":[772],"frameworkHomeURL":""},{"name":"voby-v0.48.0-keyed","dir":"keyed/voby","keyed":true,"issues":[1139],"frameworkHomeURL":"https://github.com/vobyjs/voby"},{"name":"vue-v3.4.21-keyed","dir":"keyed/vue","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-jsx-v3.4.21-keyed","dir":"keyed/vue-jsx","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-pinia-v3.4.21 + 2.1.7-keyed","dir":"keyed/vue-pinia","keyed":true,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.2024.0-83641f7-keyed","dir":"keyed/vue-vapor","keyed":true,"frameworkHomeURL":"https://vuejs.org/"},{"name":"vuerx-jsx-v0.3.0-keyed","dir":"keyed/vuerx-jsx","keyed":true,"frameworkHomeURL":"https://github.com/ryansolid/vuerx-jsx"},{"name":"wasm-bindgen-v0.2.84-keyed","dir":"keyed/wasm-bindgen","keyed":true,"issues":[772,1139],"frameworkHomeURL":"https://rustwasm.github.io/docs/wasm-bindgen/"},{"name":"whatsup-v2.6.0-keyed","dir":"keyed/whatsup","keyed":true,"frameworkHomeURL":"https://github.com/whatsup/whatsup"},{"name":"yew-v0.21.0-keyed","dir":"keyed/yew","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"yew-hooks-v0.21.0-keyed","dir":"keyed/yew-hooks","keyed":true,"issues":[1139],"frameworkHomeURL":"https://yew.rs/"},{"name":"alins-v0.0.34-non-keyed","dir":"non-keyed/alins","keyed":false,"frameworkHomeURL":""},{"name":"apprun-v3.30.2-non-keyed","dir":"non-keyed/apprun","keyed":false,"issues":[772],"frameworkHomeURL":"https://apprun.js.org/"},{"name":"arrowjs-v1.0.0-alpha.9-non-keyed","dir":"non-keyed/arrowjs","keyed":false,"frameworkHomeURL":"https://www.arrow-js.com/"},{"name":"art-v0.1.7-non-keyed","dir":"non-keyed/art","keyed":false,"frameworkHomeURL":"https://github.com/sullay/Art-js"},{"name":"aurelia-v1.3.0-non-keyed","dir":"non-keyed/aurelia","keyed":false,"issues":[1139],"frameworkHomeURL":"https://aurelia.io/"},{"name":"bau-v0.39.0-non-keyed","dir":"non-keyed/bau","keyed":false,"frameworkHomeURL":"https://github.com/grucloud/bau"},{"name":"binding.scala-v10.0.1-non-keyed","dir":"non-keyed/binding.scala","keyed":false,"frameworkHomeURL":"https://github.com/ThoughtWorksInc/Binding.scala"},{"name":"bui-v1.9.1-non-keyed","dir":"non-keyed/bui","keyed":false,"frameworkHomeURL":"https://www.easybui.com/"},{"name":"cyclejs-dom-v20.4.0-non-keyed","dir":"non-keyed/cyclejs-dom","keyed":false,"frameworkHomeURL":""},{"name":"cydon-v0.1.8-non-keyed","dir":"non-keyed/cydon","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/0-v-0/cydon"},{"name":"delorean-v0.1.0-non-keyed","dir":"non-keyed/delorean","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/delorean-rs/delorean"},{"name":"dlightjs-v1.0.0-next.1-non-keyed","dir":"non-keyed/dlightjs","keyed":false,"frameworkHomeURL":"https://github.com/dlight-js/dlight"},{"name":"doz-v4.0.3-non-keyed","dir":"non-keyed/doz","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/dozjs/doz"},{"name":"ef-js-v0.17.5-non-keyed","dir":"non-keyed/ef-js","keyed":false,"frameworkHomeURL":"https://ef.js.org/#!home"},{"name":"elm-v0.19.1-3-non-keyed","dir":"non-keyed/elm","keyed":false,"issues":[1139],"frameworkHomeURL":"https://elm-lang.org/"},{"name":"fast-v2.0.0-beta.26-non-keyed","dir":"non-keyed/fast","keyed":false,"frameworkHomeURL":"https://www.fast.design/"},{"name":"frei-hooks-v1.1.9-non-keyed","dir":"non-keyed/frei-hooks","keyed":false,"frameworkHomeURL":"https://github.com/aimwhy/frei"},{"name":"gyron-v0.0.16-non-keyed","dir":"non-keyed/gyron","keyed":false,"frameworkHomeURL":"https://www.npmjs.com/package/gyron"},{"name":"halogen-v7.0.0-non-keyed","dir":"non-keyed/halogen","keyed":false,"frameworkHomeURL":"https://github.com/purescript-halogen/purescript-halogen"},{"name":"hydro-js-v1.5.14-non-keyed","dir":"non-keyed/hydro-js","keyed":false,"frameworkHomeURL":"https://github.com/Krutsch/hydro-js"},{"name":"imba-v1.5.2-non-keyed","dir":"non-keyed/imba","keyed":false,"frameworkHomeURL":"https://imba.io/"},{"name":"incr_dom-v0.15.0-non-keyed","dir":"non-keyed/incr_dom","keyed":false,"frameworkHomeURL":"https://opensource.janestreet.com/incr_dom/"},{"name":"inferno-v8.2.2-non-keyed","dir":"non-keyed/inferno","keyed":false,"frameworkHomeURL":"https://github.com/infernojs/inferno"},{"name":"kobold-v0.9.1-non-keyed","dir":"non-keyed/kobold","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/maciejhirsz/kobold"},{"name":"korvin-v0.2.1-non-keyed","dir":"non-keyed/korvin","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/Niedzwiedzw/korvin"},{"name":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","dir":"non-keyed/legend-state-optimized","keyed":false,"frameworkHomeURL":"https://github.com/LegendApp/legend-state"},{"name":"lit-v3.0.0-non-keyed","dir":"non-keyed/lit","keyed":false,"frameworkHomeURL":"https://lit.dev/"},{"name":"lit-html-v3.0.0-non-keyed","dir":"non-keyed/lit-html","keyed":false,"issues":[800],"frameworkHomeURL":"https://lit.dev/docs/libraries/standalone-templates/"},{"name":"literaljs-v7.0.2-non-keyed","dir":"non-keyed/literaljs","keyed":false,"frameworkHomeURL":"https://literaljs.com/"},{"name":"maquette-v3.3.0-non-keyed","dir":"non-keyed/maquette","keyed":false,"frameworkHomeURL":"https://maquettejs.org/"},{"name":"mikado-v0.8.327-non-keyed","dir":"non-keyed/mikado","keyed":false,"frameworkHomeURL":"https://github.com/nextapps-de/mikado/"},{"name":"mimbl-v0.10.4-non-keyed","dir":"non-keyed/mimbl","keyed":false,"frameworkHomeURL":"https://mimjs.com/"},{"name":"miso-v1.4.0-non-keyed","dir":"non-keyed/miso","keyed":false,"issues":[1139],"frameworkHomeURL":"https://haskell-miso.org/"},{"name":"mogwai-v0.6.5-non-keyed","dir":"non-keyed/mogwai","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/schell/mogwai"},{"name":"mutraction-v0.25.0-non-keyed","dir":"non-keyed/mutraction","keyed":false,"frameworkHomeURL":"https://mutraction.dev/"},{"name":"openui5-v1.120.0-non-keyed","dir":"non-keyed/openui5","keyed":false,"issues":[1139],"frameworkHomeURL":"https://openui5.org/"},{"name":"quel-v0.9.51-non-keyed","dir":"non-keyed/quel","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/mogera551/quel"},{"name":"ractive-v1.3.6-non-keyed","dir":"non-keyed/ractive","keyed":false,"frameworkHomeURL":"https://ractive.js.org/"},{"name":"react-classes-v18.2.0-non-keyed","dir":"non-keyed/react-classes","keyed":false,"frameworkHomeURL":"https://www.reactjs.org"},{"name":"redom-v3.29.0-non-keyed","dir":"non-keyed/redom","keyed":false,"issues":[772],"frameworkHomeURL":"https://redom.js.org/"},{"name":"reflex-dom-v0.4-non-keyed","dir":"non-keyed/reflex-dom","keyed":false,"frameworkHomeURL":"https://reflex-frp.org/"},{"name":"reken-v0.9.6-non-keyed","dir":"non-keyed/reken","keyed":false,"issues":[1139],"frameworkHomeURL":"https://reken.dev"},{"name":"riot-v9.1.4-non-keyed","dir":"non-keyed/riot","keyed":false,"frameworkHomeURL":"https://riot.js.org/"},{"name":"san-v3.12.2-non-keyed","dir":"non-keyed/san","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://baidu.github.io/san/"},{"name":"scarlets-frame-v0.34.6-non-keyed","dir":"non-keyed/scarlets-frame","keyed":false,"issues":[800,1139],"frameworkHomeURL":"https://github.com/ScarletsFiction/ScarletsFrame"},{"name":"seed-v0.8.0-non-keyed","dir":"non-keyed/seed","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/seed-rs/seed"},{"name":"slim-js-v5.0.8-non-keyed","dir":"non-keyed/slim-js","keyed":false,"issues":[1139],"frameworkHomeURL":"https://slimjs.com/#/welcome"},{"name":"slingjs-v21.0.1-non-keyed","dir":"non-keyed/slingjs","keyed":false,"frameworkHomeURL":"https://github.com/puckowski/Sling.js"},{"name":"sprae-v8.1.2-non-keyed","dir":"non-keyed/sprae","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/dy/sprae"},{"name":"stdweb-v0.4.17-non-keyed","dir":"non-keyed/stdweb","keyed":false,"issues":[772,1139],"frameworkHomeURL":"https://docs.rs/stdweb/latest/stdweb/"},{"name":"strve-v5.6.2-non-keyed","dir":"non-keyed/strve","keyed":false,"frameworkHomeURL":"https://maomincoding.github.io/strve-doc/"},{"name":"svelte-classic-v5.0.0-next.64-non-keyed","dir":"non-keyed/svelte-classic","keyed":false,"frameworkHomeURL":"https://svelte.dev/"},{"name":"udomsay-esx-v0.4.9-non-keyed","dir":"non-keyed/udomsay-esx","keyed":false,"issues":[772],"frameworkHomeURL":"https://github.com/WebReflection/udomsay"},{"name":"uhtml-v4.4.1-non-keyed","dir":"non-keyed/uhtml","keyed":false,"issues":[801],"frameworkHomeURL":"https://github.com/WebReflection/uhtml"},{"name":"ui5-webcomponents-v1.3.1-non-keyed","dir":"non-keyed/ui5-webcomponents","keyed":false,"issues":[1139],"frameworkHomeURL":"https://sap.github.io/ui5-webcomponents/"},{"name":"vanillajs-non-keyed","dir":"non-keyed/vanillajs","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"vanillajs-1-non-keyed","dir":"non-keyed/vanillajs-1","keyed":false,"issues":[772],"frameworkHomeURL":""},{"name":"voby-v0.48.0-non-keyed","dir":"non-keyed/voby","keyed":false,"issues":[1139],"frameworkHomeURL":"https://github.com/vobyjs/voby"},{"name":"vue-v3.4.21-non-keyed","dir":"non-keyed/vue","keyed":false,"frameworkHomeURL":"https://vue.js.org/"},{"name":"vue-vapor-v3.2024.0-83641f7-non-keyed","dir":"non-keyed/vue-vapor","keyed":false,"frameworkHomeURL":"https://vuejs.org/"}]; export const benchmarks = [{"id":"01_run1k","label":"create rows","description":"creating 1,000 rows. (5 warmup runs).","type":0},{"id":"02_replace1k","label":"replace all rows","description":"updating all 1,000 rows. (5 warmup runs).","type":0},{"id":"03_update10th1k_x16","label":"partial update","description":"updating every 10th row for 1,000 row. (3 warmup runs). 4 x CPU slowdown.","type":0},{"id":"04_select1k","label":"select row","description":"highlighting a selected row. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"05_swap1k","label":"swap rows","description":"swap 2 rows for table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"06_remove-one-1k","label":"remove row","description":"removing one row. (5 warmup runs). 2 x CPU slowdown.","type":0},{"id":"07_create10k","label":"create many rows","description":"creating 10,000 rows. (5 warmup runs).","type":0},{"id":"08_create1k-after1k_x2","label":"append rows to large table","description":"appending 1,000 to a table of 1,000 rows. (5 warmup runs).","type":0},{"id":"09_clear1k_x8","label":"clear rows","description":"clearing a table with 1,000 rows. (5 warmup runs). 4 x CPU slowdown.","type":0},{"id":"21_ready-memory","label":"ready memory","description":"Memory usage after page load.","type":1},{"id":"22_run-memory","label":"run memory","description":"Memory usage after adding 1,000 rows.","type":1},{"id":"23_update5-memory","label":"update every 10th row for 1k rows (5 cycles)","description":"Memory usage after clicking update every 10th row 5 times","type":1},{"id":"25_run-clear-memory","label":"creating/clearing 1k rows (5 cycles)","description":"Memory usage after creating and clearing 1000 rows 5 times","type":1},{"id":"26_run-10k-memory","label":"run memory 10k","description":"Memory usage after adding 10,000 rows.","type":1},{"id":"41_size-uncompressed","label":"uncompressed size","description":"uncompressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"42_size-compressed","label":"compressed size","description":"brotli compressed size of all implementation files (excluding /css and http headers)","type":5},{"id":"43_first-paint","label":"first paint","description":"first paint","type":5}]; diff --git a/webdriver-ts/results.json b/webdriver-ts/results.json index 714a08d4e..a18639c89 100644 --- a/webdriver-ts/results.json +++ b/webdriver-ts/results.json @@ -1 +1 @@ -[{"framework":"alpine-v3.12.0-keyed","benchmark":"01_run1k","values":{"total":[103.607,102.254,102.591,103.227,103.918,107.872,106.871,106.214,109.419,107.731,105.471,106.149,106.285,106.437,107.222],"script":[68.895,67.427,67.459,68.012,68.903,69.495,70.204,69.632,71.934,70.247,69.31,69.715,69.909,70.139,70.882],"paint":[34.232,34.351,34.657,34.756,34.555,37.887,36.129,36.05,36.972,37.009,35.676,35.952,35.9,35.832,35.864]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"02_replace1k","values":{"total":[125.675,126.615,125.484,126.377,127.919,129.478,128.177,126.176,128.629,128.274,128.225,125.961,126.01,127.082,125.97],"script":[90.378,93.931,91.434,92.303,94.46,95.374,95.313,91.875,93.746,95.624,95.219,91.899,92.24,94.267,93.084],"paint":[34.686,32.034,33.518,33.557,32.941,33.576,32.348,33.777,34.37,32.132,32.491,33.538,33.214,32.308,32.375]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.216,22.378,22.123,24.056,22.349,22.594,22.218,22.033,26.049,22.659,22.544,21.581,22.753,21.603,22.277],"script":[5.201,4.837,4.888,4.848,4.539,5.205,4.658,4.766,4.842,4.706,5.021,4.707,5.082,4.914,4.943],"paint":[15.481,15.429,15.773,17.804,16.272,15.652,16.054,15.928,18.977,15.993,15.894,15.488,16.148,14.654,15.047]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"04_select1k","values":{"total":[36.747,36.725,34.089,33.967,36.758,33.631,36.617,40.243,37.58,35.255,36.84,37.012,36.843,34.378,33.205,36.281,34.098,34.895,33.844,34.453,34.041,33.738,35.621,33.985,32.594],"script":[29.336,30.715,29.819,30.498,29.261,29.576,29.702,32.31,31.515,30.687,31.767,32.738,32.832,30.689,30.392,30.03,30.665,31.569,30.34,30.842,30.665,30.659,31.81,30.607,29.46],"paint":[6.249,5.525,3.252,2.581,5.735,3.154,5.764,6.926,5.134,4.33,3.159,2.848,2.699,2.793,1.61,5.3,2.618,2.44,2.255,2.742,2.007,2.239,2.335,3.186,2.143]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"05_swap1k","values":{"total":[35.981,33.578,32.108,33.094,33.526,32.616,33.118,34.254,32.774,34.354,34.193,34.011,32.586,33.577,33.461],"script":[12.639,13.3,12.353,13.01,12.881,12.131,12.285,13.715,12.462,12.749,13.315,13.01,12.067,13.359,13.104],"paint":[20.891,19.024,18.384,18.237,18.782,18.475,19.479,18.653,18.096,19.171,18.228,19.154,18.986,18.836,18.748]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.704,24.981,24.282,24.219,24.421,24.02,24.072,24.29,24.384,24.221,24.989,23.986,23.892,24.178,26.632],"script":[8.649,8.396,8.369,8.258,8.138,8.205,8.13,8.188,8.043,8.285,8.284,8.011,7.52,8.229,8.308],"paint":[14.779,15.495,14.876,14.947,15.36,14.789,15.169,15.052,15.583,14.7,15.733,15.094,15.343,14.936,17.521]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"07_create10k","values":{"total":[947.253,941.109,939.441,941.708,936.228,932.425,943.091,943.124,942.337,939.233,935.55,917.989,917.258,948.936,935.121],"script":[583.398,589.414,589.875,588.497,585.727,581.678,591.654,590.298,584.783,588.118,584.933,565.909,567.488,591.836,581.664],"paint":[356.865,344.775,342.423,346.369,343.58,343.82,344.533,345.15,350.67,344.245,343.679,345.22,342.854,350.185,346.631]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[119.145,122.647,118.164,119.258,119.248,119.22,117.88,119.267,118.915,118.937,118.59,118.347,119.077,119.633,119.166],"script":[80.514,83.019,80.482,81.704,80.86,80.402,80.195,82.121,82.268,82.059,81.042,81.228,81.512,80.218,81.814],"paint":[37.652,38.666,36.707,36.581,37.438,37.755,36.718,36.169,35.702,35.925,36.572,36.158,36.582,38.216,36.385]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[53.849,52.829,52.801,52.977,52.313,53.284,52.711,52.509,52.398,51.392,50.835,50.894,51.945,54.888,51.577],"script":[51.64,49.996,50.787,50.783,50.35,51.165,50.668,50.05,50.198,48.761,48.592,49.297,49.762,52.024,49.995],"paint":[1.241,1.585,1.392,2.054,1.303,1.978,1.507,2.314,1.478,1.688,2.104,1.465,1.423,1.461,0.935]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6623735427856445]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[13.917808532714844]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.029696464538574]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5181503295898438]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[128.82764625549316]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7734375]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.576171875]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.9]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[54.37,55.43,56.193,57.707,56.183,56.953,57.094,57.772,57.703,57.515,56.645,55.272,56.629,55.74,55.919],"script":[19.759,21.275,20.78,22.091,20.708,21.436,21.356,21.475,21.895,20.568,21.452,19.588,21.326,20.794,20.925],"paint":[34.191,33.713,34.993,35.191,35.036,35.101,35.298,35.847,35.378,36.515,34.76,35.231,34.857,34.485,34.516]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[68.309,70.936,66.799,69.121,68.242,67.256,68.034,66.842,69.719,71.703,70.363,69.611,70.722,70.61,67.167],"script":[31.321,33.484,31.323,32.294,30.912,31.389,31.39,30.522,31.107,32.87,31.321,31.293,31.344,31.861,31.393],"paint":[36.524,36.994,35.044,36.383,36.875,35.418,36.167,35.882,38.166,38.364,38.61,37.872,38.918,38.301,35.323]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.64,28.336,27.064,27.541,26.331,28.173,26.2,26.223,29.892,28.155,27.681,26.112,28.009,28.109,26.688],"script":[10.814,10.683,10.268,10.492,10.352,10.573,10.232,9.978,11.308,10.897,10.475,10.372,10.254,10.867,10.557],"paint":[17.208,15.987,14.239,15.68,13.839,16.299,14.139,15.251,16.247,15.175,16.166,14.579,16.414,15.666,14.533]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[11.757,11.661,11.334,10.756,11.606,11.365,12.142,11.771,12.381,11.086,11.707,12.404,11.448,10.884,12.287,12.112,11.893,12.422,11.769,12.196,10.866,11.491,12.031,11.763,12.308],"script":[8.831,8.252,8.49,8.184,9.175,9.349,8.705,8.706,8.762,8.71,8.708,8.52,8.716,8.653,9.131,9.339,8.629,8.444,8.992,9.486,8.817,9.015,9.334,9.036,9.196],"paint":[2.055,3.253,1.976,2.441,1.331,1.146,2.948,2.744,2.994,1.361,2.485,3.704,2.164,2.104,2.612,1.978,3.118,3.199,2.629,2.168,1.182,1.902,2.556,1.71,2.96]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[28.251,27.77,27.889,27.715,27.665,28.975,28.476,28.564,27.814,28.114,27.855,27.854,27.706,31.639,27.945],"script":[9.198,9.07,8.692,8.477,9.222,9.094,9.487,8.835,9.018,9.48,9.472,9.52,9.26,10.431,8.921],"paint":[17.208,17.668,17.078,18.463,17.627,17.902,17.887,17.96,17.149,17.064,16.851,17.054,16.834,19.894,17.195]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[109.721,106.542,109.547,107.459,108.409,108.922,107.581,108.452,108.507,107.021,107.658,106.712,107.627,108.471,108.369],"script":[36.156,35.697,37.157,36.196,35.989,35.936,36.8,36.655,36.054,35.529,36.267,35.324,36.528,36.258,35.928],"paint":[72.03,69.551,71.358,69.904,71.151,71.812,69.863,70.3,71.107,70.249,70.176,70.138,69.911,71.025,71.235]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[601.542,610.266,600.617,603.254,602.341,599.173,603.699,614.448,618.358,588.921,601.52,593.562,602.83,598.929,595.312],"script":[235.44,243.767,235.048,245.219,238.09,235.784,241.764,247.02,252.06,229.12,234.443,234.636,241.776,234.555,237.406],"paint":[359.296,359.795,358.905,351.093,357.561,356.742,355.255,360.788,359.413,353.163,360.346,352.318,354.397,357.712,351.237]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[71.213,71.177,69.939,69.811,70.625,70.132,69.728,69.887,69.813,70.315,70.936,69.857,70.435,69.26,70.586],"script":[30.618,31.021,30.508,30.347,31.17,29.946,30.153,30.369,30.54,30.414,31.211,30.226,31.218,29.86,30.99],"paint":[39.668,39.256,38.51,38.548,38.573,39.292,38.688,38.607,38.371,38.996,38.834,38.758,38.329,38.513,38.704]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.872,18.231,18.403,19.453,17.763,19.551,18.606,17.058,17.776,18.839,19.102,17.119,17.381,19.794,18.485],"script":[15.598,16.649,16.723,16.988,15.585,17.824,16.648,14.75,15.918,17.21,17.234,15.206,15.484,17.153,16.9],"paint":[1.252,1.069,1.202,1.752,1.409,1.62,1.643,1.884,1.283,1.523,1.423,1.624,1.073,2.542,1.481]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44365596771240234]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.599560737609863]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.491524696350098]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.826088905334473]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.56851291656494]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1123046875]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.4833984375]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.4]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"01_run1k","values":{"total":[44.889,44.044,45.891,44.714,44.762,45.363,46.007,44.772,44.555,44.064,43.682,45.863,43.279,46.656,44.323],"script":[9.657,9.25,10.202,10.053,10.152,10.273,9.926,9.672,9.447,9.099,8.851,10.352,9.091,9.809,9.519],"paint":[34.807,34.372,35.259,34.218,34.184,34.661,35.668,34.669,34.695,34.544,34.397,35.085,33.76,36.417,34.367]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"02_replace1k","values":{"total":[56.046,53.898,55.218,54.382,54.087,54.766,54.793,54.183,55.739,55.801,55.502,54.111,54.119,54.022,54.412],"script":[16.937,16.133,16.407,16.041,15.916,15.959,16.194,16.118,16.365,17.282,16.716,15.929,16.342,16.107,16.423],"paint":[38.636,37.287,38.337,37.847,37.613,38.328,38.11,37.588,38.86,38.067,38.311,37.715,37.305,37.449,37.522]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.87,17.233,17.348,19.222,17.287,17.048,17.302,17.731,18.153,18.063,18.623,18,17.482,16.64,17.523],"script":[1.493,1.514,1.842,2.73,1.961,1.35,1.506,2.347,1.752,1.77,2.083,2.309,2.066,1.046,1.961],"paint":[14.521,14.662,13.98,14.989,14.263,14.15,13.659,13.758,13.547,14.546,15.387,13.587,13.737,14.622,13.985]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"04_select1k","values":{"total":[3.655,3.902,3.912,3.523,3.918,3.513,3.41,3.762,4.143,3.86,3.794,4.57,3.951,4.312,3.328,3.939,3.899,4.222,3.747,3.688,4.177,3.823,3.726,4.934,3.939],"script":[1.275,1.542,1.514,1.016,0.631,1.304,0.918,1.053,1.532,1.559,1.284,1.312,1.276,0.916,1.143,1.259,1.065,1.348,1.241,1.737,1.262,1.358,0.676,1.865,1.274],"paint":[2.294,2.266,1.91,1.772,3.192,1.347,2.397,2.257,2.086,2.142,2.417,2.857,2.579,3.299,2.078,1.678,2.739,2.37,1.986,1.86,1.92,1.836,2.961,2.78,1.704]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"05_swap1k","values":{"total":[20.385,19.744,19.835,19.935,21.784,19.465,20.465,19.685,20.039,20.317,20.009,19.967,21.443,19.404,20.202],"script":[1.806,1.117,1.724,1.488,1.658,1.037,1.569,1.265,1.637,1.353,2.097,1.437,1.019,1.313,1.718],"paint":[16.362,17.122,17.369,17.742,18.617,16.954,17.517,16.72,17.2,17.344,16.671,16.709,17.931,16.76,17.492]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.967,16.079,15.913,15.921,15.746,15.94,15.515,15.751,17.35,15.485,15.87,16.13,15.905,16.018,16.159],"script":[1.097,1.1,1.071,1.07,0.928,1.035,0.775,1.002,0.963,0.777,1.102,0.845,0.965,1.097,1.071],"paint":[14.171,13.966,14.142,14.166,14.125,14.017,13.824,14.054,15.325,13.829,14.079,14.548,14.247,14.163,14.215]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"07_create10k","values":{"total":[452.838,445.978,452.346,445.026,444.628,445.789,447.831,447.077,448.97,442.659,449.835,447.42,445.271,444.143,444.344],"script":[101.376,102.436,106.789,100.778,100.802,101.97,101.889,101.978,101.531,100.493,103.619,103.02,101.567,100.321,101.813],"paint":[344.643,336.735,338.529,337.426,337.127,337.044,338.564,338.004,340.511,335.44,339.473,337.696,336.966,337.138,335.84]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.208,47.798,47.636,48.441,49.823,47.285,48.056,48.429,47.914,49.122,48.966,48.752,48.963,49.18,49.652],"script":[8.434,8.597,8.334,8.507,9.049,8.329,8.257,8.294,8.588,8.675,8.442,8.322,8.539,8.538,8.746],"paint":[38.888,38.278,38.41,39.053,39.856,38.077,38.861,39.261,38.424,39.546,39.627,39.537,39.525,39.676,40.028]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.394,24.243,24.258,24.109,24.933,25.528,24.029,24.091,24.293,25.059,23.381,24.321,23.732,22.652,23.421],"script":[22.561,22.435,22.316,21.888,22.914,23.967,21.873,22.352,22.396,22.999,21.272,22.225,22.066,20.946,21.514],"paint":[0.9,1.705,1.838,2.11,1.766,1.438,1.296,1.43,1.029,1.961,1.661,1.989,0.726,0.764,1.82]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.406661033630371]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.666803359985352]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.87972354888916]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.193966865539551]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.7732515335083]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[137.7392578125]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[42.990234375]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[198.2]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"01_run1k","values":{"total":[45.075,44.244,45.397,45.282,44.363,44.21,44.132,44.033,44.077,44.065,44.139,43.954,44.668,44.07,44.942],"script":[9.1,8.493,9.062,9.393,8.682,8.46,8.615,8.691,8.844,8.845,8.767,8.852,8.729,8.957,9.04],"paint":[35.527,35.309,35.887,35.444,35.25,35.31,35.067,34.915,34.814,34.781,34.937,34.66,35.471,34.687,35.473]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"02_replace1k","values":{"total":[51.087,50.573,50.414,51.577,50.772,51.155,51.606,51.441,51.291,51.273,52.817,50.597,52.015,51.117,50.892],"script":[14.469,14.182,14.528,14.472,14.288,14.167,13.97,14.384,14.599,14.038,15.146,13.541,14.257,14.355,14.129],"paint":[36.16,35.953,35.438,36.669,36.046,36.535,37.172,36.554,36.245,36.794,37.202,36.608,37.318,36.301,36.3]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.988,18.64,17.21,17.53,17.25,17.156,16.74,17.931,17.895,17.511,17.338,17.411,17.432,17.636,16.935],"script":[2.41,1.935,1.598,1.855,2.239,2.071,1.333,2.456,1.87,1.595,1.586,1.948,1.507,2.146,1.629],"paint":[13.208,14.484,14.185,13.834,13.79,13.381,14.089,13.849,14.495,14.557,13.408,14.067,14.6,12.435,14.234]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"04_select1k","values":{"total":[3.942,4.52,3.741,3.661,3.666,4.042,4.73,4.004,3.795,3.515,4.143,3.722,4.667,3.756,4.202,4.393,4.589,3.506,3.941,4.287,3.471,3.981,3.298,3.948,4.224],"script":[1.571,1.255,1.014,1.326,0.926,1.484,1.545,0.907,1.291,1.238,1.895,1.709,1.702,0.981,1.555,1.493,1.466,0.987,1.459,1.944,1.549,1.928,1.138,1.519,1.277],"paint":[1.625,3.172,2.303,2.235,2.657,1.564,2.875,2.466,2.406,1.389,1.788,1.915,2.855,1.689,1.979,2.737,1.965,1.621,2.391,2.245,1.823,1.955,2.062,2.195,2.85]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"05_swap1k","values":{"total":[20.642,20.305,21.28,19.827,20.53,20.736,21.671,19.69,19.176,19.505,19.938,19.901,21.285,19.693,19.755],"script":[1.786,1.83,2.315,1.314,1.968,1.701,0.988,1.569,1.062,1.565,1.587,1.378,1.587,1.764,1.489],"paint":[17.123,17.181,16.994,17.462,17.452,17.707,19.322,16.674,17,16.352,17.047,17.372,17.869,16.394,16.723]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.731,15.979,15.898,15.842,16.295,15.942,15.993,15.854,15.965,15.72,15.876,16.726,16.009,15.969,15.981],"script":[0.908,0.904,1.039,1.019,0.842,1.074,0.917,1.08,0.732,0.899,0.969,0.766,0.993,1.041,1.017],"paint":[13.998,14.371,14.159,14.082,14.589,13.863,14.377,14.093,14.489,14.15,14.193,14.961,14.293,14.227,14.242]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"07_create10k","values":{"total":[441.104,442.817,445.865,446.514,450.346,443.621,440.538,442.616,440.573,445.996,442.315,445.258,450.994,444.511,440.3],"script":[90.95,91.861,92.569,91.628,92.326,92.672,91.7,92.025,91.643,91.749,91.925,93.761,93.204,92.185,91.334],"paint":[343.474,344.112,346.31,348.319,351.077,344.06,342.171,343.902,342.262,347.352,343.761,344.815,351.155,345.668,342.3]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.234,48.215,48.979,48.771,48.865,48.601,48.286,49.051,49.254,49.881,48.443,48.45,48.94,47.534,47.125],"script":[8.768,7.877,8.138,8.112,7.761,7.963,7.786,8.4,7.912,8.258,8.199,8.041,8.261,7.792,7.832],"paint":[39.51,39.375,39.871,39.734,40.158,39.747,39.611,39.725,40.422,40.711,39.333,39.479,39.542,38.812,38.372]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.865,20.632,22.387,20.846,21.663,24.1,20.885,20.869,21.827,21.1,20.19,21.553,19.467,21.24,21.742],"script":[19.994,18.933,19.752,18.763,19.862,20.832,19.394,18.668,20.286,18.949,18.665,19.586,17.768,18.758,19.199],"paint":[1.24,1.603,2.486,1.993,1.704,2.64,1.388,2.113,1.45,1.931,1.414,1.835,1.597,2.381,2.454]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9627647399902344]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5691938400268555]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.726968765258789]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6038713455200195]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.216822624206543]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[105.8125]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.48828125]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[151.2]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"01_run1k","values":{"total":[44.338,44.53,43.096,44.903,43.607,42.76,42.378,44.063,44.449,46.013,45.162,43.11,45.172,43.544,45.183],"script":[9.596,9.859,9.504,10.097,9.369,8.954,9.127,9.207,9.753,9.785,9.616,9.403,9.525,9.259,9.826],"paint":[34.299,34.168,33.168,34.357,33.82,33.381,32.833,34.423,34.264,35.824,35.044,33.278,35.212,33.86,34.94]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"02_replace1k","values":{"total":[55.033,55.022,54.374,54.626,54.914,54.488,54.313,54.482,55.376,54.803,54.562,54.393,55.126,55.074,55.593],"script":[16.842,16.871,16.245,16.198,16.462,16.42,16.485,16.787,16.9,16.565,16.501,16.453,16.604,16.758,17.125],"paint":[37.658,37.67,37.658,37.945,37.974,37.59,37.34,37.229,38.012,37.769,37.599,37.471,38.029,37.866,37.989]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.34,18.269,18.09,17.589,17.401,17.882,17.352,17.893,17.325,18.872,18.234,17.635,18.989,17.685,18.11],"script":[2.279,2.653,2.437,1.956,1.508,3.343,2.75,2.57,2.273,3.029,2.39,2.748,2.391,2.256,2.895],"paint":[14.244,14.698,14.594,12.769,14.149,12.378,13.577,13.735,13.822,14.565,14.183,12.887,13.799,14.414,13.836]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"04_select1k","values":{"total":[5.705,5.239,5.042,6.119,5.405,5.792,5.44,7.018,5.706,5.17,5.337,5.646,5.665,5.315,5.802,6.015,5.773,6.32,6.053,5.886,5.868,5.528,6.108,4.953,5.81],"script":[2.197,2.281,1.899,2.521,2.337,1.516,2.394,3.082,2.522,2.214,2.26,2.175,2.294,2.299,2.511,2.775,2.403,2.897,2.539,2.229,2.713,2.393,2.6,1.56,2.636],"paint":[2.267,2.161,2.484,2.453,2.132,3.228,2.905,3.774,3.029,2.79,2.235,2.784,2.89,2.878,3.069,3,3.087,2.694,2.998,2.791,1.886,2.997,3.376,2.139,3.038]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"05_swap1k","values":{"total":[21.488,20.328,19.373,20.596,21.248,19.4,19.407,19.825,19.46,19.073,18.94,19.953,19.717,18.778,19.91],"script":[1.828,1.121,1.213,1.282,1.41,1.779,1.283,0.999,1.652,1.535,1.115,1.412,1.425,1.248,1.778],"paint":[18.094,18.095,16.484,18.079,17.965,16.481,16.578,17.062,16.762,16.214,15.993,17.128,17.298,15.852,16.919]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.05,17.554,16.911,18.388,16.967,17.557,17.677,17.257,18.104,19.322,18.696,18.103,18.238,18.581,17.956],"script":[1.297,1.519,1.343,1.318,1.429,1.345,1.627,1.329,1.375,1.599,1.518,1.349,1.456,1.574,1.198],"paint":[14.985,14.97,14.767,16.231,14.776,15.217,15.013,15,15.869,16.6,16.302,15.659,15.302,15.993,16]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"07_create10k","values":{"total":[450.625,451.611,448.179,452.474,450.697,453.732,450.589,454.596,451.244,450.347,457.048,459.099,452.868,449.202,450.091],"script":[103.289,104.552,103.482,104.236,104.686,104.126,103.86,106.387,104.252,105.157,110.143,111.193,103.312,103.209,104.272],"paint":[340.449,340.297,337.759,341.452,339.264,342.326,340.026,341.478,340.316,338.226,340.02,341.026,342.673,339.129,338.95]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.739,49.65,50.588,49.052,50.957,49.469,49.914,48.677,51.271,48.577,49.4,50.003,49.417,49.547,51.37],"script":[9.083,8.901,9.032,8.898,9.826,9.21,9.111,9.111,9.782,9.059,8.991,9.368,9.065,9.058,9.363],"paint":[39.765,39.847,40.633,39.23,40.167,39.355,39.895,38.659,40.55,38.615,39.504,39.716,39.34,39.579,41.049]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.017,24.562,24.413,24.533,23.785,24.229,24.832,23.381,23.739,24.368,25.021,23.874,24.595,25.284,23.886],"script":[21.488,22.673,22.019,22.904,21.712,22.236,22.483,21.237,21.644,22.776,23.066,21.868,22.521,23.401,22.279],"paint":[1.799,1.778,2.025,1.523,1.963,1.831,1.481,2.051,1.364,0.702,1.323,1.529,1.677,1.782,1.052]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4137916564941406]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.768803596496582]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.942601203918457]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2640390396118164]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.996676445007324]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[139.2041015625]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[43.427734375]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[198.2]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"01_run1k","values":{"total":[45.351,47.489,45.138,46.255,45.693,45.588,45.233,47.09,45.479,45.824,44.418,46.041,45.782,45.516,45.56],"script":[10.089,11.08,10.589,10.213,10.508,10.72,10.664,11.01,10.352,10.386,10.744,10.524,10.525,10.461,11.06],"paint":[34.815,35.984,34.111,35.331,34.747,34.425,34.116,35.637,34.692,35.011,33.245,35.086,34.829,34.633,34.09]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"02_replace1k","values":{"total":[54.622,55.235,54.833,54.493,53.816,54.999,55.274,56.328,55.556,54.518,54.796,54.865,54.954,54.036,55.254],"script":[16.526,17.301,16.5,16.442,16.597,16.907,16.425,16.382,16.509,16.48,16.625,16.752,16.401,16.365,16.274],"paint":[37.609,37.45,37.861,37.571,36.752,37.622,38.358,39.465,38.554,37.571,37.707,37.624,38.083,37.188,38.501]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.643,17.032,19.926,17.517,17.657,17.904,17.794,17.376,16.736,19.016,18.256,18.711,16.848,17.172,17.576],"script":[1.674,1.832,2.067,2.271,2.154,1.238,1.215,1.648,1.762,2.113,2.193,2.013,1.547,1.867,2.096],"paint":[16.019,14.35,16.122,13.926,14.553,15.283,14.986,14.547,13.43,15.507,14.411,15.17,13.675,14.126,13.854]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"04_select1k","values":{"total":[3.901,4.295,3.947,3.664,3.85,4.19,4.366,4.078,4.313,4.373,3.889,3.689,4.141,4.171,3.676,4.937,4.295,3.7,3.935,3.85,3.752,3.884,3.884,3.484,3.495],"script":[1.564,1.701,1.244,1.391,1.263,1.46,1.781,1.467,1.574,1.713,0.773,0.947,1.151,1.523,1.41,1.58,2.041,1.188,1.848,1.402,1.042,1.092,1.4,0.963,0.964],"paint":[2.244,1.839,2.242,1.804,2.492,1.958,2.487,2.518,2.631,1.252,2.845,1.712,1.876,2.56,1.624,2.8,1.67,2.408,1.988,2.355,2.419,2.701,2.388,2.115,2.434]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"05_swap1k","values":{"total":[174.157,168.981,171.799,170.208,168.986,169.787,170.059,168.426,169.835,170.015,169.497,170.325,175.266,174.904,173.727],"script":[28.343,27.889,28.507,27.344,27.634,27.999,28.232,28.244,27.557,28.501,27.321,27.691,28.203,29.174,28.114],"paint":[143.746,139.476,142.502,140.769,139.352,140.182,140.075,138.317,140.208,138.923,139.868,141.024,144.123,144.593,143.242]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.634,16.224,16.03,16.039,16.318,16.313,16.863,16.025,15.948,15.961,16.07,15.92,16.029,15.943,16.03],"script":[1.047,1.131,0.938,0.84,0.928,0.84,1.128,1.017,0.779,0.92,0.924,1.061,0.909,1.102,1.096],"paint":[14.146,14.386,14.421,14.246,14.706,14.691,14.746,14.306,14.547,14.368,14.391,13.896,14.143,13.847,13.913]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"07_create10k","values":{"total":[454.042,452.019,451.221,453.252,456.209,451.414,448.799,450.313,456.832,449.676,452.098,451.186,449.079,450.811,457.115],"script":[102.658,103.97,103.924,108.447,108.995,107.089,103.592,107.938,105.998,103.14,106.055,103.758,103.931,102.341,110.041],"paint":[344.446,341.028,340.398,338.106,340.476,337.561,338.224,335.612,343.933,339.619,339.111,340.056,338.174,341.41,340.333]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.544,48.672,49.648,50.894,49.101,50.479,48.394,50.022,50.406,49.054,49.016,49.454,51.544,49.743,49.673],"script":[9.136,8.88,8.96,9.401,8.922,9.387,8.997,9.213,9.698,8.984,8.996,9.344,9.751,9.044,9.304],"paint":[40.5,38.895,39.845,40.585,39.289,40.182,38.503,39.914,39.777,39.165,39.113,39.193,40.845,39.737,39.453]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.718,25.931,25.559,26.223,25.935,25.651,25.301,26.114,26.098,27.077,26.419,27.16,27.411,27.063,26.949],"script":[24.49,23.972,23.403,24.512,23.997,23.77,24.027,24.602,24.324,25.023,24.245,25.154,24.329,24.301,24.563],"paint":[2.092,1.342,2.032,1.274,1.833,1.769,0.823,1.422,0.825,1.939,0.769,1.737,1.429,2.644,1.894]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4721183776855469]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.920070648193359]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.068483352661133]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.473480224609375]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.3015079498291]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[147.0751953125]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.1875]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205.4]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"01_run1k","values":{"total":[46.945,47.197,44.759,46.455,44.185,44.403,45.68,46.573,44.763,45.976,46.242,46.308,46.251,47.388,45.505],"script":[11.194,11.406,10.306,11.982,10.153,10.423,11.09,11.147,10.752,11.114,10.928,10.866,11.133,11.248,10.476],"paint":[35.316,35.339,33.996,34.001,33.594,33.557,34.122,35,33.577,34.42,34.882,35.028,34.693,35.684,34.602]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"02_replace1k","values":{"total":[52.614,52.562,54.222,53.926,54.324,53.719,53.767,55.216,55.673,52.451,53.978,53.771,54.515,54.91,54.586],"script":[17.004,16.454,17.162,17.665,16.938,17.447,17.6,17.689,17.872,16.63,17.663,17.431,17.824,18.399,16.461],"paint":[35.147,35.64,36.585,35.816,36.943,35.822,35.703,37.071,37.311,35.368,35.862,35.896,36.238,36.037,37.697]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[56.94,56.19,56.117,56.26,55.488,55.212,54.329,55.851,56.149,56.551,56.219,53.907,55.096,59.647,55.857],"script":[40.534,39.236,39.405,38.852,39.153,37.988,37.517,39.227,39.247,38.329,39.287,37.57,38.194,40.844,37.98],"paint":[14.739,15.5,14.671,16.045,14.385,15.751,15.361,15.283,15.384,16.766,14.912,14.797,15.747,16.556,15.933]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"04_select1k","values":{"total":[40.856,39.771,40.844,39.658,41.599,40.51,38.665,38.869,39.828,40.238,38.752,40.711,39.721,39.585,39.501,40.783,38.283,38.386,38.993,40.453,39.169,36.604,40.17,40.421,41.711],"script":[36.804,36.451,37.021,36.1,37.379,37.067,34.386,35.047,35.568,36.296,34.79,36.623,35.716,35.189,35.271,36.803,34.857,35.227,34.314,36.804,35.846,32.876,36.507,36.644,38.335],"paint":[2.588,1.974,2.749,2.252,3.097,2.727,2.48,2.618,3.6,3.102,3.335,2.936,2.776,2.244,3.235,2.964,2.404,2.067,3.454,2.679,2.208,2.732,2.538,2.762,2.653]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"05_swap1k","values":{"total":[55.499,56.166,56.161,53.612,53.7,56.018,55.134,54.609,54.858,55.045,54.683,55.379,54.721,54.675,53.836],"script":[36.206,36.62,37.415,34.798,34.414,36.298,34.552,35.179,35.553,36.61,35.366,36.147,35.801,34.921,35.079],"paint":[17.593,18.428,17.715,17.749,17.026,18.315,19.199,18.113,17.693,16.59,17.438,17.729,16.693,17.727,17.513]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[123.214,122.717,122.118,119.768,120.84,120.596,122.006,119.961,120.416,122.904,120.289,121.156,121.141,121.898,124.057],"script":[49.069,51.255,49.751,48.157,48.558,48.413,50.533,48.534,48.393,50.876,48.471,49.006,49.63,49.831,49.034],"paint":[72.738,70.582,71.107,70.52,70.722,70.8,70.009,70.516,70.793,71.089,70.685,70.837,70.289,70.655,73.83]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"07_create10k","values":{"total":[488.535,491.712,488.045,474.012,489.716,488.971,491.376,488.359,488.716,489.745,497.135,488.893,491.193,492.703,473.195],"script":[138.271,139.831,140.214,139.885,138.918,139.474,141.169,138.372,139.613,142.415,142.926,141.059,140.275,140.685,139.697],"paint":[343.453,344.833,340.921,327.522,344.106,342.791,343.342,343.362,342.214,340.602,347.384,340.787,343.713,345.185,326.803]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.883,62.86,62.774,62.146,62.831,62.503,63.179,62.604,64.196,62.343,63.14,60.534,62.578,63.256,62.497],"script":[21.9,21.738,21.252,21.057,22.373,22.07,22.61,22.398,23.129,21.883,22.621,20.714,21.49,22.215,21.886],"paint":[40.066,40.232,40.527,40.196,39.542,39.499,39.678,39.306,40.182,39.561,39.625,38.925,40.165,40.033,39.699]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.929,15.456,16.359,18.261,15.419,16.897,15.575,17.006,15.458,17.338,16.53,16.738,17.371,16,15.374],"script":[15.169,13.507,14.679,16.407,13.438,15.548,13.486,15.215,13.615,15.468,14.636,14.947,15.563,14.619,13.573],"paint":[1.659,1.862,0.783,0.883,0.96,0.867,1.838,0.988,0.904,1.788,1.616,0.907,1.718,0.357,1.706]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5494728088378906]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.548704147338867]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8187255859375]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.768355369567871]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.974596977233887]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.1806640625]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.8984375]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[66]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[99.724,98.562,98.513,99.406,98.8,98.872,98.104,98.266,96.954,99.051,97.279,100.345,99.579,100.262,99.873],"script":[62.441,61.203,60.188,61.019,61.544,61.537,60.545,60.268,60.214,61.774,60.57,62.729,61.405,62.299,61.917],"paint":[37.075,37.153,38.114,38.19,37.042,37.124,37.346,37.797,36.533,37.075,36.515,37.407,37.961,37.74,37.739]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[105.86,105.103,105.06,105.072,95.845,106.95,103.059,104.882,105.531,105.31,103.777,106.748,103.591,107.035,103.818],"script":[66.528,67.001,66.657,70.52,60.457,67.614,65.439,66.489,66.75,66.419,65.879,66.61,65.42,67.207,65.737],"paint":[39.106,37.885,38.158,34.182,35.169,38.926,37.392,38.167,38.55,38.681,37.672,39.933,37.962,39.443,37.854]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[45.739,50.779,50.558,51.948,51.326,50.778,49.147,47.62,47.968,48.056,49.397,47,49.908,47.781,47.714],"script":[29.643,31.654,31.91,32.855,33.377,32.015,33.132,31.34,30.871,32.056,30.716,30.249,31.828,31.517,31.436],"paint":[15.916,16.913,17.429,18.625,17.638,17.837,15.86,16.138,16.105,15.86,16.881,16.604,17.382,15.992,16.129]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[14.503,13.899,16.42,13.792,11.266,13.962,13.833,15.109,15.449,14.222,13.865,14.569,14.232,12.379,16.683,15.095,13.749,17.046,13.97,14.266,14.203,15.711,14.225,14.307,13.973],"script":[8.258,8.219,8.627,8.103,8.271,8.122,8.389,8.822,9.482,7.784,9.186,8.65,8.156,7.113,9.501,8.817,9.037,8.58,7.54,8.545,8.175,9.601,8.435,7.683,8.517],"paint":[4.33,4.849,4.463,4.444,2.783,3.612,4.428,4.209,4.81,4.251,3.153,3.688,4.871,5.071,5.694,5.768,4.389,7.095,3.692,3.691,5.152,4.29,5.284,4.637,3.236]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[54.881,52.954,53.218,53.77,53.799,54.857,53.326,54.655,54.722,54.884,55.946,53.493,54.874,55.034,52.826],"script":[32.699,30.633,30.925,30.924,31.804,32.537,31.393,33.198,32.476,33.263,31.569,33.269,32.897,31.474,30.821],"paint":[21.02,20.936,20.575,20.762,19.831,19.212,20.432,20.761,21.789,20.324,22.415,20.055,18.878,22.217,21.198]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[97.799,98.343,100.912,98.808,97.22,96.172,94.522,96.509,99.162,98.637,95.581,96.137,96.414,98.668,96.844],"script":[22.516,22.031,21.606,21.278,22.094,22.126,21.171,21.953,22.169,22.373,21.53,21.506,22.15,21.777,21.112],"paint":[73.762,73.838,77.464,76.221,73.992,72.343,71.786,73.005,74.972,74.092,73.027,73.533,73.004,75.377,74.467]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[824.702,836.585,830.455,823.319,818.271,826.739,835.293,828.248,825.699,835.859,831.548,819.188,834.022,826.018,828.963],"script":[459.854,469.67,466.55,455.589,454.812,461.888,467.273,466.151,460.556,467.847,463.116,454.898,469.019,458.375,463.758],"paint":[361.055,363.162,359.956,364.128,359.469,361.013,364.347,358.256,361.293,364.174,364.408,360.434,361.254,364.042,361.23]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[110.172,112.843,110.834,113.288,111.261,114.296,113.195,113.133,114.511,113.028,111.573,113.969,112.777,108.387,111.683],"script":[71.36,74.728,73.05,75.006,73.486,73.615,75.216,73.265,73.511,74.326,73.275,74.638,73.347,70.11,73.338],"paint":[38.38,37.732,37.393,37.886,37.391,40.172,37.591,39.482,40.362,38.321,37.901,38.682,39.03,37.871,37.974]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.702,21.772,19.17,24.947,23.432,25.13,22.046,21.394,23.005,21.755,25.714,25.376,22.482,22.677,25.336],"script":[22.458,19.489,17.06,20.557,18.835,20.442,20.664,19.354,18.226,19.49,20.897,19.769,20.983,18.093,20.528],"paint":[2.208,2.204,2.044,2.894,3.407,3.638,1.311,1.956,4.154,1.456,2.634,2.859,1.42,3.385,3.233]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5060567855834961]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.99211597442627]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.883932113647461]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.931705474853516]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[101.12662506103516]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.599609375]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.2685546875]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[43.849,42.663,42.954,44.531,43.57,44.537,42.966,43.008,43.842,44.837,45.387,45.445,44.129,43.043,43.964],"script":[10.347,9.894,9.845,11.007,10.037,10.287,9.884,10.028,10.561,10.126,10.751,10.71,9.841,10.046,10.778],"paint":[33.333,32.612,32.916,33.37,33.347,34.093,32.839,32.819,33.116,34.551,34.452,34.575,34.129,32.835,33.013]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[46.91,46.398,47.373,45.65,47.468,45.486,46.653,46.302,45.123,45.472,46.961,46.367,46.896,47.189,47.334],"script":[12.605,12.015,12.308,11.64,11.777,11.625,12.144,11.658,11.595,11.659,11.645,11.806,11.877,11.985,12.078],"paint":[34.12,34.171,34.874,33.813,34.787,33.693,34.331,34.445,33.343,33.598,35.111,34.373,34.809,35.016,35.066]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.001,20.838,20.616,21.881,20.964,20.706,21.342,21.803,21.594,22.705,22.569,23.873,21.972,24.267,20.918],"script":[6.955,6.715,6.302,6.837,7.281,6.779,6.841,7.069,6.22,6.842,6.27,6.868,7.956,7.242,6.048],"paint":[14.736,13.492,14.182,14.901,13.536,13.799,13.715,13.909,14.384,15.352,14.158,16.149,13.289,16.758,14.074]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[10.831,8.432,5.286,8.717,8.492,8.928,5.243,9.157,10.491,5.558,5.32,10.454,7.63,11.1,5.99,11.863,8.962,5.334,6.541,9.437,14.932,4.825,8.441,9.018,6.09],"script":[3.976,3.932,2.316,2.881,2.804,3.886,2.502,3.161,3.939,2.872,2.782,3.254,2.567,3.494,3.146,4.426,4.532,2.274,2.647,3.322,3.782,2.75,2.593,3.005,2.97],"paint":[4.51,3.018,1.672,4.619,3.854,4.116,2.595,4.028,3.359,1.852,1.846,4.185,2.554,4.086,2.699,3.462,5.159,2.745,1.827,3.394,3.999,1.937,2.527,4.689,2.532]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[23.643,25.909,20.696,22.207,40.62,39.413,20.945,42.628,25.456,20.925,20.076,27.581,45.43,43.651,21.457],"script":[3.642,2.089,2.195,3.349,1.817,2.719,1.903,2.394,2.134,3.062,2.361,2.587,3.467,2.21,3.347],"paint":[17.919,19.768,16.981,16.963,17.058,17.136,16.888,20.047,19.74,17.696,17.586,22.162,19.987,20.398,17.266]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.579,16.769,17.147,16.663,17.681,17.452,16.71,16.632,17.193,16.152,16.102,17.5,16.534,18.535,16.652],"script":[1.341,1.071,1.3,1.05,1.263,1.571,1.612,1.267,1.347,1.266,1.338,0.996,1.323,1.309,1.074],"paint":[15.272,14.408,14.829,14.34,14.776,14.637,13.811,14.13,14.601,14.191,14.135,14.929,14.071,15.45,14.137]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[434.699,431.927,433.205,430.933,427.767,431.417,428.045,437.208,434.271,431.459,433.923,435.237,429.833,432.7,431.701],"script":[101.128,101.361,101.156,100.913,100.423,97.597,98.698,102.503,101.356,99.078,102.049,102.371,99.638,100.69,99.678],"paint":[331.377,328.32,329.896,327.725,325.237,331.675,327.19,332.334,330.777,330.151,329.755,330.614,328.046,329.914,329.905]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.731,48.939,50.38,48.779,50.527,49.612,49.152,48.796,49.552,48.864,48.982,48.71,49.967,66.23,49.341],"script":[9.734,9.755,10.711,9.937,9.798,10.367,9.842,9.839,9.845,10.032,10.288,9.647,9.795,9.726,9.85],"paint":[39.723,38.87,39.362,38.558,40.413,38.936,39.005,38.652,38.911,38.417,38.384,38.752,39.894,38.64,39.203]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.937,12.324,12.463,12.281,12.487,16.311,14.669,14.81,12.508,15.301,12.277,12.387,15.504,12.376,12.4],"script":[10.87,10.141,10.592,9.828,9.399,11.507,10.664,11.292,10.048,11.019,10.958,11.023,11.082,10.988,9.928],"paint":[0.988,0.956,0.48,1.608,1.52,2.729,1.683,2.402,1.84,4.038,0.726,1.275,2.889,1.303,2.382]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5035724639892578]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7564563751220703]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8595104217529297]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.770045280456543]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.93278980255127]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3369140625]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.646484375]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.5]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"01_run1k","values":{"total":[61.77,61.509,60.838,62.542,61.001,63.572,61.572,60.454,62.332,60.534,61.519,61.049,62.441,62.208,61.633],"script":[24.53,24.15,24.589,24.028,24.371,26.3,23.925,23.218,24.905,24.08,25.053,23.809,24.76,25.019,24.724],"paint":[36.945,37.064,35.981,36.808,36.368,36.9,37.378,36.972,37.02,36.194,36.102,36.913,36.332,36.807,36.541]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"02_replace1k","values":{"total":[67.267,66.664,66.058,68.501,66.905,66.174,66.426,67.094,66.681,66.89,66.628,65.553,66.348,67.719,66.562],"script":[29.732,28.933,29.083,29.763,29.635,29.071,29.069,29.11,28.671,29.494,28.925,27.933,29.023,29.086,28.831],"paint":[37.093,37.166,36.716,38.233,36.816,36.834,36.886,37.476,37.486,36.947,37.201,37.076,37.06,38.085,37.209]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[63.55,64.287,63.11,64.334,63.7,63.34,63.823,64.909,62.924,63.769,63.589,62.794,64.824,63.816,63.782],"script":[45.69,44.949,45.134,45.557,44.501,45.244,45.741,47.455,44.932,45.736,46.072,45.412,46.58,45.641,45.064],"paint":[17.415,17.989,15.89,17.5,18.201,15.528,16.32,17.015,17.415,16.021,14.839,15.76,17.624,16.566,17.365]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"04_select1k","values":{"total":[42.431,42.712,41.213,40,39.934,38.9,38.6,39.669,40.732,40.296,42.134,40.48,41.34,43.101,40.918,42.318,40.123,41.159,41.511,41.68,42.365,40.377,42.039,43.534,41.322],"script":[35.155,36.81,35.191,34.537,34.271,32.61,32.425,33.667,34.394,34.366,36.813,34.251,34.967,37.231,33.77,36.677,33.93,34.469,34.68,35.458,35.293,34.366,33.955,37.697,35.283],"paint":[4.661,4.214,5.079,4.17,3.84,4.416,4.828,3.89,4.647,4.475,4.595,3.963,3.724,3.851,5.463,3.251,3.554,4.522,4.433,4.973,4.002,4.603,5.154,4.577,5.182]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"05_swap1k","values":{"total":[194.538,193.566,190.601,191.924,193.702,191.75,195.894,193.569,195.197,194.722,195.19,195.06,195.728,195.158,193.254],"script":[50.337,49.976,50.675,50.327,50.32,49.252,52.349,53.456,51.355,50.594,50.886,50.738,49.148,50.639,51.252],"paint":[142.713,142.958,138.104,139.503,141.328,139.179,141.355,138.39,142.339,141.606,143.538,142.551,143.53,142.95,141.499]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.433,35.21,35.513,35.343,34.975,35.119,34.532,35.332,35.553,35.984,35.963,36.654,35.514,34.894,35.915],"script":[16.99,17.334,17.571,17.399,17.537,17.493,17.313,17.83,17.533,17.738,17.178,17.673,17.395,17.378,18.036],"paint":[16.342,16.279,15.711,16.365,16.441,15.738,16.189,15.51,16.057,15.805,16.036,16.877,16.519,16.344,16.321]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"07_create10k","values":{"total":[563.178,557.531,559.658,559.331,556.443,559.141,561.367,557.649,554.091,555.741,554.547,570.324,560.571,563.415,563.578],"script":[211.752,207.971,208.611,209.863,207.242,212.752,211.927,211.327,207.819,207.943,206.972,212.774,211.081,211.483,211.454],"paint":[345.274,343.471,344.96,343.631,342.947,340.459,343.663,340.471,340.657,341.906,341.723,351.15,343.357,345.853,346.097]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[77.643,78.659,76.609,76.782,78.384,79.9,78.549,79.009,78.252,79.039,76.138,76.374,77.551,79.353,77.091],"script":[34.914,34.797,34.63,34.997,35.1,34.901,35.191,35.38,35.638,35.622,34.881,34.518,34.694,35.008,34.508],"paint":[42.065,43.176,41.308,41.169,42.648,44.288,42.689,42.964,41.882,42.602,40.631,41.189,42.157,43.616,41.924]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.964,19.818,19.586,20.27,21.229,20.817,19.864,21.26,19.802,20.027,20.787,21.317,20.649,20.134,19.919],"script":[18.278,17.874,17.444,18.578,19.706,18.471,18.313,19.07,17.7,17.84,19.115,19.334,19.291,18.246,17.971],"paint":[1.024,1.249,1.223,0.804,1.39,1.591,0.499,2.099,1.588,2.074,0.718,1.885,0.775,1.781,0.362]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6080522537231445]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.455817222595215]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.757458686828613]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[32.17576885223389]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[65.39810085296631]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.123046875]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.46875]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.7]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[123.507,121.712,123.188,122.09,123.509,122.88,122.819,123.552,124.391,122.415,124.497,120.157,122.361,123.428,123.158],"script":[85.137,83.856,84.417,83.797,85.218,84.037,84.67,85.319,84.613,83.85,85.552,81.885,83.994,84.672,84.583],"paint":[37.901,37.402,38.297,37.813,37.8,38.381,37.689,37.759,39.305,38.099,38.47,37.803,37.873,38.304,38.133]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[135.894,134.798,135.029,134.223,133.5,136.364,134.868,135.085,137.47,134.149,135.698,136.912,137.348,138.349,135.649],"script":[100.907,100.047,100.343,99.631,98.956,101.338,100.317,100.32,101.427,99.307,100.597,101.215,101.051,102.79,101.087],"paint":[34.521,34.175,34.223,34.121,34.094,34.557,34.071,34.288,35.553,34.37,34.625,35.216,35.811,35.081,34.099]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[87.252,84.409,86.425,85.165,87.093,85.048,85.779,86.248,87.174,85.674,84.978,86.637,85.038,86.981,85.439],"script":[68.845,66.375,67.667,66.492,67.983,67.005,67.613,68.166,67.842,67.005,67.054,67.857,66.623,67.991,67.668],"paint":[16.716,16.223,17.207,17.499,17.2,16.568,16.738,15.518,17.575,16.317,16.129,17.458,16.574,17.063,15.517]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[67.858,65.974,67.313,66.087,66.396,66.623,65.949,66.413,65.879,66.525,68.179,66.055,65.177,65.887,66.322,67.265,66.751,69.291,65.664,66.615,66.605,67.343,66.021,67.749,66.887],"script":[62.302,62.514,63.044,61.741,62.162,62.767,61.862,63.31,62.947,62.985,63.753,62.5,62.509,62.977,62.845,63.181,62.529,62.677,62.066,63.176,62.617,63.093,63.047,63.665,63.477],"paint":[5.402,2.423,3.748,3.176,2.917,2.986,3.911,3.033,2.769,3.264,3.165,3.291,1.626,3.509,1.327,3.008,4.033,6.039,3.449,2.029,3.003,3.616,2.828,3.218,2.267]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[87.274,84.439,84.121,84.878,83.501,83.925,86.279,85.833,83.194,84.658,83.384,86.092,85.366,85.809,83.079],"script":[65.211,62.857,63.311,63.632,63.471,62.848,62.557,63.738,62.953,62.948,63.012,62.943,63.606,62.815,61.906],"paint":[20.588,19.253,18.653,19.85,18.601,19.149,20.612,20.402,18.905,20.533,17.994,21.15,19.668,19.629,19.231]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[46.808,47.246,47.307,47.043,47.142,49.804,47.269,47.779,46.724,47.148,47.498,47.787,49.117,47.817,47.308],"script":[30.722,31.155,31.162,30.861,31.124,31.52,30.83,31.782,31.05,31.15,31.292,30.925,32.159,31.23,30.746],"paint":[15.297,15.05,15.056,15.454,14.98,17.086,15.323,15.496,15.122,15.25,15.391,16.109,15.934,15.324,15.826]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[1143.745,1150.559,1129.892,1142.613,1150.874,1142.48,1194.703,1136.804,1131.209,1173.644,1144.887,1131.017,1129.863,1140.476,1131.007],"script":[766.869,774.11,718.82,759.466,753.052,765.435,759.547,757.738,752.914,775.963,766.26,752.674,750.663,750.735,754.32],"paint":[370.099,369.708,404.16,375.862,390.905,370.341,428.251,372.317,371.556,390.877,371.841,371.54,372.469,382.932,369.931]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[144.294,146.196,141.286,142.674,148.916,144.065,145.178,143.826,144.262,148.03,145.828,141.248,145.831,143.967,145.137],"script":[98.833,99.823,97.245,97.465,102.139,99.135,99.975,99.7,100.035,101.51,99.764,96.962,101.083,99.331,99.389],"paint":[44.514,45.381,43.098,44.198,45.764,43.987,44.234,43.167,43.268,45.535,45.073,43.348,43.76,43.702,44.791]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[36.672,37.559,38.186,35.92,37.055,39.536,36.713,40.351,36.568,39.173,37.635,37.928,36.901,39.042,39.803],"script":[34.736,35.692,36.58,34.007,35.183,37.322,34.949,37.873,34.584,36.449,34.846,34.96,34.595,37.525,37.328],"paint":[1.823,1.353,1.504,1.159,1.767,2.098,0.838,1.896,2.289,2.611,2.67,2.846,1.205,1.414,2.21]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[44.29856586456299]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[56.74979591369629]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[56.978187561035156]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[53.22998905181885]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[126.1485481262207]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[3727.9794921875]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1224.41796875]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.8]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[110.928,111.815,111.409,110.165,112.339,109.241,107.951,108.706,108.32,107.399,109.206,111.179,111.5,114.032,112.349],"script":[71.99,71.399,72.44,71.488,73.277,71.343,69.83,70.044,69.893,69.209,70.21,72.595,72.691,73.89,73.523],"paint":[38.496,39.774,38.496,38.222,38.585,37.433,37.663,37.983,37.97,37.723,38.517,38.096,38.348,39.68,38.359]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[119.463,122.121,119.586,115.152,124.564,118.967,119.168,120.335,117.802,117.866,115.686,117.029,116.937,119.885,116.92],"script":[84.68,85.148,85.05,80.917,87.48,84.35,83.633,82.531,81.487,82.154,81.004,81.53,82.152,85.106,82.544],"paint":[34.325,36.51,34.074,33.784,36.534,34.16,35.072,37.304,35.823,35.249,34.242,35.06,34.331,34.319,33.919]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[33.542,33.196,33.115,33.306,33.86,32.577,33.308,33.531,33.142,33.357,34.033,33.332,32.695,33.588,33.012],"script":[16.41,15.446,15.594,15.902,15.408,15.353,15.717,15.824,15.154,15.617,15.668,15.691,14.904,16.084,15.738],"paint":[15.665,15.513,15.378,16.08,17.228,15.69,16.08,16.12,16.386,15.841,16.609,15.035,15.976,16.664,15.741]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[17.412,16.183,16.985,16.399,15.941,17.079,16.79,17.012,16.883,16.887,17.694,16.495,16.552,16.81,17.855,17.083,17.107,17.786,17.283,16.685,17.103,17.035,16.968,16.666,17.149],"script":[14.746,13.794,14.373,13.493,13.408,13.992,13.788,13.325,13.353,13.856,13.241,13.957,13.731,14.087,13.813,13.298,13.824,14.49,14.305,13.526,13.773,13.918,13.967,13.282,14.245],"paint":[2.567,2.256,1.726,1.719,1.989,2.23,2.79,3.022,3.028,2.166,3.424,1.626,2.322,2.589,3.258,3.639,3.133,3.147,2.093,3.027,2.152,2.507,2.251,3.25,2.833]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[34.174,33.558,37.358,34.781,33.271,33.263,34.719,33.972,34.013,33.824,34.376,34.469,34.349,33.869,35.219],"script":[14.357,13.993,13.725,14.299,13.892,13.422,13.772,14.325,13.942,13.372,13.73,13.466,14.049,13.916,14.588],"paint":[18.512,18.251,20.645,19.319,17.755,18.5,19.884,18.311,18.62,18.374,19.342,18.502,18.088,17.98,19.8]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.116,23.369,22.802,23.039,22.968,23.025,23.282,22.916,22.964,23.657,23.454,22.878,22.869,23.169,23.663],"script":[7.21,6.829,6.859,6.883,7.161,6.916,7.16,6.916,7.038,7.196,6.984,6.903,7.091,7.213,7.216],"paint":[15.435,15.279,14.876,15.114,14.88,15.314,15.372,15.266,15.177,15.722,15.696,14.649,15.028,14.877,15.71]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[1035.12,1050.729,1063.165,1068.449,1050.793,1065.708,1064.42,1054.801,1075.044,1048.819,1057.981,1050.388,1065.301,1050.515,1057.653],"script":[651.619,657.423,668.393,652.544,674.407,652.538,674.865,661.285,674.291,672.893,678.503,658.53,679.134,668.424,668.339],"paint":[376.73,386.405,387.977,409.034,369.623,406.168,382.442,386.67,394.032,369.152,372.694,384.956,379.446,375.257,382.246]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[118.557,119.762,119.35,117.967,119.718,119.659,118.91,119.876,120.485,118.91,123.525,119.735,119.711,117.025,119.994],"script":[73.738,75.115,75.43,73.865,75.43,75.591,74.548,74.62,75.835,74.685,77.345,75.211,74.186,73.111,75.387],"paint":[43.697,43.66,42.974,43.144,43.348,43.092,43.397,44.14,43.665,43.252,45.286,43.557,44.535,42.943,43.617]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.99,26.528,26.1,26.554,26.853,26.158,25.48,26.245,26.599,25.85,26.001,24.961,25.123,25.653,25.858],"script":[23.597,24.607,24.535,24.246,24.211,23.521,23.608,23.981,23.922,23.83,23.629,23.165,23.841,23.655,23.902],"paint":[1.231,1.812,0.985,1.417,2.487,2.124,1.248,1.239,1.813,1.167,2.272,0.831,0.559,1.684,1.856]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.43125629425049]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.8817663192749]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[53.01170349121094]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.2861328125]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.14484214782715]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11023.5888671875]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2813.087890625]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.3]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"01_run1k","values":{"total":[36.414,37.826,37.061,37.311,36.552,36.809,36.175,36.173,35.983,35.897,36.44,35.726,35.84,36.485,36.673],"script":[3.58,3.76,3.682,3.556,3.608,3.729,3.564,3.52,3.56,3.47,3.595,3.529,3.582,3.653,3.575],"paint":[32.416,33.656,32.973,33.35,32.541,32.672,32.197,32.251,32.032,32.011,32.439,31.742,31.847,32.414,32.703]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"02_replace1k","values":{"total":[41.468,41.397,40.337,41.485,40.332,41.728,40.681,40.188,40.855,41.923,41.791,40.27,40.475,41.156,40.809],"script":[6.931,6.893,6.226,6.432,6.452,6.247,6.394,6.212,6.234,6.476,6.408,6.165,6.318,6.627,6.503],"paint":[34.072,34.077,33.668,34.606,33.429,35.035,33.855,33.543,34.195,35.004,34.95,33.653,33.705,34.1,33.874]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.649,16.522,16.351,16.691,15.918,16.503,16.391,16.04,16.007,16.517,16.022,20.102,16.348,16.225,15.485],"script":[1.368,2.065,0.997,1.199,1.412,1.794,1.024,1.439,1.266,1.306,1.273,1.069,0.913,1.229,1.238],"paint":[13.467,12.672,13.781,14.1,13.184,12.94,14.122,13.082,13.269,13.67,12.955,17.127,13.601,13.808,12.547]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"04_select1k","values":{"total":[2.851,2.786,3.305,2.764,3.491,3.134,3.754,2.866,3.495,3.982,3.839,4.114,3.18,3.567,3.442,4.396,4.043,2.778,2.814,3.148,3.698,3.49,3.264,3.218,3.191],"script":[0.929,0.816,1.341,0.62,0.821,0.175,1.233,1.246,1.398,0.863,0.937,0.182,0.191,1.12,0.893,0.561,0.968,0.678,0.663,1.126,1.155,0.804,1.023,0.191,0.897],"paint":[1.822,1.874,1.136,2.045,1.496,2.646,2.413,1.115,1.999,1.633,2.788,2.593,2.877,1.495,1.608,1.551,2.488,1.996,1.63,1.921,2.428,1.586,1.351,1.984,2.189]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"05_swap1k","values":{"total":[18.906,19.535,19.343,19.015,18.795,18.998,18.9,19.045,18.765,18.766,19.11,18.736,18.544,18.991,18.606],"script":[0.64,1.203,1.157,0.837,0.889,0.808,0.629,0.86,0.905,0.767,0.947,0.941,0.207,0.598,0.534],"paint":[17.262,16.806,16.68,17.458,16.557,16.601,16.779,16.605,17.127,16.821,16.641,16.512,17.378,17.401,16.491]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.165,15.281,15.486,15.202,15.087,15.335,15.388,15.297,15.192,15.316,15.227,15.338,15.149,15.179,15.286],"script":[0.439,0.184,0.342,0.438,0.176,0.488,0.342,0.267,0.488,0.506,0.19,0.485,0.407,0.195,0.451],"paint":[14.028,14.379,14.199,14.025,14.211,14.093,14.126,14.037,13.978,14.07,14.329,14.135,13.942,14.038,14.116]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"07_create10k","values":{"total":[385.459,383.872,380.006,388.538,383.766,381.671,387.835,391.351,391.747,386.205,386.919,393.284,386.012,389.191,393.46],"script":[45.081,45.912,44.998,45.833,45.774,45.359,45.417,44.633,46.648,45.26,46.117,46.37,44.841,45.068,46.051],"paint":[333.593,331.306,328.227,336.052,331.393,329.532,335.797,340.1,338.403,334.234,334.087,340.279,334.532,337.517,340.394]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.35,41.547,42.055,42.395,40.782,42.801,40.451,41.356,42.112,40.958,40.94,40.715,41.462,40.807,43.652],"script":[3.438,3.338,3.471,3.529,3.505,3.592,3.218,3.248,3.755,3.302,3.378,3.232,3.485,3.334,3.676],"paint":[38.077,37.334,37.707,38.001,36.411,38.347,36.402,37.196,37.505,36.777,36.724,36.658,37.131,36.566,39.114]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.479,12.219,11.695,11.688,11.429,11.767,12.5,11.468,11.63,11.822,12.277,11.259,11.58,11.697,11.854],"script":[9.867,10.016,9.332,9.507,9.496,9.572,10.327,9.982,10.022,9.796,10.655,10.057,10.132,9.858,10.13],"paint":[2.527,2.122,2.282,1.93,1.172,2.117,2.101,1.212,1.152,1.944,1.105,1.12,0.963,1.74,1.326]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5469226837158203]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.448617935180664]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.463076591491699]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7782049179077148]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.24301052093506]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.984375]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3173828125]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.8]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"01_run1k","values":{"total":[54.597,44.985,48.416,44.142,45.199,48.209,48.936,48.256,48.519,45.97,44.304,49.324,41.769,46.127,48.333],"script":[9.088,8.755,9.882,9.947,8.952,9.929,9.986,9.925,8.907,8.925,9.305,9.491,8.501,9.252,9.024],"paint":[33.182,33.923,33.341,32.561,32.648,33.671,32.902,33.62,32.386,32.547,32.057,33.03,32.6,33.89,33.169]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"02_replace1k","values":{"total":[58.156,59.703,55.79,53.198,52.958,59.151,51.576,58.272,56.616,57.897,55.034,54.025,55.502,52.989,51.218],"script":[13.697,13.89,13.436,13.829,13.773,13.944,13.649,14.044,13.686,13.818,13.691,13.552,13.333,13.88,14.225],"paint":[33.857,35.387,34.349,34.372,33.808,35.704,34.041,33.962,34.142,33.797,33.61,34.414,33.955,34.817,34.203]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.848,19.531,19.317,19.997,21.394,20.264,22.423,19.936,19.919,19.671,19.244,19.325,19.742,20.414,18.749],"script":[4.859,3.885,4.535,4.818,3.879,4.986,4.576,4.728,4.733,4.091,3.621,4.597,5.111,3.95,4.808],"paint":[14.972,14.895,13.789,14.48,14.715,14.222,15.67,14.746,15.072,14.594,14.714,14.614,14.526,15.647,13.829]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"04_select1k","values":{"total":[4.346,3.992,4.017,4.302,4.495,4.66,4.812,4.461,4.556,4.636,4.585,4.588,4.515,4.68,4.962,4.101,4.863,4.684,4.673,4.402,4.518,4.371,4.237,4.228,3.546],"script":[1.763,1.94,2.078,1.168,2.02,1.96,1.214,1.845,1.376,1.456,1.991,2.255,1.993,2.367,2.246,1.633,2.208,2.285,2.338,1.462,2.367,1.45,0.766,1.438,1.288],"paint":[2.46,1.927,1.717,2.321,2.347,1.646,2.4,2.494,2.579,2.942,2.454,2.211,0.991,1.677,2.272,2.348,2.283,1.804,2.212,2.818,1.991,2.801,2.834,2.35,1.69]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"05_swap1k","values":{"total":[19.536,22.036,20.272,19.127,20.531,19.884,34.845,19.759,19.383,18.778,19.334,20.826,19.539,19.634,35.519],"script":[1.208,2.138,1.678,1.994,1.705,1.914,1.739,1.67,2.442,1.858,1.765,2.718,2.109,1.45,2.565],"paint":[18.224,16.771,16.964,16.83,17.666,17.763,17.752,15.268,16.819,16.812,16.811,17.888,17.314,17.362,16.912]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.569,14.136,15.507,17.937,15.195,14.735,17.926,13.922,14.132,14.245,15.37,14.773,14.266,19.142,14.112],"script":[1.085,1.119,0.946,1.142,1.063,1.095,0.975,0.759,1.117,0.841,0.906,0.825,0.835,1.13,0.891],"paint":[13.255,12.626,13.212,13.324,13.678,13.503,13.294,12.832,12.327,13.232,12.786,13.311,12.65,13.288,12.783]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"07_create10k","values":{"total":[464.429,447.02,464.06,445.899,454.459,456.269,452.411,451.212,459.803,457.779,466.093,454.761,447.397,457.37,461.931],"script":[103.717,110.295,107.035,106.09,104.287,103.285,106.499,109.586,111.283,104.004,112.672,106.335,102.264,110.08,108.141],"paint":[347.698,329.138,351.274,334.826,344.396,350.338,342.11,338.309,343.618,347.788,344.008,345.434,343.012,342.894,348]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.054,53.759,58.003,54.943,54.356,56.059,53.694,49.471,53.088,54.221,53.688,56.37,57.024,58.717,53.171],"script":[11.513,10.378,10.023,10.458,10.313,10.34,10.61,10.937,10.47,10.986,10.335,11.584,9.867,10.6,10.57],"paint":[37.241,37.698,37.264,37.984,37.484,37.689,37.273,38.014,36.836,36.94,36.732,39.049,37.558,37.741,37.05]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.574,13.941,13.55,12.993,14.321,13.736,12.96,13.712,13.577,14.006,14.201,13.227,14.638,14.102,13.469],"script":[12.274,11.912,11.624,11.531,12.373,11.969,11.156,12.458,11.52,12.096,11.67,11.985,12.694,12.565,12.337],"paint":[1.588,1.227,1.855,1.4,1.875,1.706,1.734,1.185,1.989,1.841,1.299,1.179,1.883,1.479,1.071]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6187896728515625]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.634884834289551]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.811847686767578]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.605961799621582]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.20957660675049]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.095703125]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.599609375]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.6]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"01_run1k","values":{"total":[37.898,38.381,37.329,38.373,36.718,38.264,37.339,37.798,38.135,37.299,37.411,37.455,40.797,39.094,37.506],"script":[3.886,3.897,4.061,4.151,3.814,4.185,3.864,3.876,4.164,3.806,3.854,3.813,3.867,4.556,3.987],"paint":[33.584,34.05,32.832,33.77,32.469,33.638,33.035,33.496,33.544,33.061,33.135,33.187,36.435,34.111,33.091]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"02_replace1k","values":{"total":[42.131,43.166,43.564,41.363,42.05,41.976,43.194,40.894,41.882,41.847,42.833,42.001,41.914,41.849,42.72],"script":[6.763,7.012,7.546,6.704,6.885,6.699,6.93,6.702,6.671,6.821,6.986,6.847,6.782,6.858,6.753],"paint":[34.894,35.727,35.587,34.204,34.725,34.835,35.835,33.748,34.768,34.584,35.42,34.714,34.69,34.542,35.529]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.618,17.068,17.698,16.415,17.031,17.326,16.738,16.999,17.089,16.5,16.808,19.404,16.568,16.799,18.622],"script":[2.453,1.172,1.568,1.126,1.495,1.964,1.551,1.347,1.361,1.326,1.575,1.449,1.586,1.47,1.266],"paint":[14.679,14.37,14.693,14.064,14.495,14.065,12.954,14.342,14.189,13.686,13.691,15.449,13.339,13.806,15.08]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"04_select1k","values":{"total":[3.953,4.599,4.438,4.166,4.633,4.043,4.217,3.657,4.409,3.834,4.194,4.692,3.825,3.963,3.934,3.808,3.407,4.817,3.838,4.697,4.309,4.091,4.633,4.351,3.944],"script":[1.581,1.596,1.178,1.274,1.656,1.737,1.574,1.316,1.8,1.125,1.332,1.079,1.042,2.017,1.429,1.222,1.481,1.361,0.971,1.359,1.624,1.354,1.898,1.62,1.056],"paint":[1.974,2.871,2.015,1.702,2.843,1.431,0.849,1.062,0.917,1.846,1.854,2.116,2.663,1.823,2.391,2.458,1.352,1.92,2.744,3.206,2.477,2.605,2.584,1.898,2.766]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"05_swap1k","values":{"total":[19.116,19.835,18.854,19.016,19.913,19.676,19.755,20.056,19.793,21.432,19.458,21.085,19.207,21.53,19.682],"script":[1.278,1.396,1.214,1.359,1.085,1.984,1.129,1.042,1.257,1.139,1.614,0.975,1.317,1.453,1.352],"paint":[16.76,17.514,14.767,16.072,16.874,16.134,16.263,17.657,17.209,18.675,16.925,18.81,16.555,17.251,17.284]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.471,15.808,16.049,15.776,15.416,15.698,15.418,16.301,16.031,15.899,15.535,15.52,15.398,15.992,15.441],"script":[0.69,0.711,0.721,0.709,0.69,1.004,0.698,0.864,0.702,0.671,0.839,0.716,0.675,0.704,0.671],"paint":[13.768,14.277,14.526,14.34,13.709,13.932,14.004,14.327,14.37,14.505,13.974,14.076,13.719,14.552,13.749]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"07_create10k","values":{"total":[399.561,404.473,397.113,398.311,397.92,399.141,396.523,397.924,403.467,398.368,398.233,408.17,404.198,398.161,399.579],"script":[55.656,57.681,56.194,56.094,55.663,56.619,54.473,55.92,55.955,55.354,56.598,57.06,57.392,55.174,56.616],"paint":[337.145,339.417,334.156,335.43,335.515,335.809,335.209,335.281,340.665,336.241,334.79,344.091,340.071,336.345,336.247]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.785,42.949,44.766,44.348,42.351,43.474,45.507,43.416,43.153,43.042,43.259,42.685,43.127,43.436,43.182],"script":[3.975,4.022,4.15,4.141,3.882,3.951,4.01,3.929,3.985,3.901,4.025,3.973,3.965,4.448,4.054],"paint":[37.887,38.034,39.698,39.281,37.602,38.608,40.57,38.568,38.254,38.225,38.331,37.833,38.243,38.09,38.241]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.229,12.292,12.132,11.694,12.798,12.702,12.577,12.266,12.807,12.386,12.572,12.262,12.002,12.599,12.444],"script":[10.794,10.536,10.665,10.398,10.968,11.046,11.133,10.443,10.893,10.079,10.225,10.578,10.433,10.393,10.321],"paint":[1.347,1.214,1.375,0.889,1.003,1.002,1.347,1.074,1.179,2.219,1.793,1.598,1.478,1.616,2.018]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.74951171875]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6602210998535156]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.681023597717285]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0378189086914062]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.89780616760254]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[50.0712890625]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.755859375]}},{"framework":"cample-v3.2.0-alpha.12-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.1]}},{"framework":"crank-v0.4.1-keyed","benchmark":"01_run1k","values":{"total":[42.816,44.375,43.494,43.486,44.413,43.506,43.403,45.091,44.355,45.502,44.076,43.669,45.048,44.364,45.231],"script":[10.108,10.439,10.318,10.121,10.413,10.139,10.419,11.018,10.594,10.461,10.138,10.185,11.366,11.14,10.317],"paint":[32.241,33.525,32.747,32.945,33.575,32.935,32.546,33.645,33.339,34.405,33.509,33.021,33.236,32.786,34.485]}},{"framework":"crank-v0.4.1-keyed","benchmark":"02_replace1k","values":{"total":[46.593,46.54,45.47,45.452,47.099,45.691,46.077,47.406,47.778,45.994,46.424,48.05,46.072,47.361,45.905],"script":[12.035,12.182,11.983,11.695,12.49,11.875,11.977,13.116,12.57,11.787,11.825,13.105,11.664,11.938,11.923],"paint":[34.12,33.918,33.06,33.335,34.162,33.394,33.662,33.84,34.766,33.759,34.157,34.503,33.952,34.995,33.563]}},{"framework":"crank-v0.4.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.072,21.276,22.288,20.887,21.717,21.597,21.872,21.322,21.864,22.449,21.113,23.719,22.32,21.157,21.543],"script":[7.305,6.482,6.441,6.351,6.171,5.772,5.824,6.142,6.007,6.8,5.82,5.923,6.482,5.794,6.248],"paint":[15.211,13.51,14.528,13.492,14.242,14.341,14.607,13.758,14.41,13.534,14.035,15.264,14.295,13.863,14.205]}},{"framework":"crank-v0.4.1-keyed","benchmark":"04_select1k","values":{"total":[5.943,5.858,5.671,5.788,4.914,5.146,5.293,5.159,5.019,5.907,5.736,4.518,5.384,5.013,5.303,4.542,5.422,5.18,5.002,5.518,5.04,4.516,5.527,4.413,5.157],"script":[2.962,3.221,3.294,2.943,2.471,2.484,2.444,2.152,2.566,2.759,2.541,2.362,3.07,2.263,1.921,2.522,2.788,2.813,2.799,3.057,2.502,2.282,3.062,2.134,2.789],"paint":[1.949,1.701,1.767,1.732,2.325,2.333,1.573,2.887,1.966,3.024,2.109,1.996,1.912,2.341,3.255,1.901,2.506,2.235,1.354,1.663,2.407,2.102,2.339,1.136,2.24]}},{"framework":"crank-v0.4.1-keyed","benchmark":"05_swap1k","values":{"total":[21.434,21.826,21.07,21.773,21.216,21.336,21.213,23.342,21.114,21.966,20.943,21.508,21.209,21.142,21.807],"script":[2.699,3.644,3.261,3.754,3.124,2.737,2.629,3.86,3.207,3.846,3.235,3.721,3.249,2.75,3.011],"paint":[17.656,16.634,16.076,16.109,16.37,17.055,17.343,18.11,16.094,16.298,16.393,16.764,16.945,16.521,17.753]}},{"framework":"crank-v0.4.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.592,16.723,16.919,17.026,16.547,16.55,17.019,17.411,16.577,16.491,16.619,16.936,16.476,16.573,16.585],"script":[1.402,1.73,1.729,1.781,1.616,1.56,1.397,1.774,1.751,1.416,1.652,1.645,1.517,1.415,1.722],"paint":[14.381,13.932,14.322,14.226,13.969,14.121,14.324,14.902,14.076,14.356,14.213,14.463,14.094,14.143,13.887]}},{"framework":"crank-v0.4.1-keyed","benchmark":"07_create10k","values":{"total":[457.565,459.881,449.312,452.886,458.396,454.86,451.276,449.09,463.378,457.915,455.142,457.919,462.284,460.285,454.942],"script":[117.616,117.278,115.752,115.611,117.667,116.514,115.3,115.694,117.09,116.814,116.729,118.422,116.693,115.966,116.657],"paint":[333.186,335.902,326.599,330.585,334.067,331.668,329.134,326.542,339.655,334.408,331.699,332.751,338.891,333.791,331.329]}},{"framework":"crank-v0.4.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.734,50.785,50.505,49.794,51.995,51.033,50.732,50.385,51.462,51.01,51.41,51.308,51.238,51.125,51.877],"script":[11.698,11.655,11.807,11.33,11.833,12.022,11.496,11.85,11.741,11.686,11.684,12.163,12.077,11.959,11.639],"paint":[38.138,38.244,37.816,37.567,39.259,38.12,38.348,37.649,38.83,38.439,38.779,38.275,38.284,38.237,39.334]}},{"framework":"crank-v0.4.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.894,12.537,12.125,12.672,12.645,12.143,12.576,12.87,12.228,12.534,12.008,12.314,12.368,12.328,11.991],"script":[11.058,10.698,10.176,10.714,11.002,10.639,10.127,10.389,10.525,10.642,10.587,10.55,10.159,10.909,10.859],"paint":[1.75,1.228,1.161,1.131,1.551,1.419,2.011,2.095,1.613,1.058,1.348,1.687,1.635,1.335,1.05]}},{"framework":"crank-v0.4.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5609369277954102]}},{"framework":"crank-v0.4.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7811594009399414]}},{"framework":"crank-v0.4.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8536148071289062]}},{"framework":"crank-v0.4.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.904754638671875]}},{"framework":"crank-v0.4.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.553187370300293]}},{"framework":"crank-v0.4.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[20.40234375]}},{"framework":"crank-v0.4.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.4453125]}},{"framework":"crank-v0.4.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.1]}},{"framework":"dark-v1.0.2-keyed","benchmark":"01_run1k","values":{"total":[47.094,47.451,46.926,48.201,47.591,48.609,47.383,46.954,47.08,47.477,47.738,47.921,49.101,48.426,47.103],"script":[14.273,14.558,14.037,15.14,13.818,15.198,14.254,14.326,14.27,14.241,14.823,15.067,14.923,15.518,13.989],"paint":[32.372,32.476,32.459,32.64,33.34,32.967,32.707,32.204,32.364,32.798,32.483,32.431,33.755,32.461,32.699]}},{"framework":"dark-v1.0.2-keyed","benchmark":"02_replace1k","values":{"total":[55.556,55.605,53.783,54.322,55.514,53.877,55.168,55.486,54.411,55.149,55.166,55.875,55.18,54.706,55.087],"script":[19.193,18.926,18.34,18.585,18.522,18.277,18.544,18.594,18.42,18.621,18.509,18.693,18.68,18.28,18.6],"paint":[35.899,36.228,35.007,35.29,36.529,35.156,36.179,36.443,35.543,36.087,36.201,36.735,36.072,35.987,36.047]}},{"framework":"dark-v1.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.073,19.179,18.607,18.718,17.596,18.935,18.206,18.37,18.394,18.106,18.737,18.471,18.432,18.364,19.035],"script":[3.944,3.088,3.21,3.367,2.934,3.322,3.559,3.111,3.362,3.436,3.026,3.405,3.109,3.535,3.388],"paint":[14.81,12.848,13.925,13.464,13.374,13.627,13.052,14.226,13.238,13.003,14.238,12.858,13.922,13.17,14.292]}},{"framework":"dark-v1.0.2-keyed","benchmark":"04_select1k","values":{"total":[3.974,2.882,3.231,5.632,3.687,3.101,3.126,3.49,2.793,3.207,3.547,4.27,2.945,3.117,3.602,3.719,3.369,3.487,2.914,3.48,3.448,3.21,3.642,2.721,3.816],"script":[1.199,1.363,0.568,1.186,1.176,0.662,0.545,0.833,0.623,1.002,0.913,1.233,1.133,0.92,1.023,0.942,0.938,1.087,0.92,0.885,0.897,1.064,0.929,1.187,0.603],"paint":[1.934,1.415,1.648,1.563,2.404,2.329,2.479,1.446,2.062,2.096,1.638,2.938,1.708,2.099,2.265,2.675,1.498,1.741,1.165,2.096,1.628,1.811,2.42,1.426,2.595]}},{"framework":"dark-v1.0.2-keyed","benchmark":"05_swap1k","values":{"total":[21.661,21.534,21.56,22.167,21.399,20.898,22.494,21.473,22.465,21.666,22.49,21.209,21.269,21.901,21.053],"script":[2.797,2.505,3.312,3.459,3.114,3.413,3.436,3.025,3.668,2.851,3.738,3.071,2.609,3.153,3.309],"paint":[16.92,17.237,16.553,17.299,17.177,15.631,17.503,16.997,16.814,17.493,16.225,16.352,17.978,17.403,16.35]}},{"framework":"dark-v1.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.48,16.494,16.189,16.582,16.288,17.082,16.631,16.561,16.113,16.829,16.244,16.558,16.597,17.317,16.247],"script":[1.42,1.397,1.417,1.392,1.486,1.394,1.413,1.45,1.401,1.38,1.48,1.381,1.791,1.736,1.669],"paint":[14.137,14.38,13.749,14.119,14.027,14.448,14.178,14.38,13.959,14.678,13.725,14.419,14.046,14.398,13.64]}},{"framework":"dark-v1.0.2-keyed","benchmark":"07_create10k","values":{"total":[494.381,480.254,482.181,488.091,492.687,492.695,487.718,493.023,508.016,496.677,509.879,489.578,492.315,498.323,510.765],"script":[151.474,153.361,149.612,151.425,151.625,148.904,153.664,153.318,155.806,153.145,154.864,154.595,150.506,155.902,155.578],"paint":[335.192,319.765,325.121,329.699,333.921,336.813,327.009,332.792,345.275,336.69,348.113,327.89,334.869,335.504,348.314]}},{"framework":"dark-v1.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.56,54.613,54.857,55.984,55.191,55.617,54.028,55.105,56.003,55.591,54.47,56.349,54.514,56.027,54.763],"script":[15.571,15.125,14.621,15.918,15.052,15.204,14.926,15.168,15.145,14.944,14.462,15.189,15.193,15.072,15.389],"paint":[40.587,38.231,38.826,38.775,38.784,39.114,37.741,38.583,39.579,39.463,38.558,40.208,38.073,39.963,38.266]}},{"framework":"dark-v1.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.899,13.772,13.938,13.494,12.391,12.792,13.484,13.59,12.608,13.384,12.198,13.42,13.716,12.973,13.234],"script":[10.75,11.35,11.302,11.894,11.025,10.859,11.909,11.508,10.723,11.533,10.644,11.522,11.308,11.323,11.478],"paint":[2.062,2.326,2.507,1.51,1.281,1.587,1.289,1.989,1.787,1.362,1.081,0.922,2.311,1.536,0.787]}},{"framework":"dark-v1.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6416215896606445]}},{"framework":"dark-v1.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.897149085998535]}},{"framework":"dark-v1.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.838281631469727]}},{"framework":"dark-v1.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3409490585327148]}},{"framework":"dark-v1.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.778456687927246]}},{"framework":"dark-v1.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[35.55859375]}},{"framework":"dark-v1.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.4677734375]}},{"framework":"dark-v1.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.7]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"01_run1k","values":{"total":[38.612,38.832,40.286,38.939,38.577,38.629,38.881,39.653,39.763,38.965,38.382,39.151,38.752,38.931,39.155],"script":[5.295,5.387,5.412,5.338,5.218,5.351,5.333,5.464,5.392,5.286,5.52,5.361,5.34,5.3,5.419],"paint":[32.899,33.048,34.47,33.195,32.945,32.879,33.143,33.786,33.973,33.235,32.46,33.399,33.015,33.225,33.339]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"02_replace1k","values":{"total":[43.872,42.809,44.04,44.74,43.31,42.632,45.235,43.427,43.267,43.357,43.764,43.259,44.599,42.914,43.216],"script":[9.132,8.539,8.939,9.017,8.46,8.821,8.836,8.534,8.791,8.767,8.822,8.58,9.061,8.585,8.518],"paint":[34.28,33.82,34.639,35.28,34.405,33.364,35.958,34.444,34.041,34.158,34.517,34.262,35.104,33.902,34.265]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.329,18.113,16.547,16.564,16.692,17.232,16.994,16.401,16.9,17.264,17.398,16.614,16.917,17.252,16.469],"script":[0.959,1.594,1.496,1.505,1.683,1.279,1.734,1.151,1.764,1.317,2.024,1.169,1.89,2.088,1.722],"paint":[13.901,15.026,13.237,14.058,13.622,14.482,13.652,13.444,12.828,15.256,13.428,14.298,14.582,12.62,13.412]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"04_select1k","values":{"total":[3.317,2.85,5.909,3.074,5.198,2.895,2.805,3.15,3.162,3.665,3.427,3.801,5.628,2.964,3.522,3.865,2.953,3.415,2.98,2.864,3.466,3.678,3.631,3.27,2.986],"script":[0.825,0.846,1.031,0.89,0.956,0.908,0.965,0.827,0.177,0.915,1.121,0.562,0.562,0.755,1.412,0.184,0.747,0.985,0.184,0.486,1.049,1.253,1.142,0.942,0.344],"paint":[2.396,1.905,1.931,1.465,2.284,1.117,1.748,2.212,1.982,0.839,2.071,1.506,1.147,2.106,1.54,1.64,2.103,1.844,1.617,2.283,1.681,2.325,1.581,1.678,1.748]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"05_swap1k","values":{"total":[20.263,19.658,20.421,20.414,19.293,20.403,20.608,20.865,20.513,20.226,19.731,20.916,19.633,19.611,20.21],"script":[1.806,1.732,1.869,2.565,1.893,1.607,2.242,1.9,1.913,1.636,2.011,2.356,1.646,1.618,2.132],"paint":[17.504,16.132,16.661,15.689,15.879,17.34,16.844,17.709,17.542,17.25,16.161,16.484,16.049,16.328,16.136]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.499,16.477,15.927,15.623,15.45,15.407,15.831,15.997,15.742,15.818,15.433,15.793,15.767,15.771,15.428],"script":[0.737,0.741,0.726,0.947,0.737,0.726,1.037,0.729,0.744,0.742,0.733,0.989,0.742,0.738,0.752],"paint":[14.042,14.757,14.418,13.94,13.846,14.005,14.077,14.536,14.058,14.231,13.984,14.096,14.32,14.338,13.682]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"07_create10k","values":{"total":[402.324,403.352,400.285,406.022,405.036,402.625,405.062,402.141,400.962,404.824,404.171,399.468,403.584,399.543,397.439],"script":[58.979,60.764,57.682,60.439,60.644,59.454,61.722,58.601,57.714,58.375,62.013,58.513,57.97,59.872,57.399],"paint":[336.616,335.849,336.036,338.947,337.789,336.593,336.768,336.964,336.686,339.732,335.628,334.336,338.304,332.797,333.364]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.186,44.157,44.908,44.769,44.545,46.68,44.488,44.841,44.852,44.703,46.115,45.867,46.009,45.199,46.389],"script":[5.912,6.029,6.053,6.024,6.02,6.117,6.28,6.168,6.242,6.148,6.384,6.317,6.194,6.323,6.326],"paint":[36.4,37.261,37.95,37.82,37.596,39.685,37.349,37.829,37.768,37.653,38.883,38.623,38.989,37.935,39.185]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.288,15.491,15.116,15.258,18.174,15.511,16.074,15.372,16.386,15.111,16.243,16.027,15.719,15.717,16.049],"script":[14.037,13.88,13.795,13.232,16.099,14.42,14.062,13.995,14.071,13.379,14.343,13.844,13.742,13.918,14.124],"paint":[1.376,0.719,0.891,1.955,1.99,0.374,1.813,0.362,2.238,1.652,1.768,1.119,1.895,1.111,1.109]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7494726181030273]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.58535099029541]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.498356819152832]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.695009231567383]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.3262939453125]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[317.310546875]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[92.9248046875]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[555.5]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"01_run1k","values":{"total":[36.773,36.195,36.376,37.387,37.823,38.062,37.569,36.975,36.091,37.51,37.457,38.267,36.495,36.157,36.549],"script":[3.374,3.391,3.328,3.773,3.225,3.373,3.345,3.759,3.252,3.419,3.68,3.942,3.386,3.428,3.414],"paint":[32.993,32.381,32.629,33.218,34.151,34.289,33.817,32.806,32.38,33.671,33.364,33.883,32.714,32.339,32.701]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"02_replace1k","values":{"total":[42.359,43.34,42.026,41.936,41.473,41.596,41.733,42.955,41.52,41.89,41.723,42.025,41.588,43.57,41.744],"script":[7.136,7.032,7.079,7,6.951,6.689,6.967,7.166,6.897,7.115,6.863,7.055,6.76,7.012,6.869],"paint":[34.8,35.821,34.535,34.509,34.094,34.292,34.325,35.362,34.2,34.355,34.436,34.536,34.372,36.134,34.443]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.691,16.979,16.982,17.386,16.917,17.727,17.102,17.202,17.071,16.214,16.917,16.963,16.494,18.217,17.205],"script":[1.831,1.535,0.978,1.992,0.708,2.179,1.83,0.973,1.395,1.222,1.248,1.267,1.132,1.551,1.464],"paint":[12.798,14.341,14.772,14.114,14.305,14.871,13.283,15.536,13.526,13.496,14.445,14.431,13.612,15.629,14.72]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"04_select1k","values":{"total":[2.62,2.547,3.214,3.762,6.413,3.346,2.485,2.934,2.44,2.202,3.717,2.844,2.524,2.651,2.887,2.378,2.657,2.462,2.705,2.673,2.077,2.254,4.211,2.341,2.842],"script":[0.074,0.078,0.709,0.075,0.071,0.818,0.07,0.454,0.611,0.471,0.077,0.07,0.477,0.075,0.1,0.692,0.082,0.492,0.416,0.076,0.078,0.074,1.125,0.08,0.083],"paint":[1.757,1.937,1.521,1.884,2.348,1.624,1.392,2.373,1.735,1.63,1.309,1.779,1.949,2.477,2.678,1.589,2.47,1.865,2.194,0.718,1.115,1.238,1.4,1.481,2.632]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"05_swap1k","values":{"total":[20.656,20.761,19.623,19.533,20.603,20.13,20.074,19.586,20.542,19.895,20.443,19.765,20.145,20.158,19.727],"script":[2.447,1.931,1.519,1.712,2.441,1.805,1.747,1.721,1.501,2.324,2.173,1.64,1.842,1.522,1.391],"paint":[16.935,17.596,16.515,16.772,16.537,16.753,17.288,16.562,17.435,16.449,16.727,16.279,17.606,16.79,17.031]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.566,16.237,16.045,15.926,15.877,15.8,15.909,15.919,15.863,15.836,16.004,16.028,15.994,16.008,15.621],"script":[0.964,0.981,0.677,0.668,0.657,0.668,0.669,0.67,0.671,0.693,0.666,0.672,0.866,0.686,0.67],"paint":[14.856,14.544,14.643,14.515,14.476,14.352,14.497,14.567,14.47,14.109,14.579,14.583,14.239,14.577,13.422]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"07_create10k","values":{"total":[396.14,392.457,390.427,388.059,390.046,394.289,395.303,392.34,398.161,389.346,388.606,387.062,390.917,389.418,389.461],"script":[46.023,44.576,46.654,46.545,44.611,44.336,46.058,44.721,46.349,44.24,45.708,43.945,46.102,45.073,45.511],"paint":[343.469,341.154,337.147,334.867,338.629,343.239,342.564,340.983,345.147,338.403,336.187,336.478,338.179,337.627,337.312]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.36,43.243,43.471,43.196,43.665,43.116,43.894,45.701,43.482,46.279,43.745,44.908,44.686,46.294,43.855],"script":[4.889,4.691,4.772,4.785,4.872,4.685,4.765,4.997,4.787,4.899,4.785,5.059,4.964,4.939,4.891],"paint":[37.56,37.647,37.766,37.509,37.885,37.505,38.21,39.772,37.791,40.459,37.895,38.985,38.854,40.492,38.041]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.506,12.239,12.268,12.349,11.719,11.742,11.991,12.28,11.644,12.239,12.464,12.365,13.006,11.849,13.481],"script":[10.062,10.398,10.128,10.375,10.595,10.341,9.78,10.264,10.255,10.163,10.827,10.425,11.423,9.996,11.387],"paint":[0.355,1.761,2.048,1.883,0.364,0.741,2.078,1.084,1.3,1.983,0.975,1.164,1.471,1.779,1.559]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4795980453491211]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.9876527786254883]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9520759582519531]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6889019012451172]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.830049514770508]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.8818359375]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7802734375]}},{"framework":"dlightjs-v1.0.0-alpha.36-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"01_run1k","values":{"total":[37.813,39.445,38.162,37.771,38.005,37.794,37.791,40.194,38.007,37.971,38.36,40.095,40.335,37.856,39.231],"script":[4.262,4.334,4.447,4.168,4.524,4.439,4.527,4.641,4.324,4.28,4.773,4.481,4.464,4.559,4.759],"paint":[33.138,34.666,33.278,33.164,33.035,32.896,32.803,35.107,33.228,33.268,33.176,35.152,35.421,32.843,34.027]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"02_replace1k","values":{"total":[42.904,44.029,44.004,43.528,43.048,44.126,43.409,44.301,43.435,43.226,43.435,43.808,43.242,43.204,43.039],"script":[7.556,7.713,7.69,7.293,7.363,7.581,7.264,7.732,7.489,7.241,7.309,7.48,7.24,7.844,7.388],"paint":[34.902,35.85,35.863,35.755,35.22,36.089,35.711,36.128,35.479,35.518,35.665,35.826,35.527,34.908,35.186]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.036,16.602,17.052,18.729,16.765,16.387,18.521,17.518,17.683,16.89,16.572,16.416,17.136,16.408,17.478],"script":[1.225,1.397,0.948,1.526,1.36,1.4,1.331,1.348,2.117,1.023,1.177,1.117,1.007,1.262,1.642],"paint":[14.44,13.672,15.127,15.894,14.051,13.555,15.314,14.772,13.839,14.597,15.064,13.812,14.598,14.433,13.991]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"04_select1k","values":{"total":[2.708,4.404,2.64,3.194,2.471,2.227,2.678,2.494,2.821,3.311,2.95,2.527,3.525,4.379,2.732,3.024,3.221,2.304,3.322,2.998,2.391,2.594,2.769,1.907,2.686],"script":[0.303,0.919,0.392,0.943,0.068,0.086,0.196,0.072,0.085,0.069,0.071,0.069,0.073,1.151,0.077,0.073,0.775,0.071,0.852,0.703,0.067,0.075,0.076,0.328,0.076],"paint":[2.296,1.811,2.151,1.722,2.3,1.352,1.65,0.853,1.746,2.148,2.773,2.361,2.122,1.865,2.545,2.85,1.804,1.246,2.376,2.186,2.236,1.427,2.601,1.372,1.873]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"05_swap1k","values":{"total":[20.895,21.047,21.189,21.187,19.905,20.603,21.113,21.157,21.278,20.73,20.331,22.125,20.898,20.89,20.758],"script":[2.915,2.758,2.945,2.529,2.92,2.501,2.472,3.006,2.512,2.323,2.396,2.717,3.021,2.96,3.143],"paint":[16.971,16.997,16.755,17.497,16.608,16.829,17.321,17.021,17.733,17.116,15.936,18.059,16.699,15.776,16.32]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.312,16.017,16.429,16.305,16.315,16.302,16.434,15.991,16.011,16.058,16.024,16.906,16.369,16.073,16.315],"script":[0.972,1.094,1.122,0.993,1.036,1.098,0.968,0.994,1.097,0.786,1.123,1.02,1.144,1.107,1.146],"paint":[14.571,14.199,14.339,14.552,14.556,14.193,14.802,14.298,14.249,14.22,14.165,14.811,14.489,13.892,14.246]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"07_create10k","values":{"total":[402.041,402.896,395.827,398.52,397.348,403.019,399.981,398.265,395.723,390.518,395.251,390.996,393.304,395.278,396.072],"script":[50.922,50.729,50.246,51.091,51.264,51.494,50.155,49.141,49.833,49.036,49.655,50.273,49.575,49.758,49.906],"paint":[344.26,345.493,338.871,340.773,339.277,344.17,343.185,342.484,339.163,334.802,338.757,333.925,337.06,338.609,339.538]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.343,45.161,44.986,45.663,47.203,46.883,47.164,47.125,44.811,44.911,44.727,45.421,47.312,47.604,47.36],"script":[5.808,6.079,5.799,5.738,5.844,5.89,5.545,5.702,5.622,5.808,5.581,5.853,5.574,5.652,5.64],"paint":[38.62,38.192,38.298,39.025,40.476,40.102,40.692,40.526,38.287,38.199,38.288,38.686,40.865,41.111,40.807]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.496,13.119,12.081,12.436,12.101,12.115,12.016,12.729,12.011,12.665,12.119,12.359,12.107,12.368,11.948],"script":[10.636,10.904,10.207,10.461,10.216,10.737,10.615,10.42,10.439,10.827,10.501,10.54,10.35,10.236,10.133],"paint":[1.011,2.123,1.784,1.891,1.107,1.296,1.315,2.228,1.479,1.743,1.527,1.737,1.669,1.483,1.717]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49007701873779297]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2761659622192383]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3436803817749023]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6319265365600586]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.7880802154541]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.4677734375]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.08984375]}},{"framework":"dlightjs-subview-v1.0.0-alpha.36-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[69.307,64.973,60.689,62.999,66.013,64.438,68.027,69.844,70.794,66.748,64.492,62.157,68.498,63.536,65.776],"script":[27.226,29.086,27.928,28.419,28.525,29.333,28.563,29.134,28.614,27.997,29.984,26.79,28.557,28.606,28.661],"paint":[32.821,33.045,32.314,32.299,34.235,34.133,33.054,33.132,32.519,33.135,32.809,34.496,34.405,34.765,33.361]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[79.923,74.176,75.945,75.063,82.569,82.331,79.982,80.751,81.08,75.665,81.069,79.406,76.732,78.736,77.06],"script":[34.187,35.642,34.723,34.333,33.787,34.993,34.21,34.21,36.172,32.803,33.802,35.257,33.474,35.084,33.854],"paint":[37.352,35.566,36.583,35.946,36.74,36.898,36.175,37.058,36.507,36.102,35.716,35.728,36.065,35.345,36.979]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40.406,41.426,41.54899999999999,24.707,41.859,25.397,28.085,40.795,27.147,39.944,24.34,25.205,26.128,25.143,24.555],"script":[9.863,10.109,10.487,9.309,10.929,10.545,11.104,10.672,10.596,9.091,9.569,10.553,9.593,10.68,10.129],"paint":[14.507,14.951,14.908,14.826,14.852,13.243,16.847,13.521,15.993,15.402,14.672,14.409,14.35,14.362,13.199]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.807,2.932,3.423,5.728,3.479,3.58,4.448,3.159,6.275,3.16,2.869,5.941,3.253,3.426,4.256,3.222,3.434,3.883,3.805,3.507,3.23,3.524,3.441,3.397,2.9],"script":[0.873,0.738,0.376,0.71,1.084,0.923,0.257,0.838,0.261,0.921,1.109,1.526,0.638,1.208,1.226,1.241,1.503,1.533,1.597,1.001,1.173,0.265,0.658,0.72,1.385],"paint":[1.907,1.194,1.881,2.001,2.302,1.856,1.697,1.426,2.819,1.809,1.663,1.784,2.518,1.999,2.663,1.88,1.828,2.25,1.473,2.401,1.266,1.639,1.395,2.56,1.417]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[45.743,45.989,45.983,31.666,30.445,32.034,46.024,29.473,29.372,32.064,29.186,28.572,30.293,32.213,32.254],"script":[12.383,13.267,12.061,12.896,11.783,11.505,12.774,12.683,12.44,11.962,12.18,11.922,12.715,12.679,12.404],"paint":[18.213,16.907,17.864,16.211,18.539,17.621,17.202,16.677,16.334,17.275,16.893,16.547,16.042,17.198,17.103]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.246,21.738,18.277,23.963,23.283,23.489,15.896,16.002,20.231,18.145,18.014,16.409,21.712,17.817,16.518],"script":[0.255,0.434,0.257,0.483,0.564,0.664,0.496,0.269,0.542,0.713,0.382,0.377,0.52,0.524,0.434],"paint":[14.606,14.789,14.518,14.602,15.477,14.606,14.448,14.139,14.461,14.163,14.293,14.352,14.671,14.423,14.18]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[610.991,602.707,601.439,607.795,601.91,602.951,609.671,601.33,606.948,609.617,592.432,590.2,603.816,601.33,613.708],"script":[255.857,252.315,250.718,257.831,252.752,253.53,256.655,253.602,254.501,255.673,245.538,241.411,249.321,250.815,255.998],"paint":[348.746,345.97,347.242,346.307,346.045,346.55,345.629,344.81,349.555,350.814,344.103,346.012,351.667,346.871,351.705]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.459,75.512,75.665,76.581,79.48,80.366,75.163,76.822,77.943,75.415,74.62,76.128,78.445,80.077,75.959],"script":[27.147,27.521,28.046,27.831,28.511,28.623,28.379,27.636,28.285,27.558,27.405,28.978,29.164,27.487,27.722],"paint":[41.784,41.722,41.894,43.188,41.704,41.952,41.367,43.081,42.186,42.38,41.816,41.735,41.925,42.224,42.678]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.077,22.555,22.893,22.806,22.261,22.071,23.36,23.45,23.03,22.726,23.989,21.43,22.366,23.056,23.455],"script":[20.083,20.633,19.754,21.348,19.634,19.087,19.719,19.836,21.063,20.575,21.419,19.469,19.581,20.212,21.188],"paint":[1.509,1.786,1.887,1.344,1.105,2.866,1.358,3.447,1.844,2.002,1.878,1.108,2.033,1.949,0.986]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6973409652709961]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.261355400085449]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.40902042388916]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4993352890014648]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.720370292663574]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.736328125]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.517578125]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.6]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[44.038,43.898,43.523,43.184,44.06,44.879,43.439,44.128,45.355,46.393,43.586,43.779,45.649,43.756,44.131],"script":[10.378,10.337,10.457,9.874,10.358,11.148,10.27,10.27,11.195,11.681,10.25,10.364,11.501,10.391,10.444],"paint":[33.23,33.133,32.633,32.893,33.278,33.306,32.751,33.384,33.71,34.277,32.905,32.984,33.735,32.955,33.251]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[49.592,50.879,50.291,50.995,49.814,50.246,49.948,49.851,50.364,49.625,51.635,51.6,50.07,50.18,50.675],"script":[14.775,15.262,14.96,15.33,14.647,14.846,14.866,14.659,14.749,14.771,15.098,15.341,14.705,14.721,15.145],"paint":[34.379,35.177,34.895,35.23,34.733,34.953,34.641,34.767,35.192,34.418,36.079,35.803,34.924,35.031,35.095]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.63,17.81,16.628,16.23,16.892,16.793,17.161,16.531,16.825,16.983,16.58,17.52,17.194,16.055,17.223],"script":[1.497,1.009,1.244,1.229,1.212,1.379,1.551,1.504,0.91,1.552,1.767,1.221,2.054,0.968,1.436],"paint":[13.981,14.986,13.846,13.7,14.329,13.925,14.591,14.217,14.815,14.451,14.471,14.518,14.151,14.42,14.243]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[3.346,3.306,3.621,4.825,4.318,3.595,3.559,3.659,4.067,3.735,3.14,4.237,3.565,3.716,3.191,5.991,3.367,3.51,2.825,3.583,3.692,2.822,2.97,3.915,3.219],"script":[0.86,0.878,1.044,1.065,1.486,1.218,1.311,0.993,0.223,1.493,1.016,1.192,1.386,1.393,0.954,1.165,1.056,1.112,0.942,1.344,1.297,0.683,0.797,1.13,0.563],"paint":[1.983,2.317,1.373,1.422,1.884,2.272,2.142,2.563,2.751,1.642,1.633,1.621,1.59,2.223,1.687,1.584,1.785,2.301,1.14,2.141,2.289,1.634,2.065,1.642,1.093]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[19.05,18.575,19.398,18.689,18.568,18.693,19.166,19.237,18.363,17.731,18.701,18.757,18.682,18.745,19.129],"script":[1.036,0.771,0.137,1.308,0.129,0.648,0.775,0.138,0.855,0.134,0.78,0.453,0.14,0.658,0.255],"paint":[16.348,16.522,18.079,16.162,17.437,15.705,17.301,17.719,16.235,16.496,16.172,17.301,15.96,16.508,17.45]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.196,14.796,15.163,14.783,14.73,14.893,15.064,14.85,14.893,15.297,15.053,15.161,15.257,14.775,15.024],"script":[0.497,0.472,0.521,0.501,0.35,0.263,0.459,0.411,0.537,0.535,0.367,0.488,0.43,0.493,0.298],"paint":[13.94,13.621,13.876,13.562,13.672,13.825,13.899,13.728,13.613,13.702,13.817,13.632,13.978,13.553,13.929]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[464.589,479.505,465.055,471.451,467.752,465.132,467.006,475.631,471.012,470.898,469.264,479.257,472.233,470.972,472.229],"script":[120.714,130.676,121.346,126.548,122.456,123.136,122.062,124.892,125.88,123.359,122.544,130.311,125.655,122.61,128.589],"paint":[336.707,341.399,336.959,337.148,338.139,335.207,337.974,342.8,338.388,340.777,339.926,341.953,339.81,341.608,336.915]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.682,51.18,52.11,52.851,52.321,51.949,51.423,50.186,51.64,53.445,52.139,53.872,51.401,50.952,51.484],"script":[10.987,11.054,11.688,11.861,11.825,11.22,10.992,10.998,11.007,11.874,11.009,11.966,11.123,11.122,11.141],"paint":[39.791,39.213,39.535,40.07,39.587,39.805,39.476,38.288,39.733,40.651,40.186,40.914,39.349,38.921,39.426]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.659,16.474,17.704,17.04,17.233,16.939,17.59,17.448,17.703,17.608,17.147,16.453,17.202,17.228,17.096],"script":[15.764,15.181,15.616,15.461,15.001,15.055,15.485,15.615,15.316,15.708,15.313,14.869,15.161,15.997,15.277],"paint":[1.811,0.818,1.979,1.344,2.016,1.788,2.004,1.743,1.915,1.793,1.175,1.492,1.185,1.13,1.732]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6291818618774414]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8252220153808594]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8240785598754883]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.627566337585449]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.736724853515625]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.361328125]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.0673828125]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.5]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[35.12,37.053,35.542,37.112,34.906,35.769,35.349,35.403,35.545,35.967,35.751,36.55,36.993,36.943,36.097],"script":[2.314,2.261,2.313,2.412,2.241,2.229,2.381,2.36,2.216,2.344,2.251,2.367,2.432,2.441,2.253],"paint":[32.399,34.348,32.824,34.304,32.248,33.107,32.563,32.597,32.923,33.182,33.079,33.779,34.118,34.063,33.425]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[39.359,40.889,40.47,38.905,39.774,38.951,40.314,39.048,39.173,40.553,39.243,40.188,41.21,39.578,40.445],"script":[4.799,5.116,5.192,4.783,4.945,4.809,5.079,4.752,4.846,5.026,4.799,4.962,5.19,4.852,5.125],"paint":[34.112,35.322,34.84,33.698,34.407,33.705,34.811,33.858,33.888,35.102,34.022,34.779,35.564,34.25,34.865]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.493,16.82,17.352,16.319,16.403,17.051,16.701,16.525,16.781,17.169,16.075,17.061,16.073,16.333,16.322],"script":[1.39,0.689,0.61,0.886,1.03,1.472,0.957,0.913,1.402,0.989,0.889,1.242,0.223,0.743,0.978],"paint":[14.998,14.444,15.268,14.739,13.271,14.086,14.393,14.914,13.224,15.18,13.873,13.343,14.572,13.793,13.84]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[2.794,2.708,2.729,2.468,2.987,2.747,2.75,2.986,2.867,3.112,2.935,3.886,2.531,2.244,3.493,2.751,2.64,2.534,2.516,2.664,3.679,2.479,3.256,3.046,2.845],"script":[0.058,0.058,0.082,0.057,0.057,0.07,0.066,1.041,0.068,0.791,0.527,0.754,0.068,0.059,0.642,0.451,0.058,0.061,0.058,0.3,1.014,0.062,0.065,0.68,0.813],"paint":[2.078,2.526,1.879,1.643,2.813,1.857,2.557,1.838,2.673,1.45,2.133,2.978,1.91,2.064,2.3,2.181,2.471,2.365,2.34,1.906,2.532,1.561,2.718,2.249,1.288]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[18.267,18.357,18.672,18.319,18.795,18.483,19.015,18.533,19.183,18.467,18.635,18.004,17.896,18.131,18.202],"script":[0.081,0.143,0.08,0.07,0.729,0.083,0.078,0.074,0.074,0.078,0.499,0.19,0.076,0.342,0.073],"paint":[16.357,17.257,16.958,16.976,16.287,16.194,17.867,16.494,17.32,16.163,16.785,16.768,16.586,15.645,16.797]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.756,15.196,15.241,14.749,15.036,15.093,15.109,15.148,15.24,14.82,15.242,15.127,14.81,15.247,16.338],"script":[0.08,0.385,0.078,0.077,0.076,0.076,0.074,0.158,0.315,0.083,0.082,0.273,0.073,0.081,0.448],"paint":[13.662,14.076,14.133,13.911,14.271,14.297,13.818,14.238,13.839,14.026,14.148,14.105,13.703,14.418,15.148]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[368.196,371.699,370.478,371.916,372.376,371.049,371.561,367.48,369.402,373.478,373.339,370.796,372.578,374.391,370.701],"script":[25.639,25.77,24.986,25.969,24.83,24.951,26.138,24.176,23.905,26.479,25.063,24.245,26.229,25.935,25.716],"paint":[335.987,338.739,338.742,339.246,340.934,339.378,338.718,336.677,338.753,340.354,341.573,339.957,339.772,341.85,338.318]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.989,41.235,40.576,41.194,41.383,40.381,40.639,40.155,39.747,40.341,41.612,39.729,41.682,39.931,40.948],"script":[2.526,2.256,2.289,2.352,2.509,2.232,2.375,2.259,2.258,2.244,2.418,2.304,2.362,2.283,2.424],"paint":[38.578,38.094,37.404,37.95,38.009,37.287,37.405,37.012,36.631,37.223,38.315,36.59,38.456,36.822,37.675]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.621,12.329,13.101,12.056,12.281,12.437,12.502,12.893,13.06,12.609,13.083,12.495,12.651,12.905,12.443],"script":[10.665,10.676,10.985,10.687,10.727,10.444,10.482,10.962,11.002,10.831,11.127,10.712,10.624,10.47,10.756],"paint":[1.306,1.574,2.043,1.284,1.476,1.402,1.938,1.125,1.983,1.701,0.968,1.691,1.252,1.804,1.604]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5305919647216797]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7125463485717773]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.709014892578125]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6190519332885742]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.16050910949707]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.375]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.951171875]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.9]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[34.895,36.776,36.839,34.933,34.905,35.913,35.977,36.26,35.006,34.429,36.168,37.386,35.381,34.828,35.87],"script":[2.36,2.31,2.517,2.248,2.253,2.278,2.248,2.35,2.207,2.283,2.465,2.312,2.272,2.432,2.393],"paint":[32.126,34.048,33.885,32.268,32.261,33.192,33.304,33.504,32.371,31.736,33.275,34.666,32.682,31.994,33.056]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[40.711,40.561,38.984,38.666,39.099,40.304,38.746,40.647,39.175,39.04,39.114,38.565,39.879,38.56,38.641],"script":[5.123,4.902,4.689,4.677,4.699,4.736,4.669,4.901,4.595,4.655,4.618,4.614,4.714,4.812,4.572],"paint":[35.125,35.215,33.87,33.548,33.966,35.089,33.652,35.278,34.116,33.953,34.061,33.55,34.534,33.29,33.64]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.864,15.969,16.546,16.688,15.858,15.952,16.953,16.286,15.917,16.794,16.632,16.922,16.184,15.801,16.65],"script":[1.026,0.837,0.838,0.939,1.059,0.228,0.898,0.535,0.572,1.408,0.92,0.65,0.204,1.08,1.446],"paint":[14.363,13.525,14.224,14.444,13.641,14.262,14.359,14.568,14.057,13.587,14.237,14.915,14.83,12.947,13.592]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[3.812,2.536,2.49,2.773,2.635,2.485,1.962,1.819,2.765,2.521,2.911,3.158,2.972,4.305,2.729,2.484,2.622,2.465,4.099,2.721,4.054,2.772,2.282,2.756,2.409],"script":[0.056,0.056,0.884,0.062,0.804,0.057,0.057,0.066,1.057,0.054,0.058,0.058,0.056,1.082,0.785,0.058,0.06,0.058,0.804,0.219,0.941,0.066,0.064,0.064,0.063],"paint":[1.613,2.168,1.076,2.568,1.73,2.33,1.523,1.652,1.621,0.553,2.758,1.671,2.826,1.898,1.147,2.323,2.466,2.302,1.166,1.872,1.636,2.619,1.16,1.528,2.254]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[17.86,18.422,18.154,18.129,18.642,17.905,19.808,17.618,17.794,17.526,17.811,18.3,18.836,17.858,17.789],"script":[0.078,0.653,0.075,0.082,0.917,0.071,0.08,0.084,0.122,0.074,0.072,0.723,0.54,0.083,0.076],"paint":[16.563,16.721,16.771,16.503,16.402,16.448,18.562,15.564,16.308,16.474,16.003,15.91,16.112,16.375,16.567]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.302,15.152,14.787,14.691,15.174,14.839,14.514,14.756,15.157,14.705,14.709,14.706,14.866,15.626,15.112],"script":[0.332,0.387,0.083,0.078,0.364,0.08,0.084,0.081,0.085,0.076,0.078,0.081,0.08,0.11,0.083],"paint":[14.198,14.031,13.734,13.61,14.091,13.589,13.7,13.979,14.242,13.867,13.926,13.932,14.059,14.731,13.994]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[364.654,375.636,364.747,365.125,365.81,367.181,364.18,366.823,366.004,364.062,367.639,362.941,366.407,370.302,376.114],"script":[25.445,25.518,24.712,23.723,24.242,24.298,24.359,24.7,25.88,24.051,24.243,24.688,25.321,25.626,25.177],"paint":[332.528,343.489,333.4,334.402,334.95,336.321,333.225,335.538,333.424,333.404,336.849,331.673,334.499,338.153,344.391]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.163,40.093,40.446,41.194,40.409,39.615,42.537,40.717,40.127,40.378,39.981,40.546,40.215,40.889,40.232],"script":[2.3,2.333,2.303,2.446,2.285,2.264,2.482,2.279,2.284,2.262,2.285,2.306,2.29,2.307,2.287],"paint":[37.03,36.911,37.274,37.908,37.215,36.484,39.193,37.566,36.995,37.261,36.851,37.403,37.089,37.729,37.1]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.413,11.648,12.148,12.311,11.677,11.383,11.804,11.895,11.933,11.509,11.744,11.214,11.604,11.18,12.001],"script":[9.524,9.82,9.744,10.628,9.815,9.908,9.727,9.95,10.255,9.478,10.572,9.912,10.137,10.079,10.083],"paint":[1.804,1.005,2.329,1.595,1.773,1.4,2,1.859,1.589,1.945,1.087,1.217,1.365,0.365,1.828]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5178089141845703]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7073736190795898]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7334585189819336]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6012897491455078]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.15517520904541]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.2919921875]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.943359375]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.6]}},{"framework":"doz-v5-preview-keyed","benchmark":"01_run1k","values":{"total":[59.231,60.21,60.878,60.267,59.886,60.717,60.25,61.356,59.778,59.32,59.559,60.686,59.157,60.574,59.79],"script":[25.495,25.827,26.351,26.441,25.877,25.979,25.916,26.123,25.485,25.356,26.059,26.099,25.79,26.372,26.424],"paint":[33.297,33.934,34.069,33.398,33.568,34.281,33.911,34.833,33.873,33.541,33.076,34.149,32.972,33.799,32.919]}},{"framework":"doz-v5-preview-keyed","benchmark":"02_replace1k","values":{"total":[62.837,63.019,62.627,63.607,62.618,62.497,62.254,63.198,62.207,62.812,62.553,62.006,61.872,62.367,63.366],"script":[27.555,27.578,27.175,27.56,27.154,27.289,27.214,27.784,27.172,27.051,27.317,27.396,26.815,27.596,27.485],"paint":[34.846,34.982,35.025,35.524,35.038,34.774,34.597,34.97,34.608,35.332,34.781,34.163,34.609,34.331,35.435]}},{"framework":"doz-v5-preview-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.214,29.034,28.758,27.989,29.276,29.362,29.566,29.458,28.278,28.742,29.915,28.015,28.766,29.663,28.776],"script":[11.845,11.756,12.638,12.042,12.945,11.096,11.657,11.06,10.937,11.49,11.948,12.01,11.121,11.491,12.637],"paint":[16.016,16.314,14.522,13.8,14.254,16.673,16.519,17.193,16.046,15.898,16.467,14.243,15.807,16.774,14.693]}},{"framework":"doz-v5-preview-keyed","benchmark":"04_select1k","values":{"total":[8.684,9.118,9.285,8.815,9.433,9.149,9.489,8.462,9.144,8.972,9.27,8.401,8.402,9.114,8.086,8.069,9.217,9.476,9.428,8.244,9.323,8.379,8.994,9.405,8.997],"script":[5.825,6.778,5.901,6.14,6.404,5.953,6.763,5.878,6.372,6.319,6.27,6.034,6.141,6.267,6.396,6.333,6.174,6.081,6.666,6.101,6.59,6.204,6.004,6.197,6.215],"paint":[2.274,1.642,1.519,2.455,2.472,2.371,2.14,2.068,1.911,0.958,2.871,1.682,1.593,1.992,1.448,1.134,2.919,2.281,2.017,1.653,1.812,2.046,2.857,2.076,1.891]}},{"framework":"doz-v5-preview-keyed","benchmark":"05_swap1k","values":{"total":[25.278,25.665,25.639,25.213,24.921,24.344,24.895,25.55,26.943,27.361,25.836,27.205,24.729,26.518,24.741],"script":[6.553,6.705,7.156,6.177,6.227,6.779,5.789,6.211,5.933,6.687,6.896,6.785,6.109,5.952,5.771],"paint":[16.17,17.467,16.429,16.838,17.115,15.841,17.395,17.317,19.914,19.023,17.632,18.9,17.603,18.554,17.562]}},{"framework":"doz-v5-preview-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.498,20.94,20.723,20.344,20.394,20.468,20.386,20.478,20.868,20.659,21.289,20.656,20.455,20.355,20.484],"script":[5.582,5.642,5.879,5.473,5.549,5.478,5.473,5.555,5.584,5.553,5.863,5.488,5.538,5.484,5.677],"paint":[15.131,14.565,14.44,13.543,13.808,13.838,14.142,14.162,14.54,14.385,14.683,14.466,14.146,13.767,14.082]}},{"framework":"doz-v5-preview-keyed","benchmark":"07_create10k","values":{"total":[678.997,682.357,677.24,677.763,675.95,680.652,688.777,682.389,682.992,675.773,671.023,675.826,677.317,676.005,676.531],"script":[322.294,323.813,323.301,324.657,324.707,322.446,325.318,322.816,323.166,322.365,322.739,321.872,324.627,322.522,320.892],"paint":[349.961,351.99,347.34,346.538,344.537,351.556,356.78,352.99,353.25,346.798,341.7,347.217,346.093,346.904,349.018]}},{"framework":"doz-v5-preview-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[115.526,117.121,118.328,113.979,114.907,115.283,115.472,114.455,113.645,117.913,113.327,114.797,117.512,117.966,117.904],"script":[44.774,46.57,43.589,43.618,44.56,44.675,45.383,44.958,43.597,44.033,43.86,44.129,44.747,45.426,45.456],"paint":[69.839,69.643,73.845,69.474,69.456,69.686,69.143,68.605,69.109,72.968,68.554,69.765,71.877,71.613,71.532]}},{"framework":"doz-v5-preview-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.44,16.477,17.833,16.72,16.388,16.358,17.504,16.558,15.45,15.667,15.927,16.541,15.935,16.312,15.135],"script":[14.195,14.302,15.539,14.961,14.509,14.022,14.789,14.392,13.878,13.983,14.156,14.607,13.828,14.55,13.68],"paint":[1.804,1.888,2.204,1.67,1.733,1.95,2.114,2.075,1.483,1.21,1.677,1.835,2.009,0.83,1.37]}},{"framework":"doz-v5-preview-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7342910766601562]}},{"framework":"doz-v5-preview-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.512258529663086]}},{"framework":"doz-v5-preview-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.242131233215332]}},{"framework":"doz-v5-preview-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.82599925994873]}},{"framework":"doz-v5-preview-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.92591094970703]}},{"framework":"doz-v5-preview-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[72.984375]}},{"framework":"doz-v5-preview-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.111328125]}},{"framework":"doz-v5-preview-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.3]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[49.912,48.954,47.968,48.178,49.66,50.111,49.566,48.425,48.91,49.739,50.618,47.956,48.123,49.7,48.546],"script":[14.593,14.67,13.931,14.036,14.443,14.702,14.264,14.416,14.328,14.431,14.822,14.317,14.347,14.325,14.108],"paint":[34.892,33.859,33.592,33.701,34.768,35.007,34.888,33.567,34.15,34.869,35.362,33.216,33.353,34.928,34.026]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[53.776,53.074,53.932,52.92,54.983,53.821,54.885,52.011,52.109,51.804,53.084,51.335,51.841,53.687,52.621],"script":[16.9,16.179,16.424,16.19,17.48,16.609,17.11,16.287,16.142,16.211,15.91,16.093,15.918,16.776,15.922],"paint":[36.407,36.413,37.044,36.271,37.02,36.756,37.316,35.245,35.506,35.136,36.697,34.799,35.446,36.418,36.173]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.776,16.036,16.464,16.059,16.263,16.904,16.503,16.118,15.839,16.208,16.561,18.14,15.824,16.238,16.191],"script":[0.69,1.832,1.076,1.022,0.588,1.123,0.6,0.895,1.279,1.283,1.09,0.982,0.237,0.883,0.928],"paint":[13.533,12.018,14.008,13.503,13.983,13.996,14.347,13.399,13.551,13.908,14.084,16.023,14.355,13.872,13.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[3.106,2.811,5.924,2.978,2.906,2.332,2.547,2.546,3.033,3.118,3.351,2.853,3.207,2.695,3.306,2.975,4.855,5.889,3.054,2.511,3.661,7.246,2.937,3.049,2.764],"script":[0.105,0.096,0.099,0.612,0.102,0.099,0.097,0.106,0.935,0.924,0.922,0.105,0.453,0.102,0.78,0.586,0.917,0.777,0.873,0.654,0.103,0.731,0.108,1.105,0.106],"paint":[2.89,2.244,2.596,1.679,2.704,2.135,2.352,2.339,1.601,2.095,2.328,2.653,1.645,1.514,2.415,2.289,1.842,1.869,1.436,1.761,1.171,1.305,1.992,1.841,1.012]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[19.688,18.785,18.968,18.555,19.261,18.531,19.088,19.317,17.9,18.932,18.516,19.397,18.708,18.428,18.875],"script":[0.446,0.657,0.124,1.004,0.133,0.544,1.138,0.124,0.124,0.137,0.129,1.005,0.913,0.554,1.033],"paint":[17.652,16.31,16.342,16.242,18.076,16.129,16.26,17.824,16.335,17.475,17.341,16.956,16.439,16.052,15.598]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.996,14.862,14.743,14.759,15.091,14.858,14.959,14.779,14.655,14.825,14.746,14.854,14.818,15.181,14.764],"script":[0.241,0.468,0.319,0.121,0.302,0.122,0.216,0.127,0.386,0.119,0.114,0.119,0.12,0.46,0.302],"paint":[14.246,13.408,13.664,13.928,13.914,14.044,14.007,13.931,13.244,14,13.569,13.944,13.858,14.001,13.722]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[491.664,492.172,490.862,486.939,490.859,485.672,491.204,490.453,488.744,488.442,487.915,496.682,489.035,492.433,490.642],"script":[145.925,145.23,148.024,145.483,147.613,146.415,145.968,146.584,144.918,147.814,144.806,145.703,147.097,149.791,149.134],"paint":[337.906,340.279,336.189,334.558,336.518,332.471,338.57,337.059,337.164,333.941,336.425,344.306,335.224,335.847,334.859]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.42,51.139,51.61,51.019,52.852,52.975,51.479,52.562,50.42,52.632,51.476,51.053,52.895,51.751,50.828],"script":[11.552,11.735,11.717,11.912,11.855,12.589,11.998,12.119,11.709,12.739,11.812,11.662,12.424,12.167,11.746],"paint":[39.693,38.517,38.994,38.237,40.047,39.476,38.602,39.533,37.833,38.985,38.729,38.433,39.579,38.72,38.192]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.239,15.772,17.551,16.01,17.031,16.594,16.905,16.765,17.438,16.173,17.304,16.886,16.903,17.138,17.458],"script":[15.247,14.278,15.207,14.358,15.033,14.671,14.805,14.881,15.49,14.278,15.125,15.152,14.974,15.286,15.764],"paint":[1.347,1.29,1.317,1.383,1.872,1.8,1.416,1.77,1.233,1.803,1.915,1.604,1.038,1.755,0.838]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5634098052978516]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.5638322830200195]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.689360618591309]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9402713775634766]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.66111660003662]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.693359375]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1396484375]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[50.55,43.718,52.117,42.488,48.79,46.785,44.075,51.16,43.667,42.486,51.638,42.466,50.603,48.743,44.403],"script":[9.398,9.147,9.83,9.224,9.421,9.212,9.792,9.15,9.383,9.142,9.613,8.885,9.51,9.451,9.104],"paint":[33.574,32.583,33.591,32.833,32.214,33.37,33.494,32.689,32.727,32.906,32.583,33.13,33.597,33.309,34.574]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[50.322,56.886,57.452,54.957,54.467,54.652,50,54.547,58.153,51.147,59.034,50.437,56.629,59.621,56.928],"script":[11.274,12.12,12.566,11.826,12.433,12.196,10.964,11.444,12.29,11.524,12.265,11.786,11.845,12.918,12.221],"paint":[35.819,36.301,36.017,37.054,36.256,36.177,36.585,35.82,36.016,35.632,36.241,35.937,36.65,36.105,35.421]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[43.799,19.306,40.234,22.058,19.714,20.013,19.826,23.525,44.403,44.371,22.132,44.463,20.377,46.377,20.901],"script":[4.826,4.277,2.814,4.818,4.359,3.069,3.227,4.632,4.847,4.168,3.989,3.552,3.628,3.169,3.612],"paint":[13.832,14.26,15.685,15.526,13.757,15.892,13.323,14.507,14.157,13.541,13.697,14.089,13.737,17.211,15.782]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[10.086,5.766,10.392,11.556,7.453,7.867,9.161,10.833,8.852,8.913,9.581,6.125,8.336,5.985,6.912,7.038,9.417,6.886,6.927,4.8,4.823,9.431,10.642,5.9,8.225],"script":[0.752,1.446,1.686,1.433,1.24,1.387,1.144,2.054,2.038,0.707,0.788,1.142,1.876,1.107,1.946,0.375,0.368,1.585,1.548,1.695,1.79,2.071,0.371,1.331,1.469],"paint":[2.619,2.503,1.954,2.286,1.661,2.462,2.35,2.008,1.445,1.709,2.154,2.384,2.357,1.773,2.39,2.715,3.131,3.008,2.201,2.582,1.39,1.118,2.377,2.416,1.656]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[43.411,20.847,24.663,21.916,21.035,20.366,19.968,41.319,20.651,40.31,22.407,40.321,42.284,42.644,43.538],"script":[1.58,1.863,0.432,0.979,1.731,1.111,1.477,1.374,1.322,1.096,1.243,1.569,2.108,2.33,2.88],"paint":[17.351,17.041,18.516,18.074,16.088,18.282,16.818,17.52,15.834,17.312,19.639,16.715,17.266,17.615,17.893]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.222,23.941,18.519,22.879,23.195,23.818,21.721,16.962,17.262,18.476,20.886,17.699,24.219,22.402,21.125],"script":[0.985,0.767,1.058,0.972,0.73,0.951,0.917,0.736,0.743,1.02,0.835,0.744,0.988,1.055,0.71],"paint":[14.718,15.047,15.093,14.687,15.323,14.988,14.945,14.892,15.113,14.511,14.854,15.204,15.239,14.798,15.085]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[458.229,455.732,458.674,456.721,439.584,454.299,455.947,456.059,452.644,439.539,456.161,455.587,455.285,453.9,456.662],"script":[101.254,100.404,101.959,103.272,100.247,100.589,100.871,99.356,99.6,101.817,100.854,101.557,103.437,101.597,100.443],"paint":[347.657,346.497,347.793,344.647,330.122,345.225,345.531,347.482,344.023,330.113,346.298,344.605,342.457,343.064,344.15]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.139,58.109,53.133,52.625,57.603,52.185,55.087,54.213,53.545,52.749,54.92,52.961,56.765,52.25,52.504],"script":[8.321,8.599,8.298,8.265,8.702,8.12,9.532,8.672,8.364,8.222,8.123,8.074,8.117,7.922,8.218],"paint":[37.708,38.625,38.012,37.896,38.603,37.292,38.779,37.969,38.348,37.874,37.795,38.184,38.034,37.65,37.714]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.658,38.409,13.223,15.03,37.311,14.689,14.51,14.227,13.801,14.807,14.202,15.092,15,14.023,37.126],"script":[12.28,11.448,12.062,10.494,12.346,12.081,11.641,10.659,10.644,11.845,12.273,10.286,11.075,12.121,11.633],"paint":[1.509,2.224,1.037,2.566,1.132,0.76,1.533,1.853,1.022,0.899,1.811,2.472,1.739,1.797,2.115]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5522308349609375]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.679945945739746]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.737974166870117]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0723180770874023]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.29666233062744]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5205078125]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1708984375]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.9]}},{"framework":"ember-v5.3.0-keyed","benchmark":"01_run1k","values":{"total":[66.71,69.146,69.164,66.534,66.598,68.621,68.591,69.048,68.004,68.385,66.582,69.331,67.363,67.185,67.425],"script":[32.01,33.279,32.956,31.48,31.561,33.291,32.509,34.001,32.728,32.972,31.869,33.702,31.693,32.254,31.931],"paint":[34.208,35.38,35.669,34.606,34.58,34.845,35.6,34.596,34.751,34.947,34.226,35.163,35.227,34.452,35.022]}},{"framework":"ember-v5.3.0-keyed","benchmark":"02_replace1k","values":{"total":[84.388,83.094,82.163,81.283,81.6,82.397,83.774,83.817,82.606,83.712,83.251,83.839,82.947,84.149,84.758],"script":[44.427,44.98,44.233,42.627,43.616,44.464,45.342,43.841,44.604,44.997,44.915,45.18,44.661,45.901,44.281],"paint":[39.465,37.589,37.449,38.156,37.492,37.425,37.952,39.475,37.498,38.228,37.853,38.13,37.784,37.727,39.832]}},{"framework":"ember-v5.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.456,24.091,25.104,24.154,25.734,24.264,23.36,23.614,23.469,24.021,24.062,24.584,23.118,23.107,23.247],"script":[8.367,7.821,7.233,7.847,7.531,8.203,7.665,7.562,8.021,7.999,7.58,8.693,7.695,7.379,7.522],"paint":[14.59,13.926,16.725,14.382,16.381,14.448,14.535,14.471,13.936,14.747,15.16,12.707,14.242,14.335,14.094]}},{"framework":"ember-v5.3.0-keyed","benchmark":"04_select1k","values":{"total":[18.224,18.463,17.119,18.041,19.737,18.623,17.62,18.856,18.047,17.089,17.348,17.499,17.282,17.902,18.211,17.672,17.637,17.995,18.297,18.149,16.719,17.633,20.418,17.971,16.954],"script":[14.601,14.684,13.93,15.041,14.573,15.105,14.516,15.679,14.79,13.903,14.491,13.966,14.355,15.015,14.539,14.413,14.503,14.239,14.578,14.857,14.036,14.224,16.03,15.012,14.502],"paint":[2.469,2.845,2.224,2.369,3.389,2.854,2.121,2.565,1.389,2.537,1.914,2.996,2.255,2.699,3.061,3.081,2.091,3.134,3.535,2.532,1.268,3.236,3.334,1.402,2.279]}},{"framework":"ember-v5.3.0-keyed","benchmark":"05_swap1k","values":{"total":[30.551,28.709,28.139,29.277,28.855,30.904,29.182,29.258,28.924,29.327,29.202,28.838,28.496,28.474,29.877],"script":[9.095,9.457,9.118,10.21,9.1,9.215,10.093,9.645,8.984,9.707,8.519,9.705,8.854,9.643,10.642],"paint":[19.97,16.557,17.732,16.926,18.762,19.7,17.688,17.799,18.481,17.354,19.616,17.459,18.322,17.451,17.888]}},{"framework":"ember-v5.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.692,24.992,24.726,24.465,24.569,24.348,24.498,24.308,25.334,24.314,24.389,24.366,24.391,24.62,24.534],"script":[8.955,9.113,9.226,8.81,8.849,8.928,8.994,8.882,8.902,8.867,8.922,8.565,8.99,8.855,8.813],"paint":[14.954,15.011,14.71,14.84,14.639,14.647,14.683,14.32,15.059,14.141,14.085,14.987,14.32,14.674,14.969]}},{"framework":"ember-v5.3.0-keyed","benchmark":"07_create10k","values":{"total":[611.034,602.99,598.542,599.946,603.323,611.057,610.88,608.843,616.185,610.655,610.726,614.524,601.713,620.706,606.016],"script":[247.069,238.722,235.028,238.869,242.338,251.736,249.04,248.167,248.235,247.331,249.572,251.064,245.268,248.331,244.793],"paint":[356.843,357.025,355.877,353.849,353.742,352.212,354.763,353.529,360.869,355.78,354.027,356.249,349.321,364.899,354.133]}},{"framework":"ember-v5.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[78.722,79.082,80.242,78.134,80.347,79.419,79.389,80.968,81.282,79.951,79.679,79.148,80.894,79.803,80.679],"script":[37.574,38.027,38.827,37.155,38.986,37.874,37.515,37.92,38.958,38.157,37.531,37.702,38.425,37.917,38.678],"paint":[40.185,40.078,40.457,40.021,40.435,40.581,40.995,42.075,41.361,40.829,41.196,40.505,41.294,40.934,41.067]}},{"framework":"ember-v5.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.967,21.922,20.034,21.48,20.639,21.6,21.931,21.004,20.706,20.562,21.108,22.918,20.738,21.628,21.64],"script":[19.369,20.159,18.585,19.349,18.722,19.344,19.325,18.928,18.823,18.344,18.973,20.925,18.557,19.44,19.856],"paint":[1.495,1.662,1.344,1.361,1.131,1.95,1.24,1.365,1.046,2.123,1.233,1.721,1.832,2.073,1.012]}},{"framework":"ember-v5.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[6.789891242980957]}},{"framework":"ember-v5.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.453709602355957]}},{"framework":"ember-v5.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.629490852355957]}},{"framework":"ember-v5.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.034618377685547]}},{"framework":"ember-v5.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[58.77493953704834]}},{"framework":"ember-v5.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[433.8076171875]}},{"framework":"ember-v5.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[103.873046875]}},{"framework":"ember-v5.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[588.5]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"01_run1k","values":{"total":[47.883,47.273,47.471,49.074,48.267,49.796,49.405,48.872,47.711,46.752,50.05,48.248,47.922,49.135,47.321],"script":[11.727,11.139,11.057,12.122,11.831,12.716,12.391,12.281,11.299,11.252,12.765,11.754,11.166,12.303,11.093],"paint":[35.703,35.713,35.973,36.547,36.006,36.643,36.544,36.148,35.979,35.069,36.848,36.031,36.316,36.404,35.799]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"02_replace1k","values":{"total":[54.476,52.684,53.092,53.795,54.029,52.922,54.111,54.346,54.987,54.285,52.737,52.074,53.246,53.864,52.933],"script":[16.598,15.133,15.268,15.507,16.381,15.461,15.578,15.42,15.947,16.392,15.373,15.428,15.56,15.407,15.154],"paint":[37.391,37.088,37.386,37.814,37.179,37.006,38.085,38.475,38.58,37.439,36.917,36.191,37.237,37.986,37.334]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.688,18.355,16.958,16.915,16.963,19.477,17.349,16.601,17.008,17.105,16.924,16.549,16.205,16.545,16.575],"script":[0.925,1.232,0.851,1.236,0.973,0.953,1.118,1.172,0.253,1.038,0.554,1.232,0.26,0.609,1.188],"paint":[15.176,16.055,14.19,14.38,14.312,16.011,14.348,13.676,15.566,14.647,14.697,14.104,14.878,14.38,14.054]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"04_select1k","values":{"total":[2.386,4.053,2.569,2.195,3.23,2.784,3.647,2.826,2.771,2.81,2.551,3.104,2.584,3.471,2.225,2.233,2.842,2.851,4.937,3.867,4.999,2.443,4.282,2.762,2.506],"script":[0.053,0.055,0.532,0.052,0.758,0.053,0.928,0.051,0.064,0.687,0.051,0.871,0.056,0.826,0.052,0.051,0.056,0.055,1.015,0.051,0.051,0.055,0.056,0.051,0.449],"paint":[2.233,1.41,1.579,1.102,2.376,2.63,2.389,2.68,2.503,1.983,2.397,1.744,2.432,2.043,2.081,1.223,1.772,1.819,1.77,1.433,2.036,2.298,2.021,2.611,1.955]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"05_swap1k","values":{"total":[20.56,21.199,19.828,20.997,19.857,19.654,20.24,20.301,20.697,20.367,19.512,19.157,20.149,19.939,21.206],"script":[1.007,1.496,0.9,1.498,0.594,0.667,1.089,0.813,0.893,1.095,1.267,1.029,1.543,1.026,1.268],"paint":[18.078,18.588,16.983,18.463,18.466,17.635,16.907,17.633,18.077,17.635,16.792,17.127,16.652,17.851,18.372]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.988,16.039,15.96,16.043,16.001,15.891,15.921,16.337,15.666,15.917,16.994,15.937,16.425,15.746,15.993],"script":[0.598,0.609,0.386,0.579,0.598,0.615,0.484,0.612,0.614,0.58,0.636,0.605,0.633,0.456,0.584],"paint":[14.916,14.609,14.837,14.434,14.876,14.75,14.383,14.57,14.329,14.603,15.279,14.044,14.861,14.395,14.647]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"07_create10k","values":{"total":[481.594,476.456,481.917,482.119,477.012,477.733,471.028,478.382,474.083,477.123,476.86,476.487,482.091,479.024,482.596],"script":[123.935,125.234,124.693,123.206,122.656,125.202,120.377,124.027,124.172,124.872,123.431,125.568,127.708,122.395,128.469],"paint":[350.944,344.355,350.529,352.186,347.565,345.828,343.782,347.529,343.161,345.561,346.657,344.226,347.629,349.508,347.44]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.713,54.962,53.591,53.69,54.768,52.81,53.09,54.597,52.989,53.043,52.369,52.131,54.94,53.114,52.906],"script":[10.848,11.634,10.705,10.69,11.378,10.488,11.065,11.587,10.806,10.976,10.421,10.65,11.47,10.541,11.047],"paint":[41.96,42.402,41.961,42.107,42.497,41.431,41.113,42.097,41.256,41.135,41.045,40.584,42.572,41.671,40.947]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.065,12.331,12.364,11.815,12.389,12.015,12.949,12.359,11.977,12.37,13.591,11.977,12.53,11.879,11.764],"script":[10.635,10.515,10.605,9.961,10.688,9.687,11.049,10.417,10.561,11.169,10.783,10.374,10.715,10.404,9.912],"paint":[1.342,1.636,0.837,1.762,1.615,1.402,1.59,1.847,1.314,0.374,2.173,1.506,1.713,1.387,1.749]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4886503219604492]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.937403678894043]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0795717239379883]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7443532943725586]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.145925521850586]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.2041015625]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8798828125]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.1]}},{"framework":"fre-v2.5.5-keyed","benchmark":"01_run1k","values":{"total":[55.013,53.67,61.833,60.861,53.916,60.372,53.21,54.313,55.139,63.759,56.338,61.826,63.886,65.966,65.968],"script":[16.8,16.914,17.858,17.869,16.932,17.581,17.325,16.648,17.462,18.311,17.72,17.429,17.318,18.85,19.264],"paint":[36.934,36.299,36.801,36.029,36.557,36.155,35.58,36.637,36.653,37.37,37.529,37.55,37.393,37.944,38.019]}},{"framework":"fre-v2.5.5-keyed","benchmark":"02_replace1k","values":{"total":[61.185,61.547,62.261,62.184,60.844,61.188,62.793,63.819,63.928,63.047,61.719,62.403,62.408,63.961,61.768],"script":[23.504,23.454,22.829,22.748,23.044,22.536,23.119,23.419,24.114,22.282,22.672,22.158,22.674,22.303,22.605],"paint":[37.049,37.464,38.736,38.176,37.205,38.053,39.033,38.891,39.119,39.606,38.414,39.398,38.649,39.128,38.495]}},{"framework":"fre-v2.5.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[49.973,50.28,50.436,28.792,48.484,27.395,24.836,28.998,49.118,50.679,28.576,47.929,49.7,50.597,29.549],"script":[11.676,10.038,9.646,9.452,8.67,8.794,9.971,10.822,10.74,11.095,10.465,10.152,10.547,10.564,8.745],"paint":[17.31,16.997,16.244,16.691,16.322,17.082,14.622,17.118,15.726,15.994,16.147,16.638,17.244,17.653,17.297]}},{"framework":"fre-v2.5.5-keyed","benchmark":"04_select1k","values":{"total":[9.433,10.985,15.231,5.701,5.384,10.515,9.199,9,8.127,13.335,17.654,16.035,9.812,5.926,5.465,5.367,16.605,6.411,9.616,5.272,4.804,9.254,13.678,17.113,13.159],"script":[4.744,3.709,4.023,2.84,2.916,3.423,4.205,4.613,3.059,3.008,5.296,3.162,3.802,2.246,2.816,2.537,5.025,3.668,3.548,2.803,3.078,3.906,3.647,4.419,3.757],"paint":[4.372,2.549,2.894,2.715,2.016,4.453,3.378,3.778,2.997,3.922,4.054,3.619,4.027,2.746,1.824,2.68,4.553,1.873,3.519,2.342,1.592,3.835,4.061,5.069,4.68]}},{"framework":"fre-v2.5.5-keyed","benchmark":"05_swap1k","values":{"total":[22.731,21.924,48.861,22.675,21.432,23.182,21.87,21.717,23.441,43.465,21.463,21.808,21.732,26.957,23.33],"script":[3.659,4.176,4.151,4.413,3.508,3.209,4.379,3.872,3.614,4.227,4.228,3.471,4.806,4.162,3.214],"paint":[18.934,17.618,19.629,17.642,17.796,17.915,17.376,17.352,18.989,17.42,17.108,18.15,16.813,19.694,17.911]}},{"framework":"fre-v2.5.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.817,17.287,16.884,19.763,20.557,17.3,17.166,17.575,17.696,17.218,19.297,17.214,16.863,17.236,19.879],"script":[1.684,1.593,1.559,1.678,1.472,1.746,1.631,1.666,1.816,1.447,1.552,1.638,1.725,1.399,1.601],"paint":[15.298,13.878,14.61,16.329,16.968,14.548,14.547,14.671,14.946,14.541,15.906,15.07,14.279,14.583,16.242]}},{"framework":"fre-v2.5.5-keyed","benchmark":"07_create10k","values":{"total":[537.581,532.388,536.663,536.152,537.391,532.663,534.684,534.155,538.312,536.073,531.728,530.268,535.414,536.632,536.267],"script":[166.889,167.398,164.622,164.399,167.397,167.023,169.767,165.676,171.018,171.148,163.914,165.294,167.258,168.744,169.828],"paint":[362.956,358.206,359.311,362.046,361.139,358.238,358.154,358.172,359.086,358.162,360.615,358.342,358.983,361.101,359.738]}},{"framework":"fre-v2.5.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.406,82.287,82.854,62.8,81.391,79.183,82.629,81.712,82.766,61.297,64.092,83.31,61.776,81.856,78.717],"script":[20.671,20.046,20.407,19.851,19.554,19.604,18.835,20.057,19.331,19.514,20.35,19.993,18.873,20.114,19.334],"paint":[43.382,41.591,41.774,42.293,41.667,41.249,43.137,41.725,43.243,41.086,41.798,42.893,41.676,42.96,41.037]}},{"framework":"fre-v2.5.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.42,21.412,18.499,21.48,19.605,18.273,18.705,21.991,18.998,19.033,22.856,21.582,18.552,21.237,21.835],"script":[17.45,17.091,16.32,17.505,17.7,15.961,17.507,18.441,16.49,16.916,18.586,17.185,16.646,17.592,17.863],"paint":[3.384,3.293,1.124,3.736,1.122,2.219,1.1,3.092,1.634,1.336,2.233,3.531,1.811,2.733,3.272]}},{"framework":"fre-v2.5.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5240669250488281]}},{"framework":"fre-v2.5.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.82424259185791]}},{"framework":"fre-v2.5.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.440950393676758]}},{"framework":"fre-v2.5.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.879773139953613]}},{"framework":"fre-v2.5.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.599735260009766]}},{"framework":"fre-v2.5.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.28515625]}},{"framework":"fre-v2.5.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.0029296875]}},{"framework":"fre-v2.5.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.5]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"01_run1k","values":{"total":[56.807,44.741,44.911,57.777,59.377,59.27,45.646,58.816,58.198,45.714,44.714,45.538,45.455,57.022,44.737],"script":[11.588,12.422,11.932,11.08,11.923,12.536,12.211,12.298,12.067,11.839,11.766,12.545,11.602,12.014,12.183],"paint":[32.8,32.091,32.737,33.203,33.441,34.326,32.909,33.485,33.406,33.612,32.704,32.754,33.642,32.82,32.316]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"02_replace1k","values":{"total":[52.441,52.738,52.477,52.555,53.131,51.677,54.817,52.608,53.094,52.258,53.591,52.886,53.383,52.656,52.881],"script":[17.261,16.532,17.352,16.703,17.162,17.19,17.401,16.472,17.471,17.59,17.807,16.866,17.357,17.227,16.802],"paint":[34.92,35.972,34.849,35.564,35.72,34.223,36.818,35.869,35.347,34.356,35.507,35.761,35.762,35.183,35.639]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.379,18.31,18.651,18.078,18.185,18.831,22.552,19.687,22.034,19.937,21.731,19.165,62.777,58.467,19.31],"script":[4.03,4.061,3.958,4.415,3.787,4.186,4.517,4.575,5.334,4.786,4.351,3.289,3.36,3.597,3.848],"paint":[13.02,13.737,14.579,13.315,14.283,13.97,15.424,13.453,15.683,15.013,16.213,13.662,16.422,14.045,13.4]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"04_select1k","values":{"total":[7.618,8.903,5.906,7.951,4.172,7.674,8.682,6.553,9.846,7.505,5.593,7.272,7.354,7.423,9.786,12.739,8.399,4.731,16.688,4.417,13.435,7.61,6.732,15.594,14.961],"script":[2.568,2.239,1.847,1.955,1.217,2.618,3.656,1.525,2.77,1.917,0.713,3.069,2.462,1.521,2.961,3.304,1.7,1.189,1.978,1.357,2.284,2.24,1.9,2.636,3.075],"paint":[3.695,4.608,2.863,4.821,2.043,2.786,4.112,2.718,4.787,3.497,2.76,4.517,4.372,4.182,4.277,3.973,3.227,2.456,2.678,2.438,4.343,3.612,3.42,3.285,3.704]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"05_swap1k","values":{"total":[61.952,62.231,20.202,62.518,24.548,20.877,66.484,24.943,61.375,66.345,66.884,19.448,67.485,63.253,19.403],"script":[1.709,1.886,2.086,1.72,2.088,1.762,2.198,2.619,2.203,2.111,3.212,1.807,2.629,1.465,1.91],"paint":[17.261,18.12,16.522,16.678,18.261,16.841,18.909,18.993,16.421,18.62,19.215,16.95,19.643,17.365,17.373]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.258,18.476,16.284,16.056,16.264,16.064,16.132,16.656,16.193,15.988,18.236,18.095,16.09,18.074,15.422],"script":[0.985,0.855,1.016,0.836,0.849,0.807,0.817,1.179,0.86,1.041,1.147,0.849,1.087,0.945,1.111],"paint":[14.217,15.847,14.177,14.269,14.201,14.036,14.382,14.477,14.405,13.905,15.324,15.125,13.687,15.422,13.595]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"07_create10k","values":{"total":[1440.442,1471.929,1420.4,1426.394,455.943,454.885,457.193,1420.856,1433.749,1426.596,1419.812,1411.512,449.99,1432.058,452.94],"script":[119.508,109.344,115.919,113.769,119.324,118.377,118.559,115.97,111.912,113.727,112.906,115.709,114.928,110.786,115.672],"paint":[346.278,349.142,344.203,347.435,321.954,321.929,324.04,343.494,341.048,349.478,347.632,338.177,319.976,341.587,322.92]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.208,53.708,53.265,53.268,53.308,53.678,51.192,52.486,52.338,52.172,52.079,50.633,51.058,51.637,53.923],"script":[14.455,13.286,13.918,14.722,13.495,13.806,13.435,13.802,14.265,13.974,13.427,13.544,13.446,13.908,13.897],"paint":[39.069,39.161,38.997,38.183,38.862,38.851,37.428,38.311,37.725,37.617,38.301,36.717,36.357,37.399,39.438]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.102,11.65,15.193,11.863,14.278,11.289,14.438,11.516,11.277,14.807,14.404,14.069,14.198,11.469,14.516],"script":[10.253,10.376,11.303,9.702,10.542,9.592,11.192,10.196,9.641,10.476,10.131,10.183,10.211,10.06,10.529],"paint":[4.608,1.082,3.289,1.752,2.885,1.616,2.572,1.239,1.33,3.452,3.38,2.957,1.5,1.329,2.516]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5705032348632812]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.717648506164551]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.7158098220825195]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0052642822265625]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.63257598876953]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.884765625]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1357421875]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.1]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[69.388,69.744,71.492,68.89,68.387,70.05,70.768,69.297,72.559,71.269,70.155,68.872,70.542,71.825,72.641],"script":[36.038,36.171,37.711,35.468,35.083,36.21,36.821,35.862,37.759,36.935,36.508,35.608,37.069,38.16,38.016],"paint":[33.184,33.399,33.612,33.263,33.142,33.667,33.786,33.257,34.636,34.176,33.486,33.1,33.304,33.395,34.457]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[85.328,84.906,84.623,83.937,82.956,84.372,85.456,84.991,84.571,85.672,85.106,85.391,86.544,86.007,84.013],"script":[48.518,48.074,47.873,47.831,46.687,47.545,49.174,48.325,47.55,48.855,48.433,48.703,48.326,48.492,47.92],"paint":[36.613,36.645,36.579,35.918,36.086,36.654,36.106,36.484,36.839,36.628,36.493,36.501,38.036,37.179,35.906]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.093,26.315,21.735,20.783,20.966,21.958,20.351,21.756,21.457,23.678,20.942,20.845,24.072,21.015,20.852],"script":[6.148,7.289,7.342,5.926,6.928,6.819,5.485,7.096,6.834,6.108,5.531,7.028,6.937,7.232,6.914],"paint":[14.829,17.809,14.281,14.732,13.928,14.065,13.944,14.027,14.095,17.041,14.297,13.695,16.722,13.275,13.815]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[22.221,20.598,22.42,17.732,20.173,20.628,21.53,20.309,20.815,20.769,20.605,18.376,21.711,19.548,20.077,21.522,21.4,17.463,21.547,19.024,20.546,20.278,21.238,21.14,19.868],"script":[16.577,14.461,15.694,15.029,15.161,15.528,16.581,15.316,15.17,15.135,14.723,14.665,15.983,13.3,14.594,15.337,15.906,14.457,15.917,15.296,15.007,15.707,16.147,15.843,14.299],"paint":[3.994,4.031,4.034,2.413,4.499,4.607,3.132,3.875,4.705,3.187,5.187,2.337,3.726,5.34,3.853,4.392,4.086,2.482,3.736,2.476,4.206,3.367,3.509,4.405,5.171]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[24.154,28.587,24.085,24.593,25.004,25.321,27.866,23.855,27.009,23.692,29.023,24.023,23.795,24.698,27.288],"script":[6.265,6.931,6.846,6.548,6.851,6.98,6.821,5.988,7.145,6.217,6.955,6.717,6.192,6.141,6.309],"paint":[17.761,20.075,16.751,16.933,17.544,18.199,20.034,17.753,19.239,17.356,20.576,17.127,17.052,17.94,19.198]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.799,23.464,25.578,24.054,23.854,23.76,24.083,26.425,24.579,23.629,24.189,26.953,23.55,23.332,24.299],"script":[8.352,8.565,8.787,8.759,8.694,8.584,8.675,8.997,9.186,8.754,8.914,9.694,8.781,8.436,8.849],"paint":[14.376,13.873,15.729,14.567,13.876,14.559,14.656,15.521,14.465,13.971,14.558,16.293,14.056,14.183,14.369]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[618.507,611.162,618.924,624.309,611.819,620.851,623.602,621.635,610.547,622.381,618.728,605.37,621.117,619.046,608.967],"script":[260.03,258.667,266.322,263.239,261.535,263.323,264.047,262.505,260.13,264.965,259.789,260.652,263.771,259.717,260.871],"paint":[355.751,349.662,349.931,358.225,347.235,354.392,356.695,356.137,347.513,354.488,355.955,341.917,354.43,356.5,345.137]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[81.083,82.013,80.86,81.824,81.167,80.606,80.12,82.413,81.051,83.324,81.52,81.199,82.531,80.444,79.536],"script":[41.982,42.511,41.582,42.65,41.325,41.794,41.166,42.049,42.551,43.129,42.179,42.147,42.093,41.249,40.382],"paint":[38.792,39.192,38.988,38.876,39.543,38.52,38.644,40.084,38.209,39.905,39.07,38.775,40.144,38.905,38.869]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.141,28.092,25.263,26.776,28.687,27.572,26.997,27.654,23.819,22.343,26.401,26.24,27.846,27.684,27.621],"script":[22.881,23.353,23.901,22.637,24.831,23.878,23.942,24.547,20.865,20.688,22.254,22.211,24.476,24.144,23.879],"paint":[2.637,3.724,1.29,3.131,3.306,3.488,2.832,2.183,2.888,1.59,2.706,3,2.388,3.32,3.377]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.218135833740234]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.522627830505371]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.585281372070312]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.664566993713379]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.189045906066895]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.869140625]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9296875]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[149.9]}},{"framework":"goui-v0.1.2-keyed","benchmark":"01_run1k","values":{"total":[44.072,44.433,48.214,44.391,46.909,44.155,45.043,46.821,44.429,44.745,46.562,47.197,44.448,47.241,46.334],"script":[11.165,11.539,12.515,11.408,11.544,11.268,11.763,12.575,11.347,11.458,12.774,12.889,11.648,12.185,12.679],"paint":[32.484,32.483,35.242,32.577,34.947,32.463,32.859,33.839,32.675,32.879,33.365,33.887,32.372,34.649,33.249]}},{"framework":"goui-v0.1.2-keyed","benchmark":"02_replace1k","values":{"total":[58.924,56.569,56.663,59.337,56.423,56.321,56.137,56.793,57.55,55.477,55.135,58.043,55.933,55.166,57.316],"script":[23.206,21.35,21.777,23.723,21.522,21.371,21.617,21.766,22.932,20.792,21.021,23.073,21.399,21.088,22.573],"paint":[35.117,34.79,34.466,35.173,34.464,34.501,34.088,34.544,34.189,34.251,33.675,34.537,34.08,33.664,34.319]}},{"framework":"goui-v0.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.567,18.053,18.712,18.232,17.723,18.005,17.042,18.033,18.371,19.844,18.121,17.729,17.279,18.911,18.229],"script":[2.18,3.046,3.159,2.561,2.949,2.701,2.653,3.258,3.184,2.436,2.521,2.503,2.246,3.119,3.166],"paint":[15.201,12.901,14.048,14.967,13.109,14.173,13.376,12.937,13.68,16.037,14.425,13.963,14.029,13.728,14.081]}},{"framework":"goui-v0.1.2-keyed","benchmark":"04_select1k","values":{"total":[3.775,4.012,4.026,4.1,3.777,3.963,4.325,3.668,4.243,4.342,3.977,4.048,3.792,3.9,3.763,3.501,4.085,4.461,3.239,4.464,3.969,3.4,3.758,3.871,5.612],"script":[1.365,1.528,1.428,1.072,0.666,1.279,2.06,1.028,1.83,1.681,1.777,1.77,1.308,1.264,1.841,1.579,1.61,1.747,1.027,1.21,1.323,0.65,1.384,1.454,1.685],"paint":[2.287,1.206,2.147,2.032,2.993,2.565,1.061,2.53,1.781,1.561,1.453,2.156,2.357,2.525,1.797,1.472,2.021,1.86,1.405,1.299,1.745,2.547,2.252,1.736,1.784]}},{"framework":"goui-v0.1.2-keyed","benchmark":"05_swap1k","values":{"total":[19.602,19.909,19.026,19.104,21.903,19.309,19.275,19.57,19.101,19.36,19.342,19.871,20.338,18.851,19.495],"script":[1.823,1.347,1.272,1.189,2.042,1.242,1.195,1.539,2.184,0.654,1.342,2.148,2.079,1.076,1.069],"paint":[16.392,16.997,16.543,16.496,17.22,17.107,16.809,16.716,15.863,17.023,16.408,16.105,16.431,16.425,16.459]}},{"framework":"goui-v0.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.686,15.931,15.961,16.189,16.32,15.579,15.411,15.4,15.405,15.545,15.8,15.42,15.423,15.543,15.842],"script":[0.69,0.916,0.691,0.674,0.874,0.728,0.674,0.65,0.653,0.67,0.723,0.683,0.669,0.745,0.676],"paint":[14.489,14.272,14.51,14.732,14.486,13.77,14.011,13.9,13.733,13.819,14.325,14.018,13.696,14.094,14.434]}},{"framework":"goui-v0.1.2-keyed","benchmark":"07_create10k","values":{"total":[488.323,485.741,487.759,483.003,486.491,487.696,500.386,479.855,485.739,485.947,495.399,489.205,482.945,491.127,484.563],"script":[150.058,149.474,147.148,145.831,151.468,153.341,148.598,146.783,150.016,151.115,151.289,145.432,147.6,148.004,149.261],"paint":[330.532,329.581,333.971,330.445,328.246,327.71,345.147,326.376,329.065,328.142,337.467,337.07,328.648,336.395,328.662]}},{"framework":"goui-v0.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.449,51.916,54.145,52.395,52.807,51.784,52.727,53.095,52.891,51.236,52.626,51.174,52.318,52.201,51.848],"script":[13.409,13.295,13.168,13.591,13.113,13.419,13.292,12.993,13.158,12.863,13.382,12.905,13.389,13.124,13.214],"paint":[38.176,37.761,40.097,37.973,38.746,37.469,38.529,39.144,38.836,37.502,38.393,37.408,38.026,38.211,37.789]}},{"framework":"goui-v0.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.925,17.844,18.065,17.782,17.934,17.241,17.685,17.452,17.448,17.698,17.597,17.714,17.195,17.441,17.508],"script":[15.983,16.46,15.837,16.077,15.932,15.381,15.838,15.588,15.61,15.632,16.152,15.854,15.661,15.912,15.86],"paint":[1.852,0.343,0.475,0.367,1.921,1.753,1.753,1.778,0.875,1.077,0.426,1.607,1.443,1.447,1.555]}},{"framework":"goui-v0.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6117849349975586]}},{"framework":"goui-v0.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.156764984130859]}},{"framework":"goui-v0.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.302860260009766]}},{"framework":"goui-v0.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[16.695096969604492]}},{"framework":"goui-v0.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.893425941467285]}},{"framework":"goui-v0.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.271484375]}},{"framework":"goui-v0.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.501953125]}},{"framework":"goui-v0.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[149.2]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"01_run1k","values":{"total":[51.385,51.601,51.123,49.967,51.17,51.316,50.883,50.246,51.837,52.358,52.377,52.565,51.062,50,49.243],"script":[17.358,16.311,16.387,16.361,17.305,16.364,16.592,16.883,16.962,16.501,16.471,16.874,16.269,16.745,16.006],"paint":[33.594,34.875,34.285,33.183,33.429,34.55,33.861,32.929,34.45,35.241,35.463,35.236,34.34,32.821,32.815]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"02_replace1k","values":{"total":[58.722,57.703,58.158,58.236,58.444,58.16,57.403,56.766,58.013,57.788,58.44,58.542,57.849,57.727,58.903],"script":[20.976,20.393,20.919,20.316,20.696,20.77,20.212,20.202,20.19,20.356,20.497,20.744,20.621,20.124,21.016],"paint":[37.297,36.836,36.808,37.437,37.278,36.936,36.729,36.083,37.283,36.964,37.47,37.324,36.748,37.111,37.405]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.41,18.973,17.529,18.427,17.382,16.901,17.14,17.591,17.611,17.285,17.591,17.377,17.059,17.785,17.625],"script":[1.642,1.816,1.349,2.359,1.794,1.574,1.124,1.85,1.373,1.287,1.621,1.602,1.665,1.575,1.897],"paint":[14.293,15.402,14.58,14.742,14.293,14.052,14.941,14.139,14.747,14.514,14.489,13.892,14.121,15,14.456]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"04_select1k","values":{"total":[5.296,4.981,4.952,5.423,4.251,4.694,5.087,5.478,5.27,5.192,5.579,5.149,5.361,5.326,4.505,5.411,5.104,4.796,6.378,5.186,4.475,5.298,5.462,5.269,5.001],"script":[2.64,2.411,2.203,2.612,1.975,2.197,2.558,2.057,2.448,2.95,2.556,2.209,2.371,2.58,1.957,3.131,2.655,2.449,3.16,2.837,2.525,2.753,2.151,2.791,2.316],"paint":[2.149,2.451,2.12,2.685,1.16,2.376,2.406,2.54,1.876,2.122,2.892,2.815,1.89,2.617,2.111,2.153,1.839,1.537,3.069,1.877,1.295,0.834,3.182,2.347,2.244]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"05_swap1k","values":{"total":[19.688,19.861,19.512,19.545,20.258,20.338,20.206,20.237,21.143,20.187,19.935,20.038,20.333,20.483,20.324],"script":[1.55,1.169,1.379,0.628,1.434,1.504,1.754,1.757,1.501,2.139,0.726,1.049,1.785,1.824,0.871],"paint":[16.791,17.079,17.025,17.625,17.306,17.159,16.895,16.468,17.79,16.555,17.827,16.984,17.563,17.524,18.469]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.765,15.654,15.704,16.032,16.046,15.81,15.952,15.96,15.808,15.984,15.356,15.846,16.544,15.827,15.775],"script":[0.715,0.788,0.696,0.688,0.709,0.677,0.932,0.705,0.885,0.855,0.672,0.684,0.715,0.822,0.727],"paint":[14.125,13.886,14.321,14.226,14.521,14.413,13.877,14.464,14.198,14.078,13.43,14.437,15.077,14.009,14.057]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"07_create10k","values":{"total":[505.89,527.949,498.982,499.54,496.439,519,502.515,505.091,503.207,493.874,492.483,490.645,488.684,490.086,495.692],"script":[159.128,160.875,158.064,155.855,155.809,157.899,155.613,159.584,157.383,155.213,154.338,153.196,153.826,153.283,150.63],"paint":[339.753,360.069,334.193,336.987,333.928,354.369,340.254,338.602,338.984,331.912,331.389,330.76,328.112,329.792,338.287]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.201,56.266,54.622,55.497,55.009,56.192,56.646,54.305,55.518,57.002,57.045,55.486,56.21,55.778,55.112],"script":[15.078,16.031,15.331,15.086,15.494,16.236,15.417,15.202,15.559,16.201,15.731,15.938,15.721,15.754,15.244],"paint":[39.134,39.305,38.4,39.512,38.626,39.043,40.315,38.218,39.033,39.902,40.394,38.658,39.595,39.032,38.977]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.961,23.052,21.873,22.25,21.314,21.63,22.741,22.382,22.257,21.598,23.106,22.447,22.06,21.201,23.031],"script":[20.066,21.164,20.031,20.01,19.298,20.244,21.113,20.623,20.111,19.658,20.636,20.262,20.573,19.935,20.591],"paint":[1.794,1.239,1.355,2.14,1.162,1.286,0.733,1.268,2.048,1.832,2.372,2.086,0.37,1.16,1.439]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5059423446655273]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.318429946899414]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.456076622009277]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0007925033569336]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.7171745300293]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.05859375]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.44921875]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[50.37,50.369,50.618,50.531,49.456,51.107,51.463,49.842,50.822,51.893,50.338,52.816,51.406,52.276,49.569],"script":[15.084,15.17,16.097,15.162,15.184,15.739,15.562,15.068,16.096,16.504,15.182,16.467,15.631,16.881,14.752],"paint":[34.84,34.758,34.071,34.932,33.831,34.916,35.469,34.338,34.278,34.937,34.718,35.894,35.335,34.937,34.383]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[56.832,55.765,55.24,57.958,55.518,56.653,56.583,56.034,56.218,57.327,55.592,57.044,57.308,57.968,56.139],"script":[20.261,19.441,19.413,20.766,19.51,20.242,19.982,19.412,19.481,19.754,19.533,20.271,19.793,20.905,19.881],"paint":[36.092,35.838,35.355,36.751,35.567,35.964,36.15,36.174,36.303,37.057,35.614,36.322,37.063,36.617,35.824]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.99,27.441,26.176,26.162,27.215,25.527,26.294,26.852,26.579,27.34,27.457,26.403,25.066,26.933,27.008],"script":[11.917,10.166,10.475,10.634,11.119,9.632,10.625,10.802,10.738,11.762,10.549,11.111,9.849,10.718,12.264],"paint":[14.706,15.02,14.183,14.019,14.017,14.136,14.191,14.488,14.426,14.254,14.844,13.981,13.69,13.202,13.027]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[7.622,9.134,9.219,10.066,8.692,8.613,9.411,8.353,8.99,8.869,8.651,9.034,9.059,8.29,10.263,10.398,9.66,9.009,9.157,8.603,9.278,9.72,8.591,8.455,8.936],"script":[5.042,6.544,5.928,6.517,6.473,5.799,6.207,5.631,6.484,6.436,5.574,6.051,6.096,6.174,6.678,6.808,6.606,7.035,6.25,5.277,6.253,6.689,6.169,5.663,6.333],"paint":[1.511,1.844,2.982,2.901,1.745,1.36,2.496,2.158,1.751,1.093,2.42,1.777,2.412,1.209,3.428,3.406,2.9,1.147,1.971,2.729,2.306,2.871,1.343,1.768,1.599]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[24.314,24.444,24.896,23.969,25.549,23.728,22.909,23.244,24.104,22.96,22.695,23.828,23.353,24.308,23.581],"script":[4.751,6.05,5.355,4.972,5.929,5.512,4.609,5.567,5.256,5.127,4.897,5.668,4.701,6.291,5.791],"paint":[17.975,17.075,18.562,17.965,18.31,16.323,16.572,16.41,17.732,17.101,16.495,15.936,17.106,16.429,16.388]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.731,20.524,20.483,20.635,20.314,20.477,20.418,20.486,20.412,20.412,20.956,20.467,21.708,20.902,20.598],"script":[5.626,5.748,5.652,5.528,5.641,5.594,5.577,5.713,5.618,5.652,5.751,5.66,5.708,5.704,5.568],"paint":[14.346,14.006,13.743,14.343,13.95,13.921,14.075,14.004,13.997,14.018,14.424,13.847,14.763,14.401,14.263]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[497.37,512.462,496.758,496.321,495.592,513.739,491.221,510.016,497.125,509.476,496.542,498.347,490.386,510.743,489.753],"script":[150.832,152.864,151.53,151.447,149.516,150.801,150.102,149.232,151.954,149.433,151.189,154.356,149.707,153.043,147.465],"paint":[338.721,352.77,337.74,337.331,339.23,356.073,334.398,353.899,338.25,353.123,338.473,337.108,333.861,350.943,335.572]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.832,58.874,59.629,59.428,59.509,59.626,58.062,59.44,60.628,59.196,59.529,59.04,58.487,59.651,58.536],"script":[18.389,17.785,18.276,18.251,18.249,17.949,17.621,18.135,18.218,18.507,17.763,18.613,18.36,19.119,17.851],"paint":[39.523,40.157,40.427,40.241,40.227,40.752,39.508,40.409,41.435,39.788,40.805,39.534,39.183,39.626,39.795]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.125,22.668,22.021,21.435,22.692,21.375,21.8,21.436,21.7,21.675,22.322,22.136,21.124,20.863,21.963],"script":[19.753,20.345,19.961,19.831,20.344,19.342,19.865,20.307,20.579,19.821,20.279,20.197,19.567,18.986,20.281],"paint":[2.282,2.201,1.56,0.704,2.253,1.949,1.821,0.37,0.371,1.765,1.948,0.931,1.466,0.572,1.576]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6217250823974609]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.078069686889648]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.20489501953125]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3353748321533203]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.196702003479004]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1357421875]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.263671875]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[102.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[47.294,46.56,45.248,47.639,47.92,45.545,45.367,45.512,47.68,46.051,45.57,46.157,44.827,46.023,46.654],"script":[13.33,12.421,11.899,13.126,13.451,12.193,12.357,12.328,13.274,12.424,12.2,12.458,12.343,12.259,12.85],"paint":[33.537,33.704,32.915,34.096,34.025,32.947,32.582,32.73,34.029,33.206,32.949,33.277,32.068,33.377,33.383]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[50.051,50.714,50.554,49.59,50.869,50.503,50.477,50.607,50.068,50.222,50.131,51.166,50.585,51.144,52.434],"script":[15.307,15.34,15.243,15.01,16.006,15.726,15.724,15.297,15.488,15.664,15.794,16.068,15.774,15.625,15.846],"paint":[34.3,34.895,34.881,34.127,34.416,34.338,34.299,34.86,34.152,34.096,33.875,34.626,34.377,35.075,36.096]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.48,26.249,24.615,24.597,23.849,23.553,24.131,25.323,24.354,24.244,25.611,25.305,23.696,24.16,23.754],"script":[8.505,8.384,8.429,9.187,7.85,8.394,8.291,9.443,8.146,8.573,8.89,8.77,8.259,7.845,8.307],"paint":[13.052,16.729,14.318,13.421,14.785,13.869,14.22,14.507,14.422,13.592,15.429,14.821,13.891,13.601,13.393]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[7.56,7.49,7.717,7.198,6.995,7.647,8.615,8.208,7.941,8.03,7.692,7.329,7.335,7.736,7.604,7.693,7.193,7.599,7.451,8.302,7.31,7.28,7.73,7.123,7.458],"script":[4.442,4.981,4.518,4.877,4.795,4.951,5.46,4.896,5.243,5.244,5.194,4.518,5.089,4.697,4.48,5.413,4.563,4.922,5.15,5.606,4.595,4.77,5.101,4.167,4.441],"paint":[2.167,2.37,2.588,1.414,1.61,2.547,2.165,2.799,2.175,2.638,2.348,2.663,1.472,2.893,2.022,1.398,2.493,2.543,1.402,1.723,1.88,2.368,1.541,2.437,1.812]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[162.757,172.362,166.55,170.783,168.207,167.604,170.113,169.121,166.362,167.602,164.862,167.616,168.603,167.264,165.634],"script":[24.131,23.937,24.205,24.962,25.225,24.97,26.508,25.419,24.716,26.891,24.184,23.759,24.303,24.735,23.902],"paint":[136.448,146.083,141.178,143.671,141.054,140.392,142.151,141.501,139.229,139.081,138.772,141.723,142.454,139.759,140.559]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.832,18.067,18.278,17.55,17.797,17.926,17.446,17.942,17.851,18.886,17.862,17.618,17.835,17.982,17.963],"script":[3.136,3.376,3.193,3.069,3.07,3.089,3.067,3.102,3.062,3.307,3.084,2.833,3.084,3.173,3.101],"paint":[13.642,13.986,14.046,13.733,14.001,14.071,13.671,14.097,14.027,14.43,13.721,13.724,14.027,14.087,13.313]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[616.603,608.681,610.467,612.634,619.855,614.392,614.784,611.028,611.676,614.709,608.116,609.331,607.283,616.606,610.216],"script":[266.617,263.821,260.829,264.622,268.615,267.052,265.955,261.069,259.377,263.835,256.964,260.501,260.484,266.143,263.059],"paint":[343.112,338.07,342.832,340.898,344.523,340.495,342.08,343.252,345.258,344.126,344.28,342.093,340.09,343.708,340.413]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.048,53.105,51.779,53.179,53.265,52.36,51.653,52.383,51.62,52.256,52.921,53.415,52.209,52.716,53.553],"script":[12.366,12.715,12.583,13.667,13.452,12.821,12.77,12.642,12.645,12.691,12.883,13.35,12.478,13.64,13.111],"paint":[38.773,39.429,38.29,38.59,38.918,38.626,37.997,38.846,38.102,38.68,39.109,39.123,38.796,38.117,39.482]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.874,16.062,16.393,16.165,16.147,16.868,16.63,16.212,16.423,17.088,16.183,16.931,17.17,16.587,16.006],"script":[15.093,14.732,14.668,13.682,14.477,15.607,14.706,14.36,14.315,15.155,13.833,15.049,15.447,14.312,14.358],"paint":[1.673,0.907,1.636,2.39,0.782,1.085,1.838,1.761,2.016,1.045,2.256,0.573,1.631,1.29,0.738]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2800016403198242]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.802334785461426]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.361103057861328]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.269955635070801]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.50275802612305]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.91796875]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.92578125]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[351.8]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"01_run1k","values":{"total":[56.885,57.755,56.673,57.957,56.877,57.613,57.02,56.919,56.458,56.1,55.717,57.778,57.605,58.747,56.525],"script":[22.069,22.659,21.768,22.654,22.885,22.554,22.906,22.213,21.964,22.741,22.466,22.444,22.74,24.118,21.603],"paint":[34.353,34.631,34.444,34.849,33.507,34.602,33.636,34.235,34.041,32.894,32.78,34.865,34.416,34.164,34.457]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"02_replace1k","values":{"total":[64.265,64.942,63.606,64.473,65.506,64.874,66.059,63.747,63.237,63.984,63.663,64.278,63.14,63.825,64.27],"script":[27.506,28.151,26.764,28.134,27.977,28.614,28.446,26.958,27.726,27.513,27.459,27.897,27.177,27.396,27.697],"paint":[36.292,36.325,36.356,35.89,37.086,35.794,37.165,36.338,35.041,36.025,35.722,35.935,35.501,35.933,36.074]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.558,17.951,17.911,16.991,18.37,17.241,17.707,17.562,17.401,17.333,17.128,17.502,18.21,17.177,17.243],"script":[1.912,2.399,2.267,1.384,2.947,2.179,1.874,1.959,2.378,1.663,1.653,2.328,2.664,1.894,1.971],"paint":[13.939,13.871,14.957,14.556,13.501,13.77,14.378,13.603,13.954,14.576,14.273,13.969,14.405,13.888,13.559]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"04_select1k","values":{"total":[3.798,4.483,4.054,4.051,4.271,4.284,4.181,4.345,5.848,4.599,4.778,3.792,4.279,4.079,4.908,4.349,4.062,5.76,4.163,3.672,4.345,4.906,3.799,4.096,3.824],"script":[1.319,1.565,1.783,2.059,1.778,1.773,1.631,1.988,1.824,1.907,1.803,1.337,1.803,1.651,1.072,1.837,1.521,1.93,1.803,1.341,2.145,2.424,1.412,1.257,1.529],"paint":[1.312,2.796,1.548,1.116,1.611,2.404,1.732,2.248,1.837,1.766,1.952,2.339,1.668,2.317,1.814,1.93,2.426,1.947,1.398,1.484,1.514,2.373,2.282,2.731,1.422]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"05_swap1k","values":{"total":[18.889,18.494,18.058,19.173,18.404,18.044,19.364,20.173,18.709,19.07,19.066,18.847,18.669,18.214,18.535],"script":[0.128,0.594,0.238,0.887,0.606,0.278,0.218,0.126,0.751,0.127,0.987,0.557,0.139,0.582,0.129],"paint":[18.002,16.271,16.385,16.968,15.984,15.364,18.082,18.085,16.691,17.014,16.565,17.047,17.429,16.293,16.809]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.239,15.346,15.516,15.274,15.136,15.425,15.268,15.101,15.015,15.192,15.206,15.116,15.525,15.413,15.156],"script":[0.14,0.393,0.384,0.45,0.122,0.331,0.125,0.282,0.264,0.369,0.124,0.314,0.336,0.127,0.125],"paint":[14.411,14.513,14.348,14.095,14.077,14.142,14.402,13.963,13.796,14.066,14.132,13.899,13.857,14.238,14.257]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"07_create10k","values":{"total":[607.9,608.802,601.576,600.655,602.549,604.44,603.271,605.283,606.348,596.766,599.185,598.518,597.356,598.013,601.927],"script":[240.524,240.68,240.362,240.615,240.407,241.883,236.97,237.722,238.258,234.695,238.042,233.182,234.812,231.937,237.955],"paint":[360.598,361.119,354.293,353.302,355.374,355.734,359.223,360.765,361.228,355.399,354.492,358.762,355.553,359.386,357.294]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.087,68.883,67.722,67.963,68.517,69.382,69.073,68.867,69.073,68.188,69.191,67.267,70.094,68.167,68.426],"script":[27.824,28.454,27.128,28.144,27.656,28.736,28.298,28.922,27.894,27.652,28.773,27.509,29.556,28.489,27.015],"paint":[39.365,39.526,39.677,38.908,39.839,39.724,39.876,39.043,40.271,39.619,39.499,38.834,39.627,38.77,40.493]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.805,14.351,13.77,15.755,14.223,13.835,14.298,14.38,13.422,13.643,13.661,13.875,14.252,13.672,13.603],"script":[12.509,12.457,12.035,13.561,12.348,12.021,12.474,12.65,11.504,11.525,11.931,12.398,11.882,11.56,11.227],"paint":[2.178,1.119,0.858,2.071,1.53,1.151,1.738,1.643,1.679,2.031,1.276,1.387,2.28,2.019,2.293]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.511500358581543]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.000864028930664]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.1734819412231445]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2538127899169922]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.361926078796387]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8046875]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.0556640625]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[42.893,46.465,41.165,43.329,51.168,44.184,50.262,48.383,50.161,48.041,49.439,46.121,44.45,48.59,49.6],"script":[8.479,8.887,8.689,9.326,9.304,8.597,9.079,8.682,9.142,9.022,9.758,8.642,8.826,8.313,9.532],"paint":[34.253,32.487,32.316,33.145,33.807,33.365,32.795,33.123,33.962,35.476,32.734,35.25,32.626,33.092,33.216]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[53.638,56.583,56.265,57.514,55.493,53.526,58.456,54.541,51.482,52.789,52.366,57.883,56.361,58.056,57.701],"script":[10.677,10.936,10.674,11.748,10.583,11.02,10.776,10.519,10.636,10.618,11.205,11.406,10.719,10.785,11.521],"paint":[36.443,35.303,35.738,37.086,35.512,35.188,36.372,35.82,35.755,34.767,36.797,36.27,35.006,35.672,36.184]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.824,17.173,17.015,16.85,16.758,17.148,32.815,33.108999999999995,16.914,33.178,33.248,19.453,33.022999999999996,33.427,33.905],"script":[3.029,2.696,2.952,3.038,2.306,1.822,2.553,2.948,3.318,2.807,3.24,2.192,2.911,3.442,3.279],"paint":[13.64,13.877,12.455,13.704,12.975,14.523,13.609,14.13,13.104,13.366,13.969,13.771,14.081,13.718,14.918]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[4.017,4.701,5.099,4.052,3.194,4.428,4.202,6.267,3.873,4.335,3.818,7.776,3.632,4.023,3.656,3.59,4.679,5.198,3.755,4.449,5.126,4,3.767,3.672,3.696],"script":[1.745,1.186,1.437,2.192,1.704,1.809,1.075,0.782,1.307,1.936,1.533,1.711,1.281,0.679,1.238,0.996,1.366,1.513,1.317,1.14,1.123,1.328,1.301,1.557,1.114],"paint":[0.947,2.392,2.882,1.693,1.384,2.482,1.183,2.656,1.154,2.274,2.166,2.595,1.227,2.419,1.881,2.477,2.173,1.497,2.252,2.241,1.72,2.565,2.349,2.012,1.199]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[20.461,34.101,34.653,34.562,18.583,18.412,34.568,22.692,18.35,21.244,18.642,33.979,19.237,20.13,18.768],"script":[1.076,1.153,1.773,1.599,1.484,1.561,2.141,1.019,1.823,1.194,1.064,1.38,1.211,1.389,1.3],"paint":[16.573,15.567,17.256,16.924,16.994,16.745,16.388,20.985,16.274,17.382,16.98,16.261,17.541,18.542,16.474]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.767,19.961,20.207,16.135,14.19,19.757,20.516,15.124,15.592,17.281,13.551,14.53,13.804,13.832,19.351],"script":[0.605,0.692,0.713,0.407,0.883,0.686,0.716,0.726,0.713,0.713,0.686,0.522,0.905,0.591,0.716],"paint":[12.744,12.763,12.811,12.464,12.423,12.871,13.159,12.796,12.428,12.721,12.47,13.039,12.775,12.582,12.903]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[443.092,464.403,449.473,438.575,446.883,445.298,438.95,441.381,447.872,449.661,445.36,451.038,447.031,447.494,464.416],"script":[92.771,98.234,97.475,91.466,91.793,98.809,93.257,97.752,99.388,98.546,94.86,99.402,93.884,93.836,97.014],"paint":[342.862,361.896,343.971,343.252,349.601,342.198,338.875,340.691,346.403,342.768,343.354,343.212,345.682,345.563,361.437]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.541,53.136,55.996,56.419,52.193,52.811,51.643,56.231,58.39,53.399,59.403,54.208,52.667,55.634,56.355],"script":[8.456,8.565,8.482,8.675,8.515,8.945,8.701,8.336,8.569,8.871,9.914,8.373,8.266,9.147,8.371],"paint":[38.23,38.697,38.854,38.1,37.945,37.383,37.226,37.798,38.322,38.755,37.614,38.831,38.783,39.034,38.44]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.567,12.08,11.466,11.879,10.843,12.06,11.823,12.902,13.745,27.709999999999997,11.392,11.675,11.579,12.605,12.041],"script":[10.011,10.303,9.181,10.39,9.687,10.262,9.105,9.396,9.399,10.385,9.503,9.411,9.505,10.919,9.57],"paint":[1.499,1.719,2.231,1.435,1.1,1.735,1.557,1.882,1.548,1.337,1.83,2.2,2.011,1.609,2.415]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4583148956298828]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.901303291320801]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.054821014404297]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6956262588500977]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.214308738708496]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.2744140625]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5517578125]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[49.617,47.558,43.564,52.042,43.28,45.146,49.059,47.357,51.056,50.973,48.854,42.407,51.895,49.209,49.748],"script":[10.172,10.014,10.209,9.955,9.875,10.247,9.813,9.813,10.047,10.104,9.929,9.86,10.136,10.109,10.213],"paint":[32.308,32.694,32.549,32.528,32.575,33.841,31.539,34.646,32.947,33.499,35.045,32.411,35.013,33.238,33.795]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[55.774,52.697,51.961,50.437,61.506,56.45,54.081,54.21,51.826,60.821,52.076,57.131,57.246,50.936,54.926],"script":[13.416,13.479,12.783,13.253,13.963,12.938,13.855,13.16,13.049,13.491,13.396,13.386,13.308,12.901,13.069],"paint":[36.512,34.582,36.084,35.736,36.598,34.125,33.892,36.048,34.512,35.5,34.967,34.209,35.641,34.488,34.135]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.06100000000001,18.332,32.313,31.128,32.277,32.77,15.943,16.894,16.242,17.437,31.731,16.346,16.416,18.172,16.944],"script":[1.642,1.76,1.916,1.343,1.893,1.936,1.5,0.768,2.385,1.291,1.827,1.929,1.869,1.967,1.541],"paint":[14.729,14.94,14.363,13.754,13.23,14.434,13.403,14.682,13.754,14.323,13.182,14.318,13.59,14.173,14.438]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.556,4.354,4.057,4.185,3.784,3.533,3.545,3.968,4.194,3.92,4.75,3.46,4.278,4.003,3.876,4.778,3.891,3.602,3.991,4.183,4.279,3.8,3.38,3.976,3.992],"script":[1.254,0.931,1.413,1.698,0.695,1.094,0.949,1.236,0.88,1.238,0.725,1.461,1.755,1.745,1.438,0.303,1.411,1.097,0.77,0.544,1.166,0.869,1.085,1.248,1.23],"paint":[2.172,3.292,0.706,1.567,0.92,1.996,1.7,2.493,3.167,1.569,2.75,1.167,1.824,1.374,1.761,2.599,1.833,1.056,2.276,2.449,2.083,2.062,1.786,1.283,2.266]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[35.489999999999995,22.628,18.373,34.931,19.384,21.83,19.112,20.156,34.80200000000001,20.78,21.672,21.477,21.336,19.141,19.5],"script":[2.167,1.822,1.741,1.645,0.731,2.104,0.811,1.912,1.004,1.382,1.224,1.288,0.798,1.02,1.318],"paint":[16.554,18.864,16.531,17.395,17.706,16.454,18.2,17.045,16.853,18.476,16.51,17.487,17.685,18.007,16.505]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.519,17.751,17.241,14.08,17.403,15.653,13.868,14.862,16.035,21.089,18.3,16.723,17.655,18.166,18.595],"script":[0.464,0.734,0.514,0.656,0.341,0.631,0.601,0.32,0.28,0.618,0.464,0.341,0.352,0.633,0.35],"paint":[12.916,13.209,12.869,12.98,13.314,12.697,13.125,13.32,13.216,13.014,12.912,13.282,13.41,12.844,13.208]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[455.39,461.784,466.649,460.341,442.458,462.07,457.879,459.94,457.528,451.73,467.813,465.926,442.589,469.218,465.796],"script":[103.926,105.755,106.887,105.093,105.69,105.57,107.101,105.038,105.846,106.51,106.572,107.678,105.247,108.214,107.56],"paint":[348.03,350.561,350.245,351.689,334.678,348.541,343.065,352.814,349.544,341.196,358.319,352.504,331.526,354.916,356.105]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[97.128,98.281,102.924,97.374,97.84,102.446,101.979,100.19,98.85,105.31,103.86,99.656,98.639,98.393,103.399],"script":[22.149,21.783,22.012,22.04,21.917,22.34,22.482,21.932,22.204,22.443,22.442,22.335,22.322,22.435,22.205],"paint":[69.212,70.286,70.799,69.723,70.217,71.143,71.358,71.889,69.995,72.825,71.04,70.777,70.354,69.816,70.728]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.634,13.933,13.384,14.941,14.795,12.406,13.555,29.068000000000005,14.798,12.54,12.906,14.293,13.879,15.225,12.697],"script":[10.931,11.255,12.26,11.376,12.389,10.265,12.251,11.992,11.221,10.711,11.209,10.749,11.721,11.453,11.176],"paint":[1.83,2.615,1.068,1.335,2.343,1.301,1.242,1.078,0.998,0.426,0.881,1.308,2.099,1.385,1.465]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7603235244750977]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.596135139465332]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.667840003967285]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0240898132324219]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.482873916625977]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1181640625]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.0751953125]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[102.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[43.801,45.308,45.455,44.808,45.525,45.503,46.047,44.525,44.921,44.559,45.59,45.848,46.339,45.487,45.45],"script":[10.748,10.354,10.547,10.669,10.491,11.496,11.782,10.599,10.438,10.428,10.549,11.526,11.946,11.828,10.474],"paint":[32.602,34.468,34.446,33.692,34.563,33.587,33.832,33.493,34.022,33.65,34.591,33.875,33.971,33.211,34.52]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[85.291,83.864,86.178,86.124,87.356,84.51,84.852,87.128,84.03,84.03,85.649,86.83,86.376,84.675,84.419],"script":[51.523,49.905,51.878,50.954,51.891,47.881,50.087,52.302,50.015,49.859,50.686,51.671,51.432,48.254,50.16],"paint":[33.308,33.494,33.841,34.703,35.029,36.115,34.334,34.385,33.544,33.734,34.518,34.669,34.485,35.958,33.794]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.48,25.411,25.982,26.065,25.636,25.195,26.9,26.344,26.404,26.081,25.591,27.155,25.756,25.048,27.439],"script":[10.102,9.975,10.346,10.217,9.853,10.551,10.45,10.171,10.435,10.548,10.24,11.514,10.424,10.405,9.89],"paint":[14.712,13.938,13.678,14.819,13.821,13.625,15.117,15.079,13.644,14.255,13.868,13.767,14.217,13.935,15.693]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[10.995,12.351,11.443,11.598,11.858,11.308,11.985,11.688,12.94,12.019,11.444,11.971,11.783,11.417,12.007,12.615,11.171,12.036,11.729,12.054,12.252,12.541,11.402,12.38,11.768],"script":[8.423,9.031,8.173,8.77,8.815,8.455,9.145,8.97,9.294,9.067,8.947,9.533,8.144,9.161,8.875,9.323,8.838,9.399,8.923,9.513,9.458,9.182,9.066,9.795,8.901],"paint":[1.58,2.194,2.013,2.66,2.818,2.694,1.868,2.136,1.994,2.78,1.688,1.641,3.491,1.54,2.228,2.386,1.69,1.598,1.491,1.724,2.633,3.196,1.425,1.625,2.063]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[168.042,164.256,164.556,172.922,165.399,161.981,162.914,162.015,160.731,161.517,166.612,161.106,162.714,162.832,162.271],"script":[26.957,23.928,23.268,26.221,23.898,22.787,23.632,23.086,23.744,23.575,24.431,23.395,23.5,22.978,24.205],"paint":[138.793,138.136,139.631,144.624,140.069,137.496,137.683,137.085,135.752,136.584,140.239,136.284,137.586,138.484,136.436]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[89.962,86.888,86.493,86.213,88.949,85.057,89.212,88.309,90.227,89.517,90.746,90.329,87.321,87.357,88.033],"script":[16.325,15.488,15.368,15.9,17.113,15.442,17.266,16.249,16.089,15.582,15.847,15.782,15.686,15.558,15.629],"paint":[71.819,70.034,69.751,68.584,70.088,68.488,70.17,70.797,72.298,72.514,72.865,72.975,70.033,70.173,70.833]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[456.578,462.237,452.158,448.378,457.086,458.531,458.63,449.899,459.866,456.522,454.336,457.866,454.877,463.304,448.634],"script":[113.095,114.245,110.635,110.406,114.578,116.448,114.14,109.785,114.406,112.544,112.634,110.799,110.389,115.794,109.792],"paint":[336.58,341.329,334.816,331.328,335.783,335.446,337.873,333.452,338.837,337.367,334.867,340.446,337.752,340.867,332.098]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.412,51.346,53.222,51.739,50.777,51.23,50.79,51.595,52.853,49.921,50.932,50.824,51.534,50.831,50.025],"script":[12.478,12.277,12.227,12.911,11.845,12.36,12.262,12.546,12.664,12.145,12.051,12.247,12.38,12.196,11.867],"paint":[39.035,38.195,40.189,37.939,38.058,37.992,37.65,38.16,39.302,36.889,37.999,37.532,38.277,37.74,37.283]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.047,14.648,15.131,15.196,14.747,15.076,14.556,14.552,14.223,14.536,13.754,14.83,14.263,14.42,14.352],"script":[12.951,12.777,12.827,13.415,12.799,12.703,12.565,12.665,12.598,12.225,12.396,13.506,12.373,12.714,12.322],"paint":[0.358,1.775,1.783,1.55,1.168,2.275,1.901,1.801,1.331,2.199,1.27,1.237,1.575,0.829,1.424]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.542607307434082]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9967823028564453]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.028087615966797]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9632081985473633]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.716546058654785]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.828125]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8388671875]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[38.495,41.317,39.002,39.145,40.746,39.614,39.219,38.547,40.949,39.13,38.376,40.572,41.002,38.932,39.099],"script":[5.394,5.733,5.578,5.435,5.501,5.826,5.761,5.303,5.48,5.462,5.437,5.571,5.486,5.567,5.814],"paint":[32.682,35.141,33.003,33.28,34.822,33.363,33.042,32.815,35.086,33.241,32.524,34.587,35.082,32.968,32.857]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[42.166,42.199,45.657,43.512,41.51,41.911,41.672,44.504,42.916,42.347,41.259,41.506,43.907,43.091,43.273],"script":[7.727,7.883,8.371,8.059,7.823,7.917,8.004,8.068,8.211,8.006,7.788,7.759,7.962,8.122,8.336],"paint":[34.025,33.877,36.853,35.015,33.254,33.562,33.249,36.008,34.224,33.909,33.055,33.326,35.533,34.539,34.492]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.069,17.096,16.992,16.836,16.919,16.619,17.938,16.859,16.306,18.26,16.892,16.652,18.065,16.324,15.92],"script":[1.842,1.045,0.985,1.503,1.783,1.643,1.671,1.729,1.677,1.872,1.581,1.265,1.944,1.638,1.368],"paint":[14.023,15.006,13.688,14.247,14.128,13.417,14.556,13.744,13.305,15.329,13.927,14.359,15.14,13.434,13.272]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.82,3.92,5.094,3.717,3.385,3.08,3.563,3.596,3.967,3.122,3.012,2.847,3.01,3.168,4.375,3.582,3.565,4.07,3.922,3,3.466,3.047,2.736,2.955,4.3],"script":[0.19,1.178,1.052,1.476,0.951,0.912,0.908,1.06,1.126,1.259,0.181,0.555,0.782,1.048,1.116,0.962,0.808,0.9,0.786,1.05,0.847,0.181,0.793,0.803,1.443],"paint":[0.48,1.823,1.415,1.478,2.329,2.051,1.849,1.126,1.905,1.768,2.719,1.17,2.123,1.473,1.337,2.048,2.64,1.372,2.19,0.969,1.653,2.76,1.26,2.05,2.73]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[19.627,19.657,19.452,19.202,19.871,19.398,19.497,19.724,20.341,19.692,19.324,19.908,19.177,19,18.963],"script":[1.55,1.845,1.252,1.152,1.359,0.657,1.214,1.087,1.447,0.951,1.433,1.481,1.313,1.084,1.254],"paint":[16.702,16.39,16.947,16.898,17.154,16.638,16.257,16.772,17.235,17.397,16.605,16.818,15.722,17.207,16.673]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.048,15.149,15.361,15.465,15.372,15.376,14.939,15.258,14.912,15.163,15.55,14.935,14.892,15.354,15.305],"script":[0.292,0.561,0.466,0.56,0.572,0.536,0.473,0.58,0.579,0.569,0.519,0.313,0.561,0.516,0.566],"paint":[13.997,13.868,14.15,13.698,13.886,14.022,13.447,13.924,13.622,13.835,13.768,13.612,13.298,14.114,13.922]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[403.584,404.915,404.814,403.947,395.616,406.919,389.885,397.938,391.766,398.445,404.207,395.022,403.216,395.539,394.972],"script":[57.913,59.765,59.392,57.997,56.596,58.457,55.894,56.992,56.96,57.234,56.019,57.025,56.827,56.218,57.653],"paint":[338.443,337.875,338.733,339.307,332.326,341.691,327.331,334.199,327.616,334.37,341.557,331.288,339.679,332.591,330.603]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.682,44.351,43.329,43.137,42.359,44.748,43.074,41.96,43.691,43.505,42.96,43.194,43.405,42.876,42.898],"script":[5.676,5.871,5.071,5.125,5.161,5.273,5.083,5.164,5.866,5.861,4.972,5.467,5.646,5.474,5.213],"paint":[37.156,37.609,37.385,37.161,36.347,38.631,37.142,35.952,36.963,36.789,37.095,36.862,36.891,36.558,36.819]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.291,12.195,12.387,13.077,12.386,12.496,13.137,12.363,12.266,12.922,13.596,12.35,13.219,12.962,13.113],"script":[10.485,10.985,10.223,10.941,10.486,10.889,10.951,10.742,10.287,10.623,11.894,10.876,10.721,10.761,11.39],"paint":[1.722,0.51,2.078,1.896,1.811,1.521,1.755,1.541,1.889,2.211,1.583,1.255,0.605,2.112,1.635]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.513031005859375]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.685361862182617]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7474746704101562]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7252340316772461]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.238304138183594]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1552734375]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9375]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.3]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"01_run1k","values":{"total":[36.214,36.049,36.281,35.654,36.007,37.866,36.057,35.647,35.892,35.961,37.211,35.865,36.485,37.761,35.467],"script":[2.96,2.984,3.111,2.892,2.955,3.39,3.278,2.897,2.948,2.982,3.027,2.928,2.953,3.113,2.919],"paint":[32.841,32.65,32.764,32.354,32.644,34.087,32.369,32.321,32.538,32.54,33.755,32.506,33.125,34.231,32.143]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"02_replace1k","values":{"total":[41.276,41.246,39.412,39.798,39.749,39.866,41.662,40.42,40.798,40.344,41.7,41.248,40.414,40.295,41.778],"script":[5.598,5.443,5.495,5.385,5.408,5.356,5.85,5.573,5.468,5.653,5.571,5.45,5.49,5.577,5.638],"paint":[35.211,35.33,33.447,33.984,33.907,34.064,35.372,34.41,34.916,34.253,35.687,35.339,34.478,34.278,35.697]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.87,16.167,16.864,16.367,15.611,16.609,16.841,15.865,15.759,16.462,17.22,16.381,16.534,16.395,16.277],"script":[1.341,1.693,2.046,1.506,1.065,1.162,1.184,0.969,1.286,1.495,1.055,1.143,1.497,1.399,0.956],"paint":[13.743,12.667,13.457,13.622,13.248,13.889,14.109,13.413,12.673,13.867,14.508,13.071,12.963,12.695,13.788]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.375,3.219,3.439,2.855,3.448,3.424,3.446,3.678,4.304,3.223,2.889,3.256,3.103,2.704,3.694,6.078,3.469,3.845,3.848,2.606,3.479,3.738,3.177,4.286,4.382],"script":[0.922,0.206,1.495,0.677,0.963,1.138,1.011,1.158,1.232,0.619,0.621,0.999,0.786,0.29,0.959,0.199,1.148,1.094,1.283,0.562,0.98,1.138,0.984,1.264,0.909],"paint":[2.179,2.912,1.38,2.08,2.111,2.172,1.971,2.41,2.948,1.859,1.636,2.154,1.92,2.315,2.621,2.599,2.218,1.842,2.462,1.04,1.891,1.489,2.102,1.56,1.696]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"05_swap1k","values":{"total":[18.928,18.829,18.699,20.773,18.55,18.954,18.773,19.027,19.678,18.715,18.506,18.161,18.582,18.627,19.113],"script":[1.727,0.641,1.053,1.543,1.581,0.953,1.363,0.914,1.261,0.914,0.931,1.21,0.994,1.072,1.616],"paint":[15.924,16.638,16.038,16.844,15.531,17.013,16.299,15.981,17.188,16.214,16.227,15.649,15.793,16.308,15.663]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.286,14.708,14.905,14.742,14.795,14.783,14.867,14.792,14.814,14.781,15.582,14.783,15.167,14.806,14.975],"script":[0.552,0.533,0.554,0.536,0.554,0.54,0.414,0.547,0.478,0.544,0.262,0.495,0.538,0.369,0.365],"paint":[13.987,13.489,13.604,13.164,13.554,13.517,13.174,13.222,13.65,13.538,14.097,13.558,13.899,13.385,13.79]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"07_create10k","values":{"total":[375.92,383.458,378.903,374.362,373.013,375.772,382.215,382.325,382.554,379.7,379.933,390.015,380.796,377.228,381.393],"script":[39.841,38.812,42.493,39.93,38.409,40.575,39.748,39.52,39.967,40.473,40.806,40.635,40.287,41.586,41.158],"paint":[329.223,337.237,329.404,327.444,327.627,328.332,335.48,335.847,335.793,332.347,332.304,342.595,333.676,328.794,332.163]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.973,43.063,44.903,43.833,43.119,43.533,42.717,43.237,42.334,42.983,42.77,43.145,42.456,44.843,43.317],"script":[3.089,3.14,3.269,3.204,3.141,3.142,3.124,3.155,3.196,3.167,3.113,3.178,3.104,3.348,3.123],"paint":[39.034,39.083,40.734,39.774,39.098,39.515,38.7,39.229,38.225,38.932,38.788,39.086,38.484,40.643,39.338]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.09,11.661,11.724,11.761,11.523,11.775,12.235,11.383,11.123,11.719,11.302,11.353,11.846,11.995,11.233],"script":[9.605,10.082,9.923,9.554,9.645,9.71,10.07,9.987,9.943,9.872,9.83,9.863,9.991,10.072,9.562],"paint":[2.069,1.482,1.71,2.127,1.322,1.656,1.522,0.387,1.103,1.308,0.437,1.412,1.775,1.255,0.786]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4949522018432617]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.1086225509643555]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1437110900878906]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6411457061767578]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.309537887573242]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.783203125]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.0849609375]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.5]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"01_run1k","values":{"total":[51.596,49.947,50.143,49.653,50.19,49.797,49.773,49.447,49.633,49.307,49.291,50.998,50.172,50.36,51.572],"script":[16.193,15.339,15.244,16.101,15.511,15.01,15.891,15.426,15.385,14.975,15.108,15.737,15.771,15.829,16.446],"paint":[34.949,34.184,34.453,33.11,34.24,34.353,33.46,33.559,33.766,33.926,33.74,34.813,33.952,34.105,34.666]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"02_replace1k","values":{"total":[58.041,57.981,56.685,56.744,57.613,56.261,57.167,56.823,56.906,56.708,57.601,57.115,56.335,56.105,57.475],"script":[21.798,21.203,21.077,20.997,20.82,20.647,21.069,21.221,21.08,21.05,21.581,21.105,20.826,21.077,22.263],"paint":[35.799,36.34,35.17,35.303,36.344,35.165,35.645,35.187,35.377,35.206,35.582,35.574,35.065,34.568,34.775]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.385,16.026,17.446,16.676,16.586,16.27,16.744,16.83,17.291,18.073,16.008,16.802,17.282,17.051,16.658],"script":[1.299,1.204,1.512,0.969,1.026,1.311,1.251,1.131,1.548,2.035,0.647,1.696,2.053,1.494,0.944],"paint":[13.932,13.107,14.107,14.14,14.677,13.493,14.447,14.387,14.079,14.732,13.236,13.464,13.997,14.838,14.136]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"04_select1k","values":{"total":[3.647,2.425,2.6,3.906,2.937,3.011,5.868,3.003,3.052,3.041,2.547,3.299,4.514,2.873,2.555,2.753,2.78,3.526,2.733,2.6,4.309,3.305,2.487,4.789,2.834],"script":[0.865,0.148,1.081,1.074,0.984,0.714,0.71,0.709,0.142,0.972,0.805,0.968,0.861,0.148,0.151,0.205,0.141,1.281,0.567,0.147,0.636,0.886,0.624,0.142,0.554],"paint":[1.816,1.277,1.417,1.656,1.853,2.191,2.065,2.182,2.809,1.975,1.646,1.45,1.583,2.616,0.464,1.641,1.932,2.14,1.41,2.35,1.945,1.615,1.321,1.583,1.388]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.347,20.541,20.3,21.011,20.088,20.241,21.074,20.093,20.978,19.912,21.478,20.246,20.204,20.269,20.513],"script":[2.534,2.346,2.783,3.189,2.545,2.755,2.991,2.325,2.961,2.144,2.605,3.259,2.181,2.574,2.81],"paint":[16.228,16.82,15.746,16.288,16.328,15.42,16.651,16.38,16.299,15.563,16.476,15.454,16.679,16.623,16.072]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.818,16.108,16.037,15.818,15.977,16.053,16.036,15.919,16.453,15.529,16.078,15.973,15.938,16.534,15.945],"script":[1.242,1.278,1.255,1.251,1.277,1.252,1.283,1.27,1.3,1.29,1.284,1.243,1.22,1.281,1.25],"paint":[14.849,13.814,14.021,13.842,13.966,14.054,14.021,13.647,14.396,13.53,13.791,13.951,13.977,14.451,13.728]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"07_create10k","values":{"total":[545.999,539.812,523.393,534.926,546.063,529.081,548.426,528.748,552.817,530.798,541.877,536.68,532.739,546.106,516.706],"script":[175.36,169.776,177.564,175.594,175.881,174.919,175.281,174.155,174.96,174.948,171.476,178.247,176.938,177.554,174.194],"paint":[363.737,363.258,339.052,352.388,363.481,347.415,366.387,347.879,371.013,349.119,363.521,351.596,349.082,361.724,335.538]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.245,58.538,58.762,60.739,60.501,59.544,58.744,58.573,61.076,59.754,58.988,61.519,60.791,59.6,58.373],"script":[19.175,18.957,19.011,20.244,18.853,19.347,18.523,18.979,19.451,19.866,18.69,21.309,20.455,18.808,18.61],"paint":[39.158,38.662,38.85,39.575,40.72,39.289,39.299,38.629,40.715,38.955,39.379,39.288,39.393,39.873,38.862]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.536,25.783,26.573,24.801,24.207,23.375,25.188,26.089,24.557,26.143,25.551,24.986,25.03,24.437,24.754],"script":[23.433,24.147,24.408,23.443,22.672,21.432,23.288,23.409,23.073,24.336,23.386,22.614,22.962,22.977,23.091],"paint":[1.484,1.529,2.063,0.965,1.439,1.845,1.789,2.575,1.373,0.877,2.043,1.326,1.948,1.354,1.338]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.597412109375]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.536914825439453]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.6124267578125]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.435086250305176]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.897990226745605]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[20.0078125]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3642578125]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.8]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[73.744,76.903,75.876,76.851,78.324,76.535,80.904,75.669,77.394,76.182,75.728,76.923,74.973,75.982,76.511],"script":[39.147,41.032,40.408,40.806,41.653,41.008,42.223,39.716,40.855,40.253,39.775,41.26,39.63,39.878,40.471],"paint":[34.158,35.391,34.944,35.54,36.196,35.054,38.218,35.48,36.059,35.457,35.478,35.19,34.875,35.633,35.572]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[99.071,98.916,100.864,99.008,98.787,100.065,98.445,99.054,99.105,97.79,101.132,97.672,97.237,101.823,99.657],"script":[62.09,62.053,61.802,62.392,61.828,62.476,61.922,62.025,62.228,60.606,64.198,61.057,60.179,64.593,62.395],"paint":[36.504,36.366,38.567,36.134,36.46,37.097,36.013,36.543,36.38,36.667,36.446,36.117,36.561,36.707,36.774]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.256,19.309,17.36,19.06,18.163,17.861,18.276,17.818,18.042,18.273,17.895,18.489,18.376,18.045,18.444],"script":[2.42,1.908,2.263,2.672,1.674,2.13,2.299,2.232,2.126,2.567,1.531,2.59,2.198,1.913,2.765],"paint":[14.485,15.84,13.632,14.647,15.241,13.518,13.285,14.049,14.643,14.735,15.039,14.373,15.075,14.712,14.076]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[16.501,15.622,17.018,14.688,14.449,14.474,14.115,13.621,13.709,13.36,14.578,13.773,14.426,13.365,14.949,14.202,15.8,14.807,14.525,13.349,15.504,15.571,14.173,14.144,14.15],"script":[12.169,11.806,12.7,11.531,11.179,11.348,10.337,10.304,10.103,9.936,11.304,10.194,11.344,10.268,11.18,10.719,12.179,11.108,11.461,9.887,11.94,12.166,10.808,11.212,10.788],"paint":[3.112,3.637,2.882,2.98,1.894,2.506,3.021,3.147,3.025,2.072,2.547,3.064,2.292,2.914,3.56,3.311,2.079,2.587,1.609,2.895,3.387,3.227,2.76,1.004,3.184]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[172.204,172.796,174.059,170.943,173.117,171.89,172.632,174.961,173.654,174.92,172.073,174.295,170.643,170.745,171.763],"script":[24.771,25.325,26.078,25.368,25.962,25.665,25.226,25.99,25.573,27.033,25.78,24.979,25.125,24.546,24.739],"paint":[144.857,145.458,145.402,143.55,145.949,143.903,145.736,147.334,145.458,146.323,144.064,147.053,143.175,144.208,144.476]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.02,17.994,17.556,17.296,17.138,17.205,17.194,16.976,17.202,18.921,18.196,18.354,18.522,17.896,17.98],"script":[1.929,1.897,1.59,1.576,1.453,1.687,1.495,1.318,1.398,1.606,1.93,1.944,1.447,1.844,1.896],"paint":[15.286,14.986,15.13,14.621,14.691,14.465,14.68,14.878,15.057,16.049,15.085,15.227,15.974,15.238,15.287]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[722.577,717.564,699.524,706.556,705.482,699.469,710.785,701.69,707.812,719.345,710.171,720.534,699.628,723.544,715.466],"script":[338.78,336.336,353.885,357.61,354.274,350.798,356.271,354.133,356.492,339.175,358.254,348.842,351.122,340.926,338.532],"paint":[376.747,374.146,338.702,341.951,344.201,341.765,347.468,340.711,344.448,373.327,344.84,364.701,341.06,375.674,370.096]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[85,84.106,85.59,83.395,83.992,83.899,82.15,83.144,86.303,83.736,83.958,85.344,82.028,82.718,86.216],"script":[42.829,41.876,42.856,41.6,41.809,42.193,39.999,42.31,42.954,42.135,42.245,43.201,41.083,41.159,43.951],"paint":[41.206,41.229,41.76,40.832,41.183,40.724,41.177,39.843,42.194,40.628,40.745,41.163,39.973,40.589,41.309]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[57.034,59.154,67.393,59.346,55.579,57.081,57.814,57.775,55.555,57.447,58.142,55.632,57.454,58.903,67.894],"script":[54.589,56.976,65.229,57.163,53.474,54.909,55.322,55.692,53.295,54.988,56.254,53.642,54.959,56.67,65.706],"paint":[1.35,2.033,1.401,2.048,1.994,1.308,1.096,1.971,1.632,1.939,1.769,1.127,2.358,2.12,2.046]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7630558013916016]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.701495170593262]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.777185440063477]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3885316848754883]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.43037986755371]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4404296875]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.390625]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.3]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"01_run1k","values":{"total":[42.539,40.683,41.654,40.543,42.461,40.531,41.489,39.953,40.472,41.022,40.197,40.277,41.089,42.451,41.881],"script":[7.132,7.299,7.537,7.194,7.251,7.168,7.755,7.023,7.16,7.359,7.281,7.015,7.205,7.063,7.252],"paint":[34.971,32.967,33.693,32.898,34.791,32.927,33.323,32.513,32.883,33.233,32.5,32.825,33.475,34.969,34.199]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"02_replace1k","values":{"total":[46.025,45.753,45.253,45.458,45.833,46.26,46.879,46.778,45.774,46.026,45.833,47.565,46.194,48.434,46.184],"script":[11.329,10.994,10.998,10.813,11.082,11.179,11.287,11.402,11.154,10.722,11.043,11.171,11.255,12.3,11.042],"paint":[34.263,34.316,33.827,34.191,34.324,34.637,35.131,34.929,34.171,34.859,34.352,35.944,34.503,35.686,34.705]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.824,18.396,18.126,19.32,18.328,17.55,20.749,17.654,17.343,17.255,17.046,18.096,17.944,18.109,18.204],"script":[2.594,2.619,2.542,2.827,2.907,2.751,3.032,2.765,2.799,1.983,2.039,2.717,3.035,2.753,2.461],"paint":[12.735,14.378,14.275,15.276,13.369,12.735,15.27,13.651,13.269,13.685,13.467,14.119,13.772,13.21,14.569]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"04_select1k","values":{"total":[3.362,2.807,4.079,2.909,3.989,2.96,3.338,3.357,3.714,3.568,3.571,4.982,4.254,4.915,3.543,3.117,3.78,3.36,3.476,3.55,3.033,3.216,3.459,4.314,4.855],"script":[1.048,0.627,1.691,0.583,1.566,1.238,0.984,0.718,0.615,1.191,1.017,1.453,0.967,1.242,0.988,0.921,1.176,0.982,0.733,1.356,0.948,1.126,0.788,0.932,0.989],"paint":[1.641,1.334,2.279,1.337,2.318,1.605,1.811,1.644,2.622,2.271,1.499,2.034,2.34,2.167,2.454,1.329,2.497,1.558,2.645,2.094,1.984,1.635,1.613,1.002,1.608]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"05_swap1k","values":{"total":[18.926,20.549,20.144,20.168,19.614,19.609,19.455,19.745,18.976,19.592,19.257,20.114,20.629,19.785,19.974],"script":[1.755,2.349,2.119,1.753,1.584,1.82,0.944,1.666,1.546,1.544,1.752,1.712,1.236,1.455,1.37],"paint":[15.517,17.089,16.437,17.189,17.038,16.75,16.742,16.806,16.215,16.005,14.82,16.141,18.052,16.875,17.258]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.676,15.389,15.909,15.396,15.743,15.216,15.439,15.376,15.753,16.066,15.372,15.366,15.354,15.559,15.364],"script":[0.637,0.638,0.625,0.612,0.728,0.608,0.612,0.615,0.602,0.599,0.616,0.602,0.602,0.312,0.599],"paint":[14.001,14.024,14.482,14.054,14.283,13.864,14.039,14.018,14.508,14.178,13.762,14.039,14.04,14.529,13.849]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"07_create10k","values":{"total":[406.427,407.831,412.173,417.845,409.184,414.269,404.242,405.324,412.807,406.593,404.058,411.871,403.499,406.621,413.736],"script":[67.841,67.091,66.976,70.974,67.587,67.074,66.156,67.195,71.624,68.048,66.245,71.336,68.634,67.154,66.333],"paint":[331.898,334.08,338.564,340.192,334.976,340.568,331.324,331.473,334.564,331.775,331.234,333.885,328.241,332.805,340.699]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.929,45.957,47.547,45.957,47.445,46.847,45.931,45.44,45.702,47.342,45.851,45.297,45.199,46.939,45.705],"script":[6.758,7.5,7.115,6.836,7.138,7.191,7.152,7.02,7.106,7.825,7.504,7.043,7.08,6.876,6.976],"paint":[37.322,37.569,39.566,38.274,39.439,38.807,37.914,37.573,37.725,38.552,37.493,37.357,37.26,39.188,37.899]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.814,14.3,14.359,14.357,14.047,14.768,14.624,15.401,14.479,14.219,14.932,14.701,14.897,15.171,15.227],"script":[12.639,12.468,12.879,13.028,12.657,12.337,12.808,13.765,12.288,13.011,12.871,12.832,12.882,13.468,13.18],"paint":[2.084,1.742,1.299,0.432,0.359,2.341,0.982,1.258,0.784,1.122,1.969,1.784,1.922,0.779,1.943]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6811017990112305]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.073020935058594]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.185676574707031]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0563316345214844]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.958685874938965]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[74.767578125]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.400390625]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[118.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[82.36,81.466,81.656,79.522,85.69,81.416,87.645,80.184,82.203,80.667,80.593,79.313,79.191,82.334,80.565],"script":[46.585,45.83,46.472,43.856,49.899,45.974,51.618,43.547,46.174,45.074,45.355,44.112,44.249,46.833,45.252],"paint":[35.346,35.182,34.762,35.228,35.357,35.002,35.591,36.189,35.556,35.155,34.791,34.77,34.506,35.072,34.846]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[109.187,112.895,108.907,114.025,108.565,110.758,112.405,106.513,108.595,109.476,108.774,106.838,110.647,109.428,110.831],"script":[77.045,77.902,76.042,82.04,76.634,78.474,80.23,75.276,76.656,77.436,77.282,74.962,78.983,78.033,79.466],"paint":[31.662,34.529,32.392,31.514,31.452,31.824,31.703,30.781,31.457,31.566,31.035,31.407,31.202,30.93,30.882]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.546,24.416,24.123,25.198,24.185,24.814,24.513,23.89,24.236,23.968,23.754,23.551,23.859,23.4,23.344],"script":[8.583,7.96,8.033,8.319,8.298,8.421,8.592,8.22,8.217,7.734,7.777,8.051,8.254,8.286,7.752],"paint":[14.007,14.96,14.566,14.782,14.57,13.783,14.627,14.493,14.329,14.646,14.906,13.943,14.319,13.817,14.13]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[13.016,11.994,12.115,12.046,12.993,11.92,12.591,11.841,11.473,11.784,12.255,12.711,12.641,11.707,12.721,11.77,11.535,12.432,12.167,12.544,12.032,12.32,12.462,11.771,12.458],"script":[9.869,9.302,9.011,9.278,9.773,9.668,9.113,8.962,8.88,9.428,8.96,9.846,9.381,8.93,9.909,9.639,8.406,9.869,9.149,9.604,9.988,9.381,9.941,9.144,8.973],"paint":[1.964,2.522,2.934,2.09,2.37,1.512,2.353,1.679,1.618,1.158,2.917,2.692,1.983,2.613,1.249,1.967,2.626,1.71,1.825,2.77,1.15,1.832,1.682,2.437,2.734]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[171.132,167.604,165.192,160.1,164.3,165.3,162.559,160.362,161.5,170.35,163.448,165.276,165.472,162.14,168.322],"script":[23.955,22.573,23.593,22.48,22.736,22.751,22.606,22.512,22.512,22.93,22.339,23.176,21.898,22.543,23.639],"paint":[145.349,143.047,139.827,136.228,139.929,140.97,137.988,135.667,137.349,146.003,139.539,139.792,140.937,136.838,142.703]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.151,19.203,19.09,18.977,18.88,18.625,18.983,19.003,19.23,18.98,18.862,19.13,18.851,18.992,18.868],"script":[3.812,4.107,3.774,3.733,3.816,3.785,3.802,3.957,3.785,3.717,3.74,3.799,3.727,3.788,3.741],"paint":[14.552,14.035,14.587,14.485,14.194,13.475,14.328,13.977,14.643,14.182,14.398,14.57,14.285,14.151,14.198]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[686.317,682.107,675.944,679.921,683.667,683.524,682.439,676.515,692.358,679.994,682.878,679.462,679.824,679.876,683.903],"script":[348.553,349.238,343.09,347.234,345.782,346.229,348.597,345.05,353.701,346.603,348.352,343.749,346.853,343.59,346.891],"paint":[330.109,326.163,326.21,325.988,331.2,330.612,327.171,324.754,331.973,326.756,327.705,329.037,326.097,329.649,330.238]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[83.072,82.53,83.506,80.994,80.746,85.971,81.96,82.191,86.007,88.738,80.784,82.109,89.979,82.842,83.955],"script":[42.738,41.453,42.994,40.651,40.714,45.094,41.261,42.01,45.679,46.83,40.817,41.204,48.802,41.946,41.818],"paint":[39.441,40.186,39.623,39.428,39.116,39.964,39.821,39.26,39.435,41.005,39.068,40.007,40.301,40.002,41.228]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[49.283,50.201,51.331,49.324,52.829,50.391,52.01,50.526,50.727,46.909,51.395,53.378,53.352,53.094,50.231],"script":[46.485,47.306,48.96,47.174,49.843,47.992,49.984,48.518,48.675,44.518,49.459,50.851,50.652,51.038,47.886],"paint":[1.798,2.763,2.225,2.027,2.368,2.271,1.129,1.867,1.017,2.279,1.703,2.394,2.074,1.077,1.19]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.2021303176879883]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.339032173156738]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.440950393676758]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.438126564025879]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[115.29500198364258]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.439453125]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.083984375]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[871.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[51.298,49.626,49.739,50.808,53.065,49.418,49.163,49.619,51.034,51.445,52.453,51.665,51.296,51.012,50.584],"script":[17.339,16.524,16.532,16.712,18.573,16.231,16.194,16.457,17.075,17.672,17.99,17.129,17.572,17.399,16.756],"paint":[33.515,32.653,32.761,33.636,34.072,32.753,32.532,32.717,33.504,33.32,34.021,34.069,33.287,33.139,33.311]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[57.099,58.032,56.088,55.964,56.036,57.412,56.415,57.155,56.727,56.394,57.522,56.438,55.98,55.87,57.903],"script":[21.159,22.439,21.019,20.97,20.839,21.551,21.283,21.504,21.274,21.574,21.828,21.047,20.85,21.34,21.335],"paint":[35.487,35.144,34.589,34.567,34.719,35.416,34.686,35.159,34.998,34.367,35.232,34.952,34.675,34.07,36.056]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.735,22.678,23.155,22.964,24.217,22.459,22.746,22.842,23.242,22.924,23.621,23.575,22.82,23.243,23.176],"script":[7.754,7.366,7.3,6.954,7.499,7.094,6.912,7.039,7.38,7.303,7.835,6.941,7.109,6.986,7.655],"paint":[14.711,13.409,14.801,13.771,14.963,13.465,13.859,13.472,13.633,14.379,15.042,14.155,14.188,14.367,13.926]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,5.034,4.954,4.683,4.577,5.22,5.539,5.323,5.093,5.478,4.933,5.583,5.068,4.699,4.786,5.336,5.252,3.904,5.649,5.401,4.968,6.138,4.165,4.787,4.474],"script":[2.35,2.112,2.571,1.804,2.591,1.913,2.516,2.488,2.434,2.483,2.391,2.856,2.039,2.176,1.749,2.266,2.46,2.13,2.834,2.239,2.433,2.503,1.937,2.246,2.132],"paint":[1.16,1.819,2.26,1.921,1.692,2.771,2.893,2.18,1.47,2.499,1.448,1.977,2.878,1.272,2.898,2.124,1.867,0.823,2.689,3.022,2.399,3.134,1.7,0.874,1.162]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[170.669,173.639,178.512,171.671,173.375,172.5,172.456,170.29,174.01,172.747,168.861,169.193,173.077,168.908,170.374],"script":[28.635,29.355,29.642,28.951,29.003,27.91,29.667,29.041,28.302,29.351,26.943,27.059,28.577,26.852,27.182],"paint":[139.806,141.528,146.608,141.847,141.533,141.544,141.271,138.92,144.372,141.29,140.473,139.523,142.353,138.926,140.911]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.199,17.819,17.895,18.085,17.924,17.953,18.509,18.255,17.814,17.813,18.31,18.454,17.88,18.036,18.363],"script":[2.865,2.673,3.025,2.896,2.804,3.319,3.188,3.184,3.009,2.747,3.054,2.615,2.838,3.427,3.055],"paint":[14.232,14.134,13.499,14.214,14.141,13.83,14.278,14.047,14.047,14.335,14.506,14.806,13.842,13.525,14.545]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[627.143,629.191,622.347,620.76,618.909,624.272,619.199,624.624,623.848,621.774,627.363,618.228,619.033,623.56,622.65],"script":[265.54,267.212,267.461,265.39,267.134,265.292,265.687,269.113,266.68,266.175,266.67,266.625,266.138,266.816,267.563],"paint":[354.805,355.136,348.165,348.694,345.07,352.215,346.817,348.836,350.462,348.904,354.071,344.963,346.166,350.015,348.41]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.837,55.817,56.778,57.029,58.347,54.687,55.108,55.538,54.314,55.431,56.081,55.405,55.512,55.861,56.659],"script":[16.802,16.18,16.776,17.632,18.294,16.098,16.055,16.15,15.983,16.125,16.29,16.331,16.55,16.644,16.974],"paint":[39.135,38.73,38.886,38.477,39.155,37.655,38.136,38.449,37.425,38.391,38.864,38.146,38.043,38.316,38.805]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.948,16.529,16.73,15.992,15.891,16.082,15.654,15.672,16.645,15.904,16.496,16.095,16.899,16.127,15.846],"script":[13.881,14.041,14.536,13.682,14.638,14.456,13.776,14.004,15.18,14.059,14.598,13.848,14.466,14.478,13.919],"paint":[1.397,1.645,1.855,1.931,1.148,0.724,1.086,0.728,1.37,1.754,0.958,1.705,2.335,1.145,1.837]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0399351119995117]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.83453369140625]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.324572563171387]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.666542053222656]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.76746368408203]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1220703125]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2001953125]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[235.3]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"01_run1k","values":{"total":[46.649,47.122,48.309,47.374,46.362,48.326,47.351,45.203,47.491,45.403,44.643,45.824,48.474,47.395,46.913],"script":[12.449,12.514,12.513,12.072,11.913,12.464,11.555,11.411,11.842,12.025,11.673,11.597,11.971,11.785,12.024],"paint":[33.776,34.191,35.362,34.87,34.035,35.434,35.375,33.369,35.224,32.898,32.563,33.809,36.064,35.138,34.457]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"02_replace1k","values":{"total":[52.623,53.968,51.618,52.94,51.967,52.433,51.437,52.202,52.253,51.25,51.612,51.568,53.067,50.959,53.514],"script":[16.243,17.207,15.713,16.651,16.184,16.624,15.906,16.428,16.859,15.911,15.824,16.116,15.939,15.781,16.637],"paint":[35.918,36.3,35.381,35.833,35.304,35.35,35.077,35.314,34.931,34.896,35.326,35.005,36.579,34.719,36.406]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.456,16.819,19.712,17.484,16.668,17.258,17.018,17.152,16.289,16.753,18.048,17.96,17.506,18.083,17.108],"script":[2.488,1.839,2.3,2.665,1.366,1.902,1.828,1.587,2.011,1.916,2.571,1.935,2.665,2.271,1.505],"paint":[12.755,13.379,15.722,13.724,13.707,12.303,13.373,14.179,13.302,13.734,13.356,14.587,12.91,14.218,13.37]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"04_select1k","values":{"total":[2.658,3.253,3.139,3.117,2.663,3.405,2.461,4.638,2.999,3.048,3.753,2.528,4.286,3.496,2.801,3.022,3.065,3.134,3.7,3.339,2.716,4.052,3.403,2.768,3.02],"script":[0.967,1.114,0.87,0.135,0.923,0.977,0.509,1.143,0.508,0.133,1.057,0.145,0.656,1.007,0.151,0.535,0.982,0.143,0.792,0.706,0.621,1.097,1.009,0.595,0.261],"paint":[1.218,1.186,1.919,2.88,1.634,2.331,1.845,1.731,2.395,1.813,1.864,2.283,1.896,2.389,1.495,1.637,1.781,2.807,1.861,1.088,1.559,1.642,1.822,1.585,2.49]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"05_swap1k","values":{"total":[18.401,18.621,18.967,19.25,19.002,18.92,20.543,18.525,18.536,19.572,18.734,18.813,20.001,18.284,18.854],"script":[0.557,0.175,0.65,1.117,0.603,0.917,0.931,0.605,0.178,0.625,0.884,0.816,0.605,0.292,0.605],"paint":[16.565,17.739,17.293,16.989,16.122,16.63,18.029,16.177,16.716,17.347,16.089,16.463,18.355,15.373,16.498]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.394,15.139,15.422,14.85,14.972,14.93,15.318,14.898,14.895,15.114,14.834,15.287,15.428,16.606,15.301],"script":[0.536,0.433,0.529,0.531,0.477,0.535,0.531,0.532,0.526,0.419,0.528,0.558,0.528,0.6,0.532],"paint":[14.77,13.642,13.812,13.594,13.7,13.535,13.889,13.644,13.606,13.973,13.612,13.998,14.134,14.995,13.981]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"07_create10k","values":{"total":[459.92,460.062,456.079,459.349,457.976,456.613,463.447,458.08,457.943,470.409,459.671,463.709,462.925,464.405,455.86],"script":[119.278,120.908,121.684,121.891,121.524,118.431,124.063,121.547,123.075,129.723,121.154,125.209,122.72,123.841,117.736],"paint":[333.759,332.479,327.641,330.668,329.61,331.419,332.41,329.712,327.935,333.927,331.623,331.761,333.282,333.753,331.491]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.268,49.401,49.664,52.155,49.971,48.891,50.456,49.5,49.314,49.24,49.75,52.035,48.79,49.049,49.972],"script":[11.151,10.26,10.128,10.664,10.609,10.203,11.284,10.936,10.295,10.184,10.561,10.594,10.199,10.398,10.333],"paint":[39.216,38.239,38.557,40.596,38.451,37.784,38.279,37.655,38.133,38.129,38.308,40.542,37.714,37.777,38.744]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.751,15.43,15.578,15.347,15.637,15.551,16.137,15.376,15.967,16.072,16.453,16.008,15.753,15.991,15.728],"script":[13.85,13.527,13.902,13.717,14.056,13.849,13.762,13.694,13.977,14.346,14.398,14.232,13.863,14.181,13.619],"paint":[1.064,1.097,0.812,1.344,1.057,1.298,2.277,0.744,1.901,0.807,1.707,1.681,1.799,1.036,2.03]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6563262939453125]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.384317398071289]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.334349632263184]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.4902544021606445]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.50578498840332]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[204.1279296875]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[60.767578125]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[338.2]}},{"framework":"lit-v3.0.0-keyed","benchmark":"01_run1k","values":{"total":[40.426,40.602,41.043,40.125,41.645,40.506,40.466,41.277,40.685,40.312,40.294,40.361,40.327,40.617,41.141],"script":[6.725,6.852,6.927,6.887,7.621,6.925,6.911,6.971,6.891,6.81,6.889,7.019,6.86,7.002,7.03],"paint":[33.288,33.322,33.683,32.835,33.623,33.15,33.094,33.89,33.369,33.079,32.993,32.946,33.036,33.197,33.725]}},{"framework":"lit-v3.0.0-keyed","benchmark":"02_replace1k","values":{"total":[46.28,47.499,45.453,44.779,44.758,44.777,44.306,46.566,46.482,44.4,44.455,46.119,46.121,45.153,45.754],"script":[10.252,11.23,10.348,10.104,10.223,10.046,10.082,10.796,10.773,10.116,10.168,10.221,10.451,10.035,10.366],"paint":[35.595,35.832,34.648,34.227,34.071,34.302,33.79,35.359,35.297,33.841,33.85,35.453,35.204,34.682,34.923]}},{"framework":"lit-v3.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.735,17.284,17.111,17.552,19.4,17.414,17.802,17.276,19.405,18.979,18.823,18.863,18.317,17.747,18.3],"script":[3.089,2.205,2.255,2.377,3.283,1.566,2.471,2.02,3.744,3.373,3.097,2.836,3.335,2.475,2.44],"paint":[14.075,13.787,12.702,13.814,14.73,13.221,13.97,13.852,14.643,14.309,14.096,13.991,13.528,13.629,14.292]}},{"framework":"lit-v3.0.0-keyed","benchmark":"04_select1k","values":{"total":[5.442,5.41,5.255,4.77,4.514,5.273,5.178,6.255,4.456,4.965,4.27,5.73,5.009,4.713,5.267,4.011,4.833,5.416,4.683,5.839,5.376,4.944,5.075,4.769,5.347],"script":[2.6,2.435,2.391,1.819,2.294,2.426,2.016,2.299,2.453,1.991,1.764,2.976,2.391,2.265,2.115,1.979,2.211,2.802,2.177,3.147,2.406,2.209,2.369,1.862,2.748],"paint":[1.777,0.908,1.861,1.778,2.081,1.666,2.141,2.006,1.864,2.345,1.911,2.482,1.786,1.62,2.139,1.16,2.089,1.981,1.887,1.522,1.842,2.603,2.559,2.789,2.086]}},{"framework":"lit-v3.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.992,21.418,21.179,21.346,20.677,20.852,20.895,21.442,22.053,22.151,20.66,21.191,20.764,20.378,21.553],"script":[2.265,2.469,2.873,2.522,2.567,1.698,2.413,2.453,3.41,1.949,2.138,2.302,2.28,2.048,2.392],"paint":[16.876,17.835,17.138,17.329,16.715,17.873,17.258,17.704,16.094,17.899,17.822,17.332,17.171,17.039,18.788]}},{"framework":"lit-v3.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.44,16.111,16.153,16.558,16.533,16.784,16.306,16.418,16.663,16.597,16.394,16.539,16.718,17.039,17.193],"script":[1.243,1.167,1.055,1.135,1.194,1.35,1.275,0.978,1.232,1.538,1.164,1.216,1.372,1.636,1.672],"paint":[14.437,13.898,14.338,14.671,14.306,14.372,14.196,14.609,14.179,14.305,14.492,14.097,14.297,14.573,14.73]}},{"framework":"lit-v3.0.0-keyed","benchmark":"07_create10k","values":{"total":[432.286,432.183,431.25,435.282,430.033,429.228,433.269,433.112,433.28,433.158,433.071,441.215,435.112,425.945,432.154],"script":[84.573,83.194,82.789,84.134,81.147,83.665,83.126,82.726,83.841,82.747,84.584,85.02,84.102,81.582,83.804],"paint":[340.889,342.212,341.74,344.404,342.155,338.852,343.442,343.637,342.776,343.657,341.832,349.096,344.228,337.743,341.734]}},{"framework":"lit-v3.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.208,46.798,45.434,45.681,44.595,45.43,46.08,45.731,45.738,46.666,45.916,47.019,45.717,46.235,44.986],"script":[6.66,6.607,6.28,6.271,6.186,6.267,6.61,6.193,6.332,6.684,6.352,6.411,6.297,6.332,6.389],"paint":[39.642,39.314,38.277,38.53,37.525,38.283,38.617,38.62,38.532,39.056,38.613,39.726,38.541,39.023,37.743]}},{"framework":"lit-v3.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.869,15.692,14.808,14.865,16.434,15.932,15.589,16.261,15.047,15.176,16.425,15.726,15.969,15.908,14.525],"script":[13.753,13.962,13.139,13.472,14.54,13.771,13.398,14.343,13.047,13.288,14.322,14.23,13.67,14.058,12.908],"paint":[1.533,1.047,1.575,0.931,1.685,2.076,2.097,1.825,1.516,1.126,2.022,1.406,2.212,1.764,1.522]}},{"framework":"lit-v3.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5730094909667969]}},{"framework":"lit-v3.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7417068481445312]}},{"framework":"lit-v3.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.764331817626953]}},{"framework":"lit-v3.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7276058197021484]}},{"framework":"lit-v3.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.420924186706543]}},{"framework":"lit-v3.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.115234375]}},{"framework":"lit-v3.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.30859375]}},{"framework":"lit-v3.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"01_run1k","values":{"total":[40.946,39.144,39.072,40.569,40.387,40.408,39.541,38.819,39.634,40.173,39.871,40.181,40.318,39.132,39.363],"script":[6.724,5.878,5.877,6.78,5.964,6.602,6.446,6.025,5.923,5.905,6.665,6.193,6.497,5.856,5.87],"paint":[33.792,32.839,32.785,33.361,34.02,33.393,32.685,32.343,33.28,33.832,32.792,33.561,33.359,32.859,33.093]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"02_replace1k","values":{"total":[43.466,42.916,42.954,43.482,43.753,43.805,44.675,43.692,43.602,43.848,43.767,44.16,45.227,43.83,43.933],"script":[8.817,9.138,8.831,8.738,8.917,9.101,9.172,9.047,9.017,8.865,9.102,9.067,9.254,9.011,9.07],"paint":[34.215,33.32,33.682,34.304,34.387,34.251,35.047,34.177,34.158,34.521,34.239,34.641,35.517,34.394,34.406]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.542,16.76,17.635,17.709,16.179,17.06,18.284,16.341,17.398,16.907,16.997,16.837,17.59,16.799,16.172],"script":[1.488,1.334,2.04,2.382,1.656,1.889,1.628,1.562,1.913,1.759,1.973,1.38,1.139,1.787,0.94],"paint":[14.98,13.96,13.731,13.759,13.115,13.412,14.909,12.725,13.958,13.273,13.72,13.565,14.997,13.243,14.113]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.557,6.102,4.243,4.739,4.282,4.048,5.44,4.165,4.699,4.087,4.48,4.191,4.177,4.38,4.208,4.753,3.649,4.247,3.608,3.95,4.606,5.312,4.632,3.991,4.987],"script":[1.968,1.533,1.363,2.141,1.373,0.689,1.238,1.22,1.014,1.527,1.072,1.032,1.768,1.616,1.641,1.653,1.451,1.706,1.056,1.347,1.533,1.482,1.479,1.425,1.963],"paint":[1.768,2.628,2.178,1.979,2.793,3.236,3.005,2.834,2.981,2.433,3.252,3.041,2.294,2.656,2.435,2.972,1.282,1.638,1.281,2.478,2.555,1.846,3.023,1.536,2.827]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.562,19.201,20.878,19.385,20.508,19.934,20.164,20.247,20.26,20.5,20.12,19.445,20.223,21.386,20.489],"script":[1.924,1.441,1.034,1.283,2,1.572,2.003,1.393,1.845,1.322,1.166,1.339,0.949,1.815,1.251],"paint":[17.17,16.757,18.701,16.519,17.184,17.013,17.114,16.636,17.165,17.91,17.645,16.677,17.924,17.521,16.934]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.066,16.121,15.972,16.011,16.149,15.439,15.755,15.987,16.151,15.916,16.315,16.054,16.257,15.628,16.106],"script":[0.829,1.095,0.744,1.093,0.716,0.668,0.705,0.771,0.813,0.754,0.716,0.928,1.03,0.703,1.08],"paint":[14.472,14.289,13.844,14.063,14.62,13.747,14.215,14.464,14.351,14.129,14.8,14.336,14.489,14.177,14.042]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"07_create10k","values":{"total":[421.437,415.176,415.755,414.066,417.634,411.999,417.421,420.012,414.991,414.529,416.312,413.125,416.722,412.828,418.009],"script":[71.815,69.39,72.156,69.145,72.33,72.974,73.64,71.969,72.095,68.572,70.723,69.921,70.657,72.091,72.646],"paint":[342.894,338.485,336.581,337.844,338.506,331.94,336.794,340.665,336.141,339.184,338.755,335.936,338.913,333.963,338.59]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.809,44.974,44.325,44.68,43.305,45.578,43.655,45.152,43.027,43.14,43.878,42.632,44.324,43.185,43.478],"script":[5.331,5.533,5.511,5.376,5.351,5.576,5.389,6.365,5.257,5.3,5.325,5.189,5.334,5.326,5.374],"paint":[37.605,38.573,37.926,38.42,37.067,39.132,37.275,37.893,36.91,36.971,37.556,36.572,38.007,37.004,37.222]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.66,15.153,15.517,15.817,15.68,15.634,14.809,16.322,16.008,15.544,15.853,15.602,15.336,15.192,15.94],"script":[14.314,13.496,13.606,14.024,13.252,14.168,13.269,14.049,14.243,13.496,13.751,13.609,13.021,13.264,14.11],"paint":[1.255,1.564,1.568,1.574,2.183,1.39,1.42,2.187,1.679,1.349,1.819,1.113,1.291,1.627,1.739]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5190582275390625]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5169973373413086]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.563631057739258]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.696533203125]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.710187911987305]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1044921875]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.51171875]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.4]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[42.341,43.739,41.957,42.405,42.789,41.46,41.697,41.506,42.638,43.896,42.365,42.409,43.923,42.382,42.342],"script":[7.909,8.653,8.354,8.271,8.393,7.909,8.248,7.965,7.99,8.844,8.169,8.397,8.886,8.005,7.879],"paint":[34,34.664,33.171,33.716,33.969,33.128,33.025,33.131,34.209,34.648,33.774,33.578,34.6,33.926,34.006]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[48.108,48.06,46.738,46.762,47.535,49.354,46.81,47.583,46.572,48.57,47.356,47.486,46.516,46.562,47.833],"script":[11.937,11.376,11.183,11.397,11.498,12.073,11.325,11.869,11.363,11.25,11.648,11.464,11.385,11.37,11.453],"paint":[35.72,36.248,35.115,34.895,35.571,36.798,34.998,35.25,34.732,36.763,35.217,35.579,34.658,34.728,35.927]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.151,17.797,20.393,18.817,17.87,18.403,18.485,18.579,18.102,18.097,17.938,17.933,17.95,18.031,18.147],"script":[2.679,2.812,2.924,2.568,2.606,2.441,2.707,2.419,2.28,2.475,1.991,2.439,2.141,2.648,2.682],"paint":[14.179,13.377,14.337,15.013,13.278,14.614,13.977,15.232,14.387,14.548,14.096,14.38,14.198,14.645,14.184]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.048,8.306,8.651,6.945,7.649,7.712,7.605,8.117,7.338,6.478,7.654,7.052,8.264,7.252,6.45,7.591,7.325,7.476,7.818,7.519,7.239,7.661,8.078,6.882,7.578],"script":[4.817,4.83,5.875,4.457,5.443,4.68,4.706,5.839,4.696,3.984,5.085,4.516,4.758,4.795,4.436,4.569,4.519,4.192,4.813,4.745,4.449,4.929,5.4,4.172,4.997],"paint":[2.254,2.485,2.294,1.177,1.248,2.881,2.331,1.499,2.493,2.349,2.413,1.533,2.586,1.67,1.144,2.857,2.657,2.261,1.846,1.743,2.639,2.584,1.872,2.238,1.485]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[158.242,157.697,156.528,158.795,156.417,155.387,156.829,162.074,156.872,154.857,157.59,160.2,156.057,159.897,157.13],"script":[14.46,15.174,14.113,15.122,15.283,14.26,15.976,15.422,14.432,14.542,13.825,14.711,14.498,15.069,14.406],"paint":[142.08,140.505,140.915,141.152,140.007,139.265,139.007,144.803,140.021,139.162,142.423,143.493,140.173,142.817,141.423]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.402,15.168,15.584,15.415,15.117,15.822,15.408,15.384,15.383,14.981,15.411,15.271,15.45,15.24,15.451],"script":[0.504,0.518,0.354,0.519,0.418,0.543,0.532,0.2,0.529,0.22,0.513,0.549,0.513,0.518,0.519],"paint":[14.134,13.944,14.349,13.844,13.967,14.508,14.137,14.497,13.84,13.991,13.835,14.008,14.154,13.974,13.907]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[438.917,441.604,438.623,435.952,435.733,441.033,431.794,440.437,441.648,438.138,439.669,440.794,439.596,432.275,436.538],"script":[99.564,100.547,100.608,95.583,98.762,100.537,95.996,101.425,96.756,100.588,100.306,101.153,99.361,96.352,98.945],"paint":[332.639,333.972,331.347,333.689,330.248,333.877,329.187,332.224,338.244,330.874,332.541,332.981,333.259,329.26,330.928]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.409,48.752,48.46,48.516,48.087,47.911,49.539,47.931,47.679,49.085,48.474,48.043,49.277,48.896,48.011],"script":[8.103,7.86,7.995,7.902,7.675,7.942,8.175,7.871,7.934,7.988,7.866,7.849,7.949,8.241,7.892],"paint":[40.407,40.027,39.583,39.742,39.526,39.067,40.432,39.11,38.878,40.188,39.72,39.302,40.44,39.761,39.172]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.294,15.116,14.925,16.18,14.673,14.306,15.062,14.795,14.66,14.128,14.734,14.947,14.774,15.334,14.537],"script":[12.691,13.1,13.405,13.266,12.93,12.771,13.356,12.905,12.567,12.475,12.645,13.447,13.364,13.114,12.63],"paint":[1.507,1.208,1.425,2.091,1.635,1.446,0.757,1.207,1.993,1.566,1.167,1.413,1.322,1.722,1.598]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5030393600463867]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.951007843017578]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.965277671813965]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7747592926025391]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.99680233001709]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.8994140625]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.484375]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"01_run1k","values":{"total":[44.673,42.959,44.338,43.497,43.491,43.474,44.173,42.676,43.065,42.595,42.475,42.835,44.724,44.641,43.851],"script":[9.702,9.187,9.876,9.356,9.052,9.046,9.808,8.887,9.388,8.863,8.964,8.862,9.975,10.102,9.711],"paint":[34.515,33.319,34.044,33.717,33.993,33.997,33.948,33.358,33.216,33.319,33.081,33.546,34.297,34.113,33.721]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"02_replace1k","values":{"total":[52.182,50.046,50.209,49.642,50.932,51.695,50.063,50.782,50.108,50.85,50.842,50.284,50.521,50.891,50.983],"script":[15.003,13.533,13.644,13.504,13.946,15.155,13.589,13.761,13.801,13.899,13.942,13.443,13.445,13.926,14.57],"paint":[36.716,36.064,36.089,35.674,36.508,36.095,36.008,36.528,35.835,36.473,36.418,36.363,36.608,36.492,35.947]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.079,26.36,25.488,26.269,28.239,26.276,27.436,27.076,29.471,25.451,27.12,25.404,26.624,27.267,26.148],"script":[10.026,9.881,10.095,10.972,11.2,10.284,11.456,10.747,11.746,9.18,10.73,10.032,10.014,11.017,10.32],"paint":[16.573,14.989,13.635,13.889,15.487,14.104,14.367,14.461,16.354,14.316,15.274,13.731,15.625,14.683,14.351]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"04_select1k","values":{"total":[12.613,12.2,12.241,11.632,13.265,11.59,12.112,12.136,11.011,12.074,11.992,12.909,13.935,11.698,11.966,13.408,12.004,12.157,12.037,11.913,11.577,12.866,11.557,12.942,11.82],"script":[9.365,8.973,9.636,9.127,10.111,8.187,8.996,9.284,7.847,9.292,9.156,9.407,10.948,8.746,9.421,10.262,9.241,9.064,9.146,8.865,8.533,9.183,8.993,10.311,8.673],"paint":[2.144,3.056,1.507,2.334,1.896,1.131,2.952,2.527,2.476,2.625,2.667,3.33,2.147,2.362,1.724,2.37,1.699,1.687,2.58,2.222,2.535,3.513,1.541,0.564,2.49]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"05_swap1k","values":{"total":[28.407,28.925,28.896,27.928,30.742,28.379,28.173,29.033,29.846,28.31,27.895,27.17,28.037,27.241,28.434],"script":[9.152,9.763,9.655,8.913,10.031,8.062,9.255,9.729,9.62,9.647,9.423,8.425,8.975,8.813,9.473],"paint":[17.864,17.806,17.142,17.889,19.176,19.328,17.36,17.657,18.912,17.09,17.727,16.972,17.315,15.906,17.665]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.005,20.622,20.868,20.918,20.983,20.531,20.337,20.707,22.029,20.361,20.886,20.933,20.808,21.666,21.587],"script":[5.106,5.174,5.492,5.564,5.476,5.246,5.067,5.618,5.766,5.081,5.609,5.532,5.317,5.361,5.476],"paint":[14.836,14.651,14.559,14.005,14.722,14.522,14.192,14.023,15.069,14.222,14.546,14.637,14.521,15.093,14.876]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"07_create10k","values":{"total":[448.959,447.94,454.884,449.932,451.404,451.75,452.088,452.722,444.942,452.816,441.04,452.136,446.274,450.719,451.483],"script":[100.131,100.487,101.815,101.581,100.426,103.625,98.771,103.418,98.215,102.152,95.715,101.905,98.634,101.689,101.623],"paint":[342.132,340.756,346.459,341.586,344.343,341.519,346.55,342.67,339.901,344,338.298,343.615,340.881,342.422,343.1]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.152,57.099,53.502,55.287,54.625,55.543,53.736,53.476,54.642,53.621,53.659,54.337,55.022,54.449,56.395],"script":[14.244,14.432,13.53,13.863,13.162,13.857,13.879,13.838,13.833,13.482,13.605,13.766,14.133,13.454,14.167],"paint":[38.983,41.763,39.093,40.487,40.579,40.755,38.956,38.757,39.926,39.24,39.154,39.67,39.97,40.092,41.286]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.146,16.987,15.692,16.663,15.336,16.211,15.643,16.31,15.727,15.87,16.559,15.425,15.06,16.461,15.723],"script":[13.037,14.64,13.404,14.994,13.186,14.508,13.526,14.26,13.927,14.093,14.949,13.74,12.946,14.05,13.632],"paint":[2.012,1.881,1.991,0.919,2.054,1.585,1.372,1.028,0.839,1.669,1.516,1.6,2.032,1.524,1.421]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7222814559936523]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6365346908569336]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6771488189697266]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3440933227539062]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.156203269958496]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[52.6787109375]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.970703125]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[94.5]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[37.208,35.816,35.974,36.815,35.802,36.31,35.915,36.104,35.993,36.779,36.04,36.694,36.743,36.546,36.435],"script":[3.425,3.415,3.407,3.477,3.345,3.428,3.445,3.476,3.347,3.466,3.374,3.638,3.509,3.383,3.414],"paint":[33.314,31.977,32.145,32.913,32.017,32.458,32.039,32.202,32.225,32.909,32.23,32.637,32.808,32.737,32.586]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[42.754,40.032,40.078,41.104,41.542,42.877,39.983,41.036,39.686,39.926,41.609,40.023,40.002,40.19,40.113],"script":[5.651,5.542,5.708,5.662,5.893,5.688,5.598,5.647,5.673,5.523,6.057,5.672,5.912,5.648,5.625],"paint":[36.679,34.048,33.936,35.007,35.191,36.74,33.947,34.934,33.561,33.947,35.134,33.921,33.685,34.113,34.034]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.539,16.579,16.752,16.957,17.099,16.613,16.387,16.362,19.025,16.177,16.535,16.368,16.644,17.797,16.914],"script":[1.801,1.512,1.442,1.679,1.039,0.627,1.486,1.766,1.548,1.362,1.528,1.132,1.703,1.472,1.648],"paint":[14.406,13.735,13.579,14.224,14.349,14.655,13.916,13.009,15.94,13.459,13.592,13.613,13.686,15.027,14.225]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[3.249,3.364,4.626,3.32,2.745,3.589,3.163,2.485,3.352,2.891,4.106,3.018,2.801,3.619,3.401,5.159,3.516,3.392,3.657,2.361,2.888,3.019,3.617,3.682,3.159],"script":[0.184,1.179,0.919,0.97,0.632,0.894,0.926,0.657,0.848,0.893,0.743,0.916,1.083,1.117,0.671,0.822,0.901,1.211,1.118,0.819,0.614,1.364,1.475,1.212,0.451],"paint":[1.947,1.446,1.782,2.244,1.425,2.228,1.37,1.728,1.628,1.897,1.645,1.999,1.616,1.46,2.151,1.734,2.514,1.378,2.429,1.433,1.422,1.125,1.606,2.37,1.548]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[18.984,19.211,20.306,21.333,19.832,19.958,18.704,19.116,19.137,19.685,19.105,19.877,19.659,19.858,19.108],"script":[1.153,1.47,1.875,1.581,1.17,1.183,0.658,0.986,1.251,1.241,1.051,1.215,1.507,1.725,1.411],"paint":[16.605,15.999,16.828,17.97,17.075,17.42,16.22,16.786,16.384,16.788,16.721,17.02,16.632,16.346,16.326]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.441,16.23,15.495,15.753,15.405,15.93,15.108,15.445,15.19,15.97,15.435,15.423,15.374,15.393,15.327],"script":[0.697,0.982,0.71,0.73,0.707,0.698,0.697,0.699,0.711,0.879,0.681,0.715,0.708,0.689,0.672],"paint":[13.722,14.444,13.923,14.083,13.99,14.471,13.731,13.957,13.742,14.371,14.236,13.99,14.226,13.559,13.917]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[380.314,383.702,380.705,384.314,385.745,383.111,384.08,385.802,388.834,382.438,387.084,385.158,383.91,386.216,385.926],"script":[42.498,43.379,43.228,43.59,44.011,43.777,43.302,44.01,43.77,41.567,43.573,43.833,43.586,44.254,44.513],"paint":[331.144,333.564,330.752,333.793,335.044,332.34,334.122,335.116,338.403,334.225,336.807,334.696,333.701,335.349,334.501]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.868,43.574,44.189,45.484,43.533,45.044,45.48,43.691,44.962,45.445,43.735,44.183,45.32,43.924,45.23],"script":[4.463,4.494,4.338,4.871,4.621,4.879,4.594,4.416,4.51,4.986,4.367,4.489,4.925,4.277,4.933],"paint":[38.537,38.174,39.072,39.632,38.053,39.289,40.015,38.403,39.547,39.521,38.494,38.814,39.545,38.775,39.354]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.699,11.979,12.186,11.846,11.96,11.638,11.72,11.852,11.967,11.711,12.396,11.315,11.995,11.169,12.578],"script":[10.193,10.221,10.429,10.223,10.189,10.203,10.065,9.767,9.817,10.124,10.43,10.155,10.285,10.1,10.641],"paint":[1.006,1.672,1.662,1.543,1.682,0.449,1.57,1.991,1.482,1.503,1.235,0.441,1.63,0.349,1.822]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46031665802001953]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.469243049621582]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.606635093688965]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.717900276184082]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.93618869781494]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3349609375]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.9990234375]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[43.522,41.952,41.62,42.289,42.302,42.701,41.587,41.392,42.487,43.365,42.588,41.781,43.125,41.673,41.625],"script":[9.21,9.147,9.11,8.936,9.274,9.48,8.496,8.638,8.822,9.147,8.939,9.17,9.06,8.88,9.125],"paint":[33.863,32.379,32.083,32.914,32.572,32.796,32.676,32.318,33.248,33.799,33.241,32.192,33.666,32.354,32.068]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[48.977,48.315,48.856,50.043,48.929,47.343,49.164,48.007,48.089,48.24,48.333,48.386,47.901,48.244,47.86],"script":[13.183,13.189,13.398,13.03,13.794,12.816,13.214,13.219,13.3,13.2,13.275,13.252,12.766,12.986,12.888],"paint":[35.326,34.651,34.998,36.561,34.645,34.077,35.499,34.336,34.331,34.592,34.558,34.678,34.699,34.813,34.533]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.663,22.374,22.299,23.194,22.046,22.167,22.074,21.821,21.877,22.327,22.352,21.746,22.128,22.294,24.013],"script":[6.93,6.285,6.755,7.695,6.561,6.201,6.362,6.697,6.536,6.731,6.756,6.635,6.47,6.898,7.148],"paint":[14.392,13.977,13.734,13.45,14.23,14.202,14.689,13.831,13.979,14.329,14.637,12.387,14.171,13.935,15.864]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.257,5.674,3.253,3.555,3.419,2.95,2.934,2.931,3.298,2.749,3.45,2.82,3.739,3.174,3.393,3.068,3.312,3.543,5.005,3.228,3.371,3.357,3.355,4.396,3.226],"script":[1.057,0.944,0.954,1.278,1.199,0.249,1.328,0.777,1.461,0.235,1.55,0.654,1.221,1.17,0.904,0.289,0.914,1.229,0.85,1.249,1.137,1.177,0.608,1.07,0.244],"paint":[2.078,2.753,1.544,1.796,1.561,2.408,1.512,1.411,1.081,2.134,1.804,2.068,1.132,1.434,2.387,2.673,1.957,2.222,1.885,1.117,2.105,0.969,2.646,1.094,2.896]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[19.088,18.772,19.449,18.517,19.204,18.577,19.963,19.5,19.044,19.135,20.416,19.049,18.982,19.71,18.367],"script":[1.392,0.798,0.945,0.905,0.175,0.182,0.671,1.035,0.182,0.185,0.628,0.59,0.18,0.671,0.522],"paint":[16.112,16.682,17.054,16.348,17.818,17.053,17.633,17.303,17.603,17.382,17.854,17.215,17.192,16.96,16.414]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.446,15.49,15.34,16.16,15.936,14.765,15.912,16.086,15.129,14.894,16.094,15.891,15.221,15.524,15.864],"script":[0.413,0.574,0.559,0.361,0.56,0.515,0.54,0.572,0.533,0.546,0.416,0.466,0.499,0.274,0.553],"paint":[13.979,14.152,14.02,15.028,14.288,13.569,14.299,14.563,13.891,13.595,14.937,14.686,13.992,14.518,14.609]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[423.194,419.269,417.379,422.508,420.058,417.11,420.223,425.167,426.573,416.336,417.862,413.313,420.024,423.132,424.473],"script":[76.589,76.62,75.066,76.896,78.468,76.879,77.11,77.79,78.73,76.985,75.852,74.185,77.692,78.58,78.764],"paint":[339.953,335.784,335.608,338.803,334.135,333.456,336.08,340.43,340.979,332.695,334.994,332.466,335.467,337.856,339.005]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.322,46.381,45.477,47.051,47.552,48.45,46.514,46.43,47.473,47.303,47.074,47.838,45.623,47.329,46.884],"script":[7.651,7.699,7.523,8.16,7.96,7.893,7.681,7.941,8.299,8.546,8.115,8.591,7.547,7.761,7.798],"paint":[36.827,37.568,37.017,37.913,38.711,39.637,37.933,37.597,38.064,37.837,38.087,38.254,37.095,38.699,38.074]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.434,18.446,18.72,19.214,18.559,19.135,19.557,18.892,18.109,18.443,18.5,18.364,18.511,18.524,19.322],"script":[17.455,16.528,16.461,17.367,16.865,17.153,17.592,16.906,16.601,16.848,16.953,16.517,16.39,16.443,16.944],"paint":[1.285,1.81,1.844,1.575,1.587,1.871,1.839,1.686,1.407,0.998,0.938,1.009,1.253,1.982,2.28]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6997709274291992]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.760957717895508]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9598140716552734]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1118240356445312]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.958622932434082]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.451171875]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[18.2177734375]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[53.964,51.296,51.347,52.273,49.94,51.37,52.909,51.653,51.776,49.82,51.441,51.179,51.08,51.846,51.038],"script":[17.593,16.336,16.766,17.6,15.928,16.815,16.343,17.079,17.126,15.901,16.393,17.306,16.183,16.738,16.516],"paint":[35.948,34.529,34.153,34.254,33.583,34.149,36.136,34.149,34.226,33.495,34.638,33.431,34.483,34.678,34.117]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[57.682,57.444,57.877,57.177,58.381,57.396,57.457,57.448,57,57.384,55.683,57.496,58.312,56.351,58.501],"script":[20.984,20.737,20.772,20.555,21.697,20.467,20.714,20.805,20.485,20.314,19.687,21.235,20.769,20.013,20.716],"paint":[36.248,36.281,36.658,36.166,36.227,36.48,36.304,36.207,36.089,36.61,35.547,35.825,37.069,35.906,37.294]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.73,17.816,17.54,18.184,17.318,17.475,18.572,18.6,18.555,18.052,18.326,17.431,18.426,17.539,17.851],"script":[2.488,2.25,2.423,2.692,2.408,1.627,1.799,2.164,2.401,2.523,1.978,1.958,2.216,2.248,2.349],"paint":[13.364,13.614,12.761,14.366,13.419,14.718,14.998,15.391,13.838,13.627,14.634,13.272,14.618,13.489,14.181]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.475,3.378,3.956,2.767,2.971,2.692,2.234,2.872,4.662,5.789,2.744,4.248,2.551,2.981,4.032,2.961,2.869,2.654,2.883,4.128,4.788,4.007,2.841,4.166,4.766],"script":[0.555,1.091,1.119,0.815,0.896,0.84,0.568,0.907,1.13,1.159,0.863,1.233,0.167,0.503,0.678,0.156,0.914,0.962,0.511,1.092,0.189,1.123,0.713,0.81,1.306],"paint":[1.814,2.191,1.79,1.062,1.978,1.404,0.993,1.136,1.615,1.379,1.051,2.532,2.284,2.371,2.018,2.71,1.119,1.181,2.278,1.666,2.672,1.605,2.03,1.086,2.115]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[19.118,19.599,19.056,18.779,19.101,20.837,18.798,18.673,19.413,19.119,18.86,19.175,18.364,18.372,18.499],"script":[0.91,1.181,0.632,0.195,0.549,1.634,0.76,0.753,0.197,0.688,0.914,0.945,0.839,0.973,0.756],"paint":[16.273,16.302,16.853,17.615,17.512,17.294,16.825,16.585,16.753,17.09,15.478,16.166,16.366,16.113,16.509]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.423,15.062,15.263,14.906,15.68,15.726,14.901,14.948,14.957,15.361,15.211,15.654,14.853,14.865,15.065],"script":[0.594,0.392,0.593,0.506,0.61,0.619,0.478,0.296,0.621,0.578,0.599,0.589,0.591,0.427,0.595],"paint":[14.073,13.963,14.224,13.699,14.338,14.414,13.686,13.884,13.587,14.111,13.944,14.38,13.514,13.676,13.712]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[499.817,503.092,496.739,510.27,515.096,498.016,499.398,499.051,497.17,507.326,498.851,501.774,492.648,506.119,495.918],"script":[166.3,168.878,164.961,166.01,167.528,167.154,167.006,167.416,165.313,166.438,165.46,166.192,160.527,167.675,164.388],"paint":[326.581,327.577,325.146,337.639,340.979,324.274,325.479,324.821,325.075,334.095,326.804,328.958,325.558,331.889,324.879]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.367,58.011,59.645,59.337,58.772,59.713,58.505,58.728,58.332,59.158,61.214,59.597,58.115,57.601,58.269],"script":[17.434,17.092,17.766,17.45,16.759,18.037,17.163,17.656,16.813,17.533,17.38,18.12,17.338,16.748,16.976],"paint":[40.032,40.021,40.978,40.979,41.121,40.768,40.443,40.146,40.619,40.724,42.906,40.572,39.869,39.964,40.393]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.126,18.665,18.533,18.748,18.06,20.426,20.224,18.984,21.696,18.32,19.573,19.548,20.622,19.804,19.82],"script":[18.15,16.395,16.637,16.647,16.931,18.491,17.549,16.751,19.286,16.613,17.64,17.903,18.509,17.886,18.094],"paint":[1.198,2.155,1.731,2.005,0.397,1.146,2.395,1.631,1.313,0.761,1.806,0.877,1.986,1.228,1.057]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7765426635742188]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.075503349304199]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2363929748535156]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3459358215332031]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.13265895843506]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9931640625]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.3720703125]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[128]}},{"framework":"marko-v5.31.12-keyed","benchmark":"01_run1k","values":{"total":[54.978,52.97,52.077,51.057,50.911,51.275,51.107,52.058,52.73,52.22,52.431,53.855,52.433,52.11,52.684],"script":[21.048,18.573,18.555,17.415,18.504,18.616,17.803,18.658,18.349,18.466,18.774,20.463,18.277,18.52,18.487],"paint":[33.716,34.188,33.327,33.453,32.203,32.468,33.109,33.175,34.186,33.546,33.457,33.188,33.954,33.389,33.979]}},{"framework":"marko-v5.31.12-keyed","benchmark":"02_replace1k","values":{"total":[59.335,61.283,60.34,61.414,61.417,60.83,59.343,61.84,59.192,60.324,62.42,61.91,61.853,63.216,60.122],"script":[24.687,27.01,26.126,26.006,26.074,25.623,24.568,26.302,23.904,25.157,27.768,25.687,26.386,27.824,24.533],"paint":[34.455,34.08,33.99,35.193,35.145,34.983,34.559,35.334,35.08,34.93,34.425,36.029,35.259,35.191,35.394]}},{"framework":"marko-v5.31.12-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.286,26.507,68.445,25.891,26.429,23.317,22.679,22.357,23.583,26.518,23.693,69.561,23.452,70.955,69.464],"script":[8.524,9.685,7.72,9.543,9.541,9.654,8.489,8.693,8.084,9.452,7.891,9.026,8.954,9.344,9],"paint":[14.63,16.205,16.777,15.857,15.428,13.531,12.874,13.53,15.36,16.783,14.512,16.2,14.358,17.881,17.015]}},{"framework":"marko-v5.31.12-keyed","benchmark":"04_select1k","values":{"total":[17.18,9.181,13.651,9.23,11.279,18.649,17.006,8.514,9.427,9.302,8.391,12.396,8.588,8.981,14.737,8.975,9.328,14.198,11.461,15.593,10.996,13.036,14.348,9.014,17.2],"script":[7.126,6.412,7.291,6.315,6.545,6.658,7.115,5.649,6.541,6.278,6.12,6.33,6.27,5.612,6.015,5.706,5.88,6.469,5.995,7.945,6.107,7.743,7.884,5.735,8.328],"paint":[3.889,2.592,2.689,2.74,2.706,4.529,2.852,1.302,1.757,2.854,1.701,4.006,1.395,2.868,2.348,2.429,2.251,1.664,4.724,5.073,3.034,4.349,3.838,3.102,4.801]}},{"framework":"marko-v5.31.12-keyed","benchmark":"05_swap1k","values":{"total":[159.159,156.615,157.554,160.659,157.62,160.498,160.706,158.134,164.549,158.495,160.211,162.147,161.794,164.512,158.011],"script":[22.57,20.976,20.38,21.541,21.577,22.331,20.814,21.052,22.126,21.555,22.274,21.242,21.694,22.157,20.226],"paint":[136.396,135.472,136.997,137.986,135.867,136.814,139.349,134.743,141.446,136.783,136.665,140.253,139.683,141.724,136.177]}},{"framework":"marko-v5.31.12-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.496,18.591,18.176,17.988,18.299,18.41,19.628,17.804,17.973,19.158,18.377,18.026,18.511,18.088,18.358],"script":[3.027,2.867,2.692,3.164,3.322,3.377,3.089,2.752,3.066,2.922,3.47,2.819,3.009,2.808,2.999],"paint":[14.388,14.19,14.199,14.087,14.437,14.414,15.38,14.078,14.06,14.955,14.171,13.83,14.227,13.774,14.377]}},{"framework":"marko-v5.31.12-keyed","benchmark":"07_create10k","values":{"total":[541.333,531.776,549.158,541.614,527.64,542.021,545.453,537.61,533.453,532.231,528.234,531.433,541.304,544.723,548.657],"script":[177.299,179.988,173.445,174.026,179.882,176.758,177.389,174.054,182.8,184.012,178.865,181.936,176.764,182.193,185.051],"paint":[361.739,349.548,373.533,365.309,345.516,363.035,365.843,361.238,348.472,345.896,347.084,347.339,362.334,360.256,361.38]}},{"framework":"marko-v5.31.12-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.89,62.663,60.774,63.871,62.04,61.315,60.452,62.501,60.068,61.881,60.906,60.628,60.522,59.579,62.856],"script":[21.773,23.304,21.678,23.36,22.289,21.973,21.99,23.295,21.856,23.054,22.087,21.723,21.363,21.013,21.92],"paint":[38.779,39.029,38.773,40.179,39.447,39.027,38.173,38.902,37.862,38.508,38.511,38.6,38.815,38.26,40.605]}},{"framework":"marko-v5.31.12-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.966,21.38,26.267,25.69,27.474,22.481,26.884,27.982,26.5,26.344,26.429,23.39,25.431,26.597,21.048],"script":[22.35,19.4,21.946,22.062,22.234,20.089,22.757,23.899,23.204,22.203,22.607,21.705,23.203,21.471,19.708],"paint":[2.634,1.181,2.526,3.049,3.537,2.307,3.847,3.127,2.947,3.272,2.227,1.604,2.114,3.096,1.248]}},{"framework":"marko-v5.31.12-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6847267150878906]}},{"framework":"marko-v5.31.12-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.302304267883301]}},{"framework":"marko-v5.31.12-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.446647644042969]}},{"framework":"marko-v5.31.12-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.2719316482543945]}},{"framework":"marko-v5.31.12-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.430649757385254]}},{"framework":"marko-v5.31.12-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[46.4521484375]}},{"framework":"marko-v5.31.12-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.1103515625]}},{"framework":"marko-v5.31.12-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.2]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[37.572,36.638,37.187,37.798,36.746,36.984,38.805,37.4,36.879,37.162,36.083,37.12,39.424,37.235,37.13],"script":[4.01,3.8,3.795,4.184,3.706,3.854,4.08,3.971,3.884,3.846,3.83,3.889,4.125,3.828,4.071],"paint":[33.158,32.424,32.921,33.222,32.622,32.723,34.297,33.018,32.599,32.905,31.822,32.791,34.884,33.007,32.646]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[41.939,41.53,41.026,42.058,41.545,42.438,40.857,41.041,41.546,43.279,42.432,42.865,42.277,42.224,41.735],"script":[7.122,6.746,6.889,6.835,6.827,7.461,6.846,6.843,7.002,7.405,6.989,6.99,7.619,7.583,7.034],"paint":[34.368,34.35,33.719,34.778,34.287,34.557,33.576,33.759,34.081,35.428,35.007,35.425,34.241,34.212,34.255]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.758,15.949,16.214,16.919,17.062,16.388,16.481,16.069,16.17,17.336,16.506,16.846,16.79,16.155,16.267],"script":[1.152,0.985,0.6,1.944,1.753,1.034,1.441,1.231,0.974,0.941,1.896,1.2,1.224,1.227,1.063],"paint":[14.494,13.863,14.078,13.694,14.606,13.102,14.05,13.066,14.099,14.545,12.812,14.215,14.033,13.344,13.212]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[3.69,3.004,2.872,2.367,4.098,2.76,4.455,3.918,2.303,3.504,2.692,3.332,2.808,3.125,2.847,3.01,3.604,5.664,3.777,2.429,2.829,2.815,3.087,3.072,2.306],"script":[0.123,0.122,0.119,0.122,0.691,0.534,0.13,0.113,0.115,1.062,0.118,0.805,0.969,0.948,0.116,0.122,0.134,0.53,0.916,0.484,0.113,0.113,1.212,0.121,0.772],"paint":[2.998,2.188,2.059,1.223,2.206,1.372,2.677,1.8,1.112,1.099,2.156,2.423,1.738,2.076,2.627,2.76,2.481,1.73,1.111,1.151,1.604,1.728,1.775,1.725,1.439]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[19.43,19.986,19.741,19.768,19.655,19.984,19.573,20.155,19.705,19.861,21.05,20.816,19.994,20.911,20.349],"script":[1.722,1.753,1.841,1.592,1.724,1.598,1.752,1.709,1.901,2.391,1.989,1.992,1.368,1.577,1.597],"paint":[16.219,17.21,16.152,16.266,16.759,16.728,16.751,16.051,16.464,15.944,16.965,17.534,17.657,17.613,17.675]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.71,16.251,16.199,16.132,15.449,15.463,15.529,15.639,15.337,15.581,15.501,15.899,15.508,15.383,16.015],"script":[0.863,0.846,0.748,0.743,0.732,0.718,0.727,0.905,0.858,0.744,0.693,0.961,0.745,0.91,0.995],"paint":[14.135,14.512,14.33,14.918,14.018,13.998,13.783,13.858,13.727,13.95,14.073,14.192,13.737,13.733,14.344]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[396.044,389.436,395.271,393.472,385.941,391.688,391.031,388.545,388.714,385.251,393.556,388.65,383.507,386.134,391.567],"script":[47.697,45.448,48.228,47.932,47.248,48.572,48.67,47.618,46.926,47.07,49.365,47.414,47.08,48.385,48.975],"paint":[341.7,336.843,340.375,338.771,331.978,336.488,335.703,333.61,335.132,331.461,337.528,334.488,329.031,331.182,335.927]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.586,42.305,41.212,41.219,41.678,42.136,42.15,43.316,42.525,42.453,41.421,42.667,41.672,41.361,41.956],"script":[3.646,3.354,3.425,3.403,3.382,3.681,3.803,3.554,3.788,3.835,3.401,3.629,3.497,3.493,3.444],"paint":[39.038,38.037,36.938,36.929,37.396,37.559,37.485,38.848,37.881,37.752,37.143,38.154,37.27,37.001,37.585]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.015,13.47,14.245,12.898,13.624,14.024,13.222,13.197,13.161,13.627,13.316,13.574,13.416,13.596,13.377],"script":[11.977,11.51,11.481,11.787,12.356,11.821,11.657,10.852,11.783,11.55,11.647,11.97,11.943,11.679,11.741],"paint":[1.543,1.174,2.656,0.364,0.579,2.106,1.483,2.253,1.291,1.977,1.319,0.825,1.389,1.821,1.545]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.47789478302001953]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.379179000854492]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.428013801574707]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6549797058105469]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.719630241394043]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.873046875]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.736328125]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.8]}},{"framework":"metron-v0.0.2-keyed","benchmark":"01_run1k","values":{"total":[40.911,43.729,42.435,43.06,43.683,43.154,42.543,44.254,43.853,44.136,43.264,42.679,42.739,43.467,42.541],"script":[7.887,8.57,8.312,8.091,8.366,8.471,7.968,8.751,8.147,8.249,8.251,8.122,8.225,8.565,8.458],"paint":[32.59,34.704,33.684,34.529,34.875,34.243,34.112,35.068,35.265,35.42,34.586,34.113,34.066,34.491,33.657]}},{"framework":"metron-v0.0.2-keyed","benchmark":"02_replace1k","values":{"total":[46.572,46.062,46.999,47.498,46.672,46.485,46.408,46.275,46.026,45.523,46.492,46.354,47.321,47.008,46.901],"script":[10.656,10.08,10.423,10.144,10.262,10.004,9.859,9.693,9.982,9.643,9.842,10.13,10.09,10.241,10.029],"paint":[35.418,35.519,36.124,36.894,35.939,35.998,36.106,36.143,35.576,35.404,36.166,35.742,36.734,36.261,36.35]}},{"framework":"metron-v0.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.291,16.846,16.344,16.377,16.973,16.661,16.556,16.622,16.497,16.21,16.427,16.144,16.005,16.499,18.155],"script":[0.938,1.561,1.003,1.027,0.979,1.203,1.07,0.579,0.585,0.554,0.84,0.221,0.92,1.183,0.723],"paint":[13.78,13.391,13.853,13.762,13.904,13.843,14.137,14.485,14.308,14.292,14.132,14.741,12.562,13.923,15.867]}},{"framework":"metron-v0.0.2-keyed","benchmark":"04_select1k","values":{"total":[2.838,1.812,2.829,2.776,3.444,3.466,2.368,4.821,2.732,1.956,2.229,2.779,2.343,2.353,2.239,2.221,2.698,3.292,2.875,2.604,3.045,2.71,2.758,5.091,2.211],"script":[0.411,0.115,0.072,0.073,0.937,0.071,0.068,0.705,0.066,0.063,0.066,0.798,0.065,0.064,0.068,0.065,0.069,0.589,0.314,0.067,0.627,0.755,0.068,0.086,0.694],"paint":[2.324,1.607,1.669,1.753,1.753,1.466,2.166,1.796,2.437,1.793,2.07,1.885,1.401,2.192,1.918,2.058,2.055,2.596,2.043,2.441,2.32,1.856,2.59,2.767,1.425]}},{"framework":"metron-v0.0.2-keyed","benchmark":"05_swap1k","values":{"total":[19.062,19.072,19.567,20.082,19.48,19.361,19.077,18.907,18.942,19.111,19.222,18.201,19.021,19.769,19.002],"script":[0.107,0.685,0.687,0.788,0.597,0.105,0.114,0.112,0.299,0.107,0.436,0.101,0.103,1.042,0.103],"paint":[17.227,16.842,17.38,17.795,17.954,18.097,17.628,17.036,17.947,17.998,17.401,17.108,17.557,17.629,17.23]}},{"framework":"metron-v0.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.316,15.356,14.983,15.175,15.172,15.31,15.228,15.297,14.888,14.915,14.886,14.936,15.274,15.045,14.982],"script":[0.121,0.092,0.104,0.095,0.098,0.119,0.327,0.245,0.102,0.087,0.092,0.092,0.4,0.092,0.155],"paint":[14.412,14.488,13.83,14.411,14.342,14.465,13.891,14.129,13.725,13.817,13.904,13.79,13.856,13.868,13.791]}},{"framework":"metron-v0.0.2-keyed","benchmark":"07_create10k","values":{"total":[444.73,444.322,441.561,442.193,443.18,441.038,443.241,441.172,443.518,442.873,443.317,440.007,443.162,441.605,442.974],"script":[95.272,95.143,94.272,97.66,95.707,95.121,96.251,95.377,94.686,96.816,96.203,94.047,94.012,94.951,94.835],"paint":[342.521,342.375,340.447,337.288,340.604,338.888,340.194,338.428,341.911,339.066,340.096,339.153,342.355,339.555,341.38]}},{"framework":"metron-v0.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.677,46.984,46.914,47.544,46.42,46.058,47.524,46.337,46.08,48.139,46.854,47.473,47.447,47.636,46.298],"script":[7.615,6.623,6.709,6.645,6.687,6.671,7.019,6.804,6.656,6.965,6.892,6.67,6.747,6.533,7.191],"paint":[40.15,39.467,39.302,40.014,38.773,38.455,39.527,38.587,38.553,40.186,39.059,39.901,39.798,40.075,38.16]}},{"framework":"metron-v0.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.529,12.407,12.61,12.276,12.801,12.555,12.62,12.408,13.533,12.784,12.275,12.923,12.736,12.669,11.821],"script":[10.796,10.522,10.736,10.478,10.658,10.4,10.667,10.258,10.42,10.2,10.106,10.853,10.625,11.039,10.731],"paint":[1.645,0.95,1.702,1.713,1.918,2.064,1.852,2.041,2.97,2.156,2.083,1.24,1.243,1.535,0.364]}},{"framework":"metron-v0.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5316371917724609]}},{"framework":"metron-v0.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3683433532714844]}},{"framework":"metron-v0.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.407984733581543]}},{"framework":"metron-v0.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7325992584228516]}},{"framework":"metron-v0.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.033967971801758]}},{"framework":"metron-v0.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.8974609375]}},{"framework":"metron-v0.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.0048828125]}},{"framework":"metron-v0.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.3]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"01_run1k","values":{"total":[46.354,44.132,43.162,44.982,43.796,44.038,44.225,45.126,44.798,44.769,44.946,44.623,44.124,45.046,45.068],"script":[10.945,10.434,10.969,10.643,10.767,11.207,10.396,10.544,10.918,10.554,10.96,10.568,10.609,10.425,11.154],"paint":[34.919,33.249,31.807,33.902,32.6,32.388,33.409,34.152,33.486,33.79,33.558,33.613,33.085,34.167,33.511]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"02_replace1k","values":{"total":[49.706,48.644,49.281,48.391,49.022,49.256,49.137,49.137,48.999,49.688,49.408,48.037,49.019,49.001,48.735],"script":[13.299,13.114,13.013,13.027,13.38,13.188,12.976,13.026,13.208,13.397,13.125,12.74,13.012,12.954,13.781],"paint":[35.954,35.067,35.837,34.89,35.167,35.594,35.701,35.672,35.308,35.844,35.83,34.853,35.533,35.568,34.498]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.885,22.164,19.971,19.875,19.053,20.35,19.694,20.549,19.686,20.487,19.613,20.1,20.043,19.331,19.694],"script":[4.535,5.474,4.423,5.139,4.865,4.647,4.491,4.962,4.574,4.91,4.562,5.04,4.449,4.581,4.602],"paint":[13.888,14.849,14.006,13.745,12.682,14.761,13.598,14.63,12.102,14.336,13.547,14.002,14.638,13.3,13.329]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"04_select1k","values":{"total":[3.462,3.529,3.684,3.075,2.645,2.925,4.683,5.553,3.645,3.456,3.938,3.682,2.866,2.351,2.798,3.344,3.174,4.028,2.91,3.659,4.756,3.772,6.079,3.102,3.697],"script":[1.186,1.224,1.213,0.508,0.18,0.651,0.902,0.774,1.105,1.412,0.193,0.599,0.664,0.904,0.855,1.086,1.156,0.177,0.892,0.899,0.186,0.664,1.229,0.182,1.371],"paint":[1.773,2.205,2.287,2.458,1.679,2.184,2.461,1.716,2.438,1.122,0.812,2.211,0.832,0.803,1.837,0.597,1.924,1.987,1.914,2.65,2.284,1.661,1.457,2.179,2.234]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"05_swap1k","values":{"total":[18.491,18.61,19.146,18.99,18.749,19.209,18.68,18.97,18.904,19.502,19.606,18.934,18.273,17.79,19.056],"script":[0.486,0.837,1.103,0.796,0.169,0.547,0.519,0.164,0.272,0.181,1.044,0.926,0.508,0.537,0.836],"paint":[15.976,16.535,16.671,16.594,17.576,17.354,17.137,16.53,17.35,16.85,16.564,16.781,16.355,16.211,16.906]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.059,15.129,14.96,14.789,15.118,14.788,14.758,15.104,14.79,15.075,15.199,14.77,14.781,15.06,15.037],"script":[0.124,0.387,0.293,0.114,0.394,0.117,0.429,0.282,0.401,0.332,0.434,0.116,0.119,0.448,0.435],"paint":[14.077,13.999,13.778,13.911,14.012,13.961,13.532,13.879,13.622,14.087,14.034,13.928,13.647,13.841,13.881]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"07_create10k","values":{"total":[454.454,467.835,465.684,463.675,467.361,464.367,457.578,470.891,460.802,458.241,464.458,463.409,464.801,467.91,465.916],"script":[118.966,127.665,128.393,120.148,126.037,122.401,120.351,127.537,124.489,122.846,127.159,122.901,123.798,125.964,125.639],"paint":[328.623,333.243,330.413,336.646,334.545,335.241,330.553,336.173,329.585,328.815,330.454,333.701,334.289,335.154,333.433]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.479,53.188,51.908,50.654,51.106,50.573,50.868,50.291,52.746,52.801,53.187,52.764,51.036,52.042,52.298],"script":[10.745,11.141,11.736,11.113,11.72,11.029,10.951,10.837,11.126,11.512,11.214,11.132,11.254,11.633,11.007],"paint":[38.837,41.08,39.211,38.522,38.472,38.604,39.014,38.505,40.709,40.321,41.004,40.712,38.885,39.522,40.407]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.249,12.113,13.146,13,12.703,12.143,12.802,12.209,12.059,11.938,12.28,13.033,12.116,12.033,13.079],"script":[10.332,10.584,11.889,11.079,10.49,10.434,10.921,10.355,10.636,10.421,10.603,11.296,10.362,10.599,10.689],"paint":[1.189,1.446,1.169,1.828,2.127,1.62,1.059,1.772,0.351,1.433,1.586,1.234,1.664,0.382,2.305]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5808467864990234]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.434617042541504]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.565178871154785]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9432525634765625]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.779791831970215]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[44.4755859375]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.43359375]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.3]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"01_run1k","values":{"total":[47.003,48.349,46.688,46.459,46.794,46.024,46.443,46.173,48.173,48.81,48.24,47.584,46.271,47.992,47.364],"script":[13.14,14.12,13.572,13.229,13.136,12.927,13.178,13.241,14.999,14.585,14.417,13.983,14.047,13.968,14.018],"paint":[33.447,33.805,32.703,32.797,33.236,32.679,32.843,32.519,32.746,33.789,33.391,33.193,31.833,33.605,32.915]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"02_replace1k","values":{"total":[70.581,69.625,69.702,71.745,70.975,68.918,68.155,70.128,69.507,69.452,67.901,70.387,68.533,67.628,68.077],"script":[33.452,33.272,32.928,33.146,33.889,32.445,31.418,33.279,32.589,32.576,31.365,33.193,31.91,31.34,31.751],"paint":[36.652,35.876,36.336,38.124,36.62,36.018,36.267,36.381,36.367,36.411,36.071,36.725,36.153,35.824,35.856]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[54.516,54.568,52.543,51.333,53.611,53.936,51.544,52.312,52.103,55.792,55.307,56.667,50.772,54.114,52.926],"script":[38.237,38.275,36.762,35.719,37.763,37.501,35.397,35.723,35.716,39.224,39.192,39.638,35.043,37.935,36.649],"paint":[14.74,14.91,13.728,13.744,14.305,15.134,14.018,15.527,14.215,15.239,14.168,15.689,14.177,13.77,13.137]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"04_select1k","values":{"total":[37.576,36.516,40.204,39.94,38.852,38.448,35.812,36.427,38.334,37.938,38.368,38.83,39.739,36.562,36.22,39.688,38.217,37.883,38.068,38.859,37.748,38.139,39.675,40.595,36.892],"script":[33.986,33.064,36.555,37.205,36.058,35.018,32.675,33.064,35.238,34.659,34.809,35.36,36.205,33.836,33.297,36.219,35.507,34.716,34.819,35.261,34.553,34.476,36.238,36.627,33.404],"paint":[3.39,3.016,2.941,1.978,1.875,2.59,2.232,2.808,2.312,2.071,3.174,2.908,2.798,2.524,2.739,3.275,1.671,1.936,1.675,2.465,1.836,2.148,2.816,2.038,2.431]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"05_swap1k","values":{"total":[56.475,54.136,56.717,55.976,53.922,54.951,54.843,52.302,54.07,53.69,55.244,54.273,53.171,56.405,55.238],"script":[36.618,35.422,37.186,37.302,35.129,35.935,35.725,32.617,34.208,34.425,35.702,35.249,34.278,36.632,35.836],"paint":[17.674,16.615,17.955,16.317,17.732,17.925,17.984,18.399,18.286,17.789,18.081,18.146,17.546,17.923,17.641]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[124.79,123.307,125.272,124.653,125.76,125.995,125.221,124.692,123.229,123.621,125.082,125.13,125.979,126.593,126.712],"script":[54.689,52.241,52.779,53.832,54.003,55.236,54.691,53.736,52.986,51.673,54.354,53.287,55.682,55.414,55.394],"paint":[68.385,70.152,71.289,69.598,70.833,69.655,69.347,69.733,69.252,71.053,69.554,70.309,69.046,69.974,70.063]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"07_create10k","values":{"total":[471.614,474.382,475.991,475.727,478.731,471.266,471.87,471.778,477.49,475.059,471.092,475.076,475.796,477.172,472.4],"script":[136.539,136.478,136.869,137.186,137.147,135.731,132.86,135.92,137.34,136.121,135.564,137.634,137.598,136.677,135.773],"paint":[328.407,331.042,332.255,331.798,334.567,328.93,332.346,329.123,333.405,332.234,328.778,330.504,331.396,333.588,329.885]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.36,67.043,65.565,64.932,66.385,65.864,66.914,65.934,66.01,67.355,67.017,67.186,65.781,65.748,67.326],"script":[25.962,27.04,26.187,25.633,26.368,26.248,26.813,26.275,26.336,26.417,26.677,26.426,25.98,26.163,26.925],"paint":[39.499,39.105,38.511,38.46,39.141,38.733,39.232,38.811,38.806,40.036,39.46,39.93,38.91,38.719,39.479]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.912,11.99,12.362,12.206,12.325,11.925,12.268,12.186,12.639,11.987,11.956,12.523,11.978,12.262,12.64],"script":[10.372,10.076,10.554,10.049,10.437,9.884,10.386,10.344,11.02,10.46,10.217,10.387,10.554,10.351,10.672],"paint":[0.975,1.832,1.011,1.02,1.788,1.959,1.13,1.761,1.5,1.438,1.663,2.049,1.341,1.755,0.988]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.584132194519043]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.791830062866211]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0349607467651367]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9466943740844727]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.814523696899414]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.16796875]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.20703125]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.4]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"01_run1k","values":{"total":[35.67,34.781,35.05,35.709,35.635,34.533,35.184,35.439,35.804,34.921,37.138,34.659,35.241,34.959,35.932],"script":[2.556,2.486,2.433,2.615,2.445,2.543,2.483,2.451,2.529,2.696,2.609,2.576,2.479,2.472,2.676],"paint":[32.731,31.903,32.204,32.688,32.753,31.591,32.279,32.59,32.874,31.819,34.098,31.684,32.355,32.08,32.847]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"02_replace1k","values":{"total":[38.926,39.383,39.164,39.063,39.085,40.247,38.449,38.958,40.061,38.798,38.477,40.234,38.713,38.194,38.238],"script":[4.76,4.947,4.785,4.743,4.917,4.853,4.493,4.868,4.829,4.809,4.761,4.828,4.79,5.058,4.691],"paint":[33.717,34.007,33.956,33.87,33.74,34.938,33.553,33.665,34.651,33.561,33.29,34.968,33.501,32.719,33.109]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.155,15.952,16.13,15.264,16.551,15.654,16.378,15.736,14.974,15.09,15.083,15.846,16.249,15.265,15.572],"script":[0.796,0.308,0.134,0.116,0.916,0.555,0.146,0.137,0.49,0.125,0.766,0.559,0.14,0.515,0.125],"paint":[12.835,14.642,14.525,13.804,13.807,12.826,14.374,13.655,13.512,13.918,12.968,12.968,14.396,13.24,14.531]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"04_select1k","values":{"total":[2.736,2.85,1.889,2.322,7.115,4.899,2.626,3.301,3.15,2.347,2.579,3.624,2.153,2.469,3.978,1.944,5.012,2.734,2.47,3.171,2.343,3.421,2.687,2.546,2.738],"script":[0.425,0.078,0.403,0.08,0.422,0.318,0.19,1.036,0.084,0.383,0.079,0.083,0.322,0.082,0.807,0.077,0.791,0.756,0.283,0.076,0.084,0.077,0.766,0.819,0.657],"paint":[2.208,2.684,1.384,2.145,1.935,2.207,1.706,2.17,1.959,1.862,1.048,1.551,1.728,1.631,1.122,1.104,1.523,1.877,2.079,1.959,2.159,2.227,1.827,1.052,1.58]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"05_swap1k","values":{"total":[19.42,18.691,18.913,18.847,18.328,19,18.585,19.67,18.468,18.944,18.38,18.286,19.293,19.941,18.726],"script":[0.19,0.859,0.683,0.176,0.171,0.17,0.159,0.848,0.156,0.884,0.659,0.492,0.872,0.172,0.799],"paint":[17.535,16.349,16.505,16.438,16.64,17.343,16.889,17.329,16.808,16.759,16.183,16.269,16.111,17.37,16.086]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.719,14.828,14.876,15.287,14.664,15.365,15.192,15.931,14.758,14.707,14.563,14.468,14.736,14.884,15.153],"script":[0.267,0.173,0.085,0.089,0.089,0.235,0.401,0.349,0.089,0.217,0.082,0.183,0.224,0.086,0.392],"paint":[13.716,13.916,14.055,14.423,13.821,14.025,14.431,14.844,13.937,13.69,13.552,13.52,13.566,14.03,14.079]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"07_create10k","values":{"total":[372.039,366.412,367.586,369.581,369.26,367.406,367.475,368.191,367.924,368.807,366.032,370.235,370.334,367.983,368.598],"script":[29.199,27.981,28.107,28.7,29.66,29.719,28.098,28.143,28.779,29.283,28.573,29.201,30.826,27.647,29.254],"paint":[335.917,331.802,332.866,334.252,332.945,331.062,332.753,333.013,332.549,332.934,330.831,334.403,332.955,333.747,332.733]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.15,39.608,40.899,40.1,39.698,39.9,40.201,39.692,39.955,39.848,40.843,39.786,40.845,39.919,41.096],"script":[2.467,2.45,2.469,2.43,2.476,2.372,2.446,2.441,2.434,2.432,2.469,2.534,2.429,2.403,2.51],"paint":[36.829,36.325,37.5,36.841,36.393,36.689,36.862,36.431,36.698,36.46,37.528,36.412,37.565,36.676,37.769]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.496,13.816,12.026,11.468,12.786,12.117,11.828,12.129,12.481,12.243,12.224,12.29,11.747,12.549,11.483],"script":[10.302,11.387,10.106,10.172,10.902,10.457,9.858,9.696,10.958,10.569,10.374,10.085,9.888,10.428,9.576],"paint":[2.089,1.846,1.238,0.86,0.929,1.569,1.878,2.008,1.43,1.594,1.774,1.219,1.766,1.393,1.821]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5085182189941406]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8374452590942383]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8739261627197266]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6622495651245117]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.405378341674805]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.8828125]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.685546875]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"01_run1k","values":{"total":[36.118,36.934,37.727,36.894,36.651,36.153,36.699,37.467,37.996,38.1,37.509,37.448,36.743,37.959,36.795],"script":[3.734,3.774,3.745,3.785,3.715,3.678,3.815,4.266,3.746,4.303,3.686,3.763,3.731,4.269,3.748],"paint":[31.998,32.718,33.582,32.723,32.534,32.048,32.49,32.797,33.861,33.371,33.438,33.288,32.612,33.289,32.655]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"02_replace1k","values":{"total":[41.446,42.633,40.788,40.107,40.747,41.272,41.065,40.63,41.027,41.406,41.438,40.319,41.545,41.985,40.864],"script":[6.359,6.153,6.163,6.004,6.285,6.373,6.222,6.121,6.252,6.094,6.415,6.131,6.34,6.338,6.305],"paint":[34.656,36.031,34.208,33.697,34.055,34.482,34.423,34.055,34.331,34.879,34.604,33.767,34.763,35.156,34.128]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.732,15.866,16.397,15.85,16.098,16.333,15.856,16.27,15.607,15.874,15.635,16.521,16.317,15.548,15.889],"script":[0.977,0.894,0.872,0.727,0.202,0.936,1.101,0.804,1.131,0.8,0.805,1.368,1.283,0.17,0.656],"paint":[15.016,13.961,14.555,13.689,15.161,14.309,12.912,14.439,13.286,14.06,13.001,13.592,13.724,13.826,14.551]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"04_select1k","values":{"total":[2.056,3.07,4.274,2.564,3.121,2.516,2.211,2.192,3.316,2.083,6.611,3.259,2.973,2.782,4.107,2.352,2.475,2.486,3.052,1.937,2.983,2.847,2.387,5.51,5.274],"script":[0.066,0.072,0.68,0.072,0.916,0.07,0.346,0.079,0.954,0.277,0.07,1.008,0.871,0.073,0.07,0.071,0.07,0.068,0.066,0.39,0.072,0.069,0.07,0.165,0.075],"paint":[1.895,2.891,1.271,2.391,1.518,1.664,1.369,1.437,1.81,1.341,1.656,2.163,2.01,1.929,1.635,2.168,2.309,1.86,1.966,1.455,2.814,2.124,1.124,1.673,2.248]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"05_swap1k","values":{"total":[18.136,18.164,18.394,19.19,17.952,18.854,18.444,17.374,18.325,18.604,18.816,18.461,18.461,19.404,18.137],"script":[0.13,0.476,0.556,0.84,0.589,0.799,0.511,0.124,0.14,0.911,0.65,0.134,0.491,0.146,0.754],"paint":[17.001,15.627,16.241,16.82,14.648,16.909,16.75,15.964,17.035,16.435,16.464,17.094,16.576,16.486,15.672]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.796,14.888,15.237,15.066,14.735,14.781,14.702,14.954,14.901,15.408,15.644,14.762,14.824,14.818,14.95],"script":[0.123,0.268,0.125,0.442,0.13,0.128,0.125,0.242,0.253,0.441,0.343,0.128,0.125,0.277,0.123],"paint":[13.951,13.744,14.393,13.947,13.908,13.936,13.36,13.915,13.928,14.109,14.138,13.892,13.916,13.84,13.763]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"07_create10k","values":{"total":[371.181,372.486,378.193,372.077,369.998,373.661,375.218,371.542,372.412,377.629,373.702,374.663,369.794,373.219,377.291],"script":[42.435,42.848,42.074,43.905,43.521,43.434,44.055,43.789,43.473,45.089,43.538,44.923,44.074,43.385,43.599],"paint":[321.922,323.086,329.43,321.592,319.932,323.677,324.556,321.028,322.166,326.061,323.613,323.204,319.214,323.292,327.142]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.432,44.608,45.38,41.795,44.532,44.676,44.715,44.457,44.514,42.832,41.405,43.348,44.562,44.145,42.854],"script":[4.43,4.214,4.284,4.185,4.372,4.394,4.323,4.324,4.367,4.453,4.316,4.488,4.314,4.24,4.402],"paint":[39.107,39.528,40.007,36.765,39.315,39.429,39.549,39.29,39.304,37.553,36.259,38.002,39.409,39.08,37.618]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.338,12.451,12.102,11.937,12.172,12.521,12.567,11.631,12.194,12.15,12.685,12.036,11.857,12.762,12.4],"script":[10.737,10.172,10.629,10.525,10.623,10.903,10.361,10.512,10.45,9.966,11.076,10.02,10.413,10.447,10.813],"paint":[0.374,1.798,1.381,1.319,1.467,1.538,2.113,1.03,1.663,2.098,1.523,1.931,1.352,2.232,1.507]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5209808349609375]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2961721420288086]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.429020881652832]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8481531143188477]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.78713607788086]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8486328125]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.53125]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.6]}},{"framework":"million-v2.3.3-keyed","benchmark":"01_run1k","values":{"total":[35.247,35.739,35.392,35.315,36.188,37.364,34.841,35.629,35.043,35.719,36.45,35.542,35.426,35.008,35.374],"script":[2.668,2.685,2.657,3.079,2.968,3.046,2.669,3.071,2.629,2.634,3.009,2.726,2.691,2.649,2.706],"paint":[32.175,32.651,32.323,31.823,32.795,33.887,31.782,32.14,32.003,32.685,32.951,32.379,32.31,31.955,32.266]}},{"framework":"million-v2.3.3-keyed","benchmark":"02_replace1k","values":{"total":[39.71,38.355,38.369,38.5,38.304,38.585,38.386,40.835,38.649,38.677,38.388,40.732,38.478,38.305,40.151],"script":[4.932,4.728,4.74,4.726,4.7,4.745,4.732,4.727,4.744,4.707,4.7,4.79,4.74,4.76,5.04],"paint":[34.322,33.194,33.189,33.358,33.188,33.42,33.212,35.652,33.486,33.519,33.257,35.53,33.321,33.077,34.677]}},{"framework":"million-v2.3.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.227,15.49,16.928,17.153,17.436,16.158,16.158,15.959,16.255,16.833,16.995,15.915,16.465,16.051,16.341],"script":[1.227,0.937,0.943,1.547,2.102,1.039,1.487,0.952,1.469,1.739,1.832,1.022,1.709,0.973,0.994],"paint":[13.858,13.286,14.053,14.471,13.975,13.97,13.601,14.037,13.011,13.897,14.189,13.621,12.699,13.493,14.365]}},{"framework":"million-v2.3.3-keyed","benchmark":"04_select1k","values":{"total":[3.544,2.852,3.565,3.147,2.771,3.079,3.252,3.092,3.401,3.845,3.501,3.24,5.545,3.619,6.476,3.102,3.251,3.313,4.258,4.145,3.467,4.701,3.125,2.863,2.83],"script":[0.779,0.184,1.115,0.674,0.53,0.844,0.954,0.963,0.621,1.004,1.3,0.9,0.865,1.44,1.032,1.466,0.667,0.924,0.846,0.895,0.64,0.574,1.038,1.193,1.328],"paint":[2.665,1.835,1.208,2.375,1.274,2.113,1.563,2.027,2.682,1.393,1.504,1.633,1.566,1.529,1.82,1.135,2.481,2.279,2.363,1.564,2.487,2.114,1.71,1.576,1.4]}},{"framework":"million-v2.3.3-keyed","benchmark":"05_swap1k","values":{"total":[19.321,18.647,18.848,18.705,19.219,18.814,18.7,18.752,18.599,18.845,21.353,18.784,18.259,18.784,18.643],"script":[1.059,0.581,1.469,1.11,0.941,1.019,0.947,1.228,1.197,1.558,1.099,1.018,1.006,0.931,1.163],"paint":[16.863,16.706,15.877,16.383,16.809,16.342,15.566,15.961,15.523,16.087,18.658,16.749,15.993,16.384,16.041]}},{"framework":"million-v2.3.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.757,14.722,14.768,14.682,14.322,14.543,14.682,14.56,14.826,14.757,14.738,15.429,15.195,14.812,14.551],"script":[0.092,0.096,0.246,0.083,0.087,0.085,0.088,0.308,0.094,0.093,0.255,0.092,0.091,0.196,0.097],"paint":[13.866,14.247,13.792,13.916,13.503,13.759,13.876,13.297,14.064,13.764,13.669,14.532,13.897,13.853,13.723]}},{"framework":"million-v2.3.3-keyed","benchmark":"07_create10k","values":{"total":[371.995,372.1,372.603,374.705,370.985,371.725,375.615,374.355,373.375,376.547,368.815,369.424,371.809,374.999,373.424],"script":[32.487,32.932,33.461,34.632,33.507,33.75,34.057,34.036,32.703,33.133,32.938,32.539,32.407,32.65,33.036],"paint":[332.822,332.554,332.54,333.478,330.81,331.368,334.928,333.626,334.064,336.811,329.172,330.02,332.682,335.688,333.618]}},{"framework":"million-v2.3.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.74,41.863,41.594,40.185,39.911,40.352,48.817,41.818,40.226,41.574,40.458,41.425,40.144,41.671,41.321],"script":[3.096,3.109,3.155,3.052,3.061,3.048,3.141,3.069,3.041,3.118,3.067,3.256,3.046,3.221,3.052],"paint":[37.752,37.779,37.592,36.292,36.021,36.483,44.607,37.897,36.358,37.635,36.561,37.349,36.244,37.592,37.413]}},{"framework":"million-v2.3.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.198,11.205,11.95,11.935,12.216,11.676,11.353,11.897,11.594,12.004,11.27,12.111,11.695,12.021,11.223],"script":[9.752,9.737,10.03,9.478,11.118,10.24,9.301,10.174,9.424,10.146,10.025,10.472,9.976,9.963,10.084],"paint":[1.367,1.382,1.029,1.577,0.377,1.355,1.969,1.253,2.077,1.775,1.173,1.555,1.003,1.974,1.044]}},{"framework":"million-v2.3.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46856021881103516]}},{"framework":"million-v2.3.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0948219299316406]}},{"framework":"million-v2.3.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1259965896606445]}},{"framework":"million-v2.3.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7822771072387695]}},{"framework":"million-v2.3.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.446820259094238]}},{"framework":"million-v2.3.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.466796875]}},{"framework":"million-v2.3.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.517578125]}},{"framework":"million-v2.3.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.5]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"01_run1k","values":{"total":[47.396,46.52,47.375,48.386,46.839,47.365,46.671,48.447,48.549,47.563,47.796,48.754,49.303,47.293,47.877],"script":[13.322,13.176,13.863,13.638,12.893,13.302,13.407,13.311,14.799,14.452,13.424,14.407,14.536,13.673,13.71],"paint":[33.64,32.927,33.099,34.345,33.53,33.661,32.847,34.715,33.314,32.709,33.952,33.937,34.357,33.206,33.755]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"02_replace1k","values":{"total":[50.146,49.82,49.911,49.883,49.894,49.467,49.744,49.769,48.274,49.495,50.968,49.885,50.257,50.391,51.206],"script":[14.557,14.273,14.08,14.357,14.333,13.853,14.234,14.251,13.77,13.706,14.172,14.228,14.296,14.165,15.19],"paint":[35.16,35.123,35.37,35.1,35.16,35.178,35.072,35.068,34.09,35.357,36.329,35.216,35.519,35.804,35.573]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.988,15.075,15.314,16.276,15.878,15.899,16.538,15.807,15.937,15.673,15.733,15.88,15.818,15.506,16.6],"script":[1,0.577,0.95,1.252,0.891,0.937,1.158,0.606,1.045,0.882,0.881,0.611,1.028,0.921,1.218],"paint":[13.116,12.989,12.829,13.265,13.374,13.254,13.564,13.86,13.549,13.078,13.873,13.549,12.942,12.89,14.128]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"04_select1k","values":{"total":[2.897,2.548,3.522,2.629,3.192,3.208,3.868,2.95,2.768,3.078,2.448,3.429,2.836,3.148,2.592,3.377,2.586,2.837,2.978,2.759,3.553,2.573,2.91,2.853,2.831],"script":[0.131,0.541,1.061,1.066,0.129,0.131,0.993,0.977,0.814,1.102,0.547,1.094,0.136,1.013,0.135,0.965,1.059,0.852,0.122,0.586,0.132,0.676,0.981,0.498,0.841],"paint":[1.92,1.89,1.428,1.47,2.965,1.699,1.433,1.875,1.853,1.871,1.796,2.22,2.598,1.648,2.354,1.528,1.432,1.886,1.919,2.071,2.743,1.786,1.83,2.242,1.892]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"05_swap1k","values":{"total":[18.56,18.766,18.218,18.128,18.317,18.083,18.613,18.453,18.434,18.551,17.775,19.4,18.66,18.393,18.362],"script":[0.177,0.169,0.691,0.608,0.295,0.31,0.664,0.934,0.652,0.656,0.158,0.699,0.323,0.85,0.167],"paint":[17.246,15.869,16.208,16.691,16.354,16.583,15.948,15.942,16.152,16.136,16.103,17.555,17.276,16.461,16.027]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.369,14.761,15.317,15.179,14.892,14.986,14.873,15.165,16.091,14.825,15.199,15.762,15.451,15.624,14.766],"script":[0.491,0.437,0.412,0.175,0.167,0.348,0.176,0.467,0.509,0.414,0.172,0.507,0.375,0.343,0.311],"paint":[13.872,13.274,14.138,14.257,13.738,13.91,13.682,13.37,14.313,13.704,14.291,14.364,14.376,14.541,13.491]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"07_create10k","values":{"total":[461.65,470.811,459.528,456.729,464.181,461.631,470.9,461.449,461.824,460.591,455.476,457.901,457.18,472.519,457.465],"script":[121.602,122.196,120.94,119.709,122.08,119.963,121.076,119.846,121.348,120.798,119.409,120.179,118.309,119.201,118.396],"paint":[333.059,341.699,331.922,330.056,335.314,334.935,343.043,334.889,333.294,332.99,329.333,331.216,332.105,346.464,332.374]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.905,53.554,51.112,51.162,50.23,51.766,50.212,51.452,51.29,53.201,50.681,50.997,51.412,51.211,50.896],"script":[11.601,12.746,11.412,11.406,11.058,11.708,11.63,11.819,11.589,12.739,11.387,11.665,11.514,11.525,11.666],"paint":[38.417,39.899,38.795,38.864,38.278,39.128,37.675,38.727,38.826,39.549,38.415,38.422,39.008,38.79,38.366]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.983,12.971,13.254,13.126,13.532,13.254,13.156,13.222,13.202,13.191,13.706,14.002,12.924,13.012,13.568],"script":[11.525,11.554,10.821,10.929,11.343,11.58,11.813,11.48,11.716,11.32,11.342,12.058,11.622,11.535,11.285],"paint":[0.373,0.411,2.336,2.099,1.861,1.585,1.261,1.065,1.389,1.69,1.818,1.419,1.209,1.389,2.186]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6542510986328125]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.931391716003418]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9631032943725586]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0493955612182617]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.372708320617676]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[51.07421875]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.107421875]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[60.727,60.496,60.732,58.257,58.723,60.996,59.611,60.586,59.803,59.199,60.265,58.79,60.11,58.644,60.041],"script":[25.861,27.164,26.194,25.161,25.711,26.751,26.116,26.374,25.825,25.476,26.565,24.83,25.862,24.893,26.535],"paint":[34.669,33.152,34.353,32.916,32.833,34.059,33.326,34.03,33.807,33.551,33.507,33.781,34.072,33.568,33.332]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[76.678,77.029,77.154,76.673,76.613,76.742,75.7,75.522,77.831,77.272,78.161,77.715,77.431,78.052,76.759],"script":[41.627,42.357,41.464,42.178,41.263,41.471,40.68,40.931,42.95,42.371,42.443,42.027,41.825,42.455,41.548],"paint":[34.856,34.492,35.376,34.321,35.164,35.093,34.841,34.419,34.7,34.732,35.532,35.517,35.433,35.43,35.028]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[63.858,63.193,61.614,61.177,65.872,66.522,63.802,60.953,61.668,65.894,63.518,60.137,59.972,62.174,63.036],"script":[48.085,45.077,47.099,45.876,49.504,49.028,45.874,45.161,46.954,48.431,45.994,45.496,45.172,44.993,45.156],"paint":[15.629,15.893,13.979,14.857,14.827,15.553,17.117,14.505,13.682,16.662,15.905,13.625,14.021,14.459,16.312]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[43.453,47.531,47.738,46.274,45.996,45.063,46.707,48.365,47.119,46.76,42.49,47.122,45.237,42.925,50.622,46.048,47.375,47.017,42.525,48.298,43.84,46.438,50.683,46.913,46.983],"script":[38.293,41.547,42.026,41.507,39.891,39.087,40.837,41.836,41.232,39.139,38.083,40.937,39.688,38.095,44.551,38.428,40.659,40.344,38.801,41.004,39.805,40.177,43.614,40.972,40.097],"paint":[2.817,4.707,3.916,4.183,3.577,4.005,4.596,4.198,4.427,4.864,2.681,3.815,3.476,3.345,4.324,3.834,4.235,3.76,2.752,3.716,3.369,3.246,4.327,5.486,4.09]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[55.703,56.203,58.285,60.525,62.657,56.819,57.005,55.397,55.575,57.459,58.663,56.758,57.637,55.362,57.447],"script":[37.536,38.086,39.896,41.776,42.801,36.938,39.111,36.68,37.538,38.875,39.885,38.291,38.927,37.599,38.297],"paint":[18.011,17.311,18.225,18.604,17.984,18.815,17.741,17.61,17.893,17.235,18.359,17.706,17.037,16.786,18.124]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[41.365,38.067,44.201,39.451,39.288,38.412,39.087,40.286,46.707,44.251,45.728,42.717,40.168,46.591,44.524],"script":[20.635,19.545,21.308,19.326,20.271,19.405,19.343,20.167,19.527,20.588,19.954,18.646,19.844,19.876,19.951],"paint":[15.44,15.257,16.887,15.347,16.301,14.993,15.427,15.654,15.499,17.061,15.491,15.406,15.799,15.961,17.511]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[589.277,590.097,595.569,588.995,577.96,580.51,588.502,586.132,577.708,584.089,588.103,598.691,590.694,593.457,588.102],"script":[242.427,245.91,239.217,244.431,235.097,240.376,242.532,240.893,237.269,238.796,243.144,242.237,241.804,240.768,243.141],"paint":[344.688,342.08,354.264,342.441,340.681,338.041,343.836,343.038,338.304,343.176,342.833,354.369,346.755,350.531,342.831]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.816,76.168,75.694,76.258,76.257,77.192,76.783,75.535,77.598,76.928,76.285,76.945,75.447,76.976,74.564],"script":[34.534,35.457,34.883,36.175,35.134,37.348,35.459,35.292,36.755,35.947,35.418,36.214,35.191,35.491,34.344],"paint":[40.989,39.919,40.524,39.789,40.472,39.545,41.033,39.943,40.557,40.388,40.315,40.435,39.778,41.173,39.926]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.346,57.186,56.6,31.28,34.436,55.475,58.177,30.185,34.836,30.811,57.602,30.158,33.936,35.907,29.183],"script":[29.468,29.299,27.887,29.292,29.85,27.664,28.557,28.618,32.987,28.448,30.388,28.996,28.073,30.94,27.478],"paint":[1.455,3.507,2.836,1.879,3.128,3.269,3.258,1.466,1.369,1.625,2.732,1.08,2.355,3.565,1.628]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.749173164367676]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.448274612426758]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.792001724243164]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.573907852172852]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.43765068054199]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8408203125]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6025390625]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[661.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[40.356,40.762,40.366,40.593,41.136,40.595,40.749,40.999,41.75,40.955,40.107,41.85,40.625,42.04,40.762],"script":[7.622,8.144,7.413,7.709,7.701,7.426,7.639,7.525,8.178,7.842,7.41,8.191,7.658,8.469,7.981],"paint":[32.339,32.221,32.545,32.467,32.831,32.765,32.696,33.086,33.164,32.7,32.284,33.227,32.529,33.167,32.374]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[50.359,48.134,48.348,48.64,48.713,48.473,48.999,49.036,48.15,49.666,47.907,48.361,47.758,48.847,48.865],"script":[15.179,14.34,14.209,14.639,14.608,14.502,14.203,14.324,14.162,14.881,14.217,14.44,14.2,14.84,15.163],"paint":[34.753,33.367,33.723,33.582,33.683,33.556,34.37,34.247,33.564,34.349,33.266,33.448,33.143,33.604,33.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.602,31.979,31.318,30.696,29.653,31.971,30.409,30.735,31.75,29.743,30.404,31.497,29.142,29.633,31.192],"script":[11.404,10.079,10.407,10.196,9.75,10.228,10.633,10.889,10.471,10.258,10.059,10.781,10.13,9.579,10.535],"paint":[18.896,20.014,19.182,18.628,18.244,19.539,18.096,18.742,19.361,17.447,18.674,19.002,17.695,18.884,19.351]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[13.354,13.593,13.945,14.225,14.101,13.768,13.998,13.059,14.064,13.475,13.91,13.985,14.199,13.314,13.812,13.537,14.214,13.792,13.5,14.199,13.256,14.216,13.331,13.537,13.543],"script":[6.691,7.235,7.206,7.653,7.7,7.465,7.481,7.154,7.166,7.887,7.331,7.206,7.742,6.855,7.437,7.192,7.964,7.542,7.595,7.625,6.926,8.055,6.721,7.066,7.613],"paint":[5.43,6.22,6.561,6.426,5.53,5.812,5.613,5.273,5.904,5.433,5.927,6.198,6.136,6.295,5.301,6.178,6.1,5.955,5.256,5.379,5.235,4.829,5.39,6.302,5.769]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[26.59,27.26,25.492,25.857,25.496,25.397,26.999,26.145,25.711,28.81,25.23,25.287,26.376,31.134,25.107],"script":[7.78,7.066,7.376,7.447,6.77,6.778,7.277,7.391,7.348,7.457,6.585,6.824,6.838,7.136,6.771],"paint":[17.311,17.655,16.157,16.616,16.09,16.975,18.445,17.03,16.48,19.301,17.215,16.822,17.975,20.777,16.744]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.205,20.213,20.705,19.984,19.613,19.485,19.024,20.279,21.021,19.535,19.261,19.327,19.421,21.341,19.239],"script":[3.87,4.319,4.372,4.291,4.053,4.252,4.14,4.277,4.909,4.265,4.156,3.991,4.095,5.038,3.921],"paint":[13.889,15.101,15.575,14.901,14.667,14.304,14.14,14.47,15.021,14.53,14.362,14.444,14.401,15.247,14.571]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[423.978,419.91,424.656,422.502,421.267,422.318,426.637,425.252,424.03,420.921,422.956,423.784,421.014,422.288,427.104],"script":[86.951,80.231,91.282,81.255,81.299,81.052,91.577,82.266,82.279,82.552,81.092,81.919,81.125,80.415,93.892],"paint":[330.484,333.177,326.824,334.686,333.641,334.828,328.525,336.14,334.862,331.773,335.311,334.506,333.406,335.281,326.679]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.916,51.148,49.369,50.618,49.664,50.163,50.447,51.287,50.904,51.248,52.611,50.411,50.864,51.084,51.008],"script":[11.15,11.291,11.029,11.436,10.991,11.253,11.019,11.546,11.405,11.561,11.525,11.26,11.257,11.497,11.239],"paint":[38.866,38.979,37.48,38.307,37.806,38.025,38.552,38.861,38.64,38.836,40.18,38.258,38.756,38.738,38.909]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.525,19.032,18.711,18.332,18.089,18.612,19.737,19.067,17.694,19.222,17.672,18.483,18.941,18.486,19.29],"script":[16.844,16.863,17.569,16.782,16.198,17.249,17.751,17.391,15.547,17.324,15.33,17.522,16.753,16.997,17.362],"paint":[1.583,1.717,1.055,0.331,1.795,1.282,1.902,1.587,1.15,1.059,2.143,0.339,2.098,1.396,1.841]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4845848083496094]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2996416091918945]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3216657638549805]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7298898696899414]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.54134178161621]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.736328125]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.32421875]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[47.634,42.793,45.824,47.971,42.647,48.969,42.282,41.431,51.063,46.072,46.854,48.095,49.33,43.545,49.489],"script":[9.17,8.409,8.602,8.57,9.247,8.58,9.031,8.464,9.065,9.236,8.566,8.348,8.356,8.539,8.576],"paint":[34.788,34.253,32.58,32.436,33.264,32.936,33.117,32.734,34.363,33.875,32.432,32.452,32.658,32.302,32.756]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[50.988,54.014,54.043,49.114,52.177,53.897,46.431,52.378,52.205,51.091,52.617,53.378,48.334,52.338,55.097],"script":[12.027,12.013,12.062,11.945,11.954,12.238,11.819,12.353,11.786,11.843,12.248,12.151,11.641,11.675,12.093],"paint":[34.199,34.61,34.769,34.612,34.297,35.076,34.472,34.974,34.094,34.73,33.836,36.306,34.687,36.524,35.591]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.675,43.446,26.941,42.516000000000005,43.613,43.268,42.719,43.983000000000004,28.69,29.229,44.485,43.984,28.535,42.56,43.03999999999999],"script":[12.134,12.87,10.265,12.213,13.282,12.182,12.045,12.661,11.977,12.12,13.732,13.415,12.435,12.558,12.84],"paint":[14.437,14.537,15.428,14.259,13.969,15.017,13.891,16.011,15.337,15.663,14.778,13.341,15.055,13.96,14.159]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[15.891,13.581,13.979,14.656,14.528,16.255,17.546,13.023,13.025,14.043,12.692,16.567,15.036,15.826,16.072,14.808,13.113,13.682,13.786,12.907,13.21,13.861,12.959,16.417,12.888],"script":[10.052,10.448,11.177,10.488,9.998,10.915,11.118,10.977,9.818,10.752,9.651,10.435,11.385,10.346,10.973,11.852,10.503,10.569,11.215,9.449,10.176,9.825,9.809,11.45,10.089],"paint":[2.409,2.47,2.656,2.356,2.583,2.339,2.922,1.193,3.052,2.722,2.271,1.797,3.464,2.981,1.469,2.07,1.583,2.974,2.42,2.641,2.286,2.265,2.628,3.436,2.657]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[45.558,44.036,42.81699999999999,29.004,29.118,29.809,30.74,44.342,29.882,45.339,31.113,27.334,27.824,28.669,44.434],"script":[10.905,10.709,10.015,11.134,12.427,10.439,11.548,11.335,11.74,11.709,11.175,9.096,9.87,10.384,10.812],"paint":[18.245,17.278,17.314,17.763,16.574,17.852,18.311,16.962,18.027,17.584,17.722,17.05,17.134,17.122,17.583]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.233,21.681,26.031,19.07,21.642,23.232,25.366,19.805,19.036,26.455,20.33,24.023,24.503,24.845,19.044],"script":[5.796,5.516,5.482,5.663,5.697,5.499,5.66,6.098,5.218,5.749,5.901,5.784,5.595,5.157,5.637],"paint":[12.886,12.936,13.278,13.279,12.993,13.297,12.99,13.57,13.235,13.017,13.173,13.754,13.961,12.912,13.277]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[432.078,435.419,452.887,439.009,435.599,432.803,432.592,429.483,435.698,430.839,436.861,437.713,436.278,431.583,431.954],"script":[100.779,103.427,102.123,101.944,100.451,101.361,100.521,100.936,103.083,101.381,101.273,103.204,101.014,101.214,100.73],"paint":[327.329,329.709,344.253,329.164,327.159,329.433,326.012,326.378,325.945,326.208,327.574,330.496,328.94,326.7,323.637]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.035,56.442,56.897,59.482,55.894,56.624,56.518,56.307,56.575,59.263,56.638,55.774,56.557,59.893,62.223],"script":[12.013,12.186,12.404,12.134,11.988,12.531,11.844,11.751,12.081,12.149,11.897,12.341,12.058,12.406,12.439],"paint":[38.209,37.755,37.9,37.825,37.901,37.614,38.157,37.763,37.591,37.645,38.208,37.488,37.988,38.27,38.263]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.747,16.083,16.167,17.676,31.147000000000002,15.715,32.686,16.462,32.021,16.908,32.338,18.603,16.441,32.605999999999995,14.417],"script":[14.969,14.403,14.605,15.404,13.463,14.73,14.921,14.197,15.03,14.489,14.782,14.103,14.238,15.308,13.002],"paint":[0.724,1.626,1.506,1.148,1.701,0.932,1.229,2.206,1.751,1.447,1.564,1.836,1.521,0.836,1.029]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5743188858032227]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.0134172439575195]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.446412086486816]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9963178634643555]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.59645462036133]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37.951171875]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7041015625]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.9]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[41.781,40.526,40.669,40.635,40.956,40.936,40.73,40.652,39.911,41.695,41.421,40.347,40.658,41.447,41.034],"script":[7.947,7.795,8.071,7.835,8.09,7.805,7.984,7.973,7.718,8.078,7.972,7.694,7.923,8.379,7.955],"paint":[33.413,32.323,32.175,32.383,32.455,32.695,32.333,32.272,31.78,33.207,33.001,32.245,32.312,32.643,32.648]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[44.977,45.078,44.613,45.252,44.253,44.975,44.205,44.248,44.025,44.212,44.231,45.449,44.665,44.125,44.603],"script":[10.169,10.378,9.99,10.636,9.866,10.061,9.911,9.692,9.656,9.677,9.807,10.647,9.848,9.703,9.899],"paint":[34.341,34.256,34.206,34.18,33.944,34.474,33.86,34.126,33.936,34.125,34.007,34.383,34.38,33.998,34.277]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.332,17.344,17.372,17.651,17.442,16.712,16.929,17.457,16.979,16.856,17.433,17.755,18.157,17.199,17.067],"script":[2.271,2.193,2.704,2.433,1.841,1.687,1.732,1.899,2.127,2.145,2.387,1.985,2.579,1.588,2.394],"paint":[13.793,13.241,13.364,14.213,13.784,13.18,13.311,13.719,13.624,13.97,13.821,14.165,14.449,14.862,13.398]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[3.399,2.809,3.476,2.995,3.472,3.294,3.455,3.014,3.784,2.947,4.931,3.264,3.633,2.95,3.145,3.029,3.071,3.179,2.37,2.925,3.447,3.467,3.447,5.336,3.067],"script":[0.885,0.917,0.926,0.625,1.136,0.933,1.121,0.546,1.135,0.898,1.274,0.574,0.892,0.317,0.92,0.925,0.936,0.928,0.669,0.187,1.114,0.902,0.729,0.63,0.193],"paint":[2.416,1.381,2.275,1.379,2.24,0.904,1.318,1.565,1.35,1.259,1.623,2.583,2.622,2.358,1.426,1.359,1.464,1.599,1.16,2.245,2.236,2.467,1.566,1.778,2.771]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[19.674,20.095,19.752,19.587,20.293,19.548,20.23,20.044,19.684,19.252,20.746,18.988,19.664,19.282,19.55],"script":[1.846,2.084,2.441,1.437,2.162,1.822,2.549,1.967,2.259,1.832,2.015,2.107,2.112,1.632,1.937],"paint":[16.489,17.209,16.268,17.219,15.991,16.356,16.982,15.984,16.398,16.028,16.977,15.378,16.294,16.683,16.286]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.642,16.293,15.969,15.334,15.439,15.883,16.568,15.477,15.709,15.37,15.876,15.704,15.345,15.964,15.962],"script":[0.901,0.776,0.761,0.761,0.751,0.973,0.951,0.728,0.727,0.749,0.719,0.948,0.758,0.946,0.952],"paint":[13.801,14.284,14.258,13.885,13.945,14.482,14.841,14.076,14.207,13.911,14.419,13.926,13.883,14.163,14.101]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[429.274,422.082,420.231,420.667,424.566,425.84,416.727,425.105,421.407,421.376,419.273,424.472,422.037,424.011,424.615],"script":[84.903,86.23,84.974,86.618,89.437,88.889,86.244,88.764,86.049,84.259,85.824,89.865,87.42,85.846,85.466],"paint":[337.66,329.161,327.951,327.372,328.272,330.287,323.779,329.707,328.685,330.313,326.796,327.618,327.929,331.424,331.422]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.341,44.593,45.721,44.748,46.425,44.113,44.356,44.593,44.741,44.427,44.065,46.167,44.931,45.363,46.201],"script":[6.503,6.55,6.829,6.349,6.517,6.341,6.38,6.459,6.5,6.311,6.403,6.587,6.611,6.78,6.733],"paint":[38.958,37.185,38.045,37.532,39.032,36.925,37.114,37.274,37.387,37.25,36.767,38.702,37.463,37.732,38.583]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.052,14.193,13.658,14.623,13.791,14.641,14.515,14.231,15.269,14.549,14.443,13.628,14.608,14.391,14.272],"script":[11.855,12.193,12.261,12.525,12.36,12.559,12.407,12.698,13.355,12.378,12.218,12.327,12.501,12.653,12.29],"paint":[1.833,1.913,1.012,2.006,1.334,1.18,2.007,1.209,0.935,1.061,1.595,0.862,2.014,1.236,0.992]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.859283447265625]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.890012741088867]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9146556854248047]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2735843658447266]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.740550994873047]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.2529296875]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.5126953125]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[101.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[39.757,39.711,40.704,38.908,38.719,37.903,40.648,38.572,41.552,38.377,40.011,39.619,39.907,40.462,40.198],"script":[6.752,6.711,6.918,6.501,6.59,6.279,7.017,6.417,7.028,6.634,6.818,6.732,6.761,6.784,6.813],"paint":[32.578,32.562,33.352,31.956,31.698,31.229,33.176,31.765,34.044,31.317,32.746,32.48,32.705,33.241,32.969]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[44.82,45.92,44.843,45.375,45.015,44.995,44.998,46.028,46.783,45.068,45.851,44.794,44.449,44.936,44.688],"script":[9.858,10.243,9.995,9.915,9.916,9.82,9.854,10.092,10.804,9.7,9.814,9.879,9.746,9.846,9.878],"paint":[34.503,35.16,34.404,35.002,34.636,34.733,34.706,35.401,35.527,34.948,35.596,34.448,34.272,34.571,34.352]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.365,16.526,16.316,17.132,17.117,16.414,16.818,16.795,16.69,16.485,16.775,16.928,17.094,16.663,16.862],"script":[1.693,1.166,1.434,1.736,1.244,1.302,1.767,0.956,1.471,1.704,1.739,1.408,1.549,1.286,1.165],"paint":[14.531,13.639,13.542,14.68,15.217,13.482,13.591,13.665,14.217,13.243,13.523,14.81,14.155,14.114,14.65]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[3.489,3.28,3.895,3.045,3.404,4.274,3.72,2.739,2.973,2.831,3.395,2.924,2.698,3.397,3.182,3.698,2.973,3.705,2.619,3.521,3.833,3.202,3.447,4.396,3.031],"script":[1.267,0.986,0.859,0.204,1.072,1.12,1.026,0.903,0.909,0.881,1.14,0.909,0.188,0.962,0.748,1.143,1.002,1.175,0.729,1.01,1.314,1.022,1.174,0.938,1.089],"paint":[1.217,1.654,2.522,1.708,2.226,1.986,1.384,1.101,1.942,0.998,2.149,1.245,1.967,2.318,2.319,1.489,1.274,2.425,1.776,2.399,1.885,1.714,2.165,2.045,1.83]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[20.321,19.614,19.865,21.536,19.272,21.63,19.754,19.848,19.068,19.646,21.014,19.216,19.884,20.889,19.55],"script":[1.796,1.203,1.542,2.094,1.584,2.073,1.526,1.699,1.413,1.74,2.179,1.285,1.321,2.07,1.488],"paint":[17.073,17.696,16.852,17.87,16.506,18.213,16.832,16.563,16.518,16.616,16.963,16.921,17.567,17.334,16.724]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.454,15.989,15.977,15.4,15.396,15.504,15.474,15.784,15.565,15.438,15.732,15.509,15.909,15.506,15.525],"script":[0.649,0.663,0.663,0.665,0.637,0.651,0.665,0.63,0.743,0.648,0.654,0.64,0.696,0.677,0.683],"paint":[14.086,14.544,14.56,13.737,13.745,13.69,14.079,14.439,13.928,14.065,14.291,13.516,14.463,13.758,14.077]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[629.517,632.227,627.527,626.01,635.503,628.09,635.251,634.821,625.692,624.382,631.961,630.308,634.001,626.205,635.905],"script":[270.279,274.632,267.984,269.686,273.419,269.467,276.058,273.57,269.88,267.729,271.987,271.074,273.879,267.905,278.842],"paint":[352.39,350.844,352.79,349.734,355.392,351.854,352.517,354.634,349.066,350.002,352.569,352.56,353.422,351.424,350.252]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[76.132,76.444,76.303,76.152,75.927,76.369,75.188,76.161,75.685,76.405,76.661,77.001,76.258,76.668,75.814],"script":[35.825,35.972,34.574,35.467,35.232,35.625,34.845,35.059,35.326,35.242,35.98,36.328,35.781,36.01,35.332],"paint":[39.404,39.548,40.73,39.78,39.785,39.835,39.458,40.21,39.456,40.232,39.755,39.76,39.569,39.724,39.584]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.676,18.254,18.286,20.208,19.72,18.805,18.268,18.534,19.002,17.961,18.304,19.843,19.728,18.443,18.309],"script":[17.444,16.4,16.298,18.351,17.319,17.335,16.449,16.576,17.249,16.767,16.52,18.284,17.767,16.606,16.45],"paint":[2.091,1.044,1.9,1.217,0.805,1.38,0.936,0.821,1.468,1.103,1.173,1.461,1.055,1.737,1.037]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.71176815032959]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.673126220703125]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.806138038635254]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.340605735778809]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.76816654205322]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2216796875]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.2548828125]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[388.4]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[41.101,41.141,42.142,41.837,42.352,40.339,42.669,40.93,40.205,41.725,42.536,40.469,42.982,43.87,42.144],"script":[8.107,8.134,9.045,8.467,9.01,8.011,8.346,8.129,8.211,9.018,9.027,8.113,9.366,8.028,8.243],"paint":[32.836,32.859,32.92,33.107,33.174,32.186,33.118,32.663,31.818,32.547,33.329,32.185,33.389,35.071,33.113]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[48.72,48.198,48.053,50.956,48.738,49.906,50.178,50.907,50.802,50.374,50.842,50.383,50.043,50.219,49.452],"script":[23.083,22.758,22.617,24.08,22.801,23.667,23.225,24.209,23.661,23.964,24.177,24.015,23.469,24.171,22.715],"paint":[34.246,34.001,33.946,35.728,34.515,34.918,35.907,35.657,35.722,35.115,35.412,34.983,35.412,34.759,35.368]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.121,47.105,51.014,50.38,49.647,48.265,51.668,47.634,47.621,47.443,51.459,47.843,46.076,49.506,47.224],"script":[33.194,32.825,33.685,33.141,31.54,33.511,34.047,32.769,33.067,32.444,33.814,32.966,32.217,32.569,33.443],"paint":[13.815,14.142,16.921,15.324,15.213,14.09,15.344,13.943,13.63,14.13,15.851,14.764,13.085,16.691,13.646]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[39.183,38.866,40.401,38.63,38.796,39.49,38.197,39.796,39.84,37.434,38.898,38.133,40.08,38.611,39.367,38.689,37.549,38.878,38.29,39.229,39.914,37.807,37.853,38.782,39.275],"script":[33.437,32.683,34.324,32.862,33.32,33.504,32.074,33.189,34.062,33.043,32.829,33.233,34.71,32.958,33.354,32.29,33.073,33.538,31.834,33.459,33.636,33.095,31.816,32.055,33.008],"paint":[4.722,3.746,5.286,4.262,4.583,3.987,4.144,3.871,3.029,4.026,4.915,3.825,3.891,4.066,4.169,3.519,3.634,3.41,3.657,3.297,4.199,3.291,4.766,3.952,2.223]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[191.292,191.484,192.055,194.206,186.438,194.622,189.431,189.675,192.24,189.986,188.285,188.373,190.49,186.634,189.543],"script":[48.451,48.548,49.233,51.111,46.335,51.715,49.132,48.745,49.279,49.362,49.184,50.769,47.671,47.714,50.439],"paint":[142.485,142.753,141.088,142.789,139.55,142.567,140.101,139.257,141.567,140.442,138.816,136.264,142.267,137.97,136.848]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[94.448,96.298,93.666,96.538,95.909,91.565,97.817,98.343,95.563,97.997,98.182,93.447,96.212,101.017,95.938],"script":[23.817,24.636,23.412,24.822,24.082,23.292,25.615,27.004,23.921,24.329,25.476,23.657,24.218,26.093,24.398],"paint":[69.133,69.555,68.983,70.68,70.255,66.765,69.985,69.505,69.839,71.595,71.067,68.743,70.005,72.756,70.667]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[424.513,426.149,423.182,432.811,424.994,420.893,424.223,424.927,423.534,420.898,424.695,420.711,418.578,421.645,427.26],"script":[92.793,90.017,90.108,89.559,88.528,87.634,90.587,91.685,89.07,89.432,89.916,89.303,89.429,90.005,90.333],"paint":[329.473,333.89,330.893,340.88,334.385,331.118,331.485,331.136,332.272,329.395,332.543,329.216,326.948,329.494,334.729]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.757,56.155,54.772,55.243,55.303,55.669,54.204,55.266,56.451,55.365,55.578,55.926,54.172,55.007,54.538],"script":[17.105,16.924,16.359,17.051,16.897,17.317,16.658,17.052,17.467,16.681,17.606,17.128,16.563,17.231,16.526],"paint":[38.394,38.948,38.147,37.93,38.138,38.07,37.281,37.95,38.704,38.406,37.701,38.526,37.332,37.511,37.728]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.113,26.127,24.629,23.811,26.226,24.889,25.742,25.095,25.503,24.979,25.604,24.485,25.809,26.184,22.022],"script":[21.947,22.322,21.738,20.093,22.421,21.735,21.326,21.258,21.675,19.992,20.952,20.976,22.286,22.482,20.824],"paint":[3.143,2.527,1.715,1.655,2.857,2.926,3.271,1.631,2.916,2.724,2.785,3.283,1.735,2.363,1.119]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.442418098449707]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.975330352783203]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.029790878295898]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.923105239868164]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.360066413879395]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.857421875]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.6611328125]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[154.4]}},{"framework":"owl-v2.2.6-keyed","benchmark":"01_run1k","values":{"total":[39.647,40.684,39.481,42.935,44.136,46.562,40.784,41.624,40.958,40.596,39.736,44.6,40.982,44.424,40.194],"script":[6.442,6.957,6.145,7.195,6.348,6.522,6.874,7.233,6.961,6.787,6.276,7.307,6.842,7.518,6.396],"paint":[32.693,33.252,33.171,33.028,33.029,33.619,33.447,33.495,33.835,33.64,32.771,33.682,33.67,33.172,32.567]}},{"framework":"owl-v2.2.6-keyed","benchmark":"02_replace1k","values":{"total":[46.83,52.53,46.413,53.81,45.191,52.641,43.733,48.574,44.309,50.798,45.793,49.148,44.661,47.13,55.508],"script":[9.349,9.493,9.731,9.296,9.862,9.2,9.233,9.114,9.296,9.297,9.629,8.982,9.774,10.501,10.229],"paint":[35.186,35.668,34.828,35.441,34.858,35.411,34.342,33.762,34.509,33.916,34.304,34.108,34.725,34.919,36.255]}},{"framework":"owl-v2.2.6-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.464,24.802,25.462,25.21,25.052,26.482,23.724,24.407,25.243,24.228,24.36,23.794,24.711,24.717,25.677],"script":[10.491,9.824,10.459,10.262,10.67,10.574,8.818,9.236,10.694,9.99,9.127,10.116,10.618,9.838,10.644],"paint":[14.855,14.866,14.248,13.174,13.513,15.675,14.795,14.674,14.423,14.118,14.508,13.573,11.605,13.977,14.901]}},{"framework":"owl-v2.2.6-keyed","benchmark":"04_select1k","values":{"total":[10.218,9.622,9.845,10.07,10.398,10.006,11.618,10.441,9.912,9.9,9.497,12.746,10.261,12.039,10.551,10.276,9.929,10.53,10.558,10.097,9.737,10.464,9.902,12.462,10.214],"script":[7.588,7.446,7.676,7.271,7.415,7.791,8.946,7.096,6.791,6.918,6.741,10.46,6.623,9.443,8.002,7.66,8.019,7.608,8.735,7.575,6.965,7.626,7.39,9.88,7.687],"paint":[1.614,2.025,2.025,1.428,2.523,2.071,1.776,2.261,2.979,1.692,1.651,1.973,1.966,1.516,2,1.667,1.771,1.605,1.676,1.936,1.755,2.578,1.72,1.753,2.381]}},{"framework":"owl-v2.2.6-keyed","benchmark":"05_swap1k","values":{"total":[25.597,24.646,24.42,26.05,27.41,23.221,28.956,27.444,26.018,25.218,25.315,25.426,25.258,26.577,24.434],"script":[8.007,7.01,7.327,6.764,9.635,6.756,9.55,8.765,7.754,5.986,7.278,7.409,6.755,8.93,6.841],"paint":[16.549,16.867,15.443,17.048,17.629,15.772,18.537,17.73,17.49,17.639,17.45,17.25,17.882,17.07,17.469]}},{"framework":"owl-v2.2.6-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.551,19.357,19.829,19.553,20.211,19.678,20.191,19.561,20.231,19.657,20.346,20.89,19.72,20.279,20.708],"script":[7.096,5.779,6.462,6.081,6.829,6.501,6.72,6.551,6.667,6.573,6.337,6.334,6.654,6.706,6.978],"paint":[12.976,13.13,13.214,13.341,13.226,13.039,13.283,12.602,12.776,12.908,13.469,13.443,12.631,12.933,12.976]}},{"framework":"owl-v2.2.6-keyed","benchmark":"07_create10k","values":{"total":[422.867,418.818,421.809,432.591,421.112,423.697,420.132,423.238,427.39,420.707,420.001,419.902,423.803,424.012,420.003],"script":[81.229,75.482,77.423,80.647,76.692,80.215,76.248,79.121,80.485,77.105,75.759,77.052,77.31,80.652,74.504],"paint":[339.466,341.213,342.262,349.857,342.334,341.385,341.814,341.979,344.732,341.467,342.099,340.739,344.399,341.279,343.407]}},{"framework":"owl-v2.2.6-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.332,56.205,48.888,55.006,49.28,48.247,49.479,48.237,55.112,55.596,55.932,54.494,49.682,54.202,54.296],"script":[10.213,10.189,10.25,10.057,10.347,10.019,9.762,9.981,10.268,10.545,10.606,9.894,11.168,10.065,9.832],"paint":[38.314,39.07,38.327,38.759,38.634,37.898,39.396,37.985,38.824,39.126,38.749,38.348,38.247,38.139,38.273]}},{"framework":"owl-v2.2.6-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.376,13.866,13.942,13.473,13.571,14.042,13.626,12.991,13.255,13.797,14.461,13.977,12.952,13.507,13.696],"script":[11.906,11.961,12.304,11.843,10.837,11.927,11.716,10.668,11.461,12.286,12.136,11.885,12.141,12.133,12.128],"paint":[1.41,1.846,1.576,1.572,2.677,1.962,1.845,1.342,1.731,1.434,1.925,1.302,0.409,1.313,1.516]}},{"framework":"owl-v2.2.6-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8110694885253906]}},{"framework":"owl-v2.2.6-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.388789176940918]}},{"framework":"owl-v2.2.6-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.335638999938965]}},{"framework":"owl-v2.2.6-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3706750869750977]}},{"framework":"owl-v2.2.6-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.904423713684082]}},{"framework":"owl-v2.2.6-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[78.703125]}},{"framework":"owl-v2.2.6-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.3466796875]}},{"framework":"owl-v2.2.6-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[124.1]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"01_run1k","values":{"total":[40.211,41.824,40.25,44.073,41.28,40.92,40.933,40.181,40.813,41.827,40.532,40.224,40.809,42.731,41.495],"script":[7.092,7.87,7.165,7.746,7.259,7.32,7.856,7.144,7.83,7.923,7.845,7.377,7.809,7.921,7.942],"paint":[32.679,33.524,32.655,35.861,33.576,33.157,32.63,32.581,32.552,33.463,32.256,32.404,32.567,34.381,33.105]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"02_replace1k","values":{"total":[44.976,44.881,44.127,47.815,47.009,44.46,45.121,46.061,44.975,45.905,45.517,46.195,44.381,44.819,46.682],"script":[10.153,10.064,10.032,10.354,11.496,10.024,10.31,11.236,10.203,10.286,11.253,10.687,10.206,10.313,11.285],"paint":[34.367,34.366,33.653,36.995,35.083,33.972,34.351,34.378,34.319,35.195,33.823,35.072,33.702,34.069,34.942]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.64,19.178,19.507,21.133,21.046,19.77,19.857,19.693,19.447,21.473,20.308,20.203,20.983,19.318,19.513],"script":[1.623,1.345,1.923,2.856,2.157,2.34,1.478,1.913,1.981,2.447,1.86,1.583,1.632,2.093,1.993],"paint":[16.175,16.37,13.997,17.085,17.387,16.443,17.396,15.57,16.45,17.134,16.825,15.938,17.556,16.005,14.834]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"04_select1k","values":{"total":[2.634,3.686,3.408,3.127,6.188,3.378,3.352,3.059,4.044,3.162,3.499,3.415,3.228,2.692,5.929,2.887,4.55,3.606,3.353,3.33,4.818,2.846,3.735,3.983,3.848],"script":[0.245,1.231,0.912,1.092,0.955,1.183,1.168,0.711,1.195,0.945,1.12,1.177,1.243,0.997,0.977,1.05,1.102,0.9,0.942,0.613,1.296,0.807,1.125,0.934,0.228],"paint":[2.29,1.785,1.592,1.775,1.572,1.093,0.712,2.244,1.545,0.606,1.505,2.139,1.138,1.012,1.61,1.746,1.386,2.609,2.316,1.833,2.537,1.942,0.868,2.79,2.497]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"05_swap1k","values":{"total":[19.318,20.182,19.654,19.906,20.322,19.205,19.311,21.201,19.756,20.178,19.065,20.145,19.909,19.374,20.314],"script":[1.784,2.007,1.781,1.757,1.443,1.066,1.52,2.241,1.539,1.725,1.047,1.541,1.25,1.561,0.899],"paint":[16.259,16.792,16.268,16.545,17.497,16.301,16.59,17.642,17.201,17.79,16.432,17.616,15.672,16.42,18.095]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.376,15.336,15.047,15.5,15.317,15.328,15.658,15.88,14.874,14.976,15.825,14.897,15.213,14.798,15.264],"script":[0.448,0.459,0.295,0.21,0.342,0.3,0.522,0.477,0.164,0.274,0.479,0.162,0.162,0.352,0.376],"paint":[13.985,13.901,13.924,14.71,14.249,14.41,14.46,14.732,13.995,14.016,14.912,14.048,14.303,13.766,14.189]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"07_create10k","values":{"total":[433.926,429.587,424.964,425.369,426.959,426.123,423.77,432.145,422.794,417.981,427.002,424.52,420.645,426.585,424.653],"script":[89.854,86.775,84.601,84.444,85.801,83.361,84.671,90.492,83.599,82.708,85.983,85.102,82.176,88.018,87.624],"paint":[337.405,336.2,333.77,334.291,334.539,336.051,332.47,334.923,332.527,328.846,334.456,332.775,331.908,331.942,330.364]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.913,45.221,46.875,46.37,46.037,46.168,46.596,45.251,45.322,46.736,45.305,46.813,45.721,45.808,45.109],"script":[6.986,7.034,6.905,7.614,7.639,7.899,7.661,7.038,6.989,7.679,7.176,7.593,7.067,7.183,7.175],"paint":[37,37.302,39.072,37.795,37.503,37.343,38.005,37.291,37.413,38.175,37.2,38.265,37.691,37.685,37.081]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.562,13.189,13.927,13.285,13.777,13.453,13.168,13.661,14.134,13.509,13.555,13.498,13.963,13.553,13.495],"script":[11.148,11.682,11.525,11.876,11.602,10.968,11.366,11.914,12.163,11.921,11.611,11.704,11.306,11.667,11.879],"paint":[2.335,1.422,2.32,1.328,2.095,2.142,1.723,1.665,1.452,1.502,1.85,1.708,2.556,0.618,1.529]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5135564804077148]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0155887603759766]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.196892738342285]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9635915756225586]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.527645111083984]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.2890625]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1806640625]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.2]}},{"framework":"pota-v0.9.98-keyed","benchmark":"01_run1k","values":{"total":[48.465,49.053,50.127,50.224,49.549,48.442,49.6,48.408,49.253,47.754,49.58,48.284,48.04,49.03,49.564],"script":[14.492,14.664,15.3,15.791,14.864,14.966,14.949,14.864,15.164,14.588,15.535,15.085,14.913,14.684,15.28],"paint":[33.525,33.943,34.347,33.97,34.222,33.026,34.187,33.091,33.652,32.695,33.6,32.741,32.674,33.878,33.813]}},{"framework":"pota-v0.9.98-keyed","benchmark":"02_replace1k","values":{"total":[56.872,56.89,57.154,57.744,58.099,58.021,57.24,57.17,58.937,57.805,57.576,57.16,57.251,57.298,57.528],"script":[20.456,20.787,21.302,21.251,21.611,21.207,21.267,20.984,20.938,21.478,21.121,21.294,21.289,21.318,21.454],"paint":[35.94,35.649,35.408,36.044,36.019,36.37,35.512,35.705,37.533,35.864,35.991,35.376,35.509,35.504,35.628]}},{"framework":"pota-v0.9.98-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.456,16.515,18.746,17.815,17.619,17.827,17.958,17.272,19.29,18.189,18.093,17.847,17.608,17.427,17.524],"script":[1.68,1.046,2.324,1.216,0.983,1.002,1.662,1.134,1.865,1.746,1.49,1.779,1.354,1.455,1.488],"paint":[14.39,14.412,14.974,14.528,14.92,14.862,15.153,14.238,16.701,14.53,15.271,14.633,14.855,15.627,14.709]}},{"framework":"pota-v0.9.98-keyed","benchmark":"04_select1k","values":{"total":[3.649,2.655,2.672,3.037,3.199,2.526,6.833,2.463,2.56,3.017,2.693,2.783,3.196,4.426,5.723,4.476,3.423,4.233,2.867,2.583,4.072,3.739,2.552,2.597,2.888],"script":[0.892,0.083,0.077,0.614,0.078,0.087,1.04,0.079,0.077,0.536,0.085,0.082,0.871,0.08,0.076,0.086,0.081,0.08,0.983,0.077,1.01,0.082,0.087,0.075,0.078],"paint":[2.657,1.512,1.652,2.327,1.885,2.005,1.435,1.567,2.381,1.832,2.511,2.595,1.738,1.836,2.522,1.866,1.582,1.052,1.781,1.644,1.746,2.561,2.362,2.428,2.712]}},{"framework":"pota-v0.9.98-keyed","benchmark":"05_swap1k","values":{"total":[20.224,20.885,21.201,20.442,21.035,20.043,21.994,19.944,19.834,20.131,21.071,20.831,20.459,20.197,20.38],"script":[1.789,2.26,2.441,1.998,1.993,2.2,2.134,2.018,1.856,2.106,2.116,1.819,1.937,1.861,2.439],"paint":[16.823,16.476,16.958,17.799,17.944,16.816,18.312,16.598,16.573,16.65,16.728,17.558,16.81,16.728,16.797]}},{"framework":"pota-v0.9.98-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.056,15.881,16.084,16.181,16.348,16.916,15.528,16.542,16.017,16.011,16.126,15.967,15.766,16.002,16.558],"script":[1.121,0.902,1.037,0.809,0.939,1.15,0.737,0.764,0.734,1.073,0.706,0.717,1.001,0.948,0.762],"paint":[14.17,14.235,14.483,14.337,14.507,14.68,14.039,14.507,14.246,13.884,14.734,14.241,14.015,14.291,15.03]}},{"framework":"pota-v0.9.98-keyed","benchmark":"07_create10k","values":{"total":[519.414,494.642,515.05,492.072,495.498,512.528,496.678,517.028,519.672,505.789,500.699,509.33,494.992,512.088,492.745],"script":[153.468,151.828,153.822,151.311,153.557,155.666,154.222,154.653,156.398,150.041,153.866,150.399,155.183,153.338,153.556],"paint":[358.178,336.015,354.275,333.711,335.197,349.966,335.359,355.452,356.619,348.944,340.078,352.146,333.084,351.992,332.489]}},{"framework":"pota-v0.9.98-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.479,55.832,56.838,56.374,54.504,51.731,55.946,55.192,54.47,54.725,55.164,56.141,56.69,55.62,55.616],"script":[15.837,15.552,16.424,15.314,15.015,14.564,15.539,15.384,15.762,14.975,15.297,15.075,16.797,15.641,16.382],"paint":[39.65,39.328,39.471,40.053,38.532,36.296,39.451,38.915,37.765,38.863,38.959,40.109,38.985,39.077,38.342]}},{"framework":"pota-v0.9.98-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.329,24.84,26.123,26.691,25.538,26.407,27.476,26.052,27.055,25.869,25.567,24.357,25.552,26.335,27.211],"script":[23.745,23.545,24.117,25.287,24.298,24.532,25.581,23.101,25.955,23.715,24.175,22.652,24.063,24.811,25.213],"paint":[2.476,1.2,1.749,1.291,0.494,1.175,1.054,2.849,0.353,1.531,1.289,1.009,1.385,1.131,1.886]}},{"framework":"pota-v0.9.98-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5481672286987305]}},{"framework":"pota-v0.9.98-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.824146270751953]}},{"framework":"pota-v0.9.98-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9619321823120117]}},{"framework":"pota-v0.9.98-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9521722793579102]}},{"framework":"pota-v0.9.98-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.003286361694336]}},{"framework":"pota-v0.9.98-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.58203125]}},{"framework":"pota-v0.9.98-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.81640625]}},{"framework":"pota-v0.9.98-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.6]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"01_run1k","values":{"total":[47.723,46.716,46.759,46.083,45.881,46.439,47.304,43.954,47.211,46.056,46.231,46.35,45.697,46.144,45.612],"script":[11.928,11.162,11.303,10.848,10.801,11.027,11.643,10.573,11.824,10.575,10.804,11.1,10.63,11.1,10.431],"paint":[35.332,35.099,35.013,34.787,34.624,34.965,35.208,32.947,34.955,35.027,34.989,34.778,34.62,34.623,34.723]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"02_replace1k","values":{"total":[52.606,53.306,53.344,53.49,53.53,53.755,53.301,53.479,53.633,52.533,53.305,52.944,52.797,53.393,53.09],"script":[15.461,15.451,15.702,15.934,16.095,15.848,15.979,15.821,15.875,15.682,15.834,15.675,15.79,15.735,15.595],"paint":[36.663,37.37,37.175,37.097,37.005,37.433,36.896,37.183,37.305,36.378,37.038,36.856,36.553,37.228,37.028]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.337,19.799,20.081,19.147,19.395,22.454,20.213,19.508,20.109,20.067,19.306,19.952,19.484,19.678,19.629],"script":[3.586,3.607,3.435,3.217,3.569,3.351,2.79,2.903,3.264,3.203,3.261,3.436,3.467,3.235,2.623],"paint":[15.221,14.245,15.337,14.671,14.158,17.55,16.183,14.93,15.813,14.69,15.015,14.277,14.795,15.008,15.716]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"04_select1k","values":{"total":[5.092,4.641,5.044,4.287,5.022,4.782,4.991,4.665,6.108,5.194,4.5,5.888,5.368,4.931,4.558,4.497,5.252,6.453,5.457,5.352,4.676,4.563,5.314,5.464,4.844],"script":[2.597,2.197,2.262,1.71,2.74,2.195,1.713,2.011,1.454,1.864,1.885,1.747,3.046,1.621,1.617,1.958,2.232,2.781,2.124,2.484,2.642,2.351,1.739,2.348,2.491],"paint":[1.17,1.821,2.539,2.427,1.059,1.592,2.159,2.158,1.702,3.19,1.514,3.171,0.963,3.172,2.791,1.704,1.822,3.054,3.178,2.625,1.171,2.059,3.442,1.559,2.206]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"05_swap1k","values":{"total":[159.786,163.215,160.967,166.84,158.757,163.545,162.271,160.635,163.791,161.777,160.895,159.6,163.443,161.331,157.581],"script":[17.385,15.322,16.82,17.525,16.642,18.529,17.233,16.526,17.134,16.564,15.701,16.235,17.377,15.996,16.283],"paint":[139.835,145.832,143.025,147.097,140.25,143.613,143.638,142.162,144.562,143.313,143.027,141.407,144.69,143.861,139.883]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.226,16.214,16.187,16.825,16.185,16.759,16.843,16.125,17.692,16.395,16.572,16.666,16.376,16.803,16.714],"script":[1.197,1.071,1.117,1.125,1.086,1.235,1.256,1.08,1.163,1.017,1.048,1.246,0.967,1.246,1.233],"paint":[14.034,14.393,14.258,14.842,14.266,14.751,15.007,14.285,15.722,14.683,14.283,14.393,14.315,14.563,14.772]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"07_create10k","values":{"total":[458.303,454.318,451.333,455.584,454.383,455.596,454.839,457.269,453.851,449.742,459.386,454.806,457.388,455.432,455.417],"script":[110.28,110.978,109.775,114.533,111.873,110.187,111.712,111.289,112.551,112.035,110.808,110.556,110.278,114.262,111.194],"paint":[341.291,336.641,334.534,334.264,335.739,338.69,336.393,339.254,334.424,330.609,341.771,337.589,340.417,334.216,337.565]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.682,51.637,51.883,51.04,51.529,51.424,51.71,51.567,51.881,51.104,50.568,50.259,50.978,50.711,50.342],"script":[12.363,11.71,11.486,11.386,11.478,11.342,11.68,11.718,11.347,11.717,11.546,11.503,10.939,11.563,11.094],"paint":[39.46,39.043,39.49,38.768,39.184,39.192,39.166,38.99,39.608,38.536,38.171,37.885,39.134,38.284,38.365]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.856,17.19,16.255,17.816,18.431,19.702,16.934,16.305,17.044,16.056,17.412,16.949,17.436,16.387,17.273],"script":[13.999,15.318,14.097,15.656,16.107,17.405,15.724,14.037,15.526,14.555,15.309,15.023,15.263,14.065,15.485],"paint":[1.746,1.78,2.05,2.069,1.938,2.207,1.127,2.008,1.433,1.413,1.998,1.096,1.826,1.797,0.956]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5350208282470703]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.213216781616211]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.252847671508789]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8135986328125]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.28910827636719]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.880859375]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.8271484375]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.1]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"01_run1k","values":{"total":[45.404,44.913,44.078,45.517,45.265,45.774,45.163,45.602,45.935,44.919,45.679,45.055,44.37,44.536,45.654],"script":[10.525,10.455,10.297,10.331,10.218,11.509,10.361,10.378,10.513,10.268,10.25,11.184,10.622,10.49,10.525],"paint":[34.45,34.02,33.365,34.724,34.619,33.835,34.385,34.759,34.99,34.215,34.986,33.446,33.329,33.636,34.742]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"02_replace1k","values":{"total":[53.507,53.549,54.256,53.638,52.871,52.695,52.077,53.746,52.977,53.434,52.75,53.063,52.643,52.721,53.432],"script":[17.023,17.118,17.097,16.907,16.681,17.183,16.764,17.274,16.928,17.194,16.879,16.92,16.631,16.854,16.905],"paint":[36.036,35.994,36.679,36.301,35.745,35.073,34.892,36.036,35.605,35.792,35.438,35.72,35.545,35.435,36.072]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.086,30.925,31.482,31.749,31.159,32.67,30.131,31.993,30.233,32.5,30.054,32.286,31.689,31.576,30.034],"script":[14.754,15.288,14.876,16.586,15.339,16.113,14.519,14.086,15.036,15.074,14.445,15.182,15.508,15.316,14.149],"paint":[13.555,14.142,14.406,13.632,14.383,15.237,14.501,15.518,13.238,16.208,14.399,15.469,14.625,14.731,14.261]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"04_select1k","values":{"total":[16.527,16.059,16.723,16.871,17.53,16.656,15.784,15.235,16.795,15.844,16.562,16.228,15.559,15.676,15.317,16.568,16.118,17.408,15.85,16.358,15.583,15.732,15.367,15.61,15.965],"script":[12.515,12.945,13.495,13.185,13.901,13.357,12.356,12.129,14.315,13.064,13.101,13.428,12.764,13.137,12.469,13.417,12.387,13.822,12.966,12.981,12.67,13.133,12.981,13.035,12.975],"paint":[2.898,2.824,3.02,3.489,2.392,3.131,3.219,2.152,1.499,1.638,2.8,1.838,1.572,1.698,2.164,2.983,2.618,2.601,2.537,2.771,2.717,1.491,2.22,1.917,2.362]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"05_swap1k","values":{"total":[32.223,31.359,29.986,31.116,31.266,31.017,31.558,31.259,33.914,31.989,32.276,31.737,33.275,31.551,31.917],"script":[12.464,12.52,11.772,12.218,11.988,11.594,13.466,12.244,13.25,13.653,14.07,12.78,13.511,12.884,13.159],"paint":[18.545,17.838,16.969,17.552,16.93,17.631,17.016,17.21,19.159,17.263,15.758,17.327,18.684,17.702,17.45]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.883,22.246,21.827,22.127,22.253,22.321,21.677,21.865,22.242,22.199,21.721,22.168,22.419,23.245,21.62],"script":[6.531,6.914,6.675,6.843,7.022,6.751,6.796,6.859,6.86,6.876,6.399,6.874,6.778,6.781,6.667],"paint":[14.373,14.207,14.36,14.484,14.181,14.648,14.162,14.209,14.295,14.175,14.038,14.506,14.686,15.692,13.938]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"07_create10k","values":{"total":[451.102,452.318,452.721,452.232,456.505,456.017,455.549,464.031,449.544,448.051,450.151,451.345,452.541,450.992,452.288],"script":[113.711,113.149,112.984,116.289,117.526,116.338,113.36,111.18,113.842,110.736,109.565,107.972,114.057,114.296,111.724],"paint":[330.602,331.971,332.918,329.3,332.311,332.967,335.277,346.16,329.009,330.583,333.878,336.43,331.744,330.031,333.739]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.657,53.807,54.486,54.433,53.607,54.491,54.767,53.173,54.365,54.523,54.37,54.202,55.463,53.874,54.722],"script":[13.864,13.834,13.953,13.608,13.836,13.776,14.246,13.731,14.111,13.765,13.986,13.975,13.763,13.848,13.917],"paint":[39.896,39.093,39.631,39.914,38.896,39.809,39.635,38.536,39.359,39.849,39.469,39.345,40.801,39.105,39.904]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.419,15.478,14.42,20.181,16.154,15.88,14.898,15.565,15.583,17.695,15.876,15.977,15.991,15.743,14.819],"script":[13.839,12.932,13.007,18.382,14.275,13.99,13.24,13.294,14.269,15.862,14.458,14.182,13.46,14.043,12.781],"paint":[1.106,1.735,1.312,1.683,1.058,1.32,1.565,2.118,1.226,1.742,1.332,1.685,2.44,0.777,1.162]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5328912734985352]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.859455108642578]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8814401626586914]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7076320648193359]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.82853031158447]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.18359375]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5458984375]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.7]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"01_run1k","values":{"total":[48.925,49.257,49.022,47.185,48.954,47.693,49.371,47.743,47.96,45.931,48.504,47.884,48.711,47.452,48.346],"script":[13.982,14.135,13.899,13.175,13.628,12.958,13.691,13.468,13.52,13.173,13.497,13.74,13.645,13.496,13.713],"paint":[34.488,34.693,34.688,33.586,34.9,34.304,35.26,33.846,34.007,32.326,34.581,33.692,34.637,33.536,34.222]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"02_replace1k","values":{"total":[53.661,53.339,54.167,54.26,53.693,54.609,55.156,53.347,53.158,55.802,54.143,53.932,54.834,54.802,54.516],"script":[18.122,17.797,18.279,17.937,18.027,18.115,18.21,17.516,17.734,18.249,18.008,17.744,18.269,17.899,17.302],"paint":[35.065,35.094,35.433,35.804,35.204,36.058,36.497,35.393,34.909,37.009,35.632,35.751,36.068,36.46,36.76]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.252,16.765,18.555,17.124,17.902,17.235,16.355,16.916,17.588,18.575,17.657,17.809,16.694,16.798,17.985],"script":[1.177,1.4,0.909,1.548,0.967,1.434,1.188,1.377,1.535,1.259,1.347,1.535,1.322,1.225,1.217],"paint":[13.13,12.791,16.023,14.133,15.13,14.342,13.824,14.155,14.012,15.774,14.756,14.885,14.181,14.52,15.425]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"04_select1k","values":{"total":[18.104,17.976,18.412,17.522,17.039,19.116,17.306,18.389,17.597,18.05,17.158,16.815,18.291,16.72,17.416,18.611,17.376,18.033,18.299,17.299,18.343,17.197,19.193,18.244,18.348],"script":[15.233,14.61,14.785,15.278,13.975,15.567,14.188,15.587,14.476,15.211,14.436,14.379,15.052,14.157,14.741,15.246,14.263,15.529,14.869,14.645,15.492,14.321,16.281,14.534,14.845],"paint":[2.042,2.291,3.003,2.066,2.094,2.854,2.275,1.858,2.539,1.865,2.114,1.952,2.559,1.918,1.605,2.71,2.403,2.336,3.262,0.946,1.961,2.706,1.519,3.106,2.585]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"05_swap1k","values":{"total":[33.431,35.081,33.956,33.984,35.431,34.822,32.978,34.286,35.561,34.051,35.658,34.117,33.578,34.954,33.691],"script":[14.814,15.996,15.235,13.735,16.548,14.618,13.734,14.649,15.258,15.372,15.004,15.416,14.847,14.24,14.681],"paint":[16.966,18.032,17.471,19.112,16.983,18.494,16.918,18.572,18.584,16.898,18.186,17.526,17.34,19.377,17.575]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.79,22.691,22.761,23.563,23.676,22.336,23.066,22.91,23.783,22.845,22.916,22.761,22.828,23.55,23.384],"script":[7.537,7.504,7.505,7.975,7.426,7.34,7.619,7.627,8.384,7.632,7.972,7.871,7.925,8.311,8.12],"paint":[14.373,14.14,14.515,14.751,15.274,14.226,14.377,14.509,14.363,14.171,14.194,13.788,14.15,14.488,13.874]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"07_create10k","values":{"total":[460.981,463.876,465.758,465.257,462.054,463.861,457.033,472.274,456.111,457.466,470.102,462.214,468.384,469.298,462.381],"script":[121.851,121.018,121.092,119.246,115.76,118.882,117.343,121.529,115.239,112.955,121.032,119.662,121.795,121.132,119.404],"paint":[332.357,335.995,337.96,339.251,339.494,338.134,333.222,343.827,334.036,337.751,342.082,335.887,339.818,341.442,336.29]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.853,57.399,56.918,56.614,57.596,57.586,60.585,57.17,57.533,57.388,57.912,58.311,56.919,56.639,57.313],"script":[16.476,16.874,16.174,16.495,16.614,16.382,17.44,16.484,16.533,16.738,16.688,17.209,16.775,16.776,16.615],"paint":[39.455,39.668,39.814,39.23,40.048,40.319,42.22,39.763,40.029,39.768,40.295,40.174,39.216,38.975,39.788]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.476,19.541,19.286,18.629,18.906,19.261,19.27,20.761,19.426,19.956,20.816,18.097,19.263,16.453,20.202],"script":[17.688,17.769,17.723,17.131,17.101,17.79,17.375,18.97,17.455,17.544,18.499,15.379,17.519,14.843,18.446],"paint":[1.685,1.403,1.47,0.388,1.501,1.377,1.44,1.689,1.818,1.376,1.582,1.851,0.803,1.498,1.645]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5656442642211914]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.119643211364746]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.25888729095459]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7759189605712891]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.85250282287598]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.9599609375]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2998046875]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.4]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"01_run1k","values":{"total":[54.126,55.105,53.53,53.486,54.297,53.29,54.117,56.473,53.959,53.288,56.068,55.236,54.067,56.113,56.991],"script":[20.24,20.85,19.555,19.702,19.557,18.949,20.179,21.991,19.613,19.296,20.724,20.724,19.973,20.981,21.046],"paint":[33.722,34.112,33.818,33.634,34.6,34.198,33.791,34.326,34.203,33.837,35.194,34.352,33.952,34.983,35.797]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[64.47,64.787,64.038,64.68,64.8,65.709,65.199,64.947,64.258,65.291,65.315,65.573,64.425,64.384,64.224],"script":[28.078,28.833,27.798,28.224,28.495,29.453,28.898,28.502,28.18,29.03,28.625,29.386,28.321,27.669,28.11],"paint":[36.217,35.781,36.057,36.285,36.127,36.076,36.128,36.268,35.9,36.093,36.512,36.006,35.943,36.542,35.934]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.435,17.486,18.062,21.279,20.987,18.244,21.601,55.904,54.161,17.57,18.459,17.929,51.263,17.567,51.534],"script":[4.121,3.296,4.416,4.704,4.364,4.037,3.818,4.665,3.628,4.043,2.805,4.083,4.251,3.922,2.912],"paint":[13.2,13.622,12.862,14.112,16.129,13.782,16.229,14.547,14.427,13.42,12.237,13.735,12.902,13.291,14.786]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"04_select1k","values":{"total":[8.985,16.221,7.256,4.192,3.546,13.345,12.971,9.995,8.778,10.553,5.897,5.616,8.74,7.003,10.112,11.003,9.014,8.624,12.655,5.657,3.823,9.712,5.32,9.25,10.421],"script":[2.369,2.652,2.393,1.19,1.591,3.208,2.758,2.11,1.82,2.992,1.821,1.425,2.431,2.815,3.212,3.362,2.274,1.761,1.374,1.311,1.66,2.592,2.242,2.707,3.129],"paint":[4.029,3.221,4.07,1.573,1.217,5.514,3.684,4.04,3.936,3.75,3.313,3.306,3.66,4.476,3.852,2.946,3.077,2.952,3.809,2.403,2.038,2.332,3.68,4.297,4.368]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[24.638,24.628,24.093,24.564,23.794,24.673,24.866,24.956,62.682,24.182,26.175,23.425,61.51,24.209,23.715],"script":[7.84,7.164,6.689,8.065,7.447,7.448,7.763,7.614,7.524,7.81,8.851,7.406,7.232,7.727,7.583],"paint":[16.687,17.331,17.286,16.034,15.106,16.262,16.988,16.584,18.653,14.892,17.199,15.9,18.591,16.37,16.024]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.543,19.421,19.182,18.508,20.305,21.543,19.583,21.8,19.675,19.602,20.141,19.18,19.139,19.157,19.506],"script":[4.231,4.384,4.401,4.39,4.654,4.565,4.316,4.572,4.384,4.377,4.291,4.287,4.374,4.354,4.62],"paint":[13.477,13.983,13.397,13.415,13.9,15.248,13.476,14.749,13.803,13.548,14.087,14.037,13.336,13.068,13.984]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"07_create10k","values":{"total":[545.781,543.271,540.742,545.971,543.863,553.363,544.012,546.329,548.303,552.98,540.37,543.265,538.398,538.832,540.701],"script":[201.097,200.339,198.444,200.78,201.422,209.709,203.14,201.44,205.009,205.11,199.066,199.903,196.461,198.087,199.438],"paint":[340.566,338.901,338.2,340.997,338.475,339.563,336.87,340.914,339.175,343.763,337.317,339.228,337.793,336.503,337.212]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[65.581,65.593,65.12,65.8,65.957,65.26,65.984,65.746,66.623,65.772,66.986,66.342,64.752,66.722,67.117],"script":[25.135,24.886,24.744,24.779,25.03,24.659,25.373,24.915,25.62,24.893,25.745,25.825,24.492,25.651,25.54],"paint":[39.546,39.777,39.446,40.049,39.963,39.646,39.655,39.918,39.994,39.899,40.259,39.62,39.347,40.115,40.596]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.296,25.694,21.846,22.742,26.59,29.463,25.804,25.708,24.324,25.249,22.155,21.813,27.834,22.277,24.404],"script":[19.674,22.184,19.838,20.267,22.561,20.87,22.226,22.228,19.932,21.021,20.311,20.105,21.448,20.15,21.051],"paint":[4.917,2.891,1.456,1.953,3.156,8.357,2.307,3.265,3.17,2.933,1.259,1.636,5.039,2.052,2.743]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44002628326416016]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.420008659362793]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.594295501708984]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[7.347883224487305]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[71.96929550170898]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[59.6630859375]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1943359375]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.3]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"01_run1k","values":{"total":[58.978,58.936,60.319,60.083,60.615,59.725,59.657,61.131,59.151,58.85,58.856,59.691,59.917,60.248,61.216],"script":[25.362,25.864,26.682,26.959,25.203,25.655,26.19,25.681,26.263,24.701,25.118,26.396,26.17,26.083,25.792],"paint":[33.161,32.624,33.195,32.697,34.972,33.6,32.992,35,32.445,33.693,33.26,32.868,33.315,33.7,34.967]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"02_replace1k","values":{"total":[66.544,68.277,67.37,67.381,67.187,65.525,67.196,66.744,68.744,67.782,70.039,69.479,66.663,65.736,66.637],"script":[30.54,32.125,31.499,31.745,31.542,29.902,31.589,31.245,32.565,32.083,34.798,33.436,31.051,31.087,31.308],"paint":[35.565,35.653,35.418,35.194,35.201,35.184,35.111,35.046,35.718,35.265,34.809,35.59,35.173,34.202,34.873]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.668,19.23,18.74,18.902,19.82,20.468,18.793,18.711,19.243,18.577,20.633,19.582,19.608,19.231,19.711],"script":[3.842,3.644,3.572,3.397,4.183,3.896,4.026,3.655,3.713,3.114,3.69,3.778,3.723,3.644,4.035],"paint":[14.159,14.356,13.603,14.247,14.515,14.75,13.416,12.971,14.122,13.949,15.391,13.855,13.829,13.68,14.397]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"04_select1k","values":{"total":[7.651,7.437,8.22,7.888,9.255,9.411,7.679,8.334,7.594,8.656,8.54,7.567,8.064,8.413,8.472,8.225,8.283,9.098,7.583,8.792,7.488,7.585,8.427,7.412,8.33],"script":[5.031,4.823,5.202,5.447,6.443,6.111,5.497,5.805,5.568,5.83,3.237,4.834,5.356,5.257,5.765,5.446,6.231,6.553,4.579,6.29,5.617,4.782,5.366,5.427,5.471],"paint":[1.56,1.681,2.887,2.292,1.515,3.128,1.513,1.594,1.16,1.976,1.629,2.39,2.353,2.491,2.036,1.763,1.191,1.598,2.87,1.539,1.58,1.907,2.919,1.121,2.256]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"05_swap1k","values":{"total":[171.921,169.967,167.308,168.244,174.572,169.061,170.1,166.866,172.292,169.862,168.351,169.12,168.904,171.58,166.42],"script":[27.711,24.919,24.2,27.16,27.065,27.793,28.134,27.309,28.145,24.343,28.387,23.651,27.952,27.802,26.574],"paint":[141.673,144.327,141.939,139.187,144.724,140.045,140.508,138.409,142.449,143.429,137.623,144.113,138.915,141.861,137.798]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.348,20.835,20.225,21.099,20.554,21.791,21.21,21.313,20.3,20.346,21.141,20.141,20.324,20.405,20.235],"script":[5.395,5.117,5.023,5.747,5.276,5.812,5.616,5.192,5.272,5.032,5.724,5.015,5,5.513,4.79],"paint":[13.937,14.923,14.482,14.242,14.285,15.132,14.759,14.726,14.337,14.327,14.045,14.382,14.59,14.119,14.428]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"07_create10k","values":{"total":[578.607,577.073,574.463,578.774,571.09,583.845,583.652,580.956,573.049,575.737,578.013,578.859,578.294,578.056,575.202],"script":[221.353,219.958,220.385,219.581,220.135,223.233,221.507,222.042,220.726,220.623,221.079,218.239,223.094,222.334,222.097],"paint":[350.504,350.579,347.393,352.218,344.358,353.887,355.583,352.104,345.507,348.364,350.126,353.777,348.448,349.006,346.492]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.239,62.439,62.662,61.014,60.819,63.171,62.53,62.85,63.309,63.66,62.687,62.746,63.074,61.794,62.497],"script":[23.133,22.656,22.698,22.112,21.547,22.905,22.549,22.147,23.453,24.098,22.964,23.059,22.673,22.28,22.903],"paint":[39.228,38.893,39.103,37.998,38.38,39.374,39.152,39.809,38.965,38.684,38.818,38.77,39.484,38.628,38.712]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.476,29.51,30.173,31.142,30.788,29.532,30.687,30.152,32.726,29.793,30.774,31.998,31.085,31.238,30.697],"script":[29.487,27.931,28.889,28.683,28.923,27.656,28.958,28.276,30.151,28.082,29.099,29.903,28.354,28.896,28.191],"paint":[1.877,1.243,0.537,2.338,1.758,1.772,1.627,1.367,2.078,1.616,1.576,1.93,1.218,1.503,2.396]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1126575469970703]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.731622695922852]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.912185668945312]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5127601623535156]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.05740547180176]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[224.140625]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.7353515625]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[314.4]}},{"framework":"rax-v0.6.7-keyed","benchmark":"01_run1k","values":{"total":[45.039,46.402,45.923,45.957,46.431,47.556,47.148,46.746,48.295,47.449,46.633,47.621,46.904,47.763,48.692],"script":[12.371,13.004,12.515,12.139,12.529,13.505,13.38,12.685,13.964,13.449,12.862,13.338,13.292,13.469,14],"paint":[32.26,32.977,32.998,33.405,33.484,33.637,33.333,33.639,33.891,33.595,33.348,33.852,33.191,33.912,34.26]}},{"framework":"rax-v0.6.7-keyed","benchmark":"02_replace1k","values":{"total":[54.732,56.387,54.409,55.581,54.892,55.174,55.022,55.207,55.549,55.261,54.985,55.191,55.964,54.034,54.218],"script":[18.02,18.911,17.905,18.093,18.126,18.388,18.216,18.234,18.624,18.384,18.336,18.21,18.61,18.28,17.752],"paint":[36.243,37.023,36.027,37.004,36.3,36.325,36.318,36.522,36.458,36.409,36.184,36.51,36.86,35.286,35.961]}},{"framework":"rax-v0.6.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.708,26.629,26.052,25.601,26.275,25.607,25.109,26.378,26.914,26.306,25.659,26.03,25.403,25.372,25.951],"script":[9.745,10.268,10.038,9.642,10.011,9.355,9.112,10.7,9.887,10.102,9.377,9.963,10.06,9.577,9.596],"paint":[14.884,14.777,14.59,13.774,15.027,14.422,13.856,14.01,15.11,14.301,14.62,14.088,13.941,13.986,14.711]}},{"framework":"rax-v0.6.7-keyed","benchmark":"04_select1k","values":{"total":[8.551,8.488,8.925,8.679,8.921,9.724,8.265,8.775,8.908,8.728,9.094,9.037,8.946,8.322,9.565,8.954,8.652,8.648,8.579,9.35,9.041,9.966,9.307,9.189,8.555],"script":[5.909,6.06,5.833,5.891,6.443,6.28,6.018,5.736,6.16,6.357,5.815,6.775,6.299,5.464,6.086,6.419,6.456,5.694,5.775,6.63,6.418,6.439,6.658,6.104,5.563],"paint":[1.429,2.067,2.394,1.673,1.988,2.299,1.042,2.544,1.825,1.231,2.198,1.475,2.476,1.792,3.296,1.691,2.045,1.861,2.298,1.977,1.641,2.551,1.651,2.924,1.872]}},{"framework":"rax-v0.6.7-keyed","benchmark":"05_swap1k","values":{"total":[166.442,165.955,162.086,159.779,165.459,160.11,158.41,156.561,158.107,156.789,160.214,160.826,154.68,160.56,161.377],"script":[20.959,20.057,20.399,19.959,19.245,19.626,20.728,18.987,20.185,20.021,19.621,21.145,19.257,20.528,19.858],"paint":[142.922,143.664,138.987,137.75,144.352,138.596,135.299,136.018,135.927,134.9,138.169,138.526,133.975,138.097,139.741]}},{"framework":"rax-v0.6.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.652,18.36,17.817,17.441,17.929,17.846,17.455,18.244,18.458,17.871,17.853,17.852,17.604,17.776,17.874],"script":[3.086,3.172,2.981,2.956,2.959,3.056,2.776,3.086,3.089,3.083,2.871,3.049,2.877,3.029,2.914],"paint":[14.727,14.26,13.507,13.682,14.099,13.728,14.013,13.511,14.436,13.992,14.244,13.753,13.808,13.731,14.228]}},{"framework":"rax-v0.6.7-keyed","benchmark":"07_create10k","values":{"total":[508.3,505.225,513.663,506.268,501.621,503.468,503.519,503.367,499.826,499.998,506.732,506.709,505.595,506.695,507.947],"script":[169.851,164.867,166.872,167.263,165.385,168.594,166.802,165.717,167.324,164.658,170.912,171.053,172.825,174.619,172.112],"paint":[330.876,333.563,340.059,332.267,329.422,328.055,329.827,330.97,325.748,328.74,329.09,329.006,326.046,325.227,328.931]}},{"framework":"rax-v0.6.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.287,53.783,53.817,52.988,53.671,53.435,53.564,54.781,53.651,52.521,53.453,53.429,52.579,53.426,54.274],"script":[14.258,14.525,14.091,14.485,14.566,14.048,14.803,14.212,14.929,13.667,13.851,14.28,14.584,14.419,14.154],"paint":[39.043,38.371,38.835,37.605,38.179,38.494,37.881,39.654,37.839,37.924,38.729,38.198,37.091,37.938,39.229]}},{"framework":"rax-v0.6.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.83,23.607,23.472,25.036,23.77,23.2,24.947,23.487,23.987,23.392,24.073,24.037,23.122,24.172,24.2],"script":[21.519,21.416,21.733,23.079,21.242,21.482,23.236,21.282,22.223,21.827,21.775,22.072,20.941,22.529,22.193],"paint":[2.194,2.082,1.64,0.975,1.309,1.628,0.779,2.112,0.805,0.816,1.349,1.851,1.896,1.544,1.901]}},{"framework":"rax-v0.6.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6979312896728516]}},{"framework":"rax-v0.6.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.464216232299805]}},{"framework":"rax-v0.6.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.588055610656738]}},{"framework":"rax-v0.6.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.092071533203125]}},{"framework":"rax-v0.6.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.9394474029541]}},{"framework":"rax-v0.6.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.025390625]}},{"framework":"rax-v0.6.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.8125]}},{"framework":"rax-v0.6.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.7]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"01_run1k","values":{"total":[47.25,46.207,46.217,45.077,48.708,46.865,46.504,45.904,46.155,46.962,45.434,46.149,46.97,46.107,46.189],"script":[12.53,12.486,12.922,12.664,14.381,12.619,12.119,12.292,13.309,13.467,12.344,12.561,12.797,12.999,12.674],"paint":[34.292,33.22,32.88,31.978,33.904,33.822,33.896,33.153,32.423,33.053,32.69,33.173,33.747,32.722,33.122]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"02_replace1k","values":{"total":[52.138,50.227,50.807,51.631,50.754,51.603,51.301,51.559,50.409,50.672,50.766,51.861,52.298,50.75,50.863],"script":[15.657,15.654,15.755,16.458,15.354,15.252,15.638,16.67,15.109,15.403,14.778,15.195,16.534,15.988,15.515],"paint":[36.031,34.11,34.611,34.736,34.959,35.9,35.215,34.464,34.872,34.825,35.508,36.201,35.337,34.313,34.915]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.274,21.298,20.488,21.778,22.04,22.426,21.42,21.419,21.249,21.748,21.627,21.356,21.613,20.719,21.743],"script":[4.902,5.386,5.36,5.402,5.997,5.597,5.348,4.929,5.447,5.922,5.473,5.109,5.402,4.553,5.18],"paint":[15.054,14.247,13.56,15.356,14.657,14.947,14.647,13.985,13.818,14.364,14.714,13.551,14.893,14.846,14.062]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.472,5.338,5.02,4.529,5.303,5.462,5.503,5.325,5.058,5.15,4.993,5.168,4.393,5.539,4.397,4.647,4.941,4.688,5.114,4.143,5.368,4.602,4.995,5.224,5.746],"script":[1.756,1.792,2.46,2.021,1.859,2.278,2.256,2.233,2.51,2.228,2.427,2.205,2.118,2.847,1.62,2.389,1.947,2.195,2.48,1.645,2.508,2.108,2.489,2.375,2.772],"paint":[3.543,3.402,2.404,1.868,3.286,2.91,2.598,2.946,1.573,2.764,1.986,1.794,2.041,1.506,2.677,1.689,2.891,2.38,1.625,1.97,1.966,2.349,1.731,1.687,2.07]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"05_swap1k","values":{"total":[163.517,166.54,163.678,162.34,176.203,164.046,166.196,168.874,166.948,158.221,163.882,164.892,162.742,170.941,164.726],"script":[22.74,23.512,21.867,22.183,26.205,23.374,22.802,24.155,22.946,21.474,21.895,22.344,22.203,21.805,24.001],"paint":[138.43,141.847,140.143,137.678,147.701,138.92,141,142.497,141.86,134.619,140.239,140.729,138.018,148.155,138.479]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.478,16.613,16.631,16.937,16.321,16.671,17.511,16.709,16.994,16.6,16.647,16.608,16.465,16.6,16.721],"script":[1.411,1.864,1.396,1.704,1.568,1.47,1.439,2.097,2.074,1.344,1.595,1.857,1.35,1.581,1.614],"paint":[14.132,13.84,14.465,14.11,14.197,14.079,14.694,13.512,13.538,14.513,14.149,13.665,14.435,14.257,14.147]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"07_create10k","values":{"total":[604.174,602.282,608.651,612.663,606.132,591.195,611.422,613.726,609.165,607.946,607.124,612.31,611.294,608.015,601.239],"script":[252.625,249.246,254.533,255.338,254.292,252.086,253.44,249.549,253.012,255.092,251.355,255.93,255.877,249.15,249.095],"paint":[344.842,346.361,347.441,350.599,345.114,332.394,351.264,357.482,349.363,346.215,349.064,349.643,348.763,352.175,345.379]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.876,50.563,50.124,51.154,49.819,50.819,50.549,52.545,52.708,51.667,52.618,52.241,51.046,50.918,51.095],"script":[12.64,12.824,12.42,12.954,12.422,12.96,12.324,13.354,12.833,13.135,12.875,12.4,12.684,12.35,13.328],"paint":[37.321,36.872,36.782,37.305,36.526,36.999,37.346,38.265,38.985,37.653,38.857,38.94,37.47,37.7,36.905]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.938,16.065,16.64,16.942,15.792,16.147,16.172,16.635,15.729,16.037,15.492,16.47,16.567,16.454,15.426],"script":[14.273,14.388,14.485,15.039,13.767,14.221,14.376,14.84,14.191,14.407,13.345,14.583,14.924,14.624,13.484],"paint":[1.566,0.765,2.06,1.813,1.023,1.836,1.706,1.701,0.794,1.481,1.42,1.801,1.549,1.742,1.075]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9828319549560547]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.446006774902344]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.002538681030273]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9137592315673828]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.24549961090088]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.765625]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.30859375]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[211.4]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"01_run1k","values":{"total":[50.522,50.898,49.066,50.526,49.779,49.853,50.434,50.122,50.275,50.684,49.121,49.155,49.687,49.022,49.517],"script":[16.316,16.254,15.466,15.381,15.925,15.834,15.836,15.947,16.028,16.107,15.655,15.705,15.695,15.495,15.794],"paint":[33.771,34.18,33.166,34.699,33.412,33.581,34.163,33.715,33.789,34.118,33.032,32.999,33.563,33.055,33.263]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"02_replace1k","values":{"total":[57.889,59.459,57.793,58.894,57.915,58.617,57.701,57.281,58.563,58.168,58.038,58.262,57.717,58.543,57.466],"script":[21.818,21.63,21.354,21.884,21.713,22.335,21.707,21.409,22.183,21.867,21.788,21.751,21.348,22.12,21.868],"paint":[35.618,37.369,35.761,36.531,35.763,35.818,35.332,35.397,35.921,35.712,35.791,36.069,35.914,35.722,34.918]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.433,21.46,21.816,22.641,21.748,22.464,21.998,21.58,21.635,23.987,22.309,22.276,22.288,21.669,21.412],"script":[6.882,6.071,5.873,6.222,6.041,6.783,6.255,6.194,5.876,7.166,6.473,6.375,6.129,6.193,6.469],"paint":[15.005,14.082,13.779,14.842,13.739,14.4,14.429,13.953,14.133,15.23,14.078,14.389,14.931,13.815,13.389]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"04_select1k","values":{"total":[6.357,7.052,6.764,6.232,7.309,6.931,7.368,6.128,5.773,6.545,6.886,5.891,7.159,6.307,5.928,6.044,5.969,5.726,6.615,6.767,6.537,6.655,6.246,5.918,6.965],"script":[3.253,3.224,3.738,3.446,4.121,3.692,3.725,3.111,2.945,3.938,3.939,3.349,4.061,4.017,3.029,3.73,3.665,3.592,3.716,3.478,4.141,3.108,3.926,3.507,3.81],"paint":[2.251,2.995,2.878,1.933,3.018,2.117,3.299,2.868,2.685,1.667,2.69,1.958,2.325,1.384,2.788,1.724,1.299,1.273,2.354,3.137,1.533,3.395,1.428,2.302,3.002]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"05_swap1k","values":{"total":[168.22,164.143,166.527,162.349,165.415,167.007,166.226,170.328,167.3,162.733,164.057,162.113,163.236,168.31,161.927],"script":[25.602,24.143,24.55,24.399,23.02,25.715,25.24,27.353,24.092,21.87,24.879,22.595,21.931,25.218,23.453],"paint":[141.195,138.036,140.223,135.624,139.689,139.339,138.455,140.272,141.251,139.368,137.448,137.636,139.673,140.093,137.037]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.664,17.238,16.76,16.661,16.697,17.097,18.358,16.96,17.102,16.701,17.144,17.286,17.166,17.227,16.842],"script":[2.229,2.172,2.028,2.181,2.228,2.305,2.146,1.949,1.83,1.981,2.035,1.916,1.873,1.903,1.934],"paint":[13.896,14.066,13.649,13.399,13.679,13.973,15.159,14.163,14.57,13.715,14.471,14.282,14.534,14.496,13.839]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"07_create10k","values":{"total":[639.42,639.716,638.98,641.245,640.537,640.707,640.793,646.569,641.548,643.455,634.619,639.904,643.276,636.022,643.448],"script":[283.096,282.277,282.736,281.815,283.631,283.662,285.61,285.186,284.168,283.933,281.941,283.715,284.119,282.12,283.065],"paint":[349.467,350.711,349.066,352.673,350.221,350.383,348.326,354.639,350.686,352.411,345.896,349.506,352.442,347.277,353.648]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.166,55.546,55.729,55.89,55.658,55.697,55.216,54.611,55.693,55.872,57.147,55.795,55.775,58.173,55.636],"script":[16.654,16.392,15.925,16.059,15.88,15.872,16.377,16.021,16.563,16.207,16.387,16.69,16.624,17.31,15.962],"paint":[39.68,38.115,38.884,38.973,38.713,38.98,37.763,37.707,37.987,38.611,39.523,37.987,38.06,39.717,38.8]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.331,33.158,30.544,33.524,27.693,31.995,32.195,32.146,31.58,34.317,35.213,29.888,34.342,34.12,30.676],"script":[28.889,31.911,28.768,31.625,25.955,29.988,29.788,29.974,29.631,32.206,32.722,27.944,32.429,32.34,28.184],"paint":[2.3,1.146,1.666,1.791,0.867,1.897,1.977,2.05,1.841,1.925,2.324,1.844,1.798,0.868,2.371]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0933589935302734]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.80912971496582]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.349949836730957]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.055185317993164]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[54.09977436065674]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[168.4365234375]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.5029296875]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[247.4]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"01_run1k","values":{"total":[50.5,50.52,49.18,51.307,51.023,49.807,51.645,49.266,50.696,50.734,52.236,49.454,50.965,51.037,51.314],"script":[16.521,16.626,16.172,16.817,16.306,16.617,17.055,15.874,16.525,16.754,16.981,15.728,15.839,16.962,16.408],"paint":[33.556,33.475,32.589,34.044,34.295,32.771,33.911,32.968,33.749,33.551,34.811,33.289,34.709,33.664,34.478]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[61.428,61.591,63.377,60.082,62.53,61.205,61.809,62.505,60.579,60.404,61.197,59.927,60.512,61.689,60.274],"script":[25.788,26.016,25.78,24.809,25.381,24.909,24.96,25.122,24.765,25.24,25.125,24.111,24.293,24.88,25.459],"paint":[35.115,34.876,37.105,34.827,36.705,35.863,36.39,36.925,35.365,34.728,35.618,35.368,35.765,36.35,34.38]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[64.972,66.767,65.63,66.453,65.861,66.235,68.088,65.619,68.403,66.125,65.192,66.388,65.867,67.652,65.877],"script":[48.319,50.465,48.931,49.836,48.546,49.562,51.955,49.442,52.217,49.46,48.993,49.628,50.12,51.762,50.118],"paint":[15.173,15.17,14.049,14.983,15.131,15.142,14.692,14.952,14.356,14.541,14.856,14.806,12.823,14.07,14.394]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"04_select1k","values":{"total":[5.851,4.687,5.589,4.948,4.618,5.468,5.073,5.356,5.169,5.825,5.393,6.067,4.071,4.674,4.318,3.968,4.716,4.379,4.953,4.41,5.103,4.514,5.244,4.775,4.692],"script":[3.051,1.884,2.196,2.376,1.982,2.384,2.206,2.418,2.111,3.029,2.802,3.234,1.617,1.832,1.973,1.472,1.897,1.838,1.74,1.526,2.149,1.912,2.889,2.222,2.159],"paint":[1.933,1.683,2.328,0.626,1.596,2.555,1.941,2.559,2.906,1.786,2.456,1.914,2.35,1.976,2.231,2.387,2.711,1.513,2.66,1.804,1.868,2.449,1.49,1.999,1.205]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[211.8,211.795,208.655,211.716,210.396,213.441,208.921,212.622,209.872,210.29,215.435,213.266,210.209,215.069,217.925],"script":[69.812,73.056,67.444,69.56,70.154,71.59,68.449,71.597,69.135,69.676,71.378,73.281,69.373,71.273,71.953],"paint":[138.518,136.812,139.465,140.029,138.13,140.262,139.324,139.239,138.886,139.343,142.407,138.045,139.088,141.451,143.805]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.451,37.477,37.843,37.667,41.279,39.413,39.56,38.896,40.652,39.449,39.718,40.382,39.482,40.653,40.03],"script":[22.455,22.338,22.211,22.449,24.563,23.849,23.096,23.631,24.764,24.032,24.19,23.807,23.642,25.076,24.644],"paint":[15.182,14.314,14.783,14.345,15.421,14.743,15.693,14.468,14.837,14.623,14.699,15.331,15.053,14.72,14.271]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"07_create10k","values":{"total":[625.412,623.897,623.279,625.589,623.224,627.404,619.959,624.683,621.949,630.092,624.015,620.807,619.524,624.388,620.127],"script":[267.14,268.667,268.17,267.762,263.714,267.393,264.441,269.614,268.415,270.427,266.527,266.927,267.013,267.561,266.46],"paint":[351.029,348.433,348.377,351.051,352.78,353.167,348.848,348.413,346.85,352.904,350.707,347.275,345.763,350.091,346.873]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.961,68.197,67.991,66.917,69.055,67.567,67.275,68.817,68.052,67.518,69.231,67.16,67.692,69.046,67.983],"script":[27.592,27.184,27.313,26.926,27.117,27.036,26.85,27.861,27.519,27.04,26.943,26.86,26.497,27.679,27.256],"paint":[40.453,40.127,39.772,39.114,41.048,39.653,39.537,40.062,39.631,39.572,41.347,39.37,40.299,40.459,39.833]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.324,32.245,30.79,31.839,30.551,31.947,31.693,31.086,30.528,30.966,31.42,32.767,30.729,31.343,31.838],"script":[29.742,30.081,29,29.741,28.346,29.513,29.699,28.762,28.606,29.661,29.401,30.632,28.572,29.032,29.692],"paint":[1.034,2.037,0.89,1.794,1.722,2.317,1.888,2.219,1.433,0.846,1.224,1.568,2.026,2.182,1.505]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0809307098388672]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.885591506958008]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.649999618530273]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9976491928100586]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.36443901062012]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[175.203125]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.84375]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[261.3]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"01_run1k","values":{"total":[46.367,45.57,46.277,45.856,45.767,45.767,45.195,44.58,45.812,46.745,46.716,45.72,45.936,45.569,46.525],"script":[12.601,11.905,12.073,12.396,11.519,11.831,11.974,11.785,11.804,12.756,12.622,12.621,12.344,11.832,12.531],"paint":[33.349,33.249,33.782,33.038,33.826,33.513,32.821,32.391,33.611,33.565,33.596,32.668,33.191,33.308,33.582]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"02_replace1k","values":{"total":[53.647,54.943,54.523,54.845,54.012,54.159,55.132,54.819,55.4,54.462,54.58,55.157,55.502,54.169,55.631],"script":[17.945,18.421,18.035,17.851,18.251,17.914,19.012,18.692,18.788,18.985,18.632,18.695,19.499,18.603,19.167],"paint":[35.243,36.062,36.044,36.531,35.301,35.755,35.642,35.642,36.161,35.027,35.473,36.018,35.545,35.119,35.973]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.752,20.765,21.132,21.401,20.417,21.359,22.119,20.284,20.429,20.62,21.88,20.47,20.36,21.294,21.297],"script":[4.181,4.755,4.738,5.741,4.884,4.462,5.14,4.48,5.062,4.243,5.116,4.859,4.77,4.983,4.927],"paint":[14.803,14.73,13.858,14.038,14.231,15.734,15.272,14.125,14.085,14.506,15.295,14.626,14.996,14.313,14.643]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"04_select1k","values":{"total":[4.864,6.09,5.53,5.393,4.923,5.476,5.672,5.417,4.82,5.037,5.644,4.86,4.823,5.117,4.515,5.473,5.875,5.342,5.491,4.876,5.049,4.404,5.119,5.071,5.106],"script":[1.936,2.972,2.107,2.88,2.109,2.794,2.731,2.141,2.48,2.389,2.104,2.429,2.721,2.132,2.017,2.785,2.4,2.723,2.768,1.977,2.427,1.499,2.377,2.47,2.166],"paint":[1.999,2.152,2.623,2.014,2.698,2.528,1.787,2.615,1.532,1.794,3.193,1.627,1.971,2.637,2.027,1.83,3.297,1.45,1.9,2.751,2.511,2.805,2.08,1.713,1.79]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"05_swap1k","values":{"total":[167.54,167.294,166.966,164.893,162.554,161.005,167.174,167.78,166.262,164.217,169.335,162.507,166.682,164.297,164.987],"script":[24.594,23.619,24.43,25.255,24.27,22.68,24.237,23.439,23.173,23.657,23.232,23.066,24.277,24.504,24.104],"paint":[139.874,141.862,139.899,137.67,135.891,136.004,140.974,141.985,141.419,138.653,144.07,137.104,141.131,137.896,138.799]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.646,17.025,16.892,17.863,16.659,17.112,17.846,16.733,16.725,17.586,17.229,16.78,17.159,16.968,16.796],"script":[1.757,1.627,1.548,2.062,1.422,1.994,1.815,1.76,1.453,1.577,1.767,1.593,1.783,1.678,1.787],"paint":[14.166,14.473,14.504,15.024,14.195,14.582,15.277,13.617,13.947,15.238,14.403,13.971,14.621,14.035,14.236]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"07_create10k","values":{"total":[599.892,606.806,609.48,599.32,599.805,611.254,610.531,592.18,602.657,608.289,608.219,608.499,598.481,610.171,594.276],"script":[248.958,252.754,249.371,249.448,244.406,255.755,250.966,247.461,248.589,251.099,251.695,255.119,242.969,253.991,248.53],"paint":[343.974,347.178,353.394,343.195,348.689,348.805,352.909,338.018,347.397,350.506,349.833,346.668,348.722,349.391,339.065]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.7,49.711,52.289,49.863,51.624,51.451,50.731,48.716,48.652,48.113,52.211,48.742,49.265,51.33,51.598],"script":[11.831,10.921,12.554,11.617,12.657,13.155,12.806,11.544,11.487,11.439,11.879,11.748,11.748,11.775,12.172],"paint":[37.908,37.919,38.829,37.317,38.052,37.454,37.003,36.282,36.293,35.784,39.376,36.112,36.637,38.651,38.52]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.725,24.528,24.268,25.399,25.415,26.236,24.996,25.622,24.855,25.815,24.63,24.535,26.409,24.262,26.346],"script":[24.842,22.316,22.027,23.399,23.753,23.834,23.377,23.343,23.03,23.954,22.536,22.487,24.224,22.618,24.073],"paint":[2.179,2.089,1.847,1.689,1.562,2.294,1.502,2.171,0.976,1.767,1.999,0.952,2.083,1.548,1.335]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9816980361938477]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.423439025878906]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.998004913330078]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8923816680908203]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.33227252960205]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.2705078125]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.0517578125]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.6]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"01_run1k","values":{"total":[53.835,52.743,45.735,52.638,52.911,53.62,46.491,53.372,52.668,45.485,46.746,53.185,49.413,53.114,47.028],"script":[13.165,12.699,12.522,12.486,12.799,12.53,12.659,13.033,12.879,12.511,12.465,12.532,12.592,12.556,13.213],"paint":[33.968,34.2,32.855,33.883,34.124,35.001,33.439,34.312,33.939,32.611,33.92,34.483,35.961,34.214,32.99]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"02_replace1k","values":{"total":[53.084,53.687,53.838,57.998,54.126,59.571,56.032,54.691,57.196,58.514,58.605,54.206,58.954,57.339,53.605],"script":[17.651,17.466,17.513,20.767,17.47,20.014,17.412,17.881,20.151,20.799,19.629,17.731,21.37,20.98,17.244],"paint":[34.946,35.679,35.778,36.551,36.181,38.099,37.285,36.182,36.395,36.314,37.535,36.138,36.963,35.729,35.851]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46.439,24.133,20.897,46.336,24.48,21.268,26.135,23.642,20.324,21.674,22.623,24.916,19.93,23.972,21.14],"script":[6.684,6.112,6.085,6.127,6.507,6.46,6.485,5.971,5.746,6.489,7.6,5.438,5.429,5.715,6.712],"paint":[17.012,17.538,14.575,16.676,16.82,14.681,15.798,16.682,14.448,14.757,14.7,16.992,13.165,16.614,14.151]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"04_select1k","values":{"total":[12.482,9.071,8.901,7.987,8.143,14.469,13.982,13.76,15.095,11.194,9.364,14.571,14.98,10.038,10.405,15.019,14.039,10.024,8.497,13.765,12.93,14.776,15.109,11.049,10.862],"script":[4.408,3.551,3.681,3.097,2.664,5.267,5.204,3.574,3.544,5.387,4.531,3.81,3.278,4.256,3.448,5.462,4.726,4.616,4.134,3.829,3.011,2.733,3.5,5.068,3.631],"paint":[4.122,3.561,3.339,3.913,3.468,4.008,4.57,3.291,3.52,3.837,3.09,3.73,3.868,4.207,3.659,4.054,3.307,3.63,3.902,3.701,3.739,4.482,4.342,4.63,2.374]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"05_swap1k","values":{"total":[171.38,168.035,169.54,166.465,165.707,172.018,165.902,165.447,169.929,167.917,169.872,165.185,161.863,170.475,167.634],"script":[27.521,24.871,26.044,24.41,22.981,26.854,24.167,25.252,23.788,24.15,24.422,24.61,25.04,27.593,25.784],"paint":[142.647,142.022,141.424,141.85,142.487,144.592,138.636,140.025,144.596,142.11,144.522,139.32,135.898,141.99,141.142]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.153,17.756,17.283,17.228,17.165,18.095,17.206,19.15,17.102,19.015,17.115,17.408,16.841,20.386,17.361],"script":[2.297,2.009,2.223,1.57,1.558,1.946,2.219,2.136,2.153,2.213,1.872,2.087,1.584,2.359,1.855],"paint":[15.016,14.458,13.78,14.194,14.114,14.186,14.303,14.963,13.922,15.294,13.996,14.39,14.013,15.769,13.92]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"07_create10k","values":{"total":[590.128,587.339,588.028,587.635,593.031,596.426,582.688,584.272,569.299,596.812,584.76,578.254,600.121,575.324,594.629],"script":[231.9,233.771,232.088,233.137,232.682,237.941,233.565,229.068,231.636,234.225,235.037,235.193,236.35,232.491,236.471],"paint":[349.068,345.396,343.986,346.94,349.362,349.246,341.581,344.067,327.901,352.749,341.374,335.808,355.517,332.178,353.586]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.318,53.304,73.606,72.088,72.12,69.916,70.547,71.922,70.769,52.351,54.887,52.931,54.651,54.032,69.332],"script":[13.833,13.208,13.908,13.9,13.943,12.9,12.853,13.134,13.156,12.869,13.672,13,12.987,13.266,13.109],"paint":[40.998,39.494,40.449,40.057,38.579,39.494,39.263,40.083,39.571,39.062,39.703,39.389,40.341,39.441,38.26]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.603,19.558,20.086,20.209,21.451,19.887,15.966,20.602,19.159,16.666,20.141,20.348,19.893,20.47,19.314],"script":[15.571,15.462,15.778,15.71,17.38,15.788,13.511,15.973,15.101,15.014,15.234,15.795,15.399,16.388,15.545],"paint":[3.84,3.509,3.107,3.083,3.066,3.115,2.352,3.822,3.47,1.506,2.693,3.38,4.195,2.971,2.943]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9850492477416992]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.462224006652832]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.05589485168457]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8766345977783203]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.37122058868408]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.45703125]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.14453125]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[216.2]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"01_run1k","values":{"total":[50.922,51.109,49.404,48.901,50.01,49.79,48.088,50.04,50.391,47.142,50.202,46.711,51.242,49.03,49.426],"script":[15.695,16.472,15.405,15.204,15.552,15.42,15.008,16.1,16.19,14.992,15.71,15.041,15.86,15.562,15.33],"paint":[34.695,34.214,33.554,33.282,34.037,33.936,32.661,33.468,33.751,31.732,34.04,31.252,34.928,33.057,33.654]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"02_replace1k","values":{"total":[54.37,53.993,53.625,55.466,53.168,54.131,53.626,53.484,53.162,53.659,53.736,53.665,54.182,53.813,53.993],"script":[17.87,17.857,18.124,18.17,18.1,18.158,18.095,17.366,17.956,18.232,18.144,18.227,18.544,18.227,17.572],"paint":[36.066,35.666,35.051,36.828,34.604,35.542,35.055,35.672,34.762,34.983,35.157,34.978,35.204,35.141,35.952]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.355,20.777,20.412,21.798,20.294,20.582,21.914,20.223,20.728,20.75,20.549,20.519,21.415,21.944,20.669],"script":[5.366,4.505,4.768,4.464,4.613,5.075,6.236,4.68,4.772,4.454,5.074,4.585,5.211,5.657,5.28],"paint":[14.107,14.854,14.303,14.286,13.87,14.516,14.135,13.801,14.311,14.551,13.631,14.943,15.19,15.515,14.269]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"04_select1k","values":{"total":[4.392,3.589,4.024,3.693,3.038,3.505,3.191,3.786,3.678,3.714,3.714,4.04,4.041,3.87,4.612,4.371,3.708,3.638,3.728,4.007,3.645,4.127,3.13,3.352,3.531],"script":[2.476,1.316,0.987,0.914,0.284,1.269,1,1.03,1.434,1.617,1.171,0.929,0.975,1.321,1.264,1.737,0.986,1.076,1.006,1.071,1.278,1.264,0.624,0.937,1.581],"paint":[1.743,2.158,2.327,2.436,2.648,1.497,2.092,2.221,1.377,1.97,1.734,2.978,2.332,2.428,2.811,1.128,2.581,1.547,2.582,2.245,1.765,2.729,1.398,2.28,1.822]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"05_swap1k","values":{"total":[165.245,167.414,166.726,166.905,165.511,165.944,168.182,167.645,168.206,166.092,166.969,164.883,165.159,165.129,171.679],"script":[23.298,23.788,22.941,23.138,22.235,22.944,24.05,22.521,24,23.512,23.277,22.856,22.562,23.698,22.413],"paint":[139.798,141.859,141.274,142.292,141.064,141.386,141.385,142.992,142.559,140.278,141.529,139.962,140.599,140.128,147.298]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.526,16.09,16.1,16.435,16.534,15.942,16.699,15.974,16.49,16.542,16.03,16.062,15.987,16.01,16.362],"script":[1.249,1.201,1.065,1.233,1.239,1.235,1.115,1.578,1.257,1.281,0.972,0.958,1.245,1.423,1.06],"paint":[14.545,14.115,14.126,14.114,14.556,13.929,13.91,13.638,14.442,14.05,13.743,14.369,13.716,13.839,14.551]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"07_create10k","values":{"total":[625.35,622.833,625.373,625.399,623.277,619.822,622.253,618.209,622.634,621.71,621.25,614.925,618.32,616.969,618.238],"script":[269.154,267,269.909,269.03,266.453,268.009,268.41,265.286,268.077,266.877,263.541,263.049,265.604,264.648,268.119],"paint":[349.312,349.113,348.701,349.611,350.129,344.989,347.113,346.155,347.837,348.056,350.509,345.182,345.99,345.656,343.474]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.224,56.241,55.986,55.916,56.345,56.519,55.969,56.304,56.349,56.913,55.009,57.56,56.752,58.161,55.307],"script":[15.564,16.054,15.879,15.986,16.117,16.483,15.862,16.499,15.952,16.045,15.659,16.406,16.013,16.302,15.363],"paint":[41.625,39.312,39.187,39.006,39.321,39.156,39.041,38.916,39.476,39.97,38.452,40.238,39.856,40.79,39.046]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.102,15.956,15.728,15.311,15.2,15.102,15.633,16.977,15.819,16.252,16.687,15.486,16.155,14.824,15.486],"script":[14.195,14.252,13.748,13.88,13.401,13.527,13.457,14.836,13.127,14.132,14.708,13.55,14.059,12.92,13.34],"paint":[2.772,1.318,1.157,0.376,1.109,1.457,2.067,2.049,1.805,2.021,1.731,1.595,2,1.539,1.159]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9822511672973633]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.212015151977539]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.593527793884277]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0958242416381836]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.55936145782471]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[136.7998046875]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[39.5966796875]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.4]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[48.901,50.024,48.603,49.308,49.496,48.518,48.109,48.834,49.358,50.388,50.553,50.047,48.171,50.421,48.218],"script":[15.032,15.719,14.915,15.625,16.075,15.322,14.636,14.8,15.206,16.027,16.086,15.705,14.694,15.316,14.451],"paint":[33.43,33.877,33.24,33.266,32.983,32.751,33.056,33.625,33.731,33.938,34.003,33.914,33.05,34.682,33.349]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[56.906,55.659,55.978,55.276,56.005,55.89,55.608,55.022,55.105,56.572,57.938,56.323,56.34,56.267,55.988],"script":[19.407,20.196,19.998,19.326,20.209,20.044,19.717,20.087,19.422,20.219,21.555,19.197,19.831,20.298,19.591],"paint":[36.353,35.013,35.37,35.313,35.335,35.373,35.22,34.273,34.994,35.918,35.909,36.597,35.911,35.516,35.714]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.239,21.734,20.62,22.21,21.202,22.365,22.234,21.09,22.066,21.445,22.197,20.842,21.037,21.007,20.765],"script":[6.163,4.91,5.017,5.298,5.267,5.485,5.551,5.155,5.342,5.132,5.761,4.623,5.567,5.09,5.283],"paint":[14.141,14.824,14.275,15.33,14.669,13.98,15.004,14.482,14.59,15.577,14.758,15.438,13.365,14.59,13.977]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[5.657,6.54,6.055,6.822,5.837,5.785,5.263,5.517,6.057,5.873,6.808,6.439,6.114,6.479,5.752,6.161,6.255,6.447,5.766,5.601,6.046,5.937,6.451,5.937,5.948],"script":[3.107,3.294,3.743,3.444,3.408,2.658,3.026,2.84,3.481,2.788,3.868,3.325,3.082,3.349,3.851,3.02,2.962,3.387,3.512,3.368,3.026,3.4,3.73,2.877,3.191],"paint":[2.408,2.118,2.176,2.725,2.119,2.99,1.943,2.546,2.147,2.949,1.152,2.862,2.165,3,1.184,3.003,2.692,1.777,0.885,2.112,1.933,2.406,1.692,2.92,2.361]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[165.545,165.171,163.975,167.725,164.902,166.848,162.889,167.714,162.56,163.859,164.266,167.081,166.483,165.839,169.024],"script":[25.922,24.173,24.466,23.182,24.237,22.126,23.425,24.269,23.649,23.663,23,24.098,23.256,25.41,23.419],"paint":[138.346,139.906,137.89,142.721,138.777,143.235,138.099,141.514,137.646,138.271,138.594,140.725,140.982,138.007,143.698]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.653,17.335,16.592,17.25,17.158,16.686,17.809,16.214,16.662,16.912,16.526,17.433,16.52,16.686,16.712],"script":[1.709,1.73,1.358,1.418,1.305,1.371,1.46,1.644,1.679,1.423,1.395,1.36,1.576,1.6,1.327],"paint":[14.042,14.622,14.444,15.036,15.098,14.531,15.281,14.149,13.864,14.117,14.069,15.066,14.157,14.299,14.656]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[643.511,641.384,633.691,636.722,639.314,644.369,634.959,638.916,641.522,633.377,631.02,635.496,633.727,631.572,632.747],"script":[283.546,285.892,281.612,281.475,281.268,286.621,282.365,285.637,285.735,281.9,278.807,281.662,281.008,279.018,279.972],"paint":[353.09,348.549,345.297,348.541,351.122,351.044,345.822,346.478,349.034,344.692,345.484,347.115,346.027,345.91,346.062]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.3,53.988,54.181,54.374,54.627,55.095,55.241,54.164,55.767,56.561,54.61,54.349,55.459,56.059,53.736],"script":[15.16,15.427,15.48,14.916,15.404,15.637,16.013,15.098,15.822,16.224,14.847,15.243,15.441,15.624,14.542],"paint":[37.709,37.267,37.818,38.587,38.353,38.242,38.347,37.868,38.813,38.967,38.86,38.063,39.113,39.517,37.8]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.319,16.851,17.236,16.418,18.088,14.948,15.792,16.385,16.566,16.645,15.101,14.99,16.43,16.868,15.988],"script":[15.391,15.159,14.669,15.149,15.323,13.007,14.129,14.201,14.657,14.252,12.354,12.968,13.867,14.933,13.608],"paint":[1.838,0.79,2.468,1.173,1.721,1.144,0.776,2.074,1.813,1.373,1.724,1.506,1.815,1.188,1.04]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.328953742980957]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.123894691467285]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.707677841186523]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6571340560913086]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.36130619049072]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1044921875]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2158203125]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[290.4]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"01_run1k","values":{"total":[51.687,51.189,51.409,52.048,51.018,50.266,51.265,50.94,52.201,51.051,50.738,50.008,51.754,51.462,50.968],"script":[17.113,16.874,17.203,17.894,17.079,17.221,16.96,17.422,17.7,17.058,17.233,16.108,17.624,17.271,17.182],"paint":[34.127,33.892,33.781,33.719,33.507,32.62,33.879,33.078,34.045,33.569,33.076,33.474,33.682,33.759,33.367]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"02_replace1k","values":{"total":[60.494,60.409,59.246,59.32,59.173,59.351,60.088,59.446,58.402,60.516,59.729,59.325,58.861,59.586,58.834],"script":[23.52,23.641,23.041,23.888,22.75,23.396,23.254,23.818,23.051,23.323,23.809,23.536,22.984,23.469,23.309],"paint":[36.471,36.311,35.76,35.001,35.949,35.498,36.37,35.192,34.921,36.747,35.483,35.355,35.439,35.679,35.103]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.977,21.213,21.966,22.029,22.277,22.113,21.722,21.89,21.072,21.478,21.9,23.275,22.05,22.615,21.623],"script":[6.419,5.718,6.172,6.483,6.79,5.91,6.061,5.47,5.632,5.999,6.185,6.367,6.182,5.722,5.386],"paint":[14.858,13.467,14.631,13.931,14.482,15.161,14.22,14.935,13.255,14.013,13.853,15.271,14.682,15.639,14.678]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"04_select1k","values":{"total":[5.233,6.293,6.32,6.735,5.857,5.522,5.775,6.361,6.855,5.312,6.336,6.209,5.678,5.921,5.178,5.698,5.181,6.524,6.198,5.901,5.355,5.325,5.427,6.02,5.705],"script":[3.049,3.369,3.329,3.873,3.43,2.871,3.13,2.855,3.103,2.247,3.527,3.046,3.217,3.423,2.763,2.752,2.736,3.411,3.445,3.343,2.812,2.527,2.901,2.847,2.901],"paint":[2.045,2.006,2.054,2.713,2.301,1.415,1.699,3.363,3.097,2.926,1.885,2.19,1.722,2.361,1.953,2.805,2.333,2.969,2.219,1.579,2.402,2.697,1.98,3.025,2.658]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"05_swap1k","values":{"total":[180.229,177.321,164.569,159.079,169.072,168.891,170.035,165.631,167.295,169.772,175.207,171.686,164.532,166.542,169.981],"script":[27.544,26.881,22.247,21.582,22.944,23.053,23.421,24.386,24.29,27.916,27.869,26.189,23.087,23.781,23.552],"paint":[149.79,147.782,140.48,135.893,144.262,144.491,145.506,138.874,141.14,139.377,145.762,143.939,139.788,141.25,144.551]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.236,16.7,17.203,17.744,16.888,17.077,17.047,17.133,16.782,17.16,16.377,16.612,16.741,16.774,16.913],"script":[1.944,1.511,1.878,1.876,1.669,1.435,1.791,1.622,1.802,1.44,1.689,2.008,1.452,1.838,1.647],"paint":[14.522,14.144,14.281,15.04,14.213,14.923,14.521,14.639,14.215,14.915,13.831,13.861,14.212,14.091,14.506]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"07_create10k","values":{"total":[634.563,623.98,622.099,627.395,627.647,620.256,623.681,622.961,622.637,622.063,626.068,625.345,627.944,628.97,627.212],"script":[273.665,269.771,270.235,275.557,275.478,267.986,271.96,271.337,270.35,271.168,273.86,273.291,274.151,272.094,269.473],"paint":[354.134,347.397,345.243,344.822,345.475,345.58,345.057,344.96,345.584,344.205,345.413,345.315,346.791,350.139,351.005]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.092,57.61,55.036,56.369,56.522,56.356,56.492,56.278,56.19,57.515,56.728,55.972,56.228,56.483,55.529],"script":[16.602,16.024,15.99,16.272,16.93,16.143,15.776,16.107,15.864,16.31,16.311,15.741,16.022,16.126,15.726],"paint":[38.547,40.768,38.196,39.19,38.722,39.336,39.843,39.288,39.375,40.33,39.543,39.342,39.308,39.479,38.926]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[30.127,29.484,28.279,28.659,26.965,29.682,28.461,28.296,28.866,30.007,29.481,29.776,29.252,29.459,29.292],"script":[28.242,27.554,25.819,26.825,24.123,27.26,26.591,26.059,26.992,27.632,27.558,27.619,27.593,27.471,27.769],"paint":[1.793,1.807,2.361,1.737,2.705,2.329,1.072,1.539,1.776,1.747,0.475,1.526,0.791,1.136,1.426]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4197187423706055]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.1031389236450195]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.66383171081543]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.9176483154296875]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.684475898742676]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[197.009765625]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.451171875]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[287.7]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"01_run1k","values":{"total":[45.633,45.255,46.835,46.62,45.151,46.665,46.662,46.462,45.043,44.74,46.191,46.291,45.332,47.263,47.108],"script":[12.099,11.978,13.002,12.329,11.692,12.762,12.979,12.674,12.367,12.353,13.305,11.791,12.223,13.073,13.766],"paint":[33.124,32.852,33.395,33.836,33.048,33.477,33.253,33.355,32.261,31.978,32.471,34.069,32.667,33.764,32.892]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"02_replace1k","values":{"total":[55.254,55.758,55.982,55.811,55.576,54.295,56.066,54.498,55.229,56.573,56.428,55.793,56.204,55.459,55.58],"script":[18.502,19.699,19.231,19.354,19.341,18.636,19.556,18.231,18.467,19.728,20.213,20.008,19.686,19.549,18.686],"paint":[36.26,35.595,36.289,35.994,35.765,35.197,36.027,35.79,36.256,36.384,35.741,35.332,36.05,35.445,36.407]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.842,21.711,21.651,19.993,20.155,22.677,20.919,21.363,21.043,21.686,20.699,21.755,21.145,20.811,20.886],"script":[5.553,5.673,5.643,4.776,4.549,5.919,4.605,5.583,5.63,5.449,5.237,5.763,5.698,5.4,5.093],"paint":[14.266,14.954,14.111,13.994,13.734,15.273,15.285,14.446,14.082,15.279,13.417,14.61,14.114,14.411,14.533]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"04_select1k","values":{"total":[5.054,5.178,5.909,5.656,5.66,6.166,5.468,5.412,5.525,5.378,5.512,4.762,5.698,6.106,6.031,5.026,5.072,6.002,5.345,5.741,6.206,5.347,5.456,4.959,5.69],"script":[2.198,2.721,2.207,3.015,2.328,2.572,2.611,2.608,2.289,2.517,2.93,2.255,2.798,1.998,2.93,2.44,2.477,2.587,2.041,2.826,3.145,2.733,2.968,1.875,3.097],"paint":[2.26,2.333,3.549,2.46,3.171,3.434,1.812,2.152,2.691,2.39,2.441,2.378,2.761,3.958,2.464,2.3,2.448,2.859,1.98,2.079,2.073,1.583,1.716,2.675,2.445]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"05_swap1k","values":{"total":[168.593,169.833,169.605,167.169,166.327,163.745,170.774,163.367,169.382,165.238,163.85,166.001,169.524,167.817,166.613],"script":[26.272,26.787,26.241,24.962,22.881,24.96,23.935,24.198,25.045,23.139,25.76,23.832,24.022,24.884,24.649],"paint":[140.481,141.567,141.764,140.203,141.875,136.237,145.747,137.307,142.602,140.202,136.213,140.007,142.153,141.389,140.468]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.915,16.776,17.995,16.961,17.899,17.313,18.267,16.837,17.171,16.521,16.754,17.846,17.332,16.684,16.782],"script":[1.534,1.789,1.727,1.59,1.72,1.57,2.178,1.593,1.962,1.642,1.456,1.865,1.826,1.856,1.612],"paint":[14.278,14.023,14.826,14.556,15.399,14.671,15.244,14.238,13.807,13.98,14.32,15.188,14.687,13.794,14.353]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"07_create10k","values":{"total":[617.014,620.078,613.467,613.463,611.213,612.417,609.519,608.153,614.835,613.089,616.616,614.319,614.456,610.425,611.39],"script":[255.727,253.61,254.273,253.654,256.052,252.536,253.155,252.813,254.568,254.618,254.401,254.863,254.654,252.215,253.079],"paint":[353.789,359.702,352.352,353.101,348.507,353.201,349.644,348.632,353.523,351.609,355.519,352.79,352.962,351.412,351.634]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.866,50.436,52.064,50.483,51.948,50.098,51.563,49.877,51.773,51.372,50.112,49.375,50.413,51.506,50.648],"script":[12.912,12.086,12.396,11.957,12.912,11.976,13.387,11.756,13.167,12.637,11.822,11.811,12.194,12.57,12.551],"paint":[38.046,37.476,38.771,37.649,38.106,37.237,37.329,37.217,37.679,37.858,37.405,36.647,37.366,38.101,37.236]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.034,27.649,26.865,25.206,27.023,24.628,25.996,25.837,25.895,26.915,26.109,25.796,25.935,24.708,26.178],"script":[25.057,25.864,24.504,23.02,25.433,22.771,24.063,23.649,24.058,24.322,23.807,23.607,24,23.269,23.769],"paint":[1.851,0.818,1.277,2.081,1.473,1.752,1.817,2.046,1.74,2.145,2.201,1.384,1.842,0.404,1.853]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4298133850097656]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.27639102935791]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.879349708557129]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4657669067382812]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.46569538116455]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[218.060546875]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6748046875]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[325.7]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"01_run1k","values":{"total":[53.373,51.516,51.298,51.17,52.168,52.093,53.875,52.458,53.547,52.319,52.043,52.765,51.851,52.303,53.387],"script":[18.531,18.093,18.041,17.975,18.06,18.242,19.242,18.721,18.914,18.047,17.872,18.533,17.852,18.595,19.072],"paint":[34.399,32.959,32.831,32.762,33.661,33.395,34.187,33.293,34.103,33.814,33.714,33.78,33.543,33.257,33.863]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"02_replace1k","values":{"total":[62.394,63.826,64.596,62.195,61.451,63.423,64.242,62.563,62.694,62.146,61.727,62.763,61.998,61.647,62.779],"script":[26.147,27.47,26.826,26.433,25.442,27.025,27.511,26.581,26.574,26.092,25.878,26.509,26.147,25.742,26.541],"paint":[35.804,35.753,37.273,35.293,35.572,35.933,36.231,35.529,35.535,35.596,35.396,35.774,35.393,35.308,35.787]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.158,24.073,26.107,25.337,27.333,26.792,25.493,25.963,26.104,28.255,26.775,27.154,26.604,25.129,26.428],"script":[10.688,8.463,9.549,9.285,9.849,10.418,10.187,10.088,9.574,10.052,10.972,10.207,9.311,8.615,11.004],"paint":[13.278,14.593,14.267,14.267,15.433,14.454,14.19,14.338,15.298,14.851,14.41,16.014,15.185,15.78,13.731]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"04_select1k","values":{"total":[6.337,5.859,6.436,7.442,6.94,7.138,6.211,6.241,5.929,6.551,6.238,6.891,6.944,6.378,6.133,6.293,5.709,7.398,7.07,6.619,5.876,6.35,5.989,6.294,6.554],"script":[3.192,3.434,3.426,4.362,3.541,3.717,3.099,3.654,3.441,3.733,3.468,4.211,3.47,3.08,3.623,3.617,3.457,4.568,4.024,3.788,3.413,3.312,3.359,3.769,3.75],"paint":[2.991,1.282,1.898,2.921,2.498,2.162,2.961,1.491,1.65,1.792,2.159,1.82,2.507,2.796,2.359,1.746,1.466,2.034,2.08,1.959,1.657,2.387,2.041,1.436,2.661]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"05_swap1k","values":{"total":[167.374,171.391,168.578,164.259,165.703,165.278,169.221,167.357,171.471,167.586,166.068,168.138,167.639,168.566,169.568],"script":[28.038,25.398,26.004,26.404,25.457,26.315,25.466,26.861,28.324,27.198,25.228,26.934,26.712,26.293,28.324],"paint":[137.394,143.883,140.766,135.589,138.377,137.309,142.022,138.995,140.98,139.104,138.902,139.06,138.832,140.353,139.113]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[31.267,33.305,32.157,31.754,31.054,32.601,30.829,30.669,30.438,30.799,31.042,31.243,31.01,30.368,30.856],"script":[14.952,16.162,16.227,15.447,15.36,16.193,13.83,14.666,14.712,14.111,14.195,15.413,15.189,13.853,15.002],"paint":[15.378,15.553,14.806,15.411,14.444,15.365,15.709,15.076,14.929,15.699,15.991,15.012,15.04,15.395,15.037]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"07_create10k","values":{"total":[671.626,667.349,670.534,676.974,664.048,678.74,667.806,669.764,673.589,667.366,669.909,674.006,671.697,670.795,668.632],"script":[312.228,312.851,313.787,314.279,311.419,313.851,310.376,313.42,312.313,313.382,312.38,315.676,316.119,314.368,313.602],"paint":[352.512,347.58,350.095,355.867,345.836,358.32,350.465,349.159,354.521,347.193,350.742,351.574,348.892,349.711,348.185]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.74,58.144,57.21,57.435,57.114,60.661,58.813,57.477,57.189,57.174,57.243,56.829,59.744,57.07,57.448],"script":[17.876,17.824,17.509,17.629,17.145,18.278,17.712,17.584,17.01,17.202,17.518,17.089,18.854,16.924,17.394],"paint":[38.957,39.424,38.825,38.92,39.073,41.459,40.034,38.965,39.285,39.078,38.837,38.875,40.003,39.25,39.184]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[33.456,33.728,29.36,30.702,30.837,33.606,33.048,31.939,31.957,29.931,33.246,33.43,30.053,33.082,33.801],"script":[31.365,32.152,27.702,28.329,28.835,30.779,31.32,29.705,29.8,28.004,31.362,31.29,27.751,30.66,31.808],"paint":[1.964,1.263,1.539,2.264,1.132,2.075,1.269,1.591,1.519,1.213,1.396,1.738,1.522,1.39,1.887]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.123021125793457]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.370290756225586]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.093189239501953]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0304813385009766]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.41138362884521]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[158.1181640625]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3681640625]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[235.6]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"01_run1k","values":{"total":[47.482,48.553,47.178,48.467,47.482,48.151,46.56,49.135,48.48,48.838,48.443,48.083,48.31,47.544,48.406],"script":[13.502,14.59,13.617,14.433,13.626,14.23,13.553,14.735,14.547,14.491,13.8,14.021,14.462,13.672,14.461],"paint":[33.537,33.48,33.103,33.603,33.425,33.476,32.564,33.966,33.498,33.917,34.166,33.618,33.402,33.431,33.512]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"02_replace1k","values":{"total":[57.09,55.877,56.857,56.632,55.777,56.575,56.122,56.723,56.061,56.003,57.109,56.177,57.016,56.788,56.368],"script":[20.36,20.188,20.445,20.299,20.371,20.61,20.402,21.03,20.544,20.012,20.954,20.272,20.617,21.02,20.188],"paint":[36.293,35.242,35.838,35.277,34.859,35.52,35.141,35.15,34.985,35.415,35.71,35.337,35.947,35.107,35.326]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.854,22.853,24.394,22.158,22.458,23.331,22.398,23.86,22.838,22.489,22.547,21.142,21.396,21.691,25.204],"script":[6.138,7.039,7.014,5.964,6.681,6.779,6.773,7.023,6.711,6.534,6.334,4.861,5.934,6.384,8.22],"paint":[13.692,14.646,15.549,15.013,15.064,15.081,14.312,15.256,15.12,14.402,13.801,15.408,13.91,13.732,15.864]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"04_select1k","values":{"total":[6.292,5.615,6.067,5.885,5.835,5.318,7.065,5.019,5.411,5.936,5.133,6.251,6.027,6.542,5.502,5.801,6.06,6.237,5.357,5.706,6.54,5.266,7.146,5.123,6.022],"script":[3.033,2.826,3.08,2.884,3.51,2.695,3.423,2.303,2.709,2.885,2.418,3.503,3.163,3.339,2.406,3.023,3.31,3.364,2.824,2.718,2.933,2.994,3.642,2.293,2.749],"paint":[2.027,2.159,2.839,2.371,2.215,2.478,3.019,2.603,2.105,2.535,2.601,2.105,2.102,2.071,2.937,2.221,1.89,2.053,2.425,1.799,3.456,1.78,2.362,1.461,2.063]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"05_swap1k","values":{"total":[164.73,162.191,169.126,163.316,163.98,165.752,170.11,165.045,166.428,165.994,165.738,167.231,163.81,167.066,166.283],"script":[24.891,23.533,21.734,24.326,23.462,24.674,23.98,23.181,25.135,23.019,24.343,24.481,24.042,23.478,21.887],"paint":[138.418,136.957,145.334,137.177,138.577,139.127,144.183,140.731,138.75,140.835,138.358,140.611,137.824,140.149,141.801]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.609,16.931,16.941,17.251,17.189,17.244,17.047,16.672,16.796,16.966,17.116,17.221,17.35,17.079,17.37],"script":[2.171,1.642,1.693,1.753,1.891,2.026,1.912,1.761,1.909,1.905,1.902,1.507,1.96,1.495,1.917],"paint":[13.671,14.536,14.466,14.33,14.566,14.272,14.549,14.17,13.808,14.303,14.512,14.639,13.702,14.589,14.543]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"07_create10k","values":{"total":[625.736,617.172,615.288,617.622,614.787,618.329,618.061,619.436,621.562,618.329,618.191,629.328,619.034,618.225,618.067],"script":[263.822,258.198,260.047,257.688,258.738,260.687,260.356,261.449,262.174,257.75,259.182,261.84,259.806,261.454,259.997],"paint":[355.013,352.262,348.559,353.182,349.327,350.933,350.99,351.273,352.551,353.858,352.073,360.49,352.408,350,351.432]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.02,53.667,54.341,54.943,53.226,54.517,53.988,52.977,55.312,53.643,53.45,54.842,54.456,53.182,53.394],"script":[14.586,13.988,15.124,14.516,13.787,14.295,14.199,14.159,14.628,13.852,14.403,14.527,14.601,13.797,14.233],"paint":[39.494,38.753,38.361,39.427,38.525,39.135,38.872,37.907,39.786,38.903,38.153,39.409,38.967,38.459,38.241]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.933,24.526,25.05,25.429,26.637,25.575,25.632,26.106,25.426,24.873,26.089,25.308,25.674,25.521,25.05],"script":[23.114,23.149,23.176,23.411,24.708,23.908,23.268,23.659,23.542,23.321,23.937,23.22,23.233,23.228,23.229],"paint":[1.72,1.286,1.77,1.925,1.832,1.565,2.271,2.331,1.784,0.985,2.061,1.979,2.301,1.766,1.729]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.040593147277832]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.5970563888549805]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.123587608337402]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9319686889648438]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.528398513793945]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[149.681640625]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.822265625]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[220.7]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"01_run1k","values":{"total":[51.146,48.749,48.844,49.688,49.472,49.256,49.289,48.764,49.633,49.472,51.061,49.694,49.72,49.24,49.831],"script":[16.425,15.322,15.389,15.889,15.54,15.378,15.477,15.697,16.203,15.673,17.032,15.485,15.702,15.446,15.469],"paint":[34.276,33.034,33.042,33.386,33.521,33.46,33.401,32.642,33,33.384,33.605,33.776,33.6,33.378,33.922]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"02_replace1k","values":{"total":[58.426,59.243,58.113,57.667,56.952,57.215,57.335,57.226,57.113,57.336,56.867,57.565,58.039,56.849,57.278],"script":[21.232,21.553,21.745,21.799,21.078,21.784,21.975,21.671,21.324,21.715,21.798,21.672,21.833,21.067,21.794],"paint":[36.758,36.966,35.865,35.307,35.405,34.991,34.785,35.103,35.186,35.078,34.521,35.135,35.751,35.171,34.19]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.692,25.368,24.399,25.574,25.684,25.331,25.343,26.158,25.235,26.395,25.363,25.14,25.704,25.134,24.283],"script":[9.59,9.187,8.468,8.969,8.933,8.767,9.271,9.808,9.407,8.948,8.926,8.659,9.573,9.411,8.26],"paint":[14.153,14.355,14.829,14.729,15.115,14.644,14.164,15.313,14.79,16.363,15.439,15.307,15.033,13.911,14.55]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"04_select1k","values":{"total":[5.913,5.953,5.388,6.316,6.149,6.348,5.935,6.047,6.563,6.224,5.982,5.821,6.604,6.553,5.901,5.535,5.925,5.604,6.217,5.589,5.251,5.275,5.926,6.435,6.183],"script":[2.807,2.753,3.013,3.281,3.418,2.755,2.709,3.529,3.401,2.92,3.057,3.073,3.289,3.654,3.301,2.401,2.22,3.284,3.602,2.547,2.752,2.294,3.11,2.695,3.44],"paint":[2.932,2.812,1.436,2.124,2.117,3.44,2.511,2.363,3.005,3.188,2.792,1.487,3.158,2.668,1.735,2.302,3.208,0.691,1.524,2.434,2.383,1.787,2.327,3.581,2.606]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"05_swap1k","values":{"total":[167.332,173.388,171.543,163.09,166.28,164.333,163.926,162.569,165.507,162.852,168.458,164.157,164.156,167.929,166.506],"script":[25.817,26.905,25.557,24.144,24.107,24.132,24.305,24.163,25.222,23.445,26,24.797,25.686,25.841,24.556],"paint":[139.351,143.78,143.912,136.635,140.74,138.319,137.259,136.229,137.217,137.734,140.861,138.155,137.106,139.183,140.104]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.778,17.972,18.108,17.916,17.876,17.927,17.987,17.93,18.291,18.003,17.727,17.913,17.782,17.553,17.941],"script":[3.033,2.733,2.995,2.792,2.677,2.717,3.351,2.824,2.804,2.754,2.665,2.72,2.836,2.675,2.912],"paint":[14.889,13.829,13.756,14.152,14.426,14.284,13.824,14.173,14.287,14.484,14.089,14.107,14.238,14.118,14.305]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"07_create10k","values":{"total":[632.895,626.829,625.976,631.832,627.178,632.558,628.595,626.103,624.669,632.052,633.075,625.13,629.12,625.813,623.226],"script":[270.24,272.838,265.72,271.671,268.596,268.845,269.397,267.107,268.202,270.193,275.233,266.713,272.182,269.905,266.676],"paint":[355.814,347.289,353.421,353.448,351.904,356.98,352.506,352.347,349.798,355.176,351.129,351.766,350.303,349.127,349.714]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.912,58.377,61.033,58.432,57.136,56.968,57.802,56.597,57.444,56.466,56.614,57.291,56.783,59.064,56.665],"script":[17.305,17.306,17.85,17.417,16.904,17.051,17.339,16.736,17.439,16.806,16.218,17.067,16.42,17.563,16.419],"paint":[39.718,40.02,42.053,40.102,39.335,39.038,39.597,38.992,39.112,38.755,39.528,39.316,39.483,40.593,39.35]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.811,26.257,26.729,27.764,28.033,25.784,26.421,25.731,26.685,27.357,25.952,27.465,25.496,29.01,26.121],"script":[24.474,23.979,24.423,25.356,25.808,24.214,24.008,24.146,24.213,24.798,24.362,25.597,23.888,26.988,23.496],"paint":[1.642,1.38,2.2,2.295,1.569,1.474,1.907,1.48,2.369,2.442,1.475,1.195,0.922,1.728,1.915]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.215799331665039]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.044154167175293]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.615869522094727]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4200658798217773]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.59421730041504]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[210.0068359375]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[55.9921875]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[320.1]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[52.169,52.426,53.316,52.939,52.328,52.836,52.02,53.711,53.951,51.829,52.399,51.267,51.189,52.348,51.209],"script":[18.502,18.124,19.198,18.672,18.078,19.181,18.029,18.53,19.02,18.32,17.96,17.957,17.83,18.349,17.827],"paint":[33.184,33.848,33.664,33.812,33.796,33.2,33.544,34.726,34.467,33.064,33.977,32.872,32.941,33.541,32.949]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[61.614,61.436,61.5,63.902,61.519,63.426,62.335,62.421,63.217,62.482,62.618,63.837,62.457,62.189,62.802],"script":[26.059,25.807,25.946,26.678,25.699,26.108,26.151,26.263,26.096,26.537,26.37,26.22,26.772,26.087,26.52],"paint":[35.094,35.061,35.017,36.77,35.262,36.861,35.735,35.707,36.476,35.342,35.669,37.132,35.096,35.566,35.792]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.713,26.22,27,26.221,25.381,26.262,26.006,26.46,25.399,26.933,25.742,25.871,26.313,26.132,27.936],"script":[9.419,10.201,10.213,10.402,9.617,10.011,9.953,10.688,9.002,10.283,9.912,9.416,10.143,9.631,9.497],"paint":[14.066,14.422,15.618,14.669,14.391,14.153,14.406,14.776,14.755,14.983,14.453,14.103,14.611,15.008,16.899]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.919,6.155,6.664,6.115,6.069,6.311,6.213,6.268,6.576,6.75,6.703,6.303,6.316,5.457,6.822,6.297,5.931,6.33,6.589,6.529,6.649,6.629,5.912,6.907,6.408],"script":[4.001,3.264,3.31,3.524,3.737,3.811,3.706,2.876,3.469,4.469,3.454,3.776,3.783,2.898,3.738,3.912,3.736,3.934,3.816,3.386,3.098,3.778,3.576,3.606,3.828],"paint":[2.324,2.11,2.807,1.439,1.5,2.35,1.511,3.24,2.262,1.431,3.087,1.644,1.913,1.62,2.52,2.258,2.031,1.095,2.2,2.782,2.957,1.867,1.697,2.189,1.619]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[170.519,172.045,168.593,173.591,170.081,169.088,170.87,168.254,165.489,170.035,165.32,171.212,166.343,168.846,167.034],"script":[26.972,28.928,27.03,27.874,27.086,27.884,27.973,26.64,25.357,27.645,24.703,27.653,26.543,28.073,26.339],"paint":[141.886,141.343,139.997,143.972,140.954,139.699,141.44,139.601,137.331,140.207,139.249,141.433,137.435,138.82,137.261]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[31.615,32.162,30.189,31.032,30.873,31.12,32.151,30.595,30.812,30.814,30.858,31.32,31.2,31.571,30.541],"script":[15.611,15.538,14.1,15.097,14.516,14.207,16.257,14.581,15.176,14.88,15.099,15.456,15.573,15.986,14.922],"paint":[15.004,15.626,15.184,14.937,15.251,16.091,14.754,15.2,14.528,14.903,14.647,15.106,14.508,14.695,14.735]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[669.872,668.858,668.332,669.513,665.175,667.559,663.866,663.147,663.271,666.417,663.692,659.019,662.177,662.537,661.936],"script":[311.285,310.153,313.159,313.238,311.74,310.734,311.6,308.614,309.058,312.274,311.158,306.164,309.009,310.77,309.023],"paint":[351.774,351.899,348.348,349.444,346.675,350.1,345.548,347.451,347.506,347.416,345.867,346.139,346.456,345.026,346.209]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.518,57.296,59.109,57.865,57.554,56.829,56.712,57.427,58.108,57.755,57.743,57.426,56.088,57.617,56.217],"script":[18.063,17.26,17.823,18.017,17.517,17.243,17.377,17.736,17.447,17.137,17.682,17.182,17.147,17.637,17.121],"paint":[39.528,39.096,40.079,38.957,39.156,38.705,38.455,38.804,39.76,39.722,39.168,39.37,38.053,39.049,38.203]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[32.574,31.756,29.375,33.29,29.685,31.757,34.871,31.724,32.521,34.155,27.539,32.946,33.662,29.499,33.632],"script":[31.165,29.656,27.144,31.869,27.226,29.5,32.104,30.094,30.904,31.479,25.629,30.883,31.65,27.172,31.545],"paint":[1.284,1.968,1.61,1.315,0.924,2.142,2.619,1.386,0.943,2.559,1.057,1.556,1.893,1.423,1.566]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1622428894042969]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.348502159118652]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.164243698120117]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0858001708984375]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.09882640838623]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[165.7568359375]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.119140625]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[247.2]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"01_run1k","values":{"total":[46.186,45.278,46.006,46.078,45.357,44.895,46.998,45.375,45.662,46.056,45.094,45.434,46.212,46.464,47.643],"script":[12.067,12.19,12.571,12.554,11.894,11.931,12.501,12.045,12.802,12.259,12.166,11.892,12.426,12.038,12.787],"paint":[33.693,32.663,33.022,33.115,33.026,32.537,34.051,32.906,32.439,33.34,32.496,33.102,33.359,34.021,34.381]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"02_replace1k","values":{"total":[53.92,54.165,55.31,54.852,53.61,53.065,53.602,53.794,54.641,55.472,53.824,55.174,53.761,54.374,55.096],"script":[17.506,17.685,18.782,18.395,17.539,17.28,17.871,18.133,18.426,19.016,17.586,18.478,17.897,18.002,18.419],"paint":[35.983,36.041,36.098,35.992,35.623,35.343,35.279,35.217,35.765,36.016,35.79,36.269,35.394,35.916,36.197]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.908,20.46,20.608,21.148,21.09,21.162,22.274,21.952,21.454,20.49,20.275,20.646,20.783,21.749,22.563],"script":[4.96,4.452,4.928,5.488,5.34,4.813,5.367,4.882,5.386,4.725,5.055,4.984,4.993,5.438,5.935],"paint":[15.104,14.034,14.245,14.251,14.391,14.998,14.962,15.653,14.53,14.444,13.415,13.753,14.224,15.027,14.842]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"04_select1k","values":{"total":[4.983,5.013,4.948,4.522,5.504,4.988,5.639,5.038,4.876,4.496,5.067,4.931,5.637,4.692,5.024,4.546,5.158,4.445,6.473,4.775,4.984,5.487,5.571,6.717,5],"script":[2.48,3.109,2.477,2.385,2.783,2.027,2.032,2.499,2.68,2.25,2.363,2.119,2.298,2.175,2.467,1.524,3.084,2.208,2.813,2.214,2.477,2.71,2.727,3.034,2.551],"paint":[1.683,1.136,1.953,2.032,2.592,1.455,3.462,1.606,1.874,1.339,1.991,1.686,2.459,2.398,1.658,2.917,1.193,1.369,3.475,2.43,2.4,2.129,2.472,2.956,2.343]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"05_swap1k","values":{"total":[166.271,175.977,163.971,169.319,168.999,163.049,168.194,166.549,168.713,163.818,168.704,168.276,165.09,167.167,167.339],"script":[23.425,25.296,20.839,22.68,21.606,21.54,23.846,21.6,23.541,21.49,23.93,22.559,21.767,22.91,23.258],"paint":[140.827,148.354,141.524,144.966,145.965,139.88,142.291,142.334,142.201,140.408,142.682,143.983,141.412,142.417,142.041]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.526,16.587,16.535,16.882,16.625,16.514,16.572,16.133,16.247,16.142,16.752,16.615,16.667,16.418,16.523],"script":[1.347,1.31,1.343,1.324,1.643,1.332,1.276,0.949,1.323,1.555,1.369,1.301,1.241,1.283,1.294],"paint":[14.24,14.498,14.243,14.283,14.23,14.121,14.584,14.522,14.187,13.746,14.374,14.524,14.694,14.401,14.476]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"07_create10k","values":{"total":[603.282,603.25,597.446,597.87,604.35,604.458,599.554,601.441,593.882,599.177,593.379,601.771,593.97,587.015,579.2],"script":[248.956,251.239,241.896,244.992,250.311,252.755,249.163,249.873,244.179,247.881,241.315,249.631,242.2,249.828,242.686],"paint":[347.324,345.253,348.776,346.163,347.194,344.955,343.515,344.902,343.007,344.545,345.399,345.422,345.106,330.426,329.822]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.055,54.295,50.209,50.016,49.801,50.883,51.261,51.712,52.13,51.619,49.452,52.998,49.609,49.228,54.003],"script":[12.556,13.401,12.189,12.279,12.477,12.873,12.809,13.4,13.234,12.406,12.517,12.973,12.428,12.349,13.301],"paint":[39.441,39.913,37.202,36.877,36.428,37.098,37.443,37.394,38,38.275,36.035,39.086,36.253,35.938,39.776]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.177,25.319,26.076,25.652,26.713,25.951,24.869,24.882,25.276,24.242,25.434,24.874,26.23,25.488,26.943],"script":[23.899,23.666,24.112,23.552,24.157,24.106,23.197,22.986,22.89,22.544,23.802,22.679,24.038,23.605,24.264],"paint":[2.161,0.72,1.841,1.576,1.863,1.406,0.802,1.804,2.009,1.6,1.541,2.094,2.095,1.787,1.694]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0685653686523438]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.328461647033691]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.780000686645508]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8977985382080078]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.45377826690674]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[156.5859375]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[43.7705078125]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[238.5]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"01_run1k","values":{"total":[43.293,44.841,41.021,44.414,43.518,45.096,41.018,45.219,44.839,44.732,41.767,44.519,44.331,44.807,43.085],"script":[12.699,12.994,10.184,13.331,12.796,13.698,10.301,14.422,13.217,13.17,10.282,13.084,12.562,13.223,12.949],"paint":[30.173,31.444,30.445,30.677,30.302,31.008,30.309,30.405,31.221,31.137,30.96,31.035,31.348,31.188,29.736]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[52.679,57.598,57.103,57.557,57.643,52.103,57.473,57.038,56.178,51.668,56.961,52.629,56.694,51.574,56.475],"script":[23.811,23.451,23.527,23.968,24.058,23.2,23.938,23.455,22.97,22.872,23.524,23.87,23.238,22.764,23.03],"paint":[28.453,33.648,33.141,33.007,33.157,28.477,33.095,33.142,32.775,28.382,33.015,28.327,33.027,28.399,33.02]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.164,19.494,18.849,19.975,20.485,19.385,20.638,21.108,19.882,19.33,20.034,22.766,20.454,20.628,20.455],"script":[3.705,3.794,3.386,3.888,3.255,3.288,4.255,4.358,3.551,3.622,3.683,5.152,3.558,4.572,3.883],"paint":[14.142,14.659,14.25,14.687,15.591,14.8,15.33,15.653,14.857,14.547,15.023,15.718,15.757,14.473,14.361]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.417,4.625,4.433,4.887,3.739,3.994,4.603,4.265,3.478,4.37,4.452,4.243,4.911,4.616,4.282,4.462,4.7,4.954,5.067,3.488,4.407,4.267,5.23,4.603,3.587],"script":[1.097,2.121,1.33,1.784,1.579,1.463,1.903,1.495,1.509,1.929,1.335,1.363,1.606,1.836,1.978,1.715,2.117,1.418,1.88,1.78,1.725,1.107,1.554,1.775,1.578],"paint":[2.605,2.263,1.402,2.006,2.053,2.428,2.58,2.625,1.852,2.286,2.515,2.763,3.102,1.864,2.192,1.816,2.041,3.405,2.589,0.815,1.716,3.019,3.482,1.943,1.901]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[152.462,151.599,152.196,150.74,150.925,151.675,152.693,157.48,152.616,151.75,152.451,154.08,152.912,153.908,150.167],"script":[32.676,32.449,32.764,32.3,33.646,32.705,33.409,33.924,32.851,32.443,33.401,33.737,32.556,35.246,33.339],"paint":[118.675,117.043,117.241,116.622,115.912,117.475,117.64,121.091,116.467,117.738,117.968,118.749,118.06,116.408,115.249]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.359,21.462,21.548,21.414,21.915,20.936,21.644,21.51,21.646,21.92,21.39,21.1,21.517,21.555,21.406],"script":[5.952,6.083,6.011,6.128,6.148,5.758,6.134,6.438,6.559,6.214,5.899,5.749,6.088,6.177,6.199],"paint":[14.659,14.571,14.424,14.511,14.621,13.852,14.573,14.601,14.317,14.743,14.249,14.294,14.658,14.556,14.195]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"07_create10k","values":{"total":[610.929,619.897,620.102,587.583,608.767,612.443,599.207,607.326,614.612,611.306,615.18,607.392,599.441,611.043,616.508],"script":[265.204,268.421,270.426,254.722,258.398,261.644,261.382,254.009,257.865,263.369,267.86,261.267,262.97,264.212,269.132],"paint":[338.859,344.906,343.009,326.051,343.804,344.124,331.025,345.9,350.098,341.264,340.657,339.477,329.794,340.203,340.649]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.354,47.829,46.537,46.768,46.693,48.038,46.782,46.036,47.331,46.756,47.767,48.252,46.943,47.115,46.588],"script":[14.768,13.228,12.911,13.245,13.102,14.445,13.213,12.984,13.506,13.224,13.2,14.475,13.48,13.138,13.115],"paint":[32.716,33.75,32.747,32.717,32.746,32.731,32.72,32.167,32.948,32.681,33.74,32.932,32.665,33.11,32.608]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.947,27.061,29.183,29.134,27.999,27.445,27.105,27.741,28.34,29.456,27.873,29.665,29.333,28.389,26.89],"script":[25.441,24.894,27.583,27.553,26.07,25.743,25.48,25.968,26.604,27.043,26.065,27.567,27.884,26.04,25.196],"paint":[1.451,0.757,1.503,1.459,1.828,1.61,1.181,1.135,1.64,2.316,1.19,1.977,1.365,1.502,0.806]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0580854415893555]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.3572540283203125]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.226499557495117]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.273317337036133]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[58.28588676452637]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[146.181640625]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.4326171875]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[221.2]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"01_run1k","values":{"total":[53.788,54.532,55.085,55.093,55.382,54.07,53.455,54.602,55.601,54.318,55.648,55.122,54.415,54.913,54.04],"script":[19.817,20.22,20.57,20.295,20.579,20.052,20.327,20.237,21.206,20.126,21.425,20.624,20.34,20.492,19.983],"paint":[33.534,33.895,34.086,34.338,34.32,33.585,32.505,33.911,33.921,33.763,33.762,34.063,33.663,33.985,33.61]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[63.026,65.89,62.734,63.782,61.433,62.099,62.303,62.53,64.196,65.268,63.575,65.092,62.62,64.972,64.699],"script":[26.486,27.877,27.32,27.513,26.232,26.339,27.337,26.567,27.737,27.733,27.19,28.312,27.185,27.87,27.218],"paint":[36.033,37.547,34.926,35.823,34.771,35.299,34.527,35.521,36.041,37.073,35.936,36.289,35.006,36.638,37.024]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.542,53.514,53.104,55.27,52.889,56.36,53.689,53.93,53.65,52.795,53.821,55.057,55.466,52.291,53.207],"script":[36.312,36.831,36.755,38.89,35.998,39.27,37.509,37.285,37.21,35.717,37.677,37.522,38.196,35.759,37.51],"paint":[14.91,15.626,13.555,15.09,15.159,15.772,14.302,14.881,14.664,15.596,14.438,14.936,16.244,15.384,14.215]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"04_select1k","values":{"total":[39.57,39.789,40.015,37.409,38.976,39.739,39.421,40.906,38.03,38.454,40.019,40.606,38.488,38.309,39.266,39.397,37.158,38.395,40.266,38.745,38.01,38.396,39.245,40.02,40.013],"script":[36.896,35.795,36.047,34.978,34.817,36.268,35.208,37.55,35.205,35.242,36.204,36.955,35.229,34.901,36.137,36.262,34.285,35.03,36.259,35.641,35.465,34.763,35.637,36.677,36.795],"paint":[1.544,3.099,3.041,1.2,3.229,2.752,2.777,3.136,1.967,3.037,3.155,2.978,2.219,2.36,2.316,2.957,1.86,2.429,2.787,2.188,1.903,2.944,2.178,2.732,2.572]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[197.586,197.727,199.064,205.679,199.938,204.094,196.708,197.518,201.821,197.174,200.566,198.862,201.481,203.836,199.317],"script":[57.574,58.755,57.226,60.229,59.593,56.952,58.084,58.643,59.158,58.435,59.614,58.513,59.358,61.924,58.679],"paint":[138.12,137.335,139.934,143.613,138.47,145.516,137.083,137.624,139.946,136.592,138.756,138.422,138.982,139.964,138.56]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.72,33.101,36.033,33.674,33.11,33.974,34.54,34.685,33.77,33.873,34.168,33.302,34.538,35.051,33.74],"script":[17.888,17.791,19.558,17.455,17.975,18.025,18.121,18.371,18.395,18.157,18.528,18.014,18.567,19.532,18.279],"paint":[14.412,14.525,15.53,14.678,14.339,15.102,15.625,15.534,14.482,14.951,14.515,14.244,14.749,14.66,14.369]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"07_create10k","values":{"total":[681.199,673.583,676.022,668.814,664.398,663.331,679.926,665.192,670.18,672.014,688.438,662.412,682.195,650.436,665.469],"script":[315.221,312.944,325.646,316.014,314.918,309.01,327.042,313.576,309.679,312.072,320.116,312.803,315.81,300.835,312.223],"paint":[358.66,353.879,343.435,346.133,342.441,347.353,346.176,344.921,353.71,352.671,361.35,342.994,359.189,342.827,346.205]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[67.124,66.534,67.689,66.583,68.787,67.589,67.792,68.342,67.79,67.748,68.858,68.014,66.409,67.251,69.049],"script":[27.2,27.451,27.477,26.699,26.866,27.409,28.013,27.577,28.022,27.136,27.844,28.363,26.939,27.318,27.609],"paint":[38.976,38.2,39.275,38.929,40.85,39.213,38.888,39.797,38.912,39.713,40.1,38.704,38.521,39.008,40.495]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[30.984,29.684,29.915,29.487,28.279,30.323,30.099,30.62,30.462,30.148,28.836,28.039,33.916,28.834,29.072],"script":[28.062,27.929,28,27.063,26.642,28.139,27.033,28.408,28.419,27.962,26.441,26.878,31.153,26.66,26.512],"paint":[2.272,1.663,1.23,1.923,1.544,0.926,2.511,2.116,1.274,2.065,1.253,0.432,2.49,2.07,2.462]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5592403411865234]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.662574768066406]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.980984687805176]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.8895692825317383]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.381916999816895]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[225.8232421875]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[61.8857421875]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[334.9]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"01_run1k","values":{"total":[46.24,46.432,45.694,45.245,45.687,46.212,46.642,46.65,46.117,45.876,46.086,45.729,46.305,46.644,47.134],"script":[12.597,12.788,12.811,12.413,12.231,12.869,12.457,13.318,12.433,12.814,13.021,12.689,13.094,13.368,13.356],"paint":[33.213,33.217,32.45,32.42,33.023,32.894,33.75,32.906,33.256,32.653,32.635,32.644,32.788,32.86,33.355]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"02_replace1k","values":{"total":[56.695,57.13,57.415,58.591,57.173,56.442,57.211,56.762,58.332,57.602,56.971,57.384,57.117,57.254,57.184],"script":[19.818,19.513,20.093,21.139,20.343,19.315,20.92,20.256,21.244,20.438,20.503,20.04,19.964,20.371,20.261],"paint":[36.392,37.141,36.87,37.01,36.357,36.671,35.837,36.042,36.623,36.723,35.999,36.88,36.689,36.405,36.458]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.032,22.006,21.417,21.845,21.133,20.483,21.757,22.568,21.191,22.019,21.831,21.085,21.624,21.321,21.11],"script":[5.33,5.588,4.721,5.336,5.068,5.265,5.427,6.378,4.501,5.705,5.535,5.732,5.26,5.309,6.142],"paint":[13.69,13.949,14.79,15.172,15.011,13.258,14.885,14.411,14.215,14.904,15.188,14.171,15.271,14.719,13.904]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"04_select1k","values":{"total":[5.701,5.206,4.227,4.222,4.951,4.365,4.849,4.872,4.964,4.911,5.3,5.408,4.856,5.609,5.059,5.233,5.541,4.643,5.248,5.356,5.265,4.599,4.984,4.851,5.668],"script":[2.945,2.01,1.484,1.671,2.3,2.084,1.93,2.557,2.073,1.524,2.427,2.531,1.484,2.574,1.76,2.428,2.55,2.398,2.118,2.5,2.586,2.5,2.24,2.316,2.357],"paint":[2.615,3.042,2.623,1.995,2.113,1.139,2.7,1.386,2.008,3.23,2.541,2.145,3.256,2.876,2.25,2.684,2.863,1.623,2.978,2.705,1.36,1.22,1.981,2.334,3.005]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"05_swap1k","values":{"total":[165.893,163,166.505,166.371,161.948,164.715,163.236,163.943,160.654,164.208,168.298,160.262,165.404,162.279,164.036],"script":[23.428,21.631,23.155,23.477,23.738,22.58,21.458,22.727,21.875,22.221,23.706,21.699,23.977,22.285,21.493],"paint":[139.029,139.377,141.144,141.109,137.095,140.062,140.641,138.905,137.049,140.18,142.975,137.138,139.3,138.318,140.581]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.175,16.055,16.348,16.42,16.622,16.813,16.896,15.976,16.371,16.572,16.272,16.359,16.427,16.394,16.403],"script":[1.379,1.269,1.151,1.269,1.586,1.66,1.433,0.955,1.283,0.94,1.298,1.106,1.326,1.486,1.309],"paint":[13.842,13.932,14.292,14.422,13.95,14.327,14.7,14.256,14.06,14.896,14.097,14.469,14.366,13.98,14.391]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"07_create10k","values":{"total":[617.427,608.99,620.023,617.074,619.568,615.393,615.589,616.808,613.92,619.684,610.991,612.512,615.418,614.035,617.399],"script":[255.618,253.613,257.387,256.435,259.301,255.447,255.822,256.72,257.047,258.286,253.49,255.954,257.926,255.973,256.442],"paint":[354.932,348.759,355.708,353.998,353.438,353.193,353.114,353.432,350.169,354.741,350.844,349.748,350.667,351.34,353.641]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.49,55.49,53.468,52.357,53.97,55.247,53.964,53.06,52.666,52.837,53.898,52.325,55.911,54.704,53.768],"script":[14.554,14.313,13.594,13.628,14.154,14.032,13.9,13.829,13.588,13.573,14.927,13.984,14.354,14.042,14.014],"paint":[39.95,40.296,38.907,37.771,38.866,40.275,39.17,38.303,38.198,38.356,38.055,37.436,40.616,39.716,38.831]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.634,26.499,24.466,26.526,26.605,24.901,27.146,26.913,24.837,27.232,25.205,26.914,26.542,25.745,25.929],"script":[23.674,24.671,22.582,24.35,24.937,23.523,25.011,24.575,22.481,25.618,23.322,25.044,25.175,23.427,23.747],"paint":[1.09,1.725,0.604,2.071,1.208,0.367,1.617,2.237,2.259,1.368,1.78,1.767,0.387,2.19,1.576]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9934473037719727]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.961178779602051]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.538423538208008]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8704748153686523]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.20715141296387]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[141.8896484375]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.0517578125]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.7]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"01_run1k","values":{"total":[47.804,46.571,47.156,48.348,47.803,49.858,47.777,47.735,48.694,47.293,47.987,47.888,49.416,48.539,48.725],"script":[14.085,13.897,13.824,14.803,14.347,15.306,14.176,14.526,15.477,14.062,14.309,14.191,15.474,15.032,14.707],"paint":[33.267,32.257,32.923,33.109,33.006,34.109,33.159,32.777,32.781,32.788,33.243,33.247,33.469,33.054,33.573]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"02_replace1k","values":{"total":[56.83,58.556,56.664,57.483,58.047,57.209,57.522,57.568,56.669,58.042,56.987,56.298,56.841,57.267,57.123],"script":[20.459,22.285,20.381,20.962,21.525,21.07,22.183,22.018,21.473,21.551,21.098,20.409,20.375,20.859,21.304],"paint":[35.884,35.785,35.85,36.011,36.079,35.677,34.821,35.134,34.668,36.055,35.352,35.348,36.022,35.954,35.388]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.36,27.043,25.268,25.076,25.088,24.854,24.65,24.898,25.037,24.777,24.363,25.691,24.636,25.598,24.946],"script":[9.463,10.513,9.442,9.543,9.286,9.14,8.486,9.533,9.088,9.761,8.397,9.991,9.136,9.963,9.491],"paint":[14.465,14.964,14.496,14.208,14.29,13.94,14.384,14.379,14.642,13.774,14.6,13.607,14.202,14.34,13.946]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"04_select1k","values":{"total":[8.85,8.878,8.379,9.191,8.72,8.513,7.754,8.642,9.043,8.393,8.342,7.841,8.832,8.913,8.452,8.417,8.378,8.267,8.457,9.188,8.438,8.439,9.102,9.215,7.854],"script":[6.019,6.146,6.331,5.988,5.914,5.848,5.215,5.382,6.118,5.73,5.864,5.01,6.058,5.977,6.108,5.094,5.296,5.498,5.85,6.47,5.384,5.628,6.204,6.121,5.767],"paint":[2.111,1.941,1.896,2.135,2.686,2.361,2.028,3.118,2.004,1.649,2.336,2.259,2.414,2.778,1.416,3.208,2.967,2.633,1.158,2.179,1.957,2.67,2.756,2.946,1.949]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"05_swap1k","values":{"total":[177.527,172.496,173.054,171.373,172.254,171.891,168.153,172.455,169.916,170.753,170.894,173.142,170.797,169.07,170.966],"script":[30.795,27.726,30.102,26.852,30.158,26.484,26.641,27.799,28.705,29.007,27.899,28.492,29.977,27.15,28.844],"paint":[144.881,142.819,141.379,142.845,140.469,143.347,139.283,143.489,139.203,140.593,139.82,142.357,138.195,139.359,140.289]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.528,18.449,18.34,19.158,18.453,18.483,18.406,18.573,18.608,18.474,18.591,18.485,18.359,18.453,18.529],"script":[3.627,3.337,3.203,3.375,3.227,3.413,3.513,3.308,3.257,3.133,3.305,3.504,3.735,2.854,3.45],"paint":[14.065,14.384,14.443,14.764,14.177,14.261,14.113,14.123,14.59,14.611,14.513,14.004,13.788,14.868,13.934]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"07_create10k","values":{"total":[620.953,618.999,619.636,624.306,614.423,621.216,622.466,614.454,625.953,621.265,625.381,619.696,618.624,621.735,619.433],"script":[270.687,268.106,265.323,269.624,263.579,270.225,269.876,258.628,268.933,269.879,267.581,268.107,267.23,268.993,267.808],"paint":[343.435,344.236,347.63,347.937,344.073,344.338,345.848,349.152,349.346,344.669,351.024,344.776,344.7,345.839,344.912]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.557,53.973,54.813,54.493,54.084,58.673,58.323,58.241,58.525,58.167,58.392,57.568,55.897,56.619,57.668],"script":[17.257,16.324,16.165,16.207,16.066,17.1,16.988,17.872,18.018,17.812,17.142,18.657,16.848,17.186,17.888],"paint":[40.384,36.766,37.741,37.334,37.119,40.615,40.355,39.477,39.608,39.474,40.346,38.011,38.237,38.538,38.853]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.064,24.664,25.78,24.859,24.619,23.968,24.695,25.366,24.329,24.59,25.545,24.9,24.516,24.746,24.963],"script":[23.051,22.389,23.578,22.932,22.675,22.681,22.829,22.706,22.517,22.658,24.12,22.682,22.998,22.437,22.939],"paint":[1.299,2.18,2.1,1.83,1.837,1.193,1.762,2.556,1.709,1.826,1.307,2.113,1.369,1.798,1.579]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0842256546020508]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.940828323364258]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.558403015136719]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2211170196533203]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.2567777633667]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.8505859375]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.4306640625]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.2]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"01_run1k","values":{"total":[49.451,50.174,48.767,49.889,49.578,49.883,48.896,49.086,50.045,50.324,48.824,48.613,48.757,49.045,49.757],"script":[15.247,16.271,15.192,16.073,15.838,15.783,15.131,15.403,15.73,15.664,15.291,15.23,15.373,15.499,15.329],"paint":[33.771,33.432,33.15,33.359,33.296,33.659,33.332,33.239,33.852,34.224,33.114,32.96,32.946,33.124,33.974]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"02_replace1k","values":{"total":[58.63,58.083,57.792,59.064,58.579,59.991,59.313,59.522,58.507,59.745,58.867,58.988,59.246,58.644,59.498],"script":[21.682,21.783,21.732,22.293,22.236,22.826,22.884,22.492,22.026,22.601,22.419,21.733,22.532,22.073,22.528],"paint":[36.398,35.852,35.593,36.319,35.872,36.703,35.983,36.566,35.981,36.663,35.977,36.783,36.239,36.117,36.51]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.459,23.822,22.843,22.905,24.024,22.785,22.509,24.798,22.626,22.492,23.176,24.66,22.482,22.058,23.337],"script":[7.006,7.797,6.577,6.971,7.248,7.308,6.82,7.169,6.896,6.718,7.693,6.881,7.429,6.109,6.912],"paint":[14.554,14.519,14.911,14.126,15.377,13.669,13.572,16.312,14.214,14.015,13.339,16.413,13.668,14.351,15.053]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"04_select1k","values":{"total":[5.892,6.06,6.152,6.58,5.583,5.678,5.14,5.118,6.411,6.082,5.959,5.791,5.895,6.76,6.196,6.158,5.824,5.651,5.887,5.454,5.922,5.821,5.151,5.551,7.197],"script":[3.06,3.508,3.294,3.683,2.878,2.669,2.817,2.532,3.43,3.151,2.889,3.103,3.079,3.692,3.537,3.041,3.017,2.665,2.522,2.659,2.823,2.768,2.881,2.857,3.137],"paint":[2.279,0.55,2.009,1.549,1.856,2.86,1.172,2.019,2.305,2.308,2.926,1.668,2.687,2.048,2.126,1.779,1.609,2.312,3.223,1.698,2.322,2.923,2.121,1.967,3.816]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"05_swap1k","values":{"total":[166.7,164.671,169.161,169.33,165.844,167.203,173.577,166.503,169.201,167.2,171.472,169.028,171.199,172.521,168.036],"script":[24.987,25.1,27.489,26.817,26.664,26.164,27.06,25.011,27.127,27.29,25.253,26.784,25.89,27.106,25.975],"paint":[140.149,137.738,139.518,140.462,137.03,138.54,144.578,139.825,140.224,138.304,144.395,139.958,143.914,143.319,139.301]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.432,17.885,17.423,17.457,17.624,17.933,18.143,17.876,17.818,18.688,17.827,18.479,18.079,17.61,17.399],"script":[2.102,2.416,2.309,2.36,2.242,2.533,2.511,2.451,2.383,2.182,2.424,2.423,2.184,2.16,2.006],"paint":[14.538,14.306,14.028,13.741,14.645,14.624,14.591,14.624,14.653,15.188,14.595,15.252,15.118,14.698,14.651]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"07_create10k","values":{"total":[645.368,642.11,637.23,639.001,643.329,640.694,634.293,641.431,640.63,646.752,638.122,636.564,646.172,635.49,651.424],"script":[284.495,285.352,281.866,282.279,280.741,284.972,280.267,281.653,284.665,286.394,282.75,285.138,283.846,281.139,282.858],"paint":[353.886,350.058,348.357,349.961,355.383,348.95,347.336,353.074,349.254,353.743,348.708,344.143,355.621,347.677,361.832]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.797,55.506,55.083,56.706,56.199,56.217,55.81,54.926,55.793,55.97,55.683,54.758,55.545,54.485,53.845],"script":[17.306,16.21,15.436,16.816,17.255,17.182,15.98,15.837,16.694,16.544,16.134,16.416,16.228,15.594,15.198],"paint":[38.55,38.137,38.837,39.007,38.071,38.152,38.313,38.211,37.708,38.536,38.657,37.474,38.215,37.868,37.463]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"09_clear1k_x8","values":{"total":[29.457,31.622,28.236,29.371,28.981,28.922,31.605,29.194,32.56,29.513,28.607,27.171,26.975,29.61,27.375],"script":[27.854,29.296,25.811,27.737,26.626,27.009,29.67,27.126,29.869,27.334,26.738,25.012,24.917,27.517,24.767],"paint":[1.485,2.222,1.889,1.21,1.223,1.804,1.192,1.961,2.121,2.075,1.782,1.185,1.077,1.958,2.14]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.019474983215332]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.378084182739258]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.000672340393066]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.896714210510254]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[60.610809326171875]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.8798828125]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.8134765625]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[227.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[60.856,59.165,59.269,57.741,66.424,63.01,65.168,59.017,58.607,63.105,62.903,64.12,59.806,64.734,63.683],"script":[26.622,25.239,25.042,25.194,26.204,26.066,24.737,25.168,25.137,24.823,25.726,26.437,26.247,25.479,25],"paint":[34.085,33.775,33.677,32.395,34.195,33.726,34.86,33.688,33.319,33.776,33.392,33.855,33.406,33.103,32.264]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[75.696,76.076,68.166,76.079,75.625,77.807,74.094,77.345,77.278,72.1,69.281,67.27,76.568,67.186,69.887],"script":[30.463,30.877,29.177,30.991,29.935,30.409,30.353,30.051,30.203,29.646,29.94,29.526,29.684,29.711,30.061],"paint":[36.873,36.284,36.438,36.967,36.327,36.856,36.319,37.83,36.712,36.092,36.809,35.796,37.104,36.91,36.917]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.038,29.542,31.784,30.598,30.692,28.966,28.859,28.603,30.059,29.525,27.75,29.703,31.08,45.771,29.698],"script":[15.684,13.929,14.058,13.881,13.595,14.59,13.732,14.604,13.702,14.499,12.179,13.819,14.272,15.339,13.486],"paint":[15.316,15.427,15.022,14.414,15.378,14.264,15.003,13.873,15.594,14.067,14.57,15.764,14.41,14.526,13.756]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[9.029,7.647,7.601,8.433,8.418,8.497,10.261,10.904,9.78,7.793,10.36,10.077,9.981,10.533,7.482,7.633,10.51,9.42,7.705,8.264,9.039,12.323,6.759,9.863,8.273],"script":[5.497,4.138,4.316,4.981,5.379,4.193,5.621,3.697,5.099,4.28,3.902,3.973,4.57,3.719,4.822,4.419,4.318,5.368,4.775,5.18,4.303,5.24,3.812,3.555,4.865],"paint":[2.632,2.961,2.797,1.719,2.86,2.575,2.672,3.37,3.233,2.39,1.739,2.929,2.385,2.894,1.614,2.034,2.859,1.987,2.041,2.911,3.007,3.085,2.199,2.981,2.352]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[170.023,189.427,166.979,172.92,189.78,174.123,175.765,163.31,171.025,172.966,168.492,165.376,166.426,180.827,165.994],"script":[26.573,29.453,30.288,29.297,29.372,29.128,27.733,27.035,28.539,30.397,26.519,26.408,27.131,27.212,25.765],"paint":[142.348,143.207,136.111,142.302,143.555,144.184,146.21,135.764,139.061,140.586,141.818,137.793,139.157,137.554,139.772]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[25.615,22.564,24.429,32.528,28.071,27.783,28.778,22.973,32.315,26.539,33.781,24.131,26.117,33.476,35.884],"script":[4.892,4.98,5.127,5.271,5.035,5.41,5.011,5.554,5.069,5.536,5.533,4.8,5.099,5.587,5.376],"paint":[15.243,15.87,16.099,15.638,15.021,15.636,14.851,14.978,15.017,14.966,15.24,15.618,15.939,15.92,15.306]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[689.256,674.975,673.989,668.319,670.745,671.484,679.414,672.627,671.149,670.27,686.132,676.058,689.071,671.69,665.629],"script":[324.867,324.595,324.01,322.665,324.646,325.158,332.461,321.773,324.771,325.892,329.032,326.443,325.532,326.008,320.323],"paint":[362.121,348.272,346.517,343.474,343.533,344.165,344.851,348.641,343.782,342.265,354.953,347.057,359.612,343.319,343.14]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.501,71.67,69.882,68.705,68.329,64.055,70.471,72.454,72.577,73.356,69.88,68.635,69.621,72.664,69.568],"script":[24.639,23.854,23.761,23.64,23.678,23.932,24.067,23.56,23.507,24.166,23.759,23.889,23.826,24.268,23.758],"paint":[37.715,39.12,39.665,39.189,38.497,38.856,38.301,39.459,39.128,39.337,39.38,38.882,38.437,39.634,39.198]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.649,30.095,30.453,30.115,29.534,29.848,30.567,33.218,29.327,29.317,29.763,27.983,28.289,30.809,29.999],"script":[26.932,28.383,29.147,27.922,27.078,27.989,26.732,28.063,27.723,26.729,26.679,26.66,26.529,28.983,27.072],"paint":[1.651,1.654,1.244,1.484,2.393,1.797,1.602,2.152,1.542,1.834,2.184,0.979,1.057,1.732,1.983]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4371309280395508]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.484687805175781]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.168415069580078]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.26486873626709]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.45787334442139]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.7626953125]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.447265625]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[394.9]}},{"framework":"redom-v3.29.0-keyed","benchmark":"01_run1k","values":{"total":[44.383,41.859,43.45,44.904,43.081,43.961,44.191,44.354,43.876,44.355,46.302,43.598,44.7,43.7,43.817],"script":[9.969,8.603,9.883,10.438,9.997,10.173,10.248,9.861,10.135,10.005,10.784,9.766,10.139,9.95,9.99],"paint":[33.962,32.81,33.13,34.003,32.641,33.368,33.497,34.03,33.289,33.916,35.077,33.416,34.15,33.334,33.376]}},{"framework":"redom-v3.29.0-keyed","benchmark":"02_replace1k","values":{"total":[48.957,49.802,49.515,48.417,49.784,49.512,48.704,49.175,48.947,49.56,50.334,48.651,49.671,49.612,49.262],"script":[13.088,13.046,13.153,13.08,13.585,13.278,12.801,12.882,12.984,13.902,13.237,13.055,12.802,13.642,13.705],"paint":[35.38,36.291,35.874,34.904,35.753,35.673,35.419,35.818,35.503,35.172,36.649,35.131,36.42,35.525,35.109]}},{"framework":"redom-v3.29.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.056,17.517,17.774,17.762,17.293,18.297,18.007,18.294,17.744,17.017,17.575,17.945,18.173,17.515,17.241],"script":[2.415,2.721,2.092,2.118,1.301,1.534,1.83,2.386,1.678,1.813,1.792,1.623,2.352,2.259,1.714],"paint":[14.01,13.789,13.425,14.174,14.616,15.77,14.925,14.467,15.015,13.841,14.663,15.248,13.785,13.601,14.205]}},{"framework":"redom-v3.29.0-keyed","benchmark":"04_select1k","values":{"total":[2.858,4.064,3.277,3.131,3.739,3.303,4.016,3.267,2.622,3.324,3.198,3.077,4.231,2.987,3.008,2.875,3.9,4.149,4.652,2.978,3.428,3.698,3.652,2.917,2.913],"script":[0.666,0.911,1.146,0.989,1.458,1.25,1.233,0.857,1.192,0.917,0.955,0.933,1.056,0.952,0.996,0.552,1.627,1.494,1.792,0.222,0.613,0.571,1.679,0.965,0.957],"paint":[2.074,1.944,2.007,1.622,2.176,1.925,2.674,2.304,1.326,2.297,1.409,1.48,3.028,1.178,1.18,1.198,2.166,1.903,1.782,1.63,1.904,2.753,1.137,1.843,1.847]}},{"framework":"redom-v3.29.0-keyed","benchmark":"05_swap1k","values":{"total":[19.273,19.206,19.898,19.027,19.595,18.576,19.586,20.036,19.414,20.377,19.234,19.731,19.984,19.185,19.929],"script":[0.959,0.98,1.701,1.176,0.905,1.26,1.45,1.787,1.674,1.703,1.256,1.544,1.744,1.373,1.284],"paint":[16.006,17.017,16.117,17.179,17.113,16.106,17.121,17.072,16.468,17.311,16.376,17.026,16.59,15.877,17.452]}},{"framework":"redom-v3.29.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.936,15.411,15.112,15.465,15.258,15.394,15.659,15.302,15.99,15.831,15.601,15.869,15.438,15.333,15.361],"script":[0.616,0.569,0.359,0.615,0.558,0.6,0.333,0.563,0.578,0.617,0.46,0.59,0.592,0.474,0.582],"paint":[14.557,14.07,13.712,13.751,13.971,14.063,14.614,14.016,14.466,14.52,14.499,14.622,14.076,13.962,14.024]}},{"framework":"redom-v3.29.0-keyed","benchmark":"07_create10k","values":{"total":[444.131,443.914,447.325,446.295,447.12,443.803,447.184,447.089,448.775,441.912,446.731,442.252,447.202,444.183,443.31],"script":[100.427,100.488,100.968,102.138,100.258,100.316,99.984,100.534,101.502,100.587,100.967,100.399,101.783,102.479,101.608],"paint":[337.084,336.869,339.73,337.514,340.237,336.959,340.716,339.968,340.628,334.793,339.299,335.392,338.887,335.13,335.129]}},{"framework":"redom-v3.29.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.65,50.04,48.653,48.043,48.276,48.816,49.101,48.564,48.023,50.066,48.368,49.907,49.685,49.868,49.945],"script":[10.759,10.602,10.29,10.192,10.177,10.261,10.529,10.535,10.506,10.531,10.157,10.813,10.849,10.717,10.978],"paint":[37.991,38.481,37.45,36.964,37.207,37.658,37.654,37.14,36.63,38.638,37.32,38.196,37.905,38.178,38.11]}},{"framework":"redom-v3.29.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.759,14.679,14.016,14.224,13.98,13.648,13.902,13.499,14.539,14.026,15.331,15.611,14.166,14.115,14.764],"script":[11.935,12.73,12.404,12.379,12.081,11.954,12.009,12.145,12.793,11.795,13.117,13.894,12.381,12.689,12.967],"paint":[1.723,1.188,0.989,1.415,1.167,0.758,1.801,0.756,1.655,1.345,2.115,1.632,1.504,1.339,0.957]}},{"framework":"redom-v3.29.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4922351837158203]}},{"framework":"redom-v3.29.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4475574493408203]}},{"framework":"redom-v3.29.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5744876861572266]}},{"framework":"redom-v3.29.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5122880935668945]}},{"framework":"redom-v3.29.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.28907585144043]}},{"framework":"redom-v3.29.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4873046875]}},{"framework":"redom-v3.29.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.24609375]}},{"framework":"redom-v3.29.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.1]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"01_run1k","values":{"total":[40.248,40.232,41.059,40.35,40.323,40.231,39.827,40.6,39.837,39.488,41.094,39.352,40.873,40.676,40.862],"script":[6.415,6.464,7.554,6.718,6.727,6.939,7.368,6.885,6.527,6.424,7.445,6.575,6.493,7.135,7.474],"paint":[33.41,33.339,33.086,33.221,33.165,32.875,32.04,33.304,32.903,32.654,33.232,32.36,33.97,33.15,32.991]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"02_replace1k","values":{"total":[50.394,49.771,48.098,49.699,47.556,50.53,50.029,49.354,48.728,50.364,48.116,48.309,50.06,49.727,49.984],"script":[14.785,14.499,13.295,14.378,13.21,15.068,14.824,13.901,13.461,15.03,13.512,13.645,15.057,14.338,14.434],"paint":[35.205,34.85,34.368,34.879,33.877,35.028,34.788,35.019,34.808,34.882,34.174,34.23,34.587,34.892,35.125]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.776,18.822,19.101,19.563,18.253,18.335,18.105,19.726,17.963,17.586,17.846,17.423,19.106,19.043,19.232],"script":[3.374,2.968,2.829,2.884,3.07,2.969,2.44,3.255,2.806,2.532,2.739,2.701,3.315,2.719,4.062],"paint":[14.184,13.881,14.483,14.569,13.688,14.669,14.523,13.935,13.775,13.751,14.033,12.839,14.785,15.218,14.075]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"04_select1k","values":{"total":[4.645,4.996,5.688,4.858,4.327,3.59,3.965,4.962,6.677,3.805,4.45,3.834,4.034,4.524,4.232,4.032,4.335,4.392,4.586,4.071,4.609,5.148,4.287,4.876,4.43],"script":[1.787,2.55,2.238,1.915,1.682,1.436,1.25,2.456,1.914,1.301,1.857,1.964,1.894,2.33,1.801,1.596,1.894,1.265,2.164,1.071,2.169,1.409,1.656,2.691,2.075],"paint":[1.565,1.779,2.108,2.846,2.536,2.05,2.606,1.996,2.786,1.469,1.727,1.098,2.038,2.075,2.094,1.957,1.679,2.988,1.706,2.902,1.737,1.955,1.463,1.578,1.433]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"05_swap1k","values":{"total":[19.899,19.811,19.604,20.677,20.197,20.217,20.371,20.072,19.971,19.664,21.096,20.635,19.919,21.511,19.6],"script":[1.321,1.674,1.55,1.811,2.324,2.635,2.139,2.231,1.846,1.069,2.402,2.487,1.044,2.171,1.846],"paint":[16.741,16.962,16.695,17.147,16.576,15.783,17.013,16.381,16.03,17.619,17.139,17.129,17.593,17.968,16.17]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.539,16.012,16.258,16.418,15.6,16.015,15.929,16.754,16.223,16.389,15.962,15.957,16.288,15.465,16.059],"script":[1.101,1.113,0.915,1.115,0.818,0.893,1.062,1.137,0.946,1.095,0.981,0.799,0.924,0.735,1.041],"paint":[14.685,14.19,14.205,14.602,14.025,14.253,14.13,14.67,14.515,14.531,13.977,14.382,14.546,13.667,14.231]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"07_create10k","values":{"total":[427.945,429.824,434.655,424.365,423.191,427.619,427.693,427.289,426.877,424.83,422.058,423.016,423.032,422.141,423.532],"script":[81.713,83.487,83.315,82.053,81.917,82.561,84.905,84.674,83.438,82.125,82.523,80.727,83.321,83.069,83.164],"paint":[339.501,339.146,344.643,335.697,334.053,338.295,336.095,335.912,336.774,335.855,332.881,335.619,333.075,332.366,333.033]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.41,45.623,46.113,45.945,47.554,46.381,45.941,47.501,46.22,47.364,47.384,47.504,47.331,47.289,48.551],"script":[6.702,7.006,6.674,7.078,7.992,7.055,6.761,7.508,7.333,7.301,7.3,7.657,6.797,7.657,6.975],"paint":[37.854,37.702,38.508,37.935,38.655,38.411,38.28,39.096,37.977,39.123,39.186,38.961,39.626,38.759,40.65]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.893,12.892,13.786,12.704,13.278,13.089,12.578,13.252,12.903,13.296,13.023,12.872,12.509,13.436,13.206],"script":[10.844,10.677,11.098,11.05,11.5,10.79,11.463,10.991,11.702,11.35,10.51,10.661,11.293,11.106,11.143],"paint":[1.952,2.121,1.707,1.568,1.688,2.2,0.365,2.178,1.111,1.854,2.416,2.115,0.356,2.241,1.976]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46042633056640625]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.863656997680664]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8788061141967773]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8888835906982422]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.874950408935547]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.8408203125]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.359375]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.1]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"01_run1k","values":{"total":[40.161,40.232,42.116,41.465,41.212,41.601,41.514,41.077,42.948,41.163,39.805,41.086,40.148,41.756,41.668],"script":[7.017,6.915,7.818,6.999,7.229,7.038,7.871,7.834,7.548,7.331,7.538,7.605,7.533,6.922,7.683],"paint":[32.71,32.891,33.877,34.053,33.561,34.156,33.238,32.826,34.987,33.413,31.856,33.078,32.204,34.398,33.502]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"02_replace1k","values":{"total":[51.569,51.823,50.629,50.389,49.922,50.996,52.366,52.206,52.142,52.274,50.493,51.909,53.26,52.011,52.654],"script":[15.03,16.429,15.251,14.993,14.837,15.377,15.935,16.46,15.018,15.658,14.809,15.144,16.339,16.001,16.509],"paint":[36.061,34.921,34.944,34.936,34.625,35.141,35.979,35.294,36.698,36.158,35.231,36.327,36.458,35.555,35.683]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.036,18.641,18.108,17.464,18.051,17.256,19.022,17.971,18.039,18.056,18.594,17.857,17.674,18.64,17.815],"script":[2.377,2.618,2.338,2.376,2.697,2.449,2.417,3.202,2.131,2.744,2.553,1.982,2.487,1.916,2.072],"paint":[14.547,14.042,14.337,13.529,13.919,13.831,15.531,12.774,14.34,14.031,14.106,14.848,13.878,15.146,14.975]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"04_select1k","values":{"total":[2.457,3.701,3.247,3.803,3.09,2.986,3.819,3.101,3.329,3.433,2.641,2.854,3.076,3.534,2.204,3.311,3.058,3.068,3.246,3.893,2.913,2.733,3.38,3.132,4.405],"script":[0.305,1.376,0.598,1.132,0.573,0.196,1.204,0.923,0.821,1.39,0.175,0.752,0.701,0.939,0.608,0.551,0.171,1.046,0.893,0.605,0.903,0.199,1.224,0.57,0.868],"paint":[1.398,2.213,1.7,1.718,2.407,2.688,1.754,1.705,1.325,1.937,2.371,0.773,2.268,1.243,1.065,1.596,2.662,0.691,1.544,2.584,1.918,2.008,1.559,1.558,2.37]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"05_swap1k","values":{"total":[19.976,18.722,19.446,19.25,20.104,19.279,19.328,19.084,18.893,19.254,19.354,19.29,18.989,18.714,18.821],"script":[1.045,0.655,0.961,1.157,1.142,1.143,1.462,0.638,1.502,0.642,1.331,1.227,0.92,0.278,1.263],"paint":[16.926,16.777,17.182,15.978,17.372,16.811,15.422,17.151,15.128,16.635,17.062,16.765,16.082,17.289,15.948]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.568,15.578,15.391,16.156,15.679,16.008,15.323,15.99,15.859,15.372,16.577,15.387,15.877,15.588,15.39],"script":[0.656,0.635,0.668,0.675,0.657,0.649,0.664,0.672,0.669,0.661,0.937,0.656,0.978,0.816,0.691],"paint":[14.975,14.254,13.705,14.704,14.313,14.633,13.944,14.644,14.555,13.917,14.414,13.718,14.2,13.879,13.672]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"07_create10k","values":{"total":[436.333,432.919,429.139,443.031,425.14,431.482,426.089,428.823,425.917,432.4,435.635,437.894,426.507,423.009,440.089],"script":[90.6,87.251,87.016,86.553,86.236,87.658,84.863,85.986,85.236,86.334,85.596,87.074,85.82,84.966,87.468],"paint":[339.03,338.347,335.382,349.785,332.178,337.093,334.47,336.112,333.987,339.371,343.338,344.166,334.018,331.406,345.839]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.544,45.534,44.747,48.402,46.61,46.065,46.877,45.893,45.043,46.336,45.013,47.822,46.013,46.223,46.542],"script":[6.925,6.742,6.851,7.07,7.583,7.24,7.443,7.355,6.915,7.508,6.759,7.043,6.953,7.545,7.212],"paint":[37.661,37.957,37.054,40.442,38.133,37.985,38.528,37.673,37.217,37.954,37.396,39.719,38.094,37.851,38.469]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.59,13.422,13.259,12.994,13.264,13.67,13.352,12.801,13.486,13.538,12.632,13.28,13.06,13.986,13.226],"script":[12.468,11.081,11.742,11.897,11.58,11.562,11.371,11.132,11.75,11.731,11.244,11.335,10.657,11.925,11.473],"paint":[1.377,1.84,1.142,0.358,0.791,2.017,1.889,1.207,1.646,1.712,1.296,1.854,2.31,1.57,1.663]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5491237640380859]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.190570831298828]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3019609451293945]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7474231719970703]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.047858238220215]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.419921875]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.591796875]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.2]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"01_run1k","values":{"total":[47.087,45.784,46.231,46.215,45.376,45.6,46.184,45.128,46.38,45.895,45.211,45.41,46.329,45.915,46.697],"script":[12.405,12.218,12.824,12.233,12.657,11.966,12.44,11.659,12.49,12.441,12.104,12.441,12.402,12.543,12.143],"paint":[34.231,33.112,32.957,33.524,32.28,33.198,33.302,33.036,33.442,32.993,32.642,32.522,33.48,32.94,34.118]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"02_replace1k","values":{"total":[50.479,49.22,48.352,47.997,49.732,47.933,48.469,49.134,49.359,48.298,49.406,49.074,49.382,49.406,50.05],"script":[15.293,13.877,13.4,13.506,14.998,13.647,14.195,14.274,14.738,14.245,14.421,13.789,14.323,15.031,14.844],"paint":[34.695,34.854,34.509,34.022,34.263,33.815,33.819,34.41,34.149,33.61,34.515,34.838,34.602,33.93,34.761]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.874,30.03,29.95,30.815,30.751,30.795,31.076,30.191,29.296,30.914,29.206,30.473,28.918,29.69,31.33],"script":[12.314,13.392,14.264,15.423,14.399,15.628,14.936,13.968,13.872,14.897,13.398,14.821,12.871,13.607,14.516],"paint":[15.282,15.11,13.249,13.76,14.571,13.855,14.776,14.821,13.956,14.67,13.894,13.911,15,14.291,14.491]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"04_select1k","values":{"total":[14.645,14.116,15.086,14.269,12.588,15.274,15.057,15.122,13.454,13.512,12.897,13.72,14.247,14.081,13.873,13.892,13.94,14.546,14.329,13.595,14.471,12.951,13.523,12.858,12.906],"script":[11.327,11.18,11.641,11.162,10.05,12.502,11.174,11.501,10.999,10.422,10.384,10.907,10.832,10.826,11.144,11.277,11.112,11.579,10.929,10.513,11.997,10.005,11.217,9.604,10.692],"paint":[3.052,2.767,3.258,2.944,1.657,2.602,3.711,2.563,2.301,2.001,1.377,2.046,2.823,2.507,2.575,1.781,2.282,2.787,3.151,1.193,2.314,1.849,1.39,2.538,1.659]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"05_swap1k","values":{"total":[179.393,184.557,177.551,178.741,180.404,177.604,172.276,177.582,178.857,177.858,182.262,182.858,169.699,168.22,177.849],"script":[33.476,34.313,33.832,33.399,36.814,34.962,32.763,33.854,35.58,31.825,34.536,34.79,33.011,32.433,34.338],"paint":[143.786,149.152,141.29,143.284,140.976,141.064,136.871,141.776,141.875,143.979,145.778,147.245,134.793,132.638,141.474]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.217,21.625,21.642,21.329,21.478,22.21,21.072,21.936,21.058,21.572,21.414,22.247,22.175,21.321,21.588],"script":[6.347,6.345,6.378,5.959,6.273,6.472,6.21,6.672,5.732,6.571,6.218,6.511,6.269,6.306,6.595],"paint":[14.121,14.099,14.457,14.254,14.239,14.585,14.099,14.501,14.4,14.117,14.446,14.899,14.837,14.11,14.254]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"07_create10k","values":{"total":[602.031,602.151,586.662,585.34,599.954,599.22,581.238,604.086,601.731,596.436,582.557,603.076,605.274,600.914,590.26],"script":[250.19,249.918,250.466,246.668,249.845,248.703,241.723,247.48,249.396,246.656,245.795,250.817,252.066,250.494,246.727],"paint":[344.937,345.51,329.496,331.974,343.393,343.655,332.747,349.897,345.626,342.947,330.103,345.5,346.4,343.744,336.732]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.826,54.821,54.726,54.603,55.725,54.123,54.544,55.2,54.996,54.629,53.953,54.541,55.664,55.669,54.175],"script":[14.968,15.273,14.669,15.222,15.46,14.977,15.111,15.102,14.906,15.197,14.785,15.257,15.214,15.915,14.967],"paint":[39.941,38.654,39.158,38.463,39.347,38.243,38.522,39.194,39.178,38.517,38.29,38.368,39.408,38.837,38.295]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.962,14.843,14.059,14.914,15.509,14.467,15.891,15.676,15.218,15.269,15.302,15.808,15.193,15.93,15.182],"script":[13.796,12.819,12.232,12.767,13.881,13.291,14.302,13.556,12.957,13.75,13.773,13.973,13.115,14.171,13.431],"paint":[1.588,1.514,1.71,1.049,1.537,0.445,1.323,1.624,2.171,1.426,0.935,1.087,1.993,0.892,0.739]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.938786506652832]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.346417427062988]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.482413291931152]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.702164649963379]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.168522834777832]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[132.6806640625]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[37.9970703125]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.2]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[44.476,44.546,43.955,43.295,44.181,43.472,43.523,45.077,44.061,45.378,48.105,45.005,43.879,43.369,44.574],"script":[10.421,10.503,9.811,10.032,10.606,10.306,10.065,10.941,10.542,10.515,10.861,10.835,10.133,10.288,10.62],"paint":[33.585,33.625,33.713,32.842,33.169,32.752,33.056,33.7,33.075,34.438,36.801,33.755,33.314,32.649,33.523]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[48.548,49.468,49.616,49.74,48.819,49.658,49.18,48.987,49.49,49.073,49.694,49.473,49.223,47.617,48.079],"script":[12.952,12.981,13.877,14.044,12.612,13.665,13.031,13.014,13.126,13.717,14.17,13.803,13.556,12.831,12.898],"paint":[35.144,36.042,35.323,35.251,35.788,35.553,35.7,35.532,35.901,34.921,35.098,35.243,35.24,34.34,34.747]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.96,18.304,17.137,17.86,17.736,17.639,17.536,17.197,17.605,17.582,18.178,18.034,16.549,17.013,17.554],"script":[2.362,2.522,2.336,1.987,2.359,2.669,2.177,2.568,2.257,2.31,2.17,2.611,1.963,2.105,1.582],"paint":[12.466,14.485,13.622,13.776,13.416,12.891,13.787,13.404,13.568,14.005,14.393,14.262,13.29,13.933,12.977]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[4.589,2.986,3.334,3.679,3.846,4.108,4.841,4.585,6.75,3.799,3.346,3.794,3.502,3.412,4.243,3.403,3.73,3.719,3.292,3.64,3.675,4.007,4.052,3.532,2.978],"script":[0.965,0.965,0.806,1.657,0.61,1.454,2.088,0.661,0.976,1.275,1.416,1.018,0.921,0.67,1.787,1.024,1.208,1.326,1.114,1.035,0.941,1.626,1.033,0.906,0.967],"paint":[2.485,1.916,2.431,1.916,2.725,1.673,2.133,2.956,2.351,1.74,0.962,2.212,2.478,2.33,1.609,1.698,0.563,2.279,2.073,2.49,1.809,2.28,2.375,1.611,1.205]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[21.065,22.163,22.068,21.94,22.306,20.705,21.272,22.766,20.908,21.006,20.889,21.446,21.017,22.069,21.289],"script":[2.897,2.453,2.819,2.896,2.434,2.327,2.706,2.595,2.576,2.609,2.632,2.817,2.162,2.463,2.265],"paint":[16.274,17.902,18.089,17.742,18.339,16.748,16.683,18.291,16.729,17.207,17.113,16.637,16.612,18.156,17.095]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.598,18.452,16.975,16.554,16.488,16.347,16.157,16.989,16.575,16.943,16.11,16.403,16.595,16.656,16.77],"script":[1.235,1.247,1.539,1.383,1.185,0.939,1.28,1.526,1.314,1.22,1.233,1.286,1.237,1.307,1.244],"paint":[14.573,16.77,14.738,14.486,14.547,14.382,14.16,14.726,14.518,14.96,14.102,14.061,14.361,14.569,14.563]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[447.449,441.406,445.813,447.378,450.458,440.688,442.608,443.961,443.837,445.995,439.001,441.247,439.376,440.09,449.456],"script":[103.695,102.965,105.921,103.992,105.337,103.408,105.704,105.907,106.169,104.161,101.424,101.839,101.844,101.035,101.393],"paint":[337.132,331.748,333.231,336.773,338.464,330.606,330.185,331.061,331.009,335.146,330.938,332.839,330.91,332.416,340.869]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.416,50.021,49.517,48.67,48.322,49.065,50.261,49.892,48.943,51.558,48.103,50.35,50.716,48.429,49.117],"script":[11.456,11.173,11.312,10.237,10.215,10.702,10.114,11.036,10.366,11.254,9.91,11.309,10.451,10.181,9.618],"paint":[40.055,37.941,37.297,37.521,37.203,37.464,39.251,37.968,37.686,39.388,37.309,38.144,39.408,37.329,38.629]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.366,11.442,12.675,12.128,11.567,12.842,12.112,11.724,12.801,11.169,12.099,12.519,11.133,12.182,13.175],"script":[9.806,9.308,10.303,10.292,9.931,10.639,10.161,10.544,10.291,9.705,10.093,10.732,9.714,10.367,11.923],"paint":[1.076,1.384,1.335,1.74,0.735,1.119,1.121,0.826,1.761,0.93,1.482,1.255,1.331,1.719,1.162]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49127864837646484]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.846734046936035]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.912019729614258]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8518886566162109]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.443537712097168]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6435546875]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.11328125]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.9]}},{"framework":"riot-v7.1.0-keyed","benchmark":"01_run1k","values":{"total":[48.504,48.329,45.43,45.954,45.323,45.608,46.803,44.914,44.993,47.368,45.331,45.883,46.437,45.786,46.532],"script":[12.446,12.128,11.825,12.134,12.003,12.039,11.904,11.764,11.669,13.185,11.713,12.277,12.877,12.065,12.681],"paint":[35.607,35.77,33.183,33.396,32.896,33.14,34.442,32.718,32.893,33.729,33.199,33.16,32.998,33.285,33.441]}},{"framework":"riot-v7.1.0-keyed","benchmark":"02_replace1k","values":{"total":[54.377,55.493,54.917,54.78,54.41,53.874,53.571,54.711,54.459,53.703,54.199,54.291,53.894,55.128,53.542],"script":[17.789,18.864,18.752,18.115,18.212,18.009,17.522,18.434,18.31,17.964,17.523,18.132,17.651,18.035,17.635],"paint":[36.112,36.182,35.689,36.212,35.753,35.42,35.608,35.778,35.697,35.304,36.217,35.69,35.778,36.637,35.471]}},{"framework":"riot-v7.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.308,20.793,20.922,20.125,22.074,21.103,20.345,21.181,21.088,21.144,22.934,21.08,20.645,20.922,20.399],"script":[5.732,5.538,6.155,5.316,6.129,4.936,5.511,6.486,5.648,5.63,5.903,5.734,5.229,5.404,5.373],"paint":[14.454,13.174,13.889,14.058,14.112,14.313,13.556,13.685,13.997,13.812,15.638,14.339,13.797,14.309,13.661]}},{"framework":"riot-v7.1.0-keyed","benchmark":"04_select1k","values":{"total":[7.589,8.256,8.287,9.286,8.175,7.36,7.476,8.689,8.688,8.4,8.313,7.775,7.64,7.223,7.809,7.792,8.646,7.784,7.374,7.887,7.724,8.272,8.284,8.358,7.571],"script":[5.014,5.257,5.723,6.442,5.528,4.92,4.963,6.056,5.885,5.885,5.014,5.359,5.423,5.08,5.42,5.297,5.621,5.533,5.181,5.267,4.695,5.419,5.035,5.514,5.125],"paint":[1.207,2.842,1.898,2.688,1.471,1.445,2.369,2.476,2.544,1.228,2.689,1.613,1.348,1.541,2.25,1.812,2.407,1.276,0.53,2.138,2.877,1.754,2.103,1.674,1.3]}},{"framework":"riot-v7.1.0-keyed","benchmark":"05_swap1k","values":{"total":[24.767,23.3,23.426,23.756,23.323,23.89,23.951,24.943,23.687,24.145,24.465,23.59,24.346,23.205,24.469],"script":[6.128,5.309,5.464,5.458,5.185,5.673,5.345,5.863,5.051,5.27,5.522,4.822,5.41,5.229,5.597],"paint":[16.6,16.947,15.709,17.169,16.452,16.669,17.276,17.81,16.02,16.984,17.233,16.971,18.243,16.694,17.08]}},{"framework":"riot-v7.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.051,17.296,17.33,18.835,17.661,17.255,17.923,17.633,17.745,17.939,17.751,17.637,17.254,17.377,18.983],"script":[3.024,2.565,2.556,2.924,2.822,2.901,2.672,2.781,2.861,2.82,2.951,2.803,2.507,2.638,2.972],"paint":[14.251,13.977,13.995,15.16,13.87,13.597,14.209,13.67,14.101,14.026,13.993,14.095,14.041,14.019,14.95]}},{"framework":"riot-v7.1.0-keyed","benchmark":"07_create10k","values":{"total":[478.515,479.035,476.516,478.401,479.834,480.944,489.742,489.286,486.881,483.898,484.797,480.191,481.392,477.655,481.392],"script":[130.532,130.781,130.812,132.15,132.906,134.045,135.006,137.146,134.685,136.026,136.447,133.611,133.448,132.843,134.772],"paint":[340.987,341.511,339.015,339.502,340.194,340.033,348.062,345.401,345.49,340.949,341.675,339.927,340.682,338.065,339.948]}},{"framework":"riot-v7.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.707,54.683,54.619,54.139,53.873,54.931,54.164,53.721,55.731,55.097,54.42,53.003,53.014,52.294,53.015],"script":[13.265,13.25,13.127,13.213,12.628,12.942,13.077,13.041,14.064,13.053,12.958,12.829,12.703,12.531,13.038],"paint":[40.481,40.581,40.553,40.056,40.289,41.035,40.203,39.728,40.617,41.113,40.529,39.11,39.386,38.841,39.064]}},{"framework":"riot-v7.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.711,20.967,21.479,23.534,23.858,23.499,23.678,24.071,21.621,21.673,23.109,22.23,23.889,22.659,21.897],"script":[22.611,19.096,19.884,21.605,21.741,21.436,21.685,22.618,19.654,19.652,20.689,20.793,21.98,20.658,20.085],"paint":[1.986,1.587,0.811,1.104,1.996,1.054,1.044,1.354,1.223,1.163,2.322,0.407,1.813,1.183,1.717]}},{"framework":"riot-v7.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5339937210083008]}},{"framework":"riot-v7.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.584469795227051]}},{"framework":"riot-v7.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6070556640625]}},{"framework":"riot-v7.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9044942855834961]}},{"framework":"riot-v7.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.23105812072754]}},{"framework":"riot-v7.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.9287109375]}},{"framework":"riot-v7.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.4384765625]}},{"framework":"riot-v7.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[75.4]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[45.477,45.214,44.033,46.444,44.531,44.204,44.821,44.212,44.246,46.007,44.046,45.046,47.01,45.617,44.818],"script":[10.584,10.007,9.911,10.916,10.019,9.982,10.569,10.405,10.631,10.378,9.718,10.25,10.151,10.848,10.154],"paint":[34.424,34.761,33.686,35.102,34.074,33.784,33.809,33.293,33.204,35.21,33.903,34.365,36.4,34.344,34.239]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[51.624,51.431,52.968,51.847,51.073,50.809,51.258,50.73,53.349,52.008,53.474,53.32,51.237,51.599,52.536],"script":[14.449,14.279,14.903,14.221,14.155,14.15,14.26,14.352,14.867,14.323,15.349,14.827,14.346,14.924,14.868],"paint":[36.681,36.69,37.554,37.161,36.465,36.201,36.554,35.923,37.971,37.186,37.62,38.034,36.411,36.167,37.196]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.399,17.086,17.571,17.167,18.288,18.357,18.228,16.646,18.144,18.075,16.902,18.022,16.986,17.85,17.59],"script":[1.876,1.068,1.721,1.533,0.981,1.796,0.977,1.402,1.943,1.79,1.619,1.28,1.478,1.78,1.301],"paint":[14.524,14.693,14.631,14.12,15.956,15.294,15.686,14.089,14.451,15.043,14.349,14.571,14.303,14.487,14.743]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[4.375,3.013,3.483,2.961,3.012,3.774,2.248,4.181,3.366,2.522,2.991,2.73,2.546,3.073,2.192,3.337,2.677,2.098,3.815,2.34,2.626,2.597,2.542,2.942,2.221],"script":[0.365,0.878,0.053,0.054,0.053,0.049,0.049,0.045,0.76,0.632,0.046,0.053,0.051,0.535,0.435,0.048,0.771,0.056,0.049,0.05,0.048,0.256,0.05,0.047,0.05],"paint":[1.848,2.028,2.283,2.583,2.515,1.89,1.764,1.998,2.504,1.417,2.838,2.577,2.389,1.884,1.653,3.163,1.184,1.075,2.542,2.17,2.214,2.235,1.52,2.788,2.066]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[18.345,20.001,19.52,18.784,19.682,18.793,18.148,18.256,19.336,19.023,19.389,18.855,20.196,19.244,19.437],"script":[0.132,0.86,0.826,0.609,0.901,0.13,0.659,0.127,0.738,0.12,0.857,0.554,0.818,0.117,0.773],"paint":[16.163,16.967,17.373,15.37,17.444,17.114,15.909,17.131,17.645,17.045,17.119,16.332,17.667,17.299,17.108]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.373,15.204,15.683,15.504,15.087,14.979,15.74,15.583,15.329,15.415,15.13,15.429,15.13,15.372,15.542],"script":[0.092,0.09,0.202,0.139,0.086,0.091,0.414,0.144,0.092,0.099,0.089,0.09,0.099,0.27,0.108],"paint":[14.203,14.466,14.662,14.669,13.954,14.195,14.626,14.718,14.543,14.631,14.003,13.951,13.888,14.372,15.016]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[471.947,463.481,458.039,465.923,462.669,459.852,469.884,462.428,460.2,464.226,462.055,458.815,462.389,461.73,465.206],"script":[116.092,114.611,111.221,118.098,114.062,112.312,115.651,112.153,111.855,112.87,111.843,113.005,112.847,116.422,116.464],"paint":[348.814,341.855,339.821,340.962,341.814,340.785,347.46,343.512,341.584,344.455,343.384,339.049,342.767,338.396,342.01]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.394,50.81,52.322,51.86,50.108,51.352,52.617,51.77,51.804,51.817,51.58,52.736,51.575,52.897,51.913],"script":[12.088,10.835,10.987,11.224,10.702,10.967,11.99,10.895,11.961,11.859,10.79,11.932,11.992,11.794,11.793],"paint":[39.329,39.116,40.423,39.701,38.495,39.453,39.717,39.913,38.967,39.049,39.881,39.846,38.674,40.17,39.209]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.621,18.456,17.828,20.185,18.341,18.857,18.454,18.964,18.069,18.728,17.66,18.897,17.191,17.111,19.026],"script":[15.498,16.384,15.626,17.732,16.718,17.034,16.479,17.049,16.366,16.254,16.118,16.27,15.762,15.685,16.835],"paint":[1.515,1.977,1.2,2.354,0.982,1.681,1.716,1.054,0.795,1.465,1.436,1.85,1.339,1.311,2.096]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5664300918579102]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3038434982299805]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.323984146118164]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0907831192016602]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.861918449401855]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.3544921875]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.75]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[129.9]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[45.992,44.58,44.705,45.858,46.518,44.746,45.573,44.816,46.17,44.998,44.244,45.373,45.878,45.049,45.926],"script":[11.931,10.656,10.781,11.281,11.824,10.893,11.902,11.14,11.399,11.253,10.689,11.583,11.831,11.263,11.639],"paint":[33.625,33.473,33.471,34.185,34.272,33.406,33.242,33.262,34.333,33.309,33.112,33.382,33.638,33.346,33.824]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[54.372,52.743,53.096,52.358,52.05,53.07,52.074,51.637,52.402,51.728,51.527,51.434,52.751,52.114,52.311],"script":[16.931,16.508,17.22,16.837,16.463,17.057,16.403,16.101,16.931,16.294,16.259,16.129,17.029,16.649,16.383],"paint":[36.929,35.77,35.403,35.066,35.125,35.536,35.239,35.087,35.001,34.984,34.793,34.844,35.237,35.012,35.493]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.183,18.814,20.82,19.228,21.259,19.043,19.429,19.754,18.988,19.728,19.646,20.231,20.186,19.646,18.728],"script":[3.42,3.549,3.922,3.385,4.048,3.114,3.578,3.36,2.918,3.685,3.432,3.316,3.862,3.918,3.675],"paint":[13.983,13.561,15.903,13.869,16.118,14.851,13.887,14.263,14.781,14.211,14.465,15.707,14.698,14.737,13.747]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[4.106,4.184,4.322,4.5,5.388,4.59,5.322,4.425,4.45,4.119,4.853,4.102,4.28,4.808,4.829,4.545,3.902,4.604,4.371,5.032,3.849,4.582,4.339,4.198,4.025],"script":[1.89,1.841,1.622,2.081,1.87,2.067,1.702,1.882,1.747,1.995,1.381,1.403,2.066,1.849,2.063,2.276,1.39,1.837,2.091,2.168,1.788,1.933,1.726,1.508,1.62],"paint":[1.657,2.235,2.053,2.317,1.309,1.453,2.409,1.874,1.897,1.986,3.117,2.581,1.487,2.837,1.483,2.11,1.834,2.023,2.176,2.743,1.954,2.163,2.455,1.62,1.581]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[20.341,21.189,20.477,20.538,20.932,21.079,21.098,22.106,21.166,21.946,21.085,21.669,20.145,20.192,23.001],"script":[1.805,2.347,2.006,1.565,1.811,2.054,1.747,2.483,2.019,2.121,2.455,2.063,1.884,1.815,2.035],"paint":[17.618,17.728,17.174,17.675,17.784,17.71,17.307,18.637,17.645,18.219,16.994,18.172,16.524,16.5,19.268]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.212,16.13,16.094,16.012,15.918,15.951,15.875,16.199,15.89,15.707,16.324,16.54,16.086,16.221,16.063],"script":[0.932,0.718,0.665,0.812,1.001,0.988,0.678,0.986,0.67,0.678,0.997,1.02,0.701,0.817,0.702],"paint":[14.513,14.582,14.377,14.418,14.111,13.906,14.445,14.535,14.455,14.208,14.554,14.989,14.585,14.731,14.626]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[474.187,476.075,478.803,473.318,476.12,473.73,479.969,473.463,479.033,475.379,471.712,478.19,473.138,470.514,477.046],"script":[124.375,120.589,121.405,124.623,121.28,121.949,121.711,125.913,121.162,127.474,116.646,118.655,118.704,125.173,117.703],"paint":[342.311,348.118,350.16,341.304,347.506,344.454,350.813,340.23,350.528,340.578,347.756,352.033,347.174,337.938,352.117]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.23,52.812,51.221,52.728,54.126,52.041,53.515,52.595,52.435,53.274,52.612,52.376,53.401,52.573,51.278],"script":[11.67,12.865,11.579,12.399,12.766,11.603,12.607,11.896,12.267,11.887,12.408,12.03,12.415,11.64,11.529],"paint":[38.592,39.032,38.703,39.387,40.378,39.526,39.971,39.769,39.177,40.475,39.304,39.431,39.88,40.016,38.821]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.516,23.459,24.796,23.46,22.014,22.31,21.086,21.674,21.856,21.407,23.101,23.75,23.525,22.992,23.091],"script":[22.627,21.5,23.274,21.966,19.926,20.67,19.184,19.761,19.141,19.776,21.045,21.975,21.445,21.265,20.938],"paint":[0.93,1.253,1.409,1.392,1.158,1.54,1.806,1.814,1.368,0.725,1.963,0.809,1.967,0.717,2.047]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.838836669921875]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.991396903991699]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.111337661743164]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1895809173583984]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[41.20985221862793]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76.447265625]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.0400390625]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[123.1]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"01_run1k","values":{"total":[41.43,39.066,39.696,42.655,40.883,40.565,40.661,39.857,39.545,41.34,40.047,41.319,40.705,41.317,41.343],"script":[7.691,7.046,7.14,7.057,7.916,7.697,7.929,7.108,7.103,7.795,7.135,7.806,7.695,8.152,7.953],"paint":[33.547,31.861,32.378,34.74,32.787,32.677,32.553,31.908,32.279,33.354,32.734,33.331,32.84,32.994,33.18]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"02_replace1k","values":{"total":[47.677,47.015,46.298,46.583,49.137,46.834,47.258,46.527,46.185,45.795,47.305,47.631,46.942,47.926,46.374],"script":[12.993,12.463,12.56,12.35,12.961,12.68,13.055,12.148,12.366,12.252,12.541,12.558,12.47,12.743,12.535],"paint":[34.507,34.365,33.57,33.95,36.015,33.975,34.03,34.105,33.648,33.37,34.599,34.895,34.16,34.994,33.655]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.893,22.216,22.167,18.446,20.126,43.748,40.144,19.991,21.588,42.368,23.601,22.256,18.685,21.487,18.41],"script":[3.717,4.909,4.824,4.355,4.288,3.739,3.25,4.25,3.921,4.314,4.397,4.324,4.262,4.807,3.934],"paint":[13.486,15.856,16.459,13.97,13.941,15.272,14.99,13.894,17.141,16.228,15.94,16.034,13.455,15.501,13.307]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"04_select1k","values":{"total":[8.825,5.818,8.777,10.165,8.558,12.998,10.359,8.269,4.868,17.077,9.715,14.626,7.127,6.82,10.082,5.242,6.984,4.659,8.849,14.116,7.262,10.225,7.071,10.035,7.068],"script":[2.182,2.424,3.087,3.456,2.623,3.635,2.549,2.318,1.287,2.596,2.483,2.956,3.694,1.812,2.339,2.693,3.397,2.248,2.697,2.497,2.854,3.419,2.407,1.651,2.63],"paint":[4.002,3.183,3.739,3.343,4.159,4.288,3.623,3.196,1.354,4.531,2.658,4.257,2.454,3.803,3.956,1.614,3.687,1.746,3.323,3.574,3.934,4.399,3.622,3.68,2.643]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"05_swap1k","values":{"total":[43.426,21.789,21.707,21.748,40.357,39.992,21.238,39.777,20.314,20.501,39.189,19.696,22.468,43.647,40.244],"script":[1.692,1.445,2.876,2.21,1.233,2.743,2.299,2.692,2.485,2.479,1.868,2.798,2.501,2.013,1.954],"paint":[19.867,15.416,16.608,17.205,16.026,16.091,17.315,16.758,16.911,17.735,16.946,15.893,17.843,18.658,16.762]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.028,17.933,18.553,16.985,16.533,16.124,16.044,15.463,17.43,16.017,16.086,15.462,17.859,16.318,16.436],"script":[1.299,1.217,1.249,1.229,1.199,1.204,1.052,1.262,1.059,1.209,1.202,1.201,1.272,1.172,1.184],"paint":[14.699,15.242,16.08,14.574,14.081,14.014,13.769,13.453,14.852,13.742,13.114,13.853,15.112,14.234,14.807]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"07_create10k","values":{"total":[420.351,416.537,422.528,415.904,420.126,415.658,424.254,417.813,421.342,418.369,423.222,419.979,421.203,416.647,417.203],"script":[86.113,83.695,85.323,86.081,84.057,85.283,85.874,84.464,86.226,84.235,88.229,85.279,86.021,84.1,84.418],"paint":[332.015,330.744,335.079,327.644,333.533,328.255,336.212,331.148,332.972,332.009,332.792,332.45,333.054,330.415,330.616]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.099,46.454,45.676,44.813,47.136,47.058,47.093,46.418,47.922,45.978,46.78,46.43,45.793,46.697,64.611],"script":[8.317,7.774,7.613,7.751,8.54,8.537,8.596,7.766,8.269,8.036,8.624,7.856,7.694,8.329,7.75],"paint":[38.425,38.339,37.781,36.795,38.277,38.243,38.213,38.36,39.38,37.669,37.814,38.089,37.778,38.045,39.132]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.608,17.213,16.922,15.768,20.396,19.684,21.019,16.271,18.534,18.906,20.714,15.968,18.851,20.473,20.076],"script":[15.225,15.076,14.806,14.606,15.41,16.01,17.088,14.629,14.979,14.545,16.779,14.547,14.513,15.773,16.116],"paint":[3.372,2.05,2.018,1.068,3.216,2.353,2.576,1.541,1.93,2.896,3.346,1.317,4.101,4.425,2.566]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8736782073974609]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5236940383911133]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6472854614257812]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1404657363891602]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.184914588928223]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[86.3759765625]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.6728515625]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[136.2]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"01_run1k","values":{"total":[78.123,75.551,75.921,74.888,79.07,75.762,78.237,76.38,74.482,79.689,78.864,79.727,80.016,75.322,78.149],"script":[42.338,39.849,39.911,39.037,43.509,39.947,42.503,40.588,39.218,43.667,42.36,43.521,43.915,39.746,42.639],"paint":[35.361,35.273,35.585,35.423,35.125,35.357,35.307,35.354,34.837,35.606,36.076,35.778,35.647,35.153,35.104]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"02_replace1k","values":{"total":[99.773,99.466,98.032,102.565,102.051,102.623,102.187,98.951,102.334,98.716,100.249,99.047,98.894,97.037,100.309],"script":[63.861,62.756,62.038,65.909,66.041,66.662,65.824,62.989,65.831,62.663,63.858,63.045,63.037,61.202,63.569],"paint":[35.477,36.259,35.563,36.225,35.57,35.533,35.935,35.525,36.067,35.613,35.96,35.524,35.43,35.391,36.305]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.776,25.108,25.252,25.451,25.586,25.314,26.774,25.792,24.714,25.182,24.614,25.536,24.864,26.872,24.685],"script":[8.768,9.126,9.28,9.314,9.454,8.903,9.075,9.006,8.792,8.674,9.099,8.734,9.813,9.873,9.022],"paint":[14.687,15.286,14.645,14.588,14.138,15.602,16.333,15.789,14.55,14.873,14.596,15.529,13.755,15.507,14.296]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"04_select1k","values":{"total":[11.225,11.121,9.806,9.652,9.924,9.825,10.032,9.941,9.836,10.275,9.304,10.034,9.957,10.144,9.802,9.877,10.097,10.122,9.041,10.196,10.79,10.056,9.365,9.932,9.607],"script":[8.194,7.699,7.394,6.6,7.291,7.126,6.754,6.908,7.331,7.576,6.491,7.699,7.195,7.664,7.078,7.769,7.544,7.571,6.993,7.033,7.599,7.827,6.708,7.123,7.369],"paint":[1.633,2.827,1.486,2.913,2.496,1.412,3.145,2.34,2.039,2.128,2.347,2.195,2.629,1.593,1.749,1.241,1.745,1.391,1.175,2.075,3.027,1.431,2.523,1.941,1.64]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"05_swap1k","values":{"total":[49.935,48.889,50.49,49.752,49.474,49.258,48.074,48.978,48.225,50.226,48.564,48.238,49.289,48.675,50.554],"script":[29.924,29.904,30.261,30.363,29.831,29.251,29.688,30.097,29.286,30.643,29.805,30.172,29.447,29.621,30.525],"paint":[18.222,17.222,19.063,18.454,18.321,18.174,16.796,17.237,18.209,18.591,17.137,15.626,18.498,18.35,17.697]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.932,19.935,18.964,18.957,18.82,19.073,18.513,19.06,18.978,18.468,18.747,19.535,19.122,18.768,18.997],"script":[3.6,3.41,3.585,3.585,3.614,3.604,3.522,3.603,3.597,3.576,3.61,3.659,3.593,3.605,3.612],"paint":[14.591,15.263,14.334,14.619,14.468,14.489,14.043,14.674,14.657,14.158,14.108,14.92,14.787,14.436,14.686]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"07_create10k","values":{"total":[968.534,955.047,980.719,949.514,969.919,972.798,958.738,966.162,955.943,961.78,963.683,963.888,967.29,953.395,973.519],"script":[606.151,594.295,615.479,588.883,606.344,606.385,590.483,599.47,591.278,598.989,599.553,594.46,597.864,591.681,609.974],"paint":[355.661,354.153,358.461,353.983,356.981,359.489,361.349,360.018,358.059,356.112,357.458,361.886,362.728,350.853,356.809]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[95.188,96.19,95.513,96.827,95.202,97.431,97.37,95.941,94.9,95.236,94.48,95.805,97.811,96.918,94.839],"script":[56.9,57.311,56.734,58.411,57.151,55.301,58.023,57.774,55.971,56.804,57.929,57.405,55.832,58.509,56.41],"paint":[37.347,37.962,37.843,37.499,37.131,41.174,38.417,37.245,37.986,37.523,35.673,37.499,41.028,37.489,37.523]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[44.793,45.659,42.892,39.851,43.234,42.058,42.396,43.689,41.298,44.098,43.332,44.806,46.411,41.891,44.155],"script":[42.878,43.251,40.714,38.206,41.218,39.951,40.745,41.314,39.089,41.548,40.961,42.369,44.168,39.7,42.23],"paint":[1.806,1.888,2.073,1.201,1.147,2.002,1.556,2.24,2.109,2.014,0.741,1.866,1.357,2.09,1.824]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6824398040771484]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.564094543457031]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.88668155670166]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.553736686706543]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.07828235626221]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[249.458984375]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[75.6826171875]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[473.8]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"01_run1k","values":{"total":[42.998,41.663,41.112,43.881,42.76,41.651,42.433,42.717,42.23,41.05,42.599,41.339,41.186,40.88,42.734],"script":[7.985,7.488,7.195,7.564,8.071,7.288,7.832,8.037,7.973,7.258,7.911,7.128,7.148,7.109,7.662],"paint":[34.547,33.712,33.448,35.848,34.24,33.927,34.155,34.239,33.815,33.325,34.251,33.779,33.58,33.335,34.651]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"02_replace1k","values":{"total":[46.914,46.026,45.497,46.186,45.381,45.753,46.619,47.676,44.619,47.325,46.776,46.666,48.258,47.273,45.139],"script":[10.025,9.729,9.641,9.538,9.455,9.595,10.134,10.269,9.424,10.229,10.287,10.688,10.662,10.464,9.659],"paint":[36.427,35.848,35.409,36.169,35.47,35.7,35.994,36.944,34.74,36.643,36.052,35.492,37.148,36.325,35.015]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.046,17.153,19.953,20.63,20.646,18.408,17.344,18.229,32.272000000000006,17.427,34.616,21.885,16.452,32.295,18.743],"script":[2.624,1.803,1.018,1.369,2.48,1.566,1.962,2.109,1.134,1.793,1.995,2.521,1.916,1.217,1.475],"paint":[13.891,14.916,15.666,15.573,14.297,13.916,15.262,15.254,15.096,14.706,16.554,15.968,13.735,14.154,14.895]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"04_select1k","values":{"total":[3.85,4.304,3.789,4.513,3.856,3.979,4.136,3.957,4.377,3.587,4.575,3.892,3.69,3.765,5.525,3.711,4.082,4.07,4.038,4.352,4.649,4.131,4.487,3.889,4.132],"script":[1.374,1.28,0.953,1.445,1.186,1.71,1.242,1.306,2.063,1.279,1.531,1.714,1.167,1.004,1.525,1.086,1.516,1.364,1.596,1.574,1.185,1.678,1.403,1.536,1.913],"paint":[2.351,2.799,2.716,1.929,1.941,2.166,2.151,2.198,1.546,2.211,0.984,1.431,2.086,2.475,2.235,2.076,2.458,1.877,2.309,1.435,0.775,1.549,2.074,1.469,2.106]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"05_swap1k","values":{"total":[19.505,20.502,19.471,20.905,19.75,20.62,20.274,20.099,20.996,21.496,19.604,19.908,20.152,20.296,19.749],"script":[0.941,1.525,0.207,0.851,0.885,1.299,1.502,0.765,1.149,1.567,0.559,1.157,0.945,1.177,0.828],"paint":[16.433,17.676,18.287,18.896,17.39,17.898,17.549,18.199,18.057,18.821,17.666,17.231,17.359,17.718,15.819]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.844,15.868,16.68,16.466,16.457,16.205,16.235,15.88,16.012,15.782,16.035,17.263,15.953,16.05,16.148],"script":[0.474,0.566,0.609,0.562,0.556,0.599,0.574,0.62,0.28,0.379,0.566,0.614,0.584,0.585,0.602],"paint":[14.352,14.563,15.036,15.135,15.104,14.848,14.38,14.572,14.631,14.714,14.75,15.508,14.552,14.237,14.561]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"07_create10k","values":{"total":[436.196,434.251,435.195,434.36,435.849,437.512,436.23,430.599,436.723,437.545,435.661,438.082,438.85,435.453,431.769],"script":[86.737,86.042,86.535,86.471,87.076,87.742,87.47,86.692,89.173,88.229,88.08,90.126,89.374,87.306,87.876],"paint":[342.025,340.572,341.168,340.574,341.277,342.458,341.345,336.678,340.21,341.803,340.108,340.666,342.145,340.563,336.527]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.18,47.229,46.253,46.396,45.915,46.833,47.612,48.418,48.425,46.213,48.3,48.668,46.579,46.924,45.707],"script":[6.728,6.781,6.631,6.588,6.546,6.59,7.137,7.12,7.243,6.579,7.142,7.179,6.634,6.65,6.663],"paint":[39.552,39.533,38.746,38.932,38.468,39.347,39.534,40.411,40.305,38.711,40.234,40.6,38.995,39.359,38.107]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.137,14.281,13.955,14.392,14.452,14.312,13.949,15.124,14.291,13.811,14.142,13.588,14.326,14.404,13.506],"script":[13.832,12.717,12.166,12.494,12.395,11.909,12.012,12.715,12.295,11.938,12.075,12.226,11.89,12.021,11.626],"paint":[2.166,0.939,1.682,0.391,1.95,2.023,1.84,2.284,1.125,1.78,1.059,0.905,2.21,1.458,1.049]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8361473083496094]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.917496681213379]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.059771537780762]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.250258445739746]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.43843364715576]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[117.443359375]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.4462890625]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[167.6]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[41.628,42.487,40.069,40.711,42.885,42.032,41.069,41.904,41.051,41.611,40.722,40.431,41.939,41.684,40.338],"script":[7.062,8.097,6.972,7.442,7.867,7.448,7.672,7.506,7.083,7.652,6.986,7.109,7.563,7.606,7.016],"paint":[34.137,33.957,32.677,32.879,34.595,34.157,32.979,33.989,33.589,33.566,33.35,32.881,33.974,33.68,32.906]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[44.701,45.76,44.11,44.53,44.89,45.233,45.115,44.747,44.014,44.43,45.1,46.115,45.249,44.228,43.775],"script":[9.522,10.61,9.448,9.648,9.228,10.457,9.679,9.372,9.271,9.458,9.537,9.881,10.45,9.206,9.31],"paint":[34.687,34.688,34.201,34.452,35.21,34.326,35.013,34.921,34.307,34.543,35.114,35.81,34.366,34.585,34.012]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.498,16.403,16.649,18.452,16.191,16.772,16.017,16.5,16.088,17.423,16.433,16.253,16.802,16.555,15.927],"script":[1.228,0.572,0.922,0.936,0.902,0.936,1.25,1.089,1.036,1.642,0.875,1.104,1.117,1.494,0.938],"paint":[14.111,14.493,14.545,15.781,13.614,14.239,13.184,14.14,13.752,14.814,14.119,13.856,13.912,13.18,13.653]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[4.118,3.303,3.096,3.887,3.112,3.104,3.315,3.171,5.708,4.515,3.09,3.039,2.877,3.005,4.997,3.49,4.424,2.971,2.805,3.626,3.262,2.879,3.221,2.661,2.871],"script":[0.184,0.858,1.012,1.295,0.195,0.933,0.629,1.019,1.483,0.868,0.543,0.531,0.901,0.764,0.929,0.554,1.221,0.651,0.918,1.186,0.19,1.034,1.043,0.202,0.871],"paint":[2.451,2.342,1.619,1.894,2.321,1.372,2.581,1.877,1.909,1.777,1.384,2.395,1.876,1.738,2.498,1.901,1.423,1.551,1.351,2.339,2.959,1.35,1.665,2.21,1.175]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[18.63,18.314,18.905,18.702,18.16,19.584,18.727,18.08,18.421,18.683,19.479,19.196,18.626,18.274,17.602],"script":[0.778,0.519,0.25,0.751,0.133,0.127,0.829,0.125,0.143,0.9,0.787,0.117,0.762,0.126,0.129],"paint":[16.541,16.739,17.611,16.455,16.43,18.217,16.536,16.943,16.734,16.469,17.672,17.825,16.412,16.705,15.456]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.005,14.844,14.96,14.857,15.406,14.817,15.539,14.917,15.516,15.162,15.124,15.358,15.416,15.737,14.975],"script":[0.275,0.098,0.289,0.102,0.312,0.106,0.231,0.24,0.12,0.109,0.324,0.422,0.416,0.364,0.189],"paint":[13.819,13.842,13.919,13.996,14.403,14,14.615,13.791,14.678,14.105,14.099,14.523,14.013,14.614,14.069]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[421.262,417.104,417.936,417.769,420.012,420.224,424.198,418.89,427.169,424.694,419.635,419.384,418.666,423.341,420.615],"script":[81.428,83.476,78.185,81.959,85.601,83.398,82.257,82.287,80.239,85.116,84.846,84.866,83.494,85.571,84.433],"paint":[332.863,327.008,333.099,328.972,327.093,330.213,335.267,329.959,340.064,332.324,328.139,327.884,328.52,331.154,329.602]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.569,46.511,46.731,45.612,45.882,46.718,45.606,46.476,46.941,46.296,46.567,45.942,45.83,48.376,46.811],"script":[7.399,7.141,7.313,7.145,7.218,7.451,7.254,7.183,7.332,7.313,7.358,7.287,7.195,7.438,7.192],"paint":[37.327,38.547,38.585,37.649,37.829,38.405,37.494,38.43,38.748,38.154,38.33,37.827,37.773,40.063,38.76]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.739,14.194,14.381,14.195,14.489,14.38,14.148,14.727,14.553,13.473,13.564,13.846,14.4,14.32,14.026],"script":[11.596,12.516,11.943,12.04,12.517,12.316,12.051,12.361,12.68,11.627,12.234,11.494,12.072,12.447,12.274],"paint":[2.061,1.594,1.994,2.063,1.852,1.965,2.009,2.111,1.777,1.755,1.246,1.345,2.146,1.782,1.031]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.635274887084961]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6682281494140625]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.796940803527832]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.534296989440918]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.434337615966797]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[170.7578125]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.126953125]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[269.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[40.957,39.918,39.295,39.607,40.086,40.969,39.758,37.597,37.964,40.663,40.635,38.201,38.273,39.116,40.282],"script":[6.968,6.165,6.228,6.331,6.221,6.35,6.002,6.095,5.974,6.137,6.303,6.05,6.046,6.113,6.9],"paint":[33.57,33.29,32.631,32.847,33.441,34.181,33.323,31.089,31.576,34.092,33.901,31.747,31.811,32.58,32.961]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[45.083,44.369,44.591,44.458,44.533,44.893,43.931,44.81,43.593,44.595,44.737,45.152,44.487,45.34,44.848],"script":[8.787,9.106,9.181,9.282,9.047,9.166,8.87,9.138,8.686,9.284,9.09,9.227,9.152,8.981,9.241],"paint":[35.839,34.838,34.969,34.735,35.041,35.296,34.606,35.23,34.457,34.853,35.197,35.474,34.906,35.902,35.134]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.893,16.647,16.007,16.327,16.324,16.658,15.622,17.203,16.612,16.568,16.803,16.533,17.377,17.468,16.93],"script":[1.095,0.918,0.738,1.073,0.89,0.643,0.654,1.128,1.221,0.591,1.148,0.928,0.655,1.417,0.194],"paint":[13.237,13.534,13.963,13.937,13.773,13.988,13.434,14.64,14.681,13.731,14.372,13.793,15.114,14.808,15.136]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[3.402,2.971,2.769,3.104,2.637,2.985,2.668,3.022,3.029,2.773,3.05,2.524,3.444,2.377,2.385,2.297,2.843,2.948,2.789,2.864,2.512,2.333,3.347,5.189,2.582],"script":[0.072,0.064,0.065,0.76,0.068,0.569,0.068,0.062,0.796,0.766,0.064,0.066,0.737,0.064,0.499,0.073,0.068,0.8,0.77,0.067,0.07,0.065,1.072,0.283,0.069],"paint":[3.237,2.432,1.761,2.237,1.602,2.316,1.785,2.708,2.14,1.904,2.893,2.156,1.624,1.968,0.868,1.231,2.67,1.422,1.907,2.696,2.343,1.525,1.312,1.82,1.603]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[19.182,20.196,19.702,20.405,20.436,21.412,19.328,20.266,19.741,19.998,20.294,19.981,20.231,20.521,19.563],"script":[1.065,1.033,2.152,1.248,1.696,2.046,0.87,1.217,1.005,0.644,1.112,1.304,1.484,1.407,1.565],"paint":[15.861,17.794,15.833,17.596,17.441,17.096,16.701,17.61,17.203,18.096,17.352,17.625,17.319,17.332,16.648]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.324,15.712,15.048,15.244,15.715,15.253,15.197,15.878,15.961,15.859,15.655,15.506,15.677,15.073,15.301],"script":[0.186,0.329,0.17,0.44,0.489,0.449,0.184,0.571,0.338,0.49,0.489,0.34,0.492,0.332,0.349],"paint":[14.376,14.623,13.873,14.042,14.494,13.845,14.192,14.545,14.716,14.584,14.354,14.155,14.45,14.01,14.217]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[423.929,435.528,425.143,424.863,423.571,427.162,425.398,420.984,430.16,426.606,421.954,418.322,412.985,417.874,423.016],"script":[81.022,81.328,80.082,81.768,79.596,81.011,81.416,81.042,82.395,81.102,81.374,80.104,77.118,79.631,80.468],"paint":[336.181,347.481,338.398,336.364,337.337,339.445,337.337,333.112,341.033,338.796,333.848,331.5,329.14,331.577,335.89]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.396,44.239,43.792,46.019,44.973,44.926,45.023,44.727,45.236,44.661,44.736,44.705,45.985,45.938,46.205],"script":[6.351,6.088,6.051,6.539,5.978,6.139,6.206,6.114,6.128,6.088,6.186,6.104,6.532,6.811,6.681],"paint":[39.17,37.036,36.901,38.546,37.98,37.908,37.924,37.722,38.223,37.669,37.674,37.659,38.501,38.249,38.669]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.012,12.305,11.728,11.643,12.3,12.811,11.994,12.591,11.731,11.645,11.853,11.725,11.565,12.43,11.885],"script":[10.194,10.44,9.902,10.52,10.261,10.984,10.56,10.82,10.021,10.236,9.736,9.629,10.118,10.494,9.549],"paint":[1.721,1.781,1.739,0.356,1.081,1.156,1.258,0.875,0.833,0.382,2.022,2.021,1.356,1.832,2.253]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4849967956542969]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.647650718688965]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.645925521850586]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7718515396118164]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.569453239440918]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.44140625]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7568359375]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.6]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"01_run1k","values":{"total":[46.111,46.326,50.157,45.703,45.527,46.967,46.852,47.051,46.844,46.501,46.329,45.309,47.921,47.479,47.284],"script":[12.549,11.983,14.199,12.443,12.427,12.269,12.221,12.069,11.925,12.166,12.223,12.375,12.798,13.825,13.412],"paint":[33.126,33.921,35.482,32.837,32.666,34.237,34.202,34.548,34.488,33.913,33.668,32.471,34.648,33.185,33.444]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"02_replace1k","values":{"total":[56.799,54.58,53.849,57.612,53.303,54.515,54.25,54.929,54.982,58.407,56.387,57.112,57.379,54.371,56.672],"script":[20.5,18.237,18.278,21.184,17.682,17.9,17.671,18.322,18.344,21.659,19.861,20.597,20.892,18.173,19.928],"paint":[35.815,35.891,35.082,35.967,35.165,36.163,36.134,36.124,36.15,36.273,36.012,36.079,36.04,35.749,36.264]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.445,20.088,20.65,21.982,20.906,20.888,20.612,20.909,20.175,20.336,21.674,21.097,20.776,20.509,21.58],"script":[5.275,4.392,5.165,5.725,5.06,5.118,4.556,5.142,4.991,4.977,5.512,5.132,4.745,4.66,4.967],"paint":[14.184,14.351,14.149,15.229,12.953,13.764,14.908,14.587,13.117,13.505,13.909,14.529,14.723,13.985,15.495]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"04_select1k","values":{"total":[5.656,5.466,4.952,5.504,5.51,4.823,5.751,5.531,5.583,5.445,5.28,6.105,5.475,5.462,6.577,5.337,6.622,5.261,6.049,5.882,4.815,6.124,5.814,5.424,5.889],"script":[3.146,3.217,2.91,2.881,2.967,2.956,2.973,3.04,3.214,3.185,3.595,3.097,3.237,3.04,3.638,2.852,3.692,2.866,3.326,3.469,2.52,3.365,3.069,2.761,3.551],"paint":[1.773,2.13,1.927,2.152,2.416,1.419,2.264,2.389,2.254,1.281,1.033,2.027,2.124,2.313,1.913,2.372,1.685,1.713,2.627,1.523,1.797,2.13,2.628,2.554,2.229]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"05_swap1k","values":{"total":[20.916,21.533,21.173,22.079,21.529,21.989,21.792,22.235,21.176,21.346,23.194,21.004,21.517,21.366,21.39],"script":[2.981,3.203,3.042,2.864,3.282,3.283,3.049,3.083,3.757,3.027,3.716,3.015,3.278,3.089,2.816],"paint":[16.614,17.315,17.123,17.641,16.5,17.23,17.263,17.519,16.21,17.024,18.096,16.484,17.171,16.45,17.262]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.337,16.706,17.804,17.254,16.932,16.475,17.116,17.132,16.6,16.602,16.894,16.677,16.474,16.728,16.542],"script":[1.668,1.363,1.783,1.612,1.796,1.352,1.327,1.555,1.37,1.342,1.684,1.675,1.374,1.622,1.66],"paint":[14.644,14.314,14.933,14.854,14.404,14.37,14.986,14.888,14.485,14.311,14.466,14.261,14.415,14.363,14.133]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"07_create10k","values":{"total":[494.707,496.445,493.65,490.497,495.949,498.897,493.102,493.106,490.299,491.08,490.827,491.9,490.476,489.249,494.689],"script":[140.769,144.626,144.559,143.569,143.151,145.434,144.078,143.822,140.531,145.848,143.527,142.484,140.638,141.4,144.651],"paint":[346.074,345.033,342.195,340.177,345.664,346.561,342.008,342.369,343.107,338.474,340.514,342.426,343.238,341.004,343.193]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.112,56.296,54.91,57.33,55.765,56.137,55.188,55.713,54.601,57.268,56.468,55.421,55.819,56.324,54.826],"script":[15.663,15.336,15.439,16.343,15.697,15.589,15.469,15.923,15.524,15.939,15.705,16.022,15.687,16.079,15.312],"paint":[39.604,40.028,38.598,40.028,39.104,39.558,38.781,38.907,38.138,40.399,39.579,38.46,39.205,39.342,38.625]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.26,13.211,12.782,12.579,13.853,13.361,13.158,13.191,13.177,13.256,13.6,13.347,13.714,12.975,12.444],"script":[11.015,11.336,10.671,11.452,11.859,10.779,11.562,11.883,10.962,10.658,11.68,11.631,12.023,11.34,10.96],"paint":[2.157,1.675,2.018,0.382,1.899,1.145,0.679,0.535,1.127,2.315,1.758,1.22,1.572,0.72,1.391]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46224308013916016]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0004663467407227]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.998490333557129]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8954391479492188]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.219494819641113]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.5078125]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.8310546875]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.5]}},{"framework":"solid-v1.8.0-keyed","benchmark":"01_run1k","values":{"total":[36.673,39.587,36.501,37.033,36.97,36.385,37.442,36.503,37.039,37.133,38.149,36.809,36.752,37.081,37.186],"script":[3.905,4.388,3.913,3.74,3.942,3.821,4.2,3.826,3.78,4.317,4.255,4.015,3.938,3.883,4.321],"paint":[32.375,34.778,32.197,32.877,32.602,32.182,32.856,32.266,32.844,32.419,33.486,32.374,32.397,32.817,32.475]}},{"framework":"solid-v1.8.0-keyed","benchmark":"02_replace1k","values":{"total":[42.31,42.465,41.747,43.442,43.597,43.424,43.327,42.228,42.674,43.753,42.9,41.986,43.262,42.724,42.949],"script":[7.349,7.801,7.595,7.937,7.859,8.07,8.252,7.76,7.469,7.96,7.993,7.392,8.348,8.101,8.06],"paint":[34.489,34.211,33.738,35.081,35.301,34.905,34.643,34.016,34.76,35.34,34.478,34.169,34.494,34.174,34.456]}},{"framework":"solid-v1.8.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.117,16.72,17.001,20.198,16.483,16.58,16.452,16.286,18.771,16.886,16.45,16.721,16.585,16.115,16.254],"script":[0.975,1.168,1.554,1.688,1.247,1.067,1.262,0.945,0.987,1.413,0.61,1.293,0.74,0.981,0.926],"paint":[14.554,14.549,12.646,16.372,13.617,13.465,12.765,13.812,16.285,14.196,13.607,14.33,14.225,13.587,14.072]}},{"framework":"solid-v1.8.0-keyed","benchmark":"04_select1k","values":{"total":[3.025,3.24,4.331,2.675,3.54,6.504,2.403,2.774,4.383,2.557,3.337,3.284,2.585,3.442,2.839,3.56,2.953,4.026,2.56,2.321,3.78,2.894,2.367,2.7,2.855],"script":[0.176,0.566,1.086,0.519,1.064,0.135,0.146,0.129,0.522,0.139,1.044,0.969,0.586,0.596,0.141,1.001,0.144,1.113,1.063,0.144,0.497,0.135,0.15,0.141,0.135],"paint":[2.391,2.572,2.076,2.06,2.278,1.637,2.161,1.92,1.867,2.317,1.668,1.565,1.321,2.357,2.589,2.459,2.485,1.494,1.4,2.076,1.188,1.391,1.841,2.049,2.631]}},{"framework":"solid-v1.8.0-keyed","benchmark":"05_swap1k","values":{"total":[21.225,19.478,20.138,19.028,19.655,19.39,19.809,19.097,18.876,19.246,18.495,19.095,19.055,20.207,19.983],"script":[1.291,1.487,1.831,0.981,1.723,1.022,2.108,1.045,1.075,1.131,1.456,1.235,1.186,1.75,1.782],"paint":[18.812,16.926,16.34,16.519,16.442,16.483,16.237,16.792,16.15,16.364,15.561,16.34,16.574,16.65,16.834]}},{"framework":"solid-v1.8.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.364,15.259,15.469,15.263,15.339,15.267,15.159,14.998,15.937,15.101,15.694,15.021,15.051,15.81,15.519],"script":[0.554,0.562,0.417,0.631,0.547,0.588,0.552,0.568,0.561,0.445,0.575,0.55,0.538,0.563,0.43],"paint":[14.099,14.322,13.919,13.915,14.049,13.95,13.473,13.717,14.508,13.912,14.523,13.526,13.807,14.518,14.415]}},{"framework":"solid-v1.8.0-keyed","benchmark":"07_create10k","values":{"total":[387.151,382.369,389.301,382.118,391.102,383.166,385.428,379.685,379.836,378.415,381.688,386.398,381.17,380.981,381.084],"script":[44.132,43.646,44.152,43.653,43.952,43.663,43.618,42.958,42.799,42.383,43.029,43.939,42.746,42.786,44.042],"paint":[336.281,332.104,338.272,331.699,339.413,332.77,335.022,329.951,330.369,329.366,332.019,335.761,331.76,331.605,330.334]}},{"framework":"solid-v1.8.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.746,43.75,44.41,43.7,42.786,44.166,42.739,42.973,44.124,43.397,45.214,44.138,45.021,43.957,43.801],"script":[4.412,4.903,4.553,4.897,4.384,4.901,4.482,4.539,4.883,4.805,4.386,4.827,4.459,4.851,4.884],"paint":[37.484,37.991,38.996,37.956,37.505,38.368,37.413,37.558,38.394,37.743,39.963,38.445,39.714,38.282,38.055]}},{"framework":"solid-v1.8.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.737,13.708,13.81,14.143,13.366,13.758,14.184,13.849,14.012,14.217,13.925,13.517,14.206,13.256,14.391],"script":[11.902,11.844,12.177,11.902,11.13,12.084,12.181,11.968,11.655,11.928,11.361,11.626,11.715,11.932,12.305],"paint":[1.035,1.051,1.541,1.797,2.149,1.573,1.644,1.79,2.268,2.187,2.008,1.084,2.067,0.358,1.977]}},{"framework":"solid-v1.8.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5649776458740234]}},{"framework":"solid-v1.8.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.565220832824707]}},{"framework":"solid-v1.8.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5857162475585938]}},{"framework":"solid-v1.8.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.637751579284668]}},{"framework":"solid-v1.8.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.447714805603027]}},{"framework":"solid-v1.8.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.7734375]}},{"framework":"solid-v1.8.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5400390625]}},{"framework":"solid-v1.8.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"01_run1k","values":{"total":[39.184,39.235,38.696,44.609,39.673,40.367,39.47,40.624,41.915,40.631,40.622,40.187,37.672,39.607,42.044],"script":[6.538,6.345,5.907,6.363,6.433,6.58,6.226,6.852,6.64,6.483,6.696,6.595,6.028,6.441,6.669],"paint":[32.209,32.47,32.367,37.79,32.826,33.303,32.846,33.329,34.804,33.702,33.471,33.142,31.212,32.737,34.957]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"02_replace1k","values":{"total":[46.602,46.994,46.736,46.588,44.297,43.55,44.86,42.654,44.801,45.022,43.363,44.527,44.661,44.389,44.159],"script":[10.328,9.872,10.271,10.023,9.62,9.868,9.624,9.651,10.077,10.086,9.326,9.953,10.006,9.695,9.872],"paint":[35.752,36.616,35.94,36.076,34.217,33.269,34.811,32.555,34.264,34.491,33.607,34.08,34.228,34.244,33.849]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.935,16.739,15.843,17.847,15.941,16.519,17.563,17.717,17.824,16.846,16.467,16.826,16.104,16.722,17.313],"script":[2.278,1.704,1.618,2.291,1.343,1.471,1.625,2.313,1.764,1.04,1.029,0.946,1.646,1.548,0.988],"paint":[14.271,14.109,13.262,14.252,13.507,14.34,14.922,14.104,14.691,14.272,14.104,14.759,13.163,12.978,15.38]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"04_select1k","values":{"total":[3.205,3.716,3.104,3.307,4.103,3.231,2.98,3.142,4.169,2.751,3.298,3.577,4.691,3.25,3.63,3.527,2.723,2.43,4.007,2.738,2.728,4.926,4.673,3.342,3.354],"script":[0.794,1.436,0.784,1.197,1.017,0.163,0.536,0.147,0.681,1.071,1.11,0.851,0.915,0.555,0.911,0.878,0.246,0.146,1.386,0.391,0.277,0.941,0.726,0.691,0.824],"paint":[2.299,1.782,2.215,1.522,2.898,1.909,1.607,2.884,1.569,1.586,1.564,1.477,1.862,1.761,2.421,1.358,1.967,2.101,1.727,2.243,2.347,2.682,1.971,2.074,1.604]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"05_swap1k","values":{"total":[22.699,22.152,21.342,22.806,22.166,21.574,21.253,21.842,21.866,21.224,20.837,21.44,22.329,20.581,21.226],"script":[3.14,2.83,2.983,3.18,3.589,3.671,3.119,3.396,3.448,3.235,3.47,3.513,3.663,2.784,3.433],"paint":[18.42,18.134,17.166,18.536,17.246,16.831,16.865,16.825,16.313,16.864,16.104,16.608,17.366,16.478,15.953]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.891,17.124,17.341,17.653,17.082,17.101,16.651,16.795,16.935,17.112,16.887,17.196,16.6,18.215,16.612],"script":[2.007,2.021,2.274,2.326,2.305,2.337,2.017,2.126,2.26,2.317,2.24,2.341,1.989,2.282,2.016],"paint":[14.954,14.409,14.142,14.604,14.048,14.032,13.943,13.943,13.971,14.102,13.933,14.3,13.62,14.635,13.899]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"07_create10k","values":{"total":[391.889,398.439,384.872,397.379,396.575,399.224,390.029,395.808,396.613,394.381,391.562,390.65,392.928,393.113,389.864],"script":[61.92,61.079,59.954,63.509,62.607,63.618,60.628,60.528,60.809,61.998,60.442,59.479,59.637,58.715,59.238],"paint":[320.666,327.657,318.042,324.52,324.653,326.456,320.075,325.863,326.609,323.17,324.445,322.064,324,325.178,321.488]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.217,45.326,44.888,47.004,45.133,44.941,45.965,45.035,44.929,44.424,46.251,44.793,44.878,44.449,45.32],"script":[6.963,7.335,7.107,7.342,7.449,7.354,7.026,7.238,7.124,7.216,7.287,7.361,7.366,6.998,7.321],"paint":[36.325,37.18,36.854,38.747,36.761,36.735,38.029,36.969,36.936,36.287,38.092,36.619,36.644,36.529,37.114]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.515,13.302,13.506,14.35,13.892,13.766,14.301,14.132,13.71,14.358,13.991,14.249,14.13,13.992,14.481],"script":[12.405,12.229,11.616,12.365,11.947,12.492,12.574,11.953,11.695,12.116,12.329,12.358,12.382,12.265,12.56],"paint":[1.024,0.349,1.599,1.883,1.859,1.185,1.28,1.14,1.923,1.185,1.306,1.097,1.659,1.632,1.834]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.48853206634521484]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7884883880615234]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8407726287841797]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9144124984741211]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.52719497680664]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6611328125]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.46484375]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[41.121,41.65,41.61,42.149,43.594,42.676,41.908,42.606,42.86,42.421,43.796,42.236,42.188,41.991,42.43],"script":[8.598,8.423,8.682,8.74,9.133,9.19,8.739,8.737,9.462,8.503,8.768,8.98,8.812,9.119,8.809],"paint":[32.108,32.782,32.5,33.026,34.033,33.087,32.751,33.422,33.007,33.478,34.635,32.844,32.93,32.431,33.193]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[49.198,48.463,48.552,48.672,49.197,47.831,49.824,48.927,50.564,50.09,48.086,48.713,49.566,49.686,48.745],"script":[12.593,12.603,12.544,12.556,13.207,12.581,13.295,12.579,13.949,12.538,12.722,12.784,12.885,13.297,12.793],"paint":[36.181,35.4,35.557,35.654,35.534,34.756,36.069,35.91,36.129,37.042,34.883,35.492,36.223,35.963,35.455]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.561,16.759,16.886,17.484,17.174,17.23,17.044,18.34,16.68,17.583,16.468,17.958,17.719,18.284,17.492],"script":[1.663,1.458,1.106,1.846,1.972,1.75,2.114,2.36,1.122,2.241,1.469,2.362,1.638,1.568,1.564],"paint":[13.839,14.323,14.375,13.876,12.876,14.182,13.932,13.886,14.285,13.93,13.825,14.225,13.563,15.563,14.949]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[5.067,4.268,4.243,3.485,4.512,3.774,4.613,5.179,4.748,3.196,3.595,3.825,6.888,3.926,3.648,3.736,3.872,4.663,4.223,4.356,6.029,4.132,3.047,3.492,5.682],"script":[1.333,2.022,1.643,0.732,1.458,1.289,2.051,1.409,1.284,1.059,1.176,1.007,1.438,0.884,1.152,1.841,1.452,2.01,1.309,2.083,1.552,1.741,1.149,1.524,1.856],"paint":[1.46,2.138,2.488,2.653,2.95,1.986,1.902,1.64,2.318,2.026,2.317,2.72,2.224,2.938,1.451,1.264,2.169,1.759,2.419,1.771,2.454,1.67,1.779,1.136,0.873]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[20.377,19.323,20.306,19.565,20.857,19.755,19.472,19.379,18.872,19.597,18.668,19.184,19.232,19.463,19.863],"script":[1.006,1.068,1.937,1.82,1.262,0.984,1.768,0.952,1.188,1.594,1.696,1.261,1.551,1.27,1.127],"paint":[17.982,17.204,17.152,16.417,18.599,17.157,16.439,16.671,16.379,16.223,15.499,16.845,16.445,16.289,17.39]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.387,15.87,15.843,15.887,15.76,15.909,16.063,16.291,15.594,15.327,15.391,15.381,15.164,16.002,15.573],"script":[0.692,0.694,0.673,0.673,0.938,0.686,0.678,1.036,0.668,0.94,0.676,0.675,0.672,0.859,0.792],"paint":[13.809,14.382,14.113,14.534,14.075,14.519,14.694,14.234,13.955,13.719,13.993,13.975,13.436,14.375,14.056]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[439.194,432.031,434.753,438.984,436.455,441.326,436.338,435.977,434.594,437.429,432.773,433.202,434.583,433.776,436.367],"script":[100.104,97.118,96.679,98.777,98.833,97.809,96.275,98.332,97.161,98.896,98.223,97.686,97.733,95.475,97.462],"paint":[332.385,328.35,331.116,333.634,330.864,336.873,333.33,330.975,330.768,331.917,327.946,328.886,330.252,331.645,332.153]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.964,49.543,48.872,49.27,49.05,49.237,49.441,49.082,48.919,50.138,49.573,50.804,49.503,49.191,50.291],"script":[9.559,9.547,9.227,9.516,9.651,9.336,9.844,9.436,9.868,9.843,9.486,9.529,9.949,9.686,9.558],"paint":[40.508,39.128,38.775,38.846,38.5,38.979,38.695,38.774,38.179,39.328,39.215,40.379,38.666,38.575,39.844]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.427,14.702,13.669,13.899,14.078,13.661,13.146,14.054,14.514,13.361,13.743,13.803,13.825,13.763,13.252],"script":[11.544,12.844,12.561,11.917,12.208,11.875,11.768,12.644,12.859,11.497,11.75,12.015,11.861,12.062,11.785],"paint":[1.204,1.046,0.347,0.995,0.905,1.693,1.285,1.313,1.549,1.771,1.48,1.699,1.69,1.613,1.374]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.627676010131836]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.961784362792969]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.053736686706543]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5224103927612305]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.254608154296875]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.40625]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.7783203125]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[170.1]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[44.628,42.413,41.569,42.755,42.829,42.818,43.431,43.525,42.897,42.693,42.211,41.743,43.078,42.029,43.008],"script":[9.708,8.97,8.476,9.421,9.284,9.547,9.827,9.765,9.13,8.603,8.799,8.882,8.957,8.818,8.832],"paint":[34.482,33.041,32.658,32.922,33.12,32.843,33.178,33.347,33.345,33.643,32.992,32.44,33.63,32.785,33.738]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[48.113,46.597,47.447,46.259,47.036,46.632,47.206,48.562,48.862,46.499,47.214,48.005,47.014,47.5,47.002],"script":[11.141,11.227,11.263,10.935,11.812,11.032,11.207,11.343,11.571,11.062,11.751,11.457,11.452,11.588,11.269],"paint":[36.517,34.936,35.745,34.868,34.761,35.166,35.553,36.767,36.844,34.975,35.023,36.125,35.109,35.426,35.299]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.883,17.732,16.552,16.132,16.659,16.127,16.436,15.623,16.882,16.624,16.439,16.902,16.646,17.389,16.381],"script":[1.751,1.752,1.389,0.938,1.008,1.305,0.694,1.281,1.907,1.103,1.771,1.724,1.595,1.632,1.488],"paint":[14.148,14.795,12.859,13.748,14.58,13.464,12.951,12.206,13.428,13.14,13.397,13.809,13.355,14.144,13.864]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[2.527,2.119,2.543,2.968,5.286,2.976,2.638,2.731,3.223,2.779,4.143,2.703,4.746,3.728,4.032,4.097,3.103,3.262,4.221,2.788,2.395,5.59,4.295,3.928,3.236],"script":[0.088,0.288,0.63,0.093,0.094,0.71,0.082,0.876,0.773,0.848,0.084,0.083,0.964,0.084,0.799,0.094,0.72,1.104,0.532,0.085,0.083,0.085,0.835,1.22,0.733],"paint":[2.34,1.737,1.807,2.757,3.04,2.176,2.453,1.242,1.679,1.245,2.937,2.521,1.399,2.289,1.712,1.439,2.279,1.429,1.914,1.916,1.346,2.772,1.586,2.03,1.496]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[18.855,18.198,18.089,18.431,18.784,19.967,19.026,19.091,18.496,19.294,19.606,19.301,18.049,19.079,19.714],"script":[0.134,0.139,0.831,0.135,0.135,0.781,0.143,0.635,0.134,1.037,0.889,0.885,0.136,0.882,0.764],"paint":[17.709,16.79,15.658,16.875,17.502,17.359,17.144,16.872,17.055,16.448,16.237,16.94,16.328,16.677,17.676]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.871,15.073,14.887,15.054,14.802,15.069,14.785,15.032,15.557,15.436,15.349,15.275,15.019,15.36,15.279],"script":[0.122,0.33,0.219,0.297,0.116,0.197,0.109,0.254,0.43,0.277,0.2,0.439,0.283,0.433,0.442],"paint":[13.707,13.937,13.986,13.659,13.949,14.049,13.973,14.009,14.204,14.331,14.001,14.078,13.862,14.23,14.077]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[439.144,436.045,435.682,430.649,443.646,436.706,437.438,443.394,436.831,436.588,436.159,435.956,436.255,438.682,437.395],"script":[99.855,96.182,95.881,95.308,101.139,98.509,98.308,97.186,98.745,98.119,98.203,97.216,97.356,98.051,98.762],"paint":[332.46,333.138,333.151,328.626,335.876,331.547,332.41,339.501,331.524,331.835,331.35,332.084,332.295,333.953,331.959]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.094,48.405,49.421,47.833,47.216,49.112,48.558,47.613,49.294,49.267,48.513,49.03,48.928,48.478,47.186],"script":[8.82,8.604,8.878,8.287,8.129,8.941,8.849,8.6,9.367,9.194,9.006,9.264,8.824,8.975,8.581],"paint":[39.415,38.917,39.594,38.677,38.197,39.225,38.856,38.151,39.004,39.111,38.653,38.905,39.219,38.643,37.776]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.816,14.247,13.944,14.204,13.702,14.25,13.921,15.015,14.75,14.937,14.793,14.884,13.821,13.675,13.575],"script":[12.704,11.912,12.55,12.195,11.658,12.17,11.818,12.868,12.88,13,12.393,12.874,11.925,11.471,12.514],"paint":[1.671,1.323,0.762,0.828,1.447,1.822,2.021,1.663,1.761,1.842,2.265,1.348,1.241,2.115,0.338]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6240863800048828]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.469348907470703]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.471112251281738]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.018862724304199]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.77289581298828]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.68359375]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.787109375]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[160.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[48.617,46.522,46.692,47.407,46.846,48.453,47.118,48.275,46.426,47.865,48.078,46.425,47.004,47.607,47.98],"script":[13.47,13.039,13.191,13.662,13.117,13.922,13.649,13.49,12.888,13.435,13.93,14.019,13.677,13.771,13.921],"paint":[34.709,33.061,33.07,33.326,33.327,34.095,33.05,34.363,33.125,34.013,33.707,31.972,32.923,33.425,33.641]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[51.571,52.029,52.986,53.476,53.771,53.34,52.069,53.749,52.992,52.636,52.665,53.354,52.866,52.934,51.735],"script":[16.84,16.837,17.432,17.972,17.174,17.812,16.872,17.246,17.493,16.652,17.434,17.836,17.886,17.426,16.739],"paint":[34.246,34.757,35.108,35.059,36.106,35.092,34.714,36.017,35.022,35.516,34.811,35.046,34.524,35.066,34.536]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.149,16.52,16.512,17.06,16.97,17.742,16.365,16.678,17.268,16.905,16.624,17.498,17.065,16.487,16.677],"script":[0.924,0.949,1.197,0.972,1.412,1.271,1.304,1.12,0.251,1.503,1.432,1.214,0.594,1.116,0.987],"paint":[15.196,14.4,13.13,13.661,13.743,15.301,13.193,13.487,15.246,13.977,13.163,14.534,14.516,14.611,13.071]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[3.6,4.237,3.919,5.272,2.839,2.826,2.757,5.441,3.165,4.466,4.918,3.074,2.795,3.302,2.847,3.835,3.525,2.651,3.376,3.358,2.83,3.605,4.281,3.563,3.304],"script":[1.145,1.048,0.894,0.108,0.824,0.557,0.798,0.417,1.135,0.885,0.109,0.754,0.335,1.101,0.827,0.827,1.225,0.117,0.881,0.816,0.925,1.229,0.111,0.931,0.897],"paint":[1.511,2.077,1.631,2.748,1.913,1.656,1.104,1.976,1.923,2.306,1.836,2.219,2.36,1.338,1.331,1.935,2.198,1.627,1.732,1.689,1.492,2.282,1.573,2.342,1.752]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[17.98,17.966,18.728,19.191,18.661,19.073,19.493,19.62,19.369,18.47,18.714,20.203,18.724,18.973,19.196],"script":[0.109,0.098,0.502,0.774,0.749,0.108,0.109,0.105,0.11,0.101,0.101,0.812,0.102,0.247,0.435],"paint":[16.8,16.456,16.938,16.779,17.275,17.445,18.261,18.382,18.251,16.987,17.063,18.297,17.112,16.998,18.054]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.177,15.202,15.181,15.387,14.842,15.32,15.051,14.877,15.849,14.768,15.875,14.923,15.048,16.037,15.151],"script":[0.513,0.441,0.359,0.492,0.189,0.514,0.298,0.5,0.523,0.177,0.194,0.277,0.378,0.413,0.506],"paint":[13.927,14.063,13.959,14.167,13.703,13.721,13.497,13.665,14.602,13.904,14.605,13.951,13.888,14.849,13.938]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[442.3,443.02,445.2,457.301,449.328,445.873,446.861,440.911,447.423,443.048,445.052,440.951,444.346,442.76,444.921],"script":[104.187,102.765,99.444,110.376,107.418,100.093,105.107,101.453,101.544,105.773,100.816,105.207,101.825,101.625,108.318],"paint":[331.085,333.247,339.021,339.094,334.6,339.189,335.005,332.717,339.219,330.614,337.581,328.996,335.797,334.46,329.816]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.668,50.389,48.877,47.67,48.33,49.459,49.667,49.783,49.389,49.122,49.384,49.304,48.523,48.97,48.328],"script":[9.487,10.013,9.585,9.102,9.878,10.155,10.462,10.002,10.195,10.136,9.976,10.138,9.352,10.122,9.395],"paint":[38.328,39.396,38.382,37.689,37.609,38.426,38.372,38.934,38.317,38.07,38.546,38.329,38.274,37.967,38.033]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.051,17.563,17.91,18.433,17.478,18.424,18.634,18.607,18.334,17.108,18.511,17.858,18.649,18.739,19.224],"script":[15.252,16.475,16.289,16.524,15.806,16.64,16.766,16.422,16.462,15.727,15.907,15.981,16.445,16.786,16.9],"paint":[1.719,0.36,1.531,1.101,1.581,0.978,1.08,1.61,1.039,0.77,2.508,0.403,2.125,1.862,1.34]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7404394149780273]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.186068534851074]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1746253967285156]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3049068450927734]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.399325370788574]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.80078125]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.1728515625]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.9]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"01_run1k","values":{"total":[46.348,44.782,45.131,45.387,44.703,44.378,45.132,45.835,45.67,46.436,45.142,45.858,44.893,46.537,46.66],"script":[11.036,10.345,10.572,10.692,10.516,10.276,10.389,10.953,10.748,11.029,10.577,10.741,10.903,11.184,11.089],"paint":[34.865,33.976,34.128,34.25,33.743,33.669,34.274,34.434,34.466,34.977,34.117,34.669,33.551,34.931,35.104]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"02_replace1k","values":{"total":[53.932,55.43,55.031,54.415,55.822,55.527,54.634,54.412,55.749,54.94,55.971,55.112,55.417,54.672,54.579],"script":[18.096,19.369,18.1,18.033,19.061,18.945,18.034,17.993,19.136,18.238,18.892,19.099,18.969,18.9,18.743],"paint":[35.351,35.583,36.497,35.9,36.288,36.136,36.144,35.949,36.157,36.232,36.584,35.586,35.965,35.299,35.395]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.066,32.249,31.21,30.975,34.791,30.607,30.062,31.408,30.572,29.362,31.771,31.422,32.231,31.484,29.829],"script":[15.369,14.904,14.017,14.699,16.8,14.327,14.46,15.841,14.898,13.134,14.795,14.77,14.309,15.149,13.784],"paint":[15.703,15.998,15.598,14.705,16.885,15.08,14.582,13.577,13.981,14.89,15.543,13.904,16.209,14.538,14.72]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"04_select1k","values":{"total":[16.929,17.195,17.876,15.136,16.779,16.245,15.265,15.997,16.517,15.804,16.344,16.569,19.582,15.326,16.267,16.281,16.337,17.087,17.064,17.088,17.813,15.588,16.638,17.841,15.738],"script":[13.195,13.949,14.793,12.627,13.636,13.441,12.221,13.266,13.512,12.794,13.461,13.317,15.865,12.403,13.559,13.764,13.475,13.012,13.339,14.17,13.737,12.815,12.675,14.445,13.022],"paint":[3.314,2.013,1.818,2.352,1.994,1.854,2.004,2.57,2.013,2.855,1.736,2.426,2.581,1.467,2.544,2.36,1.197,2.719,3.362,1.592,2.226,1.18,3.757,3.201,2.005]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"05_swap1k","values":{"total":[33.851,32.597,32.851,33.404,33.358,31.926,32.54,32.995,34.485,33.659,32.635,32.862,33.978,34.065,33.162],"script":[14.133,13.868,12.692,13.059,13.991,13.758,12.52,13.666,14.824,13.571,13.308,14.448,14.354,14.89,14.392],"paint":[18.275,16.82,18.367,18.4,17.439,17.185,18.108,17.791,18.913,18.178,17.649,17.062,17.572,18.346,17.064]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.741,22.382,24.273,22.213,23.176,23.815,23.378,22.558,22.439,21.625,24.181,22.192,23.285,23.793,23.717],"script":[7.442,7.055,7.826,7.313,7.489,7.31,7.414,7.398,7.219,6.37,7.637,7.097,7.538,7.747,7.217],"paint":[14.536,14.54,14.901,13.85,14.673,15.118,14.963,14.384,14.469,14.163,15.671,14.063,14.971,15.288,15.71]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"07_create10k","values":{"total":[476.154,474.054,472.669,476.732,473.803,476.858,477.222,472.994,479.518,469.871,476.761,480.447,475.275,473.408,471.703],"script":[126.702,125.147,124.635,128.419,125.917,128.139,129.96,125.703,129.979,122.687,128.442,128.061,127.907,126.701,124.886],"paint":[342.738,342.146,341.281,341.676,341.132,342.048,340.477,340.611,342.859,340.495,341.25,345.68,340.69,340.03,340.096]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.536,57.384,55.829,57.529,57.417,57.546,58.003,58.142,57.744,57.855,58.246,58.023,58.041,57.769,57.413],"script":[15.931,15.795,15.038,15.808,15.935,15.967,16.048,15.992,16.305,15.526,16.689,16.238,16.195,16.08,16.038],"paint":[40.708,40.671,39.854,40.821,40.587,40.663,41.049,41.257,40.507,41.423,40.675,40.871,40.928,40.771,40.425]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.639,16.374,15.662,15.383,15.53,15.278,15.747,15.96,15.357,15.263,15.249,15.092,15.062,15.583,15.574],"script":[13.278,14.63,13.545,13.794,14.146,13.6,13.768,13.923,13.682,13.219,13.443,13.127,13.619,13.396,13.53],"paint":[2.25,0.87,2.031,1.494,0.985,0.799,1.211,1.453,0.786,1.94,0.853,1.855,1.345,1.051,1.946]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5305614471435547]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5842437744140625]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.573305130004883]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8798732757568359]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.561969757080078]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.298828125]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.111328125]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.5]}},{"framework":"strve-v6.6.6-keyed","benchmark":"01_run1k","values":{"total":[42.991,40.25,40.345,39.982,44.014,40.165,41.942,41.328,39.668,40.207,39.389,40.185,40.227,40.361,40.799],"script":[7.726,7.152,7.498,6.881,8.252,6.844,7.901,7.819,7.021,7.287,6.945,7.431,7.219,7.72,7.629],"paint":[34.799,32.692,32.374,32.704,35.309,32.905,33.642,33.128,32.227,32.518,32.033,32.343,32.597,32.226,32.748]}},{"framework":"strve-v6.6.6-keyed","benchmark":"02_replace1k","values":{"total":[44.501,43.764,45.087,43.188,44.007,44.253,44.925,45.378,44.432,45.532,44.43,44.823,44.341,45.18,44.913],"script":[10.448,9.72,10.145,9.775,9.842,9.872,10.584,10.377,10.066,11.073,10.036,10.596,9.827,10.532,10.502],"paint":[33.638,33.612,34.507,32.997,33.715,33.931,33.908,34.555,33.925,34.04,33.987,33.783,34.058,34.243,34.011]}},{"framework":"strve-v6.6.6-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.001,26.685,28.949,27.807,26.422,27.564,26.821,27.578,27.806,27.47,27.073,26.315,28.465,27.832,27.583],"script":[10.989,10.774,11.921,11.36,10.347,12.004,10.899,11.88,10.93,10.781,10.977,10.56,11.22,10.086,11.913],"paint":[15.637,14.932,15.927,15.18,15.092,14.454,14.682,14.415,15.244,15.19,14.599,13.581,15.948,15.368,13.463]}},{"framework":"strve-v6.6.6-keyed","benchmark":"04_select1k","values":{"total":[12.894,12.831,12.403,14.424,12.9,12.958,12.95,13.182,11.581,13.604,12.251,12.091,13.204,12.508,12.006,13.484,13.271,12.916,12.006,12.38,13.341,12.337,12.152,13.27,14.176],"script":[9.819,9.994,9.899,10.518,10.377,10.396,10.377,10.284,8.662,10.632,10.183,10.14,10.653,9.184,9.394,10.482,10.537,9.855,9.654,9.453,9.97,10.109,10.198,10.191,11.511],"paint":[2.921,2.087,1.971,3.324,1.264,2.046,1.628,1.888,1.666,1.822,1.19,1.818,2.35,2.782,1.489,2.52,1.805,2.269,2.202,2.775,2.408,1.468,1.808,2.924,1.851]}},{"framework":"strve-v6.6.6-keyed","benchmark":"05_swap1k","values":{"total":[29.229,28.594,29.593,29.017,30.037,30.549,29.147,29.959,28.172,30.223,29.542,28.515,29.34,29.823,29.383],"script":[11.207,10.294,11.138,10.955,11.245,11.831,10.14,10.519,10.17,11.64,10.717,10.909,11.036,10.53,10.731],"paint":[16.663,16.965,16.956,16.392,16.801,17.61,17.881,18.123,16.941,16.02,17.555,15.978,16.674,17.916,17.92]}},{"framework":"strve-v6.6.6-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.359,20.28,20.243,19.701,19.683,20.255,20.347,20.311,20.2,20.272,19.956,20.387,21.379,19.829,20.642],"script":[5.44,5.485,5.437,5.419,5.313,5.531,5.517,5.492,5.442,5.356,5.152,5.647,5.427,5.444,5.405],"paint":[14.161,14.064,13.789,13.563,13.732,13.708,14.082,13.485,13.746,14.077,13.706,14.011,15.216,13.611,14.5]}},{"framework":"strve-v6.6.6-keyed","benchmark":"07_create10k","values":{"total":[430.516,421.502,425.915,431.573,429.278,428.164,426.042,419.851,427.791,422.716,424.682,426.813,425.324,434.817,426.989],"script":[86.382,80.266,87.509,87.323,86.487,89.264,87.002,80.011,87.602,86.507,79.727,85.888,86.158,85.522,86.988],"paint":[337.569,334.6,331.836,337.619,335.816,332.33,331.801,333.236,333.655,329.427,338.307,334.406,332.574,342.736,333.385]}},{"framework":"strve-v6.6.6-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.575,48.398,48.378,47.997,49.644,48.028,48.895,49.041,48.1,48.915,48.637,47.952,48.437,49.108,48.162],"script":[10.181,10.269,10.057,9.99,10.198,10.765,10.56,11.036,9.797,10.321,10.679,9.993,10.326,10.927,10.435],"paint":[37.537,37.245,37.502,37.208,38.553,36.384,37.442,37.161,37.424,37.741,37.057,37.043,37.221,37.322,36.865]}},{"framework":"strve-v6.6.6-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.132,12.832,12.887,12.689,12.696,13.232,12.771,13.36,12.969,13.449,13.418,13.172,12.675,12.66,13.207],"script":[11.031,11.058,10.845,10.737,10.868,11.607,11.115,10.994,11.313,11.374,11.553,11.331,10.677,10.999,11.46],"paint":[2.022,1.678,1.455,1.053,1.732,1.065,1.09,2.274,1.568,1.449,1.784,1.684,0.858,1.483,0.802]}},{"framework":"strve-v6.6.6-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.47019004821777344]}},{"framework":"strve-v6.6.6-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.269582748413086]}},{"framework":"strve-v6.6.6-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3096437454223633]}},{"framework":"strve-v6.6.6-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6944684982299805]}},{"framework":"strve-v6.6.6-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.726266860961914]}},{"framework":"strve-v6.6.6-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.66015625]}},{"framework":"strve-v6.6.6-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.919921875]}},{"framework":"strve-v6.6.6-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.6]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"01_run1k","values":{"total":[41.244,39.794,42.861,39.91,38.922,38.828,38.421,41.581,39.75,40.412,40.892,40.075,41.355,41.242,40.876],"script":[7.157,7.7,7.682,7.226,7.152,6.854,6.902,7.588,7.499,7.517,7.395,7.488,7.736,7.468,7.455],"paint":[33.641,31.714,34.735,32.213,31.39,31.569,31.112,33.596,31.831,32.502,33.078,32.177,33.206,33.392,33.002]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"02_replace1k","values":{"total":[45.624,45.175,45.961,46.601,45.733,45.038,45.494,46.371,44.742,45.734,45.717,45.975,45.456,45.917,44.564],"script":[11.275,10.81,11.412,11.084,11.088,10.55,11.094,11.313,10.299,10.93,10.537,10.652,10.3,11.229,10.583],"paint":[33.909,33.934,34.111,35.083,34.233,34.047,33.997,34.635,34.025,34.392,34.75,34.885,34.731,34.264,33.567]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.507,26.851,29.184,28.875,28.831,27.774,29.48,27.126,28.374,28.86,27.364,27.032,29.087,27.828,26.936],"script":[11.52,10.781,11.188,11.832,11.062,11.551,11.984,11.705,11.399,11.324,11.175,10.444,11.997,11.618,11.014],"paint":[14.539,13.839,16.131,16.096,16.243,13.364,16.348,14.121,15.522,15.773,14.911,14.685,15.9,14.179,14.683]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"04_select1k","values":{"total":[14.309,15.149,12.978,14.407,13.476,13.431,13.779,13.686,15.737,15.187,14.564,13.603,13.754,12.637,13.398,13.775,14.662,13.898,13.654,15.255,14.934,14.625,13.036,14.112,13.414],"script":[11.272,11.378,10.483,10.353,10.442,11.042,9.988,10.275,12.002,11.076,11.037,10.168,10.975,9.382,10.287,10.56,10.854,11.427,11.22,11.57,11.468,11.207,9.955,10.575,10.231],"paint":[2.87,2.908,1.9,2.929,2.167,1.358,3.623,2.72,2.828,3.131,2.318,3.275,2.427,2.754,2.511,2.839,2.995,2.321,1.258,3.37,2.12,1.865,2.934,3.359,3.025]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"05_swap1k","values":{"total":[29.421,30.351,30.714,30.674,29.983,30.376,31.861,31.212,31.737,31.403,28.811,29.842,30.671,31.984,30.491],"script":[10.47,11.893,11.478,11.657,11.073,10.504,12.83,12.211,11.57,10.74,10.231,12.059,11.305,11.449,11.654],"paint":[17.584,16.731,18.559,16.975,16.894,18.331,17.811,17.589,18.95,18.262,17.322,16.882,17.61,19.059,17.578]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.349,20.731,20.936,21.405,20.349,21.936,20.771,20.838,21.367,20.334,20.305,20.286,20.542,20.833,21.047],"script":[5.224,5.493,5.497,5.438,5.515,5.615,5.43,5.416,5.521,5.501,5.441,5.452,5.227,5.448,5.533],"paint":[14.396,14.209,14.713,14.931,13.771,15.514,14.625,14.126,15.056,14.092,13.87,14.077,14.242,14.686,14.752]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"07_create10k","values":{"total":[431.802,431.197,429.661,430.171,425.684,430.491,427.387,436.718,428.996,431.825,437.383,425.778,429.926,431.427,432.854],"script":[89.534,88.362,88.459,88.15,86.77,87.692,88.351,87.098,86.537,88.678,86.704,87.06,87.664,88.573,89.975],"paint":[335.679,335.951,334.596,335.475,332.408,336.301,332.528,342.802,335.674,336.659,343.811,332.066,335.757,336.337,336.34]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.758,49.77,48.258,48.321,49.93,48.101,49.299,48.931,49.892,49.283,49.703,49.159,48.343,51.057,48.967],"script":[10.477,10.436,9.913,9.928,10.164,9.925,10.601,10.298,10.403,10.134,10.269,10.192,10.286,10.504,10.161],"paint":[37.403,38.452,37.467,37.522,38.875,37.289,37.797,37.71,38.513,38.319,38.569,38.091,37.206,39.659,37.921]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.572,14.284,13.606,14.026,14.275,14.509,14.321,14.112,14.406,14.077,14.514,14.877,15.081,14.214,14.404],"script":[12.079,12.134,11.563,11.876,12.481,12.286,12.385,11.608,12.536,11.941,12.393,12.81,12.773,12.377,12.575],"paint":[1.408,2.053,1.947,1.805,0.915,1.682,1.105,2.389,1.785,2.042,2.026,1.983,1.854,1.023,1.573]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5268325805664062]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3418779373168945]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3673715591430664]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7147274017333984]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.80020046234131]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.0986328125]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.8701171875]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[75.7]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"01_run1k","values":{"total":[36.808,36.661,36.616,36.92,36.857,38.952,37.209,36.361,37.507,39.163,36.658,36.092,36.988,37.187,36.284],"script":[3.319,3.661,3.39,3.687,3.368,3.73,3.472,3.616,3.809,3.667,3.67,3.509,3.576,3.661,3.571],"paint":[33.055,32.578,32.815,32.827,33.069,34.786,33.266,32.345,33.266,35.06,32.586,32.16,33.009,33.11,32.308]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"02_replace1k","values":{"total":[43.588,44.175,41.454,41.473,44.115,41.125,41.677,41.301,41.099,41.577,41.675,41.721,41.17,41.389,41.891],"script":[6.956,7.179,6.729,6.548,6.913,6.563,6.575,6.73,6.712,6.735,6.941,6.613,6.81,6.793,6.783],"paint":[36.185,36.557,34.293,34.512,36.755,34.12,34.663,34.139,33.954,34.394,34.27,34.689,33.923,34.177,34.692]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.901,15.856,15.593,16.981,15.756,16.118,16.267,16.7,16.87,16.828,16.431,16.148,17.267,16.076,16.438],"script":[1.224,0.941,0.903,1.179,0.271,1.204,0.982,1.475,1.515,0.258,0.892,1.248,0.886,0.974,1.013],"paint":[13.772,13.593,13.454,15.071,13.731,13.616,13.998,14.226,14.083,15.908,14.236,13.386,14.528,12.947,14.203]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"04_select1k","values":{"total":[3.46,3.845,3.138,3.441,3.851,3.261,4.056,2.731,3.95,3.825,5.732,3.803,5.801,4.056,6.929,3.452,3.894,3.397,2.921,3.021,3.11,4.108,3.857,4.267,3.599],"script":[0.9,1.221,1.295,0.954,0.65,0.707,0.678,0.235,1.037,1.296,0.872,1.373,0.619,1.212,1.173,1.298,0.681,0.964,0.867,0.515,0.983,0.683,0.724,1.23,1.179],"paint":[1.353,2.496,1.294,1.94,3.07,2.071,2.18,2.399,2.471,2.414,1.943,2.261,2.425,2.728,1.959,2.052,1.845,2.053,1.93,2.382,2.027,2.51,3.016,2.825,1.379]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"05_swap1k","values":{"total":[20.236,20.128,20.66,20.539,20.067,19.126,20.926,20.155,20.039,19.833,19.95,20.852,20.353,19.701,20.849],"script":[1.318,1.207,1.418,1.665,1.087,1.583,1.572,1.792,1.866,1.909,2.067,1.693,1.702,1.976,1.832],"paint":[17.998,17.362,17.904,17.569,16.809,14.875,18.152,17.295,16.283,16.717,15.914,17.622,16.301,15.491,17.135]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.355,15.625,15.419,16.165,14.884,15.695,14.852,15.157,15.083,15.752,15.62,15.382,15.841,15.516,15.219],"script":[0.583,0.636,0.558,0.248,0.263,0.563,0.515,0.351,0.345,0.568,0.36,0.586,0.563,0.62,0.58],"paint":[14.03,14.297,14.084,15.487,13.899,14.371,13.7,14.029,13.676,14.502,14.015,14.05,14.387,13.904,13.936]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"07_create10k","values":{"total":[369.224,363.796,366.094,369.767,370.029,368.881,371.157,366.824,367.15,364.101,368.407,368.689,367.101,366.033,367.038],"script":[40.453,40.612,42.857,41.597,42.669,40.023,42.164,41.676,40.075,41.07,41.865,40.483,40.047,41.454,40.755],"paint":[321.878,316.745,316.861,321.76,320.388,322.042,322.577,318.799,320.586,316.5,320.05,321.673,320.605,318.089,319.736]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.894,42.805,42.682,43.805,43.741,42.697,41.958,41.814,43.005,42.333,43.182,43.264,42.44,43.341,44.499],"script":[3.399,3.282,3.384,3.575,3.517,3.286,3.379,3.547,3.516,3.369,3.354,3.439,3.598,3.477,3.372],"paint":[38.612,38.612,38.414,39.395,39.285,38.523,37.738,37.433,38.623,38.087,38.928,38.958,37.938,38.956,40.242]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.25,13.401,12.948,13.361,12.797,13.285,13.194,13.317,13.183,13.984,13.239,13.408,13.326,12.773,12.88],"script":[11.425,11.278,11.392,10.796,11.207,10.91,10.747,11,11.27,11.611,11.474,11.416,10.846,11.407,11.239],"paint":[1.729,1.779,1.474,2.478,1.5,2.287,2.311,2.173,1.111,2.272,1.673,1.195,2.384,0.361,0.742]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4982023239135742]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.638660430908203]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.652606964111328]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9120607376098633]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.7034273147583]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.9296875]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.9658203125]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.8]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"01_run1k","values":{"total":[39.244,39.672,36.726,36.171,36.615,37.477,37.698,37.383,37.951,38.658,38.715,38.968,38.924,39.313,38.653],"script":[5.114,5.438,5.114,4.868,4.954,5.002,5.172,5.049,5.202,5.1,5.183,5.555,5.384,5.157,5.184],"paint":[33.67,33.792,31.238,30.909,31.246,32.068,32.113,31.927,32.349,33.147,33.135,32.99,33.133,33.745,33.052]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"02_replace1k","values":{"total":[44.566,47.33,44.502,44.364,44.807,45.834,44.235,45.126,44.682,44.658,44.791,44.57,44.504,44.011,44.253],"script":[8.312,8.769,8.937,8.668,8.588,8.133,8.625,8.706,8.312,8.766,9.141,8.561,8.728,8.864,8.578],"paint":[35.804,38.162,35.152,35.222,35.766,37.236,35.19,35.963,35.934,35.442,35.189,35.578,35.343,34.724,35.223]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.363,16.868,17.753,16.778,17.193,17.273,16.87,17.622,17.941,17.157,17.42,17.484,16.91,17.298,17.144],"script":[1.477,1.842,2.366,1.846,2.003,1.771,1.824,2.087,2.625,1.916,1.655,2.043,1.874,2.062,2.098],"paint":[14.474,13.591,13.85,13.284,13.624,14.467,13.746,14.478,13.908,14.294,13.192,14.106,13.239,13.94,13.541]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"04_select1k","values":{"total":[3.873,3.362,3.188,4.211,3.466,3.807,3.506,2.949,3.536,3.811,3.86,3.377,4.253,3.217,4.346,5.208,3.876,4.262,4.719,4.949,3.426,3.962,5.099,3.859,5.168],"script":[0.918,0.658,0.992,1.34,1.525,1.278,1.311,1.216,1.2,0.768,1.28,1.437,0.85,0.876,1.253,1.81,1.241,1.804,1.444,1.623,0.895,1.46,1.489,0.274,1.132],"paint":[1.609,2.578,1.431,2.47,1.84,2.407,2.089,1.615,1.544,1.781,1.77,1.822,2.675,2.24,2.818,2.263,2.519,2.331,1.296,3.154,1.443,2.381,2.152,3.459,2.481]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"05_swap1k","values":{"total":[20.232,20.303,20.066,19.68,19.823,19.829,20.957,19.425,19.666,19.771,19.316,20.619,19.639,20.111,21.249],"script":[2.248,1.91,1.643,1.58,1.824,1.354,1.834,1.23,1.013,1.583,1.405,1.515,1.727,1.777,1.376],"paint":[16.763,16.928,16.678,16.634,16.612,16.998,17.548,17.159,17.487,17.32,16.626,17.885,16.267,17.154,18.314]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.595,15.48,15.313,15.451,15.397,15.644,15.502,15.354,15.779,15.896,15.452,15.66,15.321,15.421,15.857],"script":[0.713,0.614,0.62,0.65,0.655,0.638,0.655,0.662,0.603,0.617,0.608,0.63,0.642,0.608,0.836],"paint":[14.137,13.8,13.931,13.905,13.899,13.572,14.105,14.157,14.471,14.799,14.154,14.001,13.975,14.132,14.327]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"07_create10k","values":{"total":[400.455,394.041,402.524,403.729,403.816,408.845,399.319,405.755,404.43,395.013,402.809,404.087,403.663,399.897,402.036],"script":[57.281,56.451,56.32,57.116,57.983,57.322,56.955,57.037,57.696,56.362,57.071,56.238,55.782,56.724,56.083],"paint":[336.412,330.766,339.255,339.882,339.12,344.8,335.662,341.99,339.953,331.877,338.971,341.06,341.18,336.463,339.136]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.07,45.075,47.493,45.767,45.095,46.327,45.762,46.54,46.345,47.538,46.299,46.564,46.675,46.604,46.807],"script":[5.588,5.559,5.778,5.577,5.502,5.916,5.99,5.88,5.924,6.086,5.984,5.951,5.868,6.1,5.605],"paint":[39.545,38.659,40.845,39.329,38.706,39.567,38.925,39.797,39.565,40.501,39.46,39.765,39.959,39.647,40.303]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.636,12.902,12.847,12.945,13.76,13.411,12.156,12.612,13.155,13.164,12.369,13.189,13.112,12.83,13.633],"script":[10.86,10.821,10.732,10.977,11.5,11.312,10.745,10.765,11.373,11.454,10.767,11.412,10.996,10.732,11.701],"paint":[1.682,1.57,2.021,1.878,1.187,1.375,0.39,1.756,0.966,0.779,1.513,1.511,0.495,1.895,1.835]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49695777893066406]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.757552146911621]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.791414260864258]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.365610122680664]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.956418991088867]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.87890625]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5615234375]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[42.207,43.475,41.919,41.949,41.199,44.065,43.751,42.552,43.828,42.919,43.06,42.225,42.046,43.081,43.013],"script":[8.362,9.279,8.366,8.297,8.218,9.073,9.395,8.4,8.87,8.694,8.944,8.549,8.754,9.266,8.721],"paint":[33.412,33.767,33.113,33.231,32.578,34.59,33.942,33.735,34.551,33.822,33.708,33.252,32.826,33.4,33.884]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[51.829,50.94,49.92,52.931,51.047,50.321,51.423,49.995,51.262,52.252,51.457,50.107,49.33,49.58,51.087],"script":[14.934,14.608,14.695,15.639,14.506,14.443,15.308,14.506,15.188,15.704,15.453,15.202,14.477,14.612,15.418],"paint":[36.442,35.872,34.8,36.842,36.089,35.44,35.635,35.054,35.629,36.105,35.572,34.466,34.423,34.533,35.235]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.576,16.872,17.199,16.633,18.436,17.119,17.592,18.468,18.162,17.45,18.163,17.288,17.854,17.902,16.904],"script":[2.098,1.555,1.817,1.827,2.353,1.286,1.937,2.584,1.504,1.848,1.539,1.804,1.897,1.394,0.954],"paint":[13.902,14.071,14.109,13.512,14.319,13.832,14.621,14.309,15.391,14.177,15.268,13.967,14.896,14.69,14.374]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[7.233,6.951,6.085,7.03,6.522,6.514,5.856,6.578,5.768,6.222,6.373,7.107,6.473,6.554,6.249,6.821,6.613,6.706,6.426,6.107,6.56,5.944,5.98,5.966,6.605],"script":[4.112,4.047,3.912,4.283,3.973,3.766,3.807,3.722,3.44,3.752,4.16,4.276,3.942,3.799,3.531,4.739,4.125,3.788,3.696,3.897,4.325,3.714,3.751,4.284,4.007],"paint":[3.003,2.795,2.054,1.378,1.503,1.713,1.036,1.281,1.178,2.357,2.089,2.031,2.429,2.238,2.615,1.972,2.363,2.816,1.78,0.995,2.118,2.131,1.363,1.119,2.492]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[19.724,19.507,19.694,20.298,19.034,20.75,19.417,19.62,20.499,19.041,19.227,20.543,19.653,19.584,20.122],"script":[1.689,0.938,1.415,2.081,1.421,1.485,1.301,1.345,1.391,1.267,1.307,1.431,1.476,1.535,1.84],"paint":[15.836,16.961,16.89,16.346,15.363,17.975,17.105,16.722,17.704,16.714,16.94,17.479,17.053,17.096,16.726]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.912,15.816,15.901,15.955,15.848,15.488,15.677,15.357,16.27,15.546,15.691,15.851,15.964,15.513,15.683],"script":[1.098,1.087,1.101,1.078,1.04,0.818,0.989,0.992,0.883,0.785,0.939,1.066,1.074,0.8,0.814],"paint":[14.109,14.059,14.143,13.88,14.002,13.663,13.838,13.516,14.638,13.76,13.85,14.101,13.919,13.645,14.165]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[431.94,429.242,433.906,435.771,436.269,436.129,439.967,436.696,438.383,437.189,436.779,435.481,436.597,438.124,437.004],"script":[96.018,97.587,97.509,98.468,99.398,98.367,99.923,98.684,98.82,98.615,98.387,97.471,99.427,99.528,100.243],"paint":[329.191,324.99,329.53,330.211,330.059,331.076,333.325,331.364,332.805,331.884,331.714,331.322,330.458,331.792,330.081]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.654,50.894,48.128,49.403,49.345,49.979,48.453,49.34,49.39,49.266,49.426,49.641,49.62,50.437,49.757],"script":[9.309,9.763,9.31,9.474,9.806,9.786,9.3,9.811,9.246,9.839,9.421,9.509,9.372,9.913,9.858],"paint":[38.418,40.24,37.967,39.035,38.653,39.337,38.214,38.618,39.258,38.525,39.077,39.271,39.391,39.596,39.027]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.812,15.889,16.072,15.924,16.381,15.153,16.13,14.573,14.68,15.127,14.831,15.267,15.637,15.015,15.342],"script":[13.715,13.762,13.777,14.022,14.091,12.959,14.098,12.696,13.396,13.149,13.364,13.082,13.163,13.456,13.8],"paint":[1.987,2.026,2.193,1.229,1.688,2.098,1.648,1.781,0.696,1.24,1.376,1.117,1.815,1.474,0.973]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6336116790771484]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.749085426330566]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.727506637573242]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.445829391479492]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.606215476989746]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5185546875]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2265625]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[277.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[41.63,41.869,41.096,41.728,42.278,41.915,41.683,43.046,42.295,41.642,42.686,42.004,41.691,41.497,42.259],"script":[8.081,7.811,7.996,8.044,8.123,7.912,8.112,7.717,8.459,7.908,7.823,8.607,8.026,8.139,7.982],"paint":[33.102,33.625,32.674,33.261,33.728,33.574,33.145,34.872,33.422,33.309,34.347,32.973,33.254,32.937,33.838]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[46.532,46.783,46.538,46.358,46.095,46.586,46.746,47.615,46.788,46.56,47.922,46.393,47.339,46.884,47.568],"script":[11.758,11.128,11.498,11.491,11.368,11.368,11.393,11.265,11.725,11.321,11.429,11.433,11.807,11.531,11.848],"paint":[34.329,35.213,34.608,34.405,34.277,34.777,34.89,35.891,34.62,34.794,36.04,34.515,35.085,34.898,35.258]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.247,16.614,16.294,17.194,17.413,15.619,15.83,15.939,16.536,16.213,17.888,15.995,15.904,16.282,15.75],"script":[0.99,1.137,0.926,0.195,1.045,0.282,0.945,0.607,0.19,0.183,1.23,0.94,0.635,1,0.924],"paint":[14.93,13.648,13.826,15.559,14.468,14.481,13.66,13.999,15.063,15.041,15.309,13.459,14.16,14.256,13.638]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.882,3.298,2.771,3.831,3.159,2.477,1.961,2.87,3.088,6.352,2.636,2.61,3.082,3.139,3.713,3.173,3.161,2.743,2.797,2.995,3.934,2.456,4.782,2.772,2.419],"script":[0.6,0.07,0.071,0.072,0.075,0.314,0.075,0.533,0.562,0.696,0.075,0.071,0.073,0.072,0.067,0.069,0.473,0.574,0.769,0.83,0.071,0.067,0.075,0.98,0.737],"paint":[2.181,2.873,2.601,1.949,0.813,1.738,1.786,1.693,1.765,1.686,2.371,1.4,1.922,2.447,1.971,1.927,1.528,2.069,1.523,1.432,2.587,1.613,3.195,1.697,1.588]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[25.713,25.349,25.232,24.512,27.245,25.798,25.943,27.311,27.595,26.565,25.989,25.761,24.812,25.667,26.271],"script":[7.182,6.291,6.918,6.009,7.283,6.158,6.063,7.393,7.285,7.814,6.283,6.205,6.116,6.681,7.086],"paint":[17.218,18.023,16.724,17.724,18.842,18.467,18.537,18.776,18.729,16.712,18.644,17.728,16.353,18.073,16.335]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.398,19.614,18.711,19.643,19.398,18.912,20.501,19.194,19.014,19.498,19.265,19.226,18.889,19.212,19.228],"script":[4.04,3.952,3.843,3.863,4.287,3.992,4.961,3.919,3.837,4.309,4.136,4.342,4.049,3.484,4.272],"paint":[14.431,13.916,14.105,14.855,13.929,14.146,14.636,14.503,14.122,14.468,14.39,14.111,13.783,14.946,13.829]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[432.937,426.977,425.663,426.648,427.83,430.124,430.799,432.924,427.041,421.002,421.465,429.748,429.335,426.148,429.126],"script":[95.523,88.874,92.604,90.919,92.342,94.593,94.295,94.188,91.529,89.332,90.371,93.716,93.573,88.797,93.173],"paint":[330.568,331.356,325.972,328.866,328.774,328.746,329.789,331.953,328.686,324.878,324.063,329.017,328.679,330.511,329.166]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.269,51.005,51.748,49.98,50.552,50.87,50.499,50.401,50.442,50.45,50.789,51.708,50.741,50.394,50.257],"script":[10.684,10.237,11.317,10.11,10.344,10.133,10.154,10.167,10.893,10.299,10.233,10.848,10.441,10.063,10.252],"paint":[39.683,39.87,39.529,38.994,39.309,39.831,39.413,39.331,38.658,39.241,39.63,39.911,39.395,39.45,39.104]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.233,13.5,13.989,13.576,14.437,13.153,13.658,13.094,14.055,13.491,14.053,13.495,13.034,13.477,13.457],"script":[11.229,11.902,11.908,11.383,12.282,11.096,11.602,11.222,12.164,11.649,12.391,11.366,11.375,11.626,11.525],"paint":[1.444,1.276,1.794,2.076,1.298,1.22,1.961,1.79,1.085,1.746,0.74,1.526,1.404,1.751,1.799]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5291948318481445]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7558364868164062]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.802882194519043]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6911125183105469]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.925585746765137]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.865234375]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.705078125]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[41.64,40.952,40.629,41.489,41.443,42.701,40.846,40.191,41.049,40.585,41.133,41.699,41.458,41.4,41.487],"script":[7.371,7.24,7.144,7.317,7.378,8.034,7.468,7.795,7.264,7.29,7.282,7.412,7.6,7.528,7.567],"paint":[33.836,33.266,33.045,33.703,33.594,34.201,32.938,31.932,33.342,32.86,33.405,33.843,33.407,33.426,33.47]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[48.07,48.094,47.421,49.25,47.006,47.346,48.532,48.571,48.744,47.933,49.571,49.04,46.634,46.929,48.179],"script":[12.544,11.98,11.854,12.442,11.617,11.707,12.26,12.721,12.184,11.807,12.748,12.213,11.32,11.735,12.278],"paint":[35.063,35.67,35.109,36.311,34.95,35.193,35.822,35.412,36.114,35.683,36.362,36.335,34.865,34.75,35.449]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.781,17.285,16.672,17.096,16.108,15.737,16.49,16.972,15.917,16.213,17.757,15.534,16.489,16.779,17.175],"script":[1.637,0.882,0.615,0.86,1.011,0.638,0.585,1,0.889,0.843,0.888,0.878,0.822,1.14,0.554],"paint":[14.178,15.282,14.597,14.933,13.781,13.482,14.616,14.184,13.756,14.465,15.597,13.09,14.197,14.875,14.504]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[4.97,3.795,2.577,2.641,2.308,2,3.357,2.759,2.484,2.211,3.157,2.899,3.677,2.595,2.984,2.398,3.292,2.845,2.722,3.663,2.819,2.539,2.572,2.564,3.649],"script":[0.072,0.78,0.078,0.324,0.086,0.075,0.29,0.799,0.076,0.07,0.627,0.07,0.694,0.073,0.07,0.076,0.465,0.072,0.717,0.075,0.793,0.074,0.482,0.082,0.07],"paint":[2.174,1.114,1.955,1.855,1.335,1.142,1.292,1.851,1.087,2.047,2.059,2.381,1.641,2.418,2.522,1.893,1.793,2.478,1.887,1.089,1.085,2.361,1.612,1.454,2.221]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[24.861,27.951,25.931,25.533,25.99,24.709,25.386,25.463,26.22,26.962,25.885,25.687,24.945,25.855,26.07],"script":[5.575,7.309,7.08,7.159,7.119,5.753,6.656,6.744,5.976,7.643,7.225,6.758,6.686,6.562,6.711],"paint":[17.032,18.884,17.573,17.253,17.302,16.974,18.004,17.654,18.026,18.156,17.214,17.388,16.506,17.857,17.344]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.552,17.966,18.967,18.447,18.441,18.303,19.012,17.91,18.41,19.579,19.651,18.768,18.059,18.928,19.154],"script":[3.74,3.24,3.759,3.567,3.621,3.497,3.766,3.186,3.258,3.646,3.973,3.684,3.24,3.669,3.688],"paint":[14.051,14.042,13.882,13.903,13.847,13.629,14.465,14.053,14.414,15.081,14.91,14.333,13.798,14.351,14.689]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[429.683,428.969,426.194,425.626,427.355,429.075,430.807,434.573,436.019,424.513,427.98,428.924,430.319,427.919,426.841],"script":[88.464,86.994,84.469,85.007,86.371,86.137,87.525,96.097,85.91,85.046,87.393,87.937,91.794,86.902,85.91],"paint":[334.477,335.13,334.858,333.641,334.006,336.152,336.515,331.702,343.316,332.694,333.86,334.251,331.706,334.274,334.054]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.116,52.137,51.096,49.554,51.429,49.688,50.064,49.66,50.097,49.609,49.524,50.95,50.873,51.027,51.01],"script":[10.252,11.52,11.038,9.976,10.459,10.227,9.925,9.975,9.978,10.022,9.884,10.177,10.328,10.334,10.116],"paint":[39.907,39.681,39.143,38.723,40.058,38.529,39.263,38.811,39.099,38.715,38.757,39.89,39.645,39.789,39.959]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.157,13.486,13.429,13.273,13.222,12.863,13.201,12.64,13.696,12.763,13.706,13.34,14.076,13.372,12.603],"script":[10.523,11.783,11.516,11.627,11.711,11.012,11.271,10.746,11.673,11.217,11.919,11.352,11.976,11.464,10.71],"paint":[1.184,1.606,0.94,0.746,0.797,1.766,1.842,1.223,0.983,1.463,0.908,1.169,1.879,1.467,1.804]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5861787796020508]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.740572929382324]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.844575881958008]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8802108764648438]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.017369270324707]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.431640625]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2373046875]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[100.3]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"01_run1k","values":{"total":[39.077,38.942,39.081,38.973,40.089,39.323,39.836,40.746,39.026,40.208,40.09,38.944,39.686,39.798,40.064],"script":[5.303,5.345,5.838,5.352,5.811,5.465,5.47,5.944,5.344,5.687,5.479,5.797,5.387,5.64,5.731],"paint":[33.318,33.136,32.823,33.171,33.86,33.429,33.92,34.359,33.236,34.102,34.163,32.688,33.837,33.724,33.886]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"02_replace1k","values":{"total":[43.871,45.11,45.18,45.306,45.342,45.276,44.724,45.089,45.009,44.018,45.377,44.693,44.105,45.699,46.696],"script":[8.517,9.142,9.403,8.795,8.97,9.582,8.88,9.421,9.623,8.571,9.66,8.883,8.666,9.691,9.001],"paint":[34.873,35.488,35.323,36.048,35.922,35.231,35.408,35.241,34.942,35.01,35.263,35.35,35.013,35.567,37.248]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.199,18.124,19.769,17.457,17.156,18.262,17.216,19.072,17.612,18.345,17.982,17.005,17.601,16.984,18.155],"script":[2.288,1.88,1.981,1.836,1.833,2.014,1.609,2.206,2.382,1.878,1.847,1.94,1.992,2.074,1.745],"paint":[15.549,14.163,16.162,13.731,13.97,14.613,14.272,15.025,13.771,14.829,14.744,13.609,14.194,13.397,15.131]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"04_select1k","values":{"total":[2.754,2.816,3.194,3.571,3.926,2.779,2.533,5.287,2.809,2.581,2.456,5.757,3.55,2.534,4.133,2.441,3.111,2.351,2.881,5.939,2.765,3.104,4.081,5.402,2.71],"script":[0.878,0.061,0.053,0.758,0.055,0.062,0.059,0.054,0.588,0.055,0.222,0.534,0.055,0.059,0.055,0.057,0.777,0.225,0.972,0.057,0.049,0.705,0.059,1.047,0.06],"paint":[1.782,2.651,1.678,1.569,3.196,2.601,2.377,2.289,1.98,1.621,0.877,1.836,1.167,2.334,1.493,2.294,1.577,1.586,1.794,2.632,2.623,2.295,1.877,2.526,2.553]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"05_swap1k","values":{"total":[20.268,20.054,19.503,19.492,20.106,18.446,19.685,19.647,19.386,19.889,19.917,19.61,19.449,19.343,19.315],"script":[0.91,0.254,0.892,1.101,0.862,1.024,0.85,1.082,0.684,1.249,0.857,0.226,0.224,0.892,0.658],"paint":[17.701,18.769,17.041,17.018,17.518,16.425,17.972,17.548,17.321,16.666,17.771,17.915,18.475,16.933,17.12]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.962,15.489,15.492,15.414,15.279,15.585,15.25,15.354,15.373,15.386,15.695,15.662,15.069,15.296,15.805],"script":[0.569,0.278,0.583,0.577,0.488,0.334,0.459,0.563,0.552,0.555,0.54,0.319,0.365,0.559,0.462],"paint":[14.639,14.54,13.852,14.075,14.295,14.786,13.979,13.791,13.786,14.104,14.142,14.639,13.669,13.861,13.94]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"07_create10k","values":{"total":[423.148,423.891,423.779,419.116,418.747,418.95,417.737,419.08,419.394,423.144,420.755,417.985,418.816,420.16,417.099],"script":[80.404,79.981,79.11,79.639,79.117,79.718,78.24,79.778,79.32,81.601,79.697,79.656,79.221,75.343,75.341],"paint":[335.091,336.757,337.633,332.302,332.336,331.828,332.433,332.351,333.164,334.525,333.854,331.131,332.558,338.009,334.977]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.79,44.725,45.243,45.123,45.865,45.354,46.131,45.514,44.895,46.115,46.28,45.988,45.878,45.999,47.515],"script":[5.653,5.587,5.61,5.655,5.652,5.617,6.049,5.569,5.576,6.219,5.971,6.135,6.169,5.818,6.086],"paint":[38.252,38.265,38.735,38.609,39.307,38.831,39.211,38.948,38.44,39.018,39.458,38.988,38.838,39.211,40.406]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.52,14.128,13.182,13.408,14.145,13.843,13.987,13.334,14.467,14.736,14.446,13.99,14.896,13.619,14.925],"script":[12.168,11.851,11.288,11.804,12.477,11.436,12.38,12.174,11.768,12.561,12.387,12.057,12.57,11.072,12.856],"paint":[1.329,2.187,1.82,1.499,0.733,1.933,1.299,1.077,1.359,1.975,1.955,1.83,2.205,1.606,1.974]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5059242248535156]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3115644454956055]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.293351173400879]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7289772033691406]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.12419033050537]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.677734375]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.5]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"01_run1k","values":{"total":[47.098,47.539,44.548,47.792,40.9,47.31,50.169,41.206,49.901,41.659,47.134,45.138,46.808,47.514,42.367],"script":[7.46,7.326,8.546,7.86,7.58,8.262,8.462,7.169,7.646,8.131,7.682,7.537,7.452,7.529,7.449],"paint":[34.15,33.2,34.148,34.18,33.126,32.873,33.183,33.449,33.779,33.293,33.404,33.925,33.023,33.3,33.404]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"02_replace1k","values":{"total":[54.514,54.669,54.99,48.906,54.321,50.814,51.366,52.204,52.704,54.651,51.669,55.361,54.125,48.118,55.299],"script":[10.591,10.375,10.703,10.168,10.756,10.522,10.538,10.421,10.697,10.712,10.783,10.716,10.658,10.309,10.715],"paint":[35.54,34.836,35.677,35.23,35.199,35.941,34.94,35.8,34.825,35.785,35.993,35.915,34.874,35.451,35.5]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.494,21.326,36.156,34.889,20.127,34.425,20.373,18.326,21.467,18.081,19.385,34.869,18.417,18.183,20.395],"script":[3.536,3.646,3.457,4.183,3.746,3.617,2.797,2.603,3.514,2.127,3.243,3.15,3.883,4.483,2.76],"paint":[12.935,14.476,16.322,14.665,15.788,14.763,15.1,14.728,15.623,14.925,14.06,14.945,14.422,13.588,15.068]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"04_select1k","values":{"total":[5.673,5.89,5.919,6.025,5.522,6.223,5.667,5.952,5.76,5.913,6.232,6.959,5.79,6.689,5.303,6.219,6.836,5.629,6.228,5.552,5.839,6.733,5.564,5.708,6.742],"script":[3.171,3.025,2.23,2.333,2.81,3.748,2.768,3.635,2.646,2.203,2.692,3.385,2.626,3.26,2.929,2.818,3.341,2.493,2.906,2.484,2.779,3.976,2.712,3.233,3.916],"paint":[2.348,2.704,3.238,2.407,1.756,2.033,2.14,2.175,2.05,2.631,2.909,2.932,2.583,3.283,1.342,2.448,2.517,2.816,3.169,1.988,1.993,2.622,2.012,2.344,1.623]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"05_swap1k","values":{"total":[23.44,21.731,21.11,36.555,20.986,37.82299999999999,37.306,37.167,36.241,21.668,36.653000000000006,24.642,38.489,19.858,20.674],"script":[2.156,2.775,2.414,2.031,2.851,3.256,2.737,2.912,2.559,2.167,3.273,2.491,4.116,2.931,2.638],"paint":[20.21,18.203,18.579,18.052,18.009,18.575,17.751,18.212,18.13,18.187,17.153,18.507,17.964,16.683,17.925]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.721,15.465,19.966,15.329,15.369,21.598,18.304,17.966,18.326,16.622,15.871,15.556,20.774,15.454,18.448],"script":[1.542,1.774,1.669,1.545,0.976,1.324,1.349,1.303,1.692,1.639,1.514,1.481,1.371,1.109,1.692],"paint":[13.008,12.974,13.866,13.657,13.559,13.404,13.549,13.1,12.981,14.05,13.6,13.734,13.273,13.85,13.434]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"07_create10k","values":{"total":[429.319,431.941,440.09,440.734,419.84,423.227,438.412,423.42,425.737,430.047,439.522,441.647,446.31,436.872,425.806],"script":[83.719,84.095,82.121,83.187,80.805,82.32,83.916,82.277,82.718,85.703,82.876,83.915,86.787,84.684,83.117],"paint":[338.855,342.304,355.296,355.518,336.232,338.77,350.763,339.039,340.871,340.731,353.902,354.482,357.46,347.615,340.544]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.029,57.531,57.672,58.137,58.034,56.319,57.784,58.031,56.317,56.662,55.576,58.073,55.802,57.417,58.02],"script":[7.11,7.662,7.215,7.37,7.157,7.232,7.913,7.14,7.1,7.288,7.124,7.046,7.1,7.229,7.275],"paint":[37.624,37.116,37.805,37.942,37.996,37.597,38.54,38.162,37.698,37.797,37.193,38.637,37.585,38.481,38.135]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.85,30.631999999999998,14.796,17.163,15.338,31.644000000000005,15.253,31.213,14.287,18.609,14.488,14.665,18.253,15.031,32.12799999999999],"script":[13.368,13.094,12.874,12.873,12.205,13.615,12.312,12.816,12.028,13.389,11.583,12.734,13.378,13.349,14.272],"paint":[1.649,1.541,1.863,1.038,2.042,2.03,2.89,2.122,1.354,1.012,2.842,1.878,1.648,1.631,1.86]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7735595703125]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.055964469909668]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0144596099853516]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1264839172363281]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.85037612915039]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.9423828125]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.69921875]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.7]}},{"framework":"unis-v1.2.2-keyed","benchmark":"01_run1k","values":{"total":[50.718,49.476,50.616,49.137,49.146,50.173,48.616,48.776,50.095,49.885,48.991,49.202,49.064,48.262,48.776],"script":[15.886,15.54,16.147,15.623,15.488,16.47,15.519,15.829,16.076,15.897,15.4,15.789,15.72,15.549,15.794],"paint":[34.394,33.507,33.987,33.078,33.224,33.283,32.67,32.543,33.59,33.536,33.163,33.004,32.917,32.293,32.559]}},{"framework":"unis-v1.2.2-keyed","benchmark":"02_replace1k","values":{"total":[61.264,60.063,60.359,60.759,60.071,60.603,60.374,60.902,60.609,60.624,60.709,59.956,60.342,60.683,60.364],"script":[23.538,23.446,23.853,22.975,23.289,23.835,23.558,23.867,23.369,23.953,23.777,23.387,23.402,23.76,23.997],"paint":[37.231,36.17,36.043,37.354,36.319,36.312,36.35,36.569,36.775,36.202,36.474,36.107,36.488,36.44,35.925]}},{"framework":"unis-v1.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.239,27.834,26.196,25.818,26.758,26.526,26.554,25.57,26.959,26.068,27.551,28.553,25.782,26.142,27.474],"script":[10.869,10.839,10.623,10.25,11.056,10.905,10.207,10.24,10.791,10.697,10.88,11.953,11.124,10.492,11.063],"paint":[13.763,14.777,14.192,14.493,14.326,14.584,14.244,13.568,14.805,14.445,15.111,15.532,13.452,14.414,15.08]}},{"framework":"unis-v1.2.2-keyed","benchmark":"04_select1k","values":{"total":[7.598,8.633,7.647,8.3,8.725,7.554,7.98,7.771,7.638,7.422,8.13,7.351,8.54,7.716,8.025,9.728,9.163,7.857,7.641,7.738,8.357,7.948,8.776,7.739,8.072],"script":[5.084,5.806,5.45,5.828,5.845,5.066,5.429,5.191,5.41,4.856,5.323,4.919,5.542,5.542,4.782,6.288,6.456,5.33,5.169,5.002,5.779,5.26,5.582,5.106,5.153],"paint":[2.015,2.317,2.037,2.351,1.648,1.605,1.767,1.655,1.157,2.207,2.227,2.283,2.011,1.832,3.058,2.15,2.438,2.027,1.458,2.623,1.647,2.574,1.764,2.484,2.764]}},{"framework":"unis-v1.2.2-keyed","benchmark":"05_swap1k","values":{"total":[25.095,24.455,24.642,24.445,24.05,24.153,24.516,25.688,25.444,25.332,24.238,24.188,25.611,24.513,24.08],"script":[5.74,5.704,5.62,5.866,5.852,5.62,5.858,5.678,6.341,5.635,4.937,5.33,6.486,5.851,5.637],"paint":[17.679,16.603,17.711,17.013,16.897,17.236,17.657,18.019,16.662,16.86,17.948,17.556,17.417,17.017,17.199]}},{"framework":"unis-v1.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.448,19.187,18.439,18.89,18.719,18.46,18.355,18.53,18.375,19.432,18.691,19.308,18.229,18.54,18.578],"script":[3.479,3.301,3.454,3.667,3.266,3.483,3.151,3.549,3.181,3.483,3.617,3.388,3.515,3.214,3.222],"paint":[14.692,14.286,14.229,14.196,14.624,13.856,14.426,14.351,14.611,15.157,14.083,14.869,13.957,14.267,13.353]}},{"framework":"unis-v1.2.2-keyed","benchmark":"07_create10k","values":{"total":[519.808,521.376,516.518,527.629,535.96,528.113,518.934,530.957,526.317,515.532,515.96,530.351,530.225,502.89,529.902],"script":[166.196,166.656,164.929,166.24,167.146,165.281,164.659,164.907,165.82,164.799,166.018,166.849,165.194,167.763,165.91],"paint":[346.753,348.04,344.846,354.684,362.063,356.186,347.563,359.322,353.567,344.074,343.033,356.837,358.277,328.487,357.376]}},{"framework":"unis-v1.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.171,56.269,53.481,53.906,58.029,54.983,53.984,53.516,56.049,56.035,56.675,56.535,56.3,57.069,56.503],"script":[16.419,16.506,15.786,15.747,17.254,16.473,16.1,15.574,16.514,16.728,16.83,16.799,16.497,16.947,16.598],"paint":[39.863,38.85,36.809,37.366,39.768,37.716,37.098,37.067,38.662,38.446,38.957,38.842,38.927,39.245,39.032]}},{"framework":"unis-v1.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.674,18.727,18.717,16.419,17.075,16.957,19.534,20.014,16.463,19.301,18.325,19.366,18.816,20.019,19.35],"script":[17.284,16.539,17.184,14.435,15.213,15.012,18.156,18.094,14.17,17.082,16.913,17.429,16.341,17.542,17.49],"paint":[1.862,2.09,1.432,1.872,1.76,1.816,1.266,0.891,2.195,2.129,1.31,1.679,2.38,2.368,1.336]}},{"framework":"unis-v1.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5917606353759766]}},{"framework":"unis-v1.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.87657356262207]}},{"framework":"unis-v1.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.899847030639648]}},{"framework":"unis-v1.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0785112380981445]}},{"framework":"unis-v1.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[60.885005950927734]}},{"framework":"unis-v1.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8896484375]}},{"framework":"unis-v1.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3017578125]}},{"framework":"unis-v1.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.8]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"01_run1k","values":{"total":[52.97,52.045,53.068,52.794,52.032,52.919,52.251,52.057,53.143,53.05,52.732,52.508,51.918,53.588,52.347],"script":[19.652,18.55,19.52,19.325,18.368,19.518,19.469,18.587,19.454,19.433,19.079,19.078,19.27,20.156,19.184],"paint":[32.876,33.059,33.048,33.006,33.191,32.967,32.338,33.032,33.247,33.179,33.191,32.996,32.217,32.994,32.738]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"02_replace1k","values":{"total":[59.928,61.759,58.759,59.661,59.141,59.445,60.768,59.651,60.674,60.044,59.345,58.755,59.483,59.762,60.646],"script":[23.81,24.367,22.687,23.422,23.561,23.08,24.243,23.955,24.096,23.6,22.654,22.498,23.494,23.102,24.302],"paint":[35.641,36.945,35.607,35.785,35.12,35.908,36.073,35.245,36.118,35.972,36.171,35.78,35.528,36.203,35.876]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[33.522,33.431,33.084,33.444,34.32,33.15,33.366,33.15,31.993,33.793,34.091,34.722,32.625,33.563,33.155],"script":[17.334,17.59,16.794,17.411,16.603,16.89,16.636,17.087,15.481,18.027,17.164,18.224,16.864,17.02,16.914],"paint":[14.536,14.464,15.222,14.211,16.438,15.038,15.484,13.737,15.166,13.147,15.313,14.32,14.623,15.483,14.896]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"04_select1k","values":{"total":[13.184,10.921,11.027,11.601,11.87,11.124,12.119,11.335,10.541,10.304,11.158,11.627,11.734,10.102,11.574,10.677,11.323,10.255,10.633,10.402,10.346,11.46,11.463,10.552,11.758],"script":[9.478,8.515,8.387,8.671,9.379,8.526,9.354,8.657,8.056,8.606,8.365,8.242,9.187,7.669,8.588,8.546,8.559,7.858,7.644,7.85,7.59,8.66,8.929,8.507,8.834],"paint":[3.127,1.634,1.82,2.802,2.341,1.777,1.923,1.859,1.45,1.017,2.272,2.763,2.035,1.339,1.292,2.011,2.653,2.278,1.885,1.735,1.679,2.659,1.312,1.156,2.176]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"05_swap1k","values":{"total":[175.849,174.894,179.68,174.183,174.066,176.486,178.255,173.339,176.499,172.682,175.115,172.381,176.497,179.353,176.704],"script":[35.17,34.247,36.117,35.237,33.829,37.235,37.776,34.627,35.002,33.547,34.401,34.437,36.31,39.428,36.071],"paint":[138.827,137.766,141.705,136.439,138.577,137.37,139.069,136.476,139.743,137.091,138.816,136.432,138.229,137.743,138.013]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.373,24.555,25.14,24.563,24.003,24.438,24.081,24.27,24.134,24.402,23.969,24.128,24.139,24.308,24.258],"script":[9.064,9.097,8.694,9.445,8.762,9.144,8.739,9.068,8.87,9.162,8.631,8.772,8.907,9.14,8.886],"paint":[14.342,14.621,15.468,14.272,14.143,14.461,14.506,14.466,14.13,14.465,13.962,14.569,14.119,14.029,14.298]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"07_create10k","values":{"total":[672.162,681.107,671.676,640.755,643.564,644.775,698.5,658.617,691.2,685.827,686.064,682.974,689.172,688.187,679.662],"script":[311.234,327.47,316.743,292.709,294.925,293.066,338.187,307.984,335.183,331.698,333.352,333.317,330.705,327.332,329.241],"paint":[354.143,346.598,348.007,341.27,341.965,344.895,353.387,343.944,349.181,347.394,345.527,342.827,351.805,353.72,343.529]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.21,62.951,63.098,64.218,63.173,63.014,64.301,63.378,62.962,62.047,62.488,61.458,65.687,62.713,64.714],"script":[23.675,23.568,23.65,24.622,23.883,23.502,24.751,24.13,23.646,23.163,23.764,22.809,24.717,23.723,24.835],"paint":[38.634,38.471,38.588,38.716,38.413,38.637,38.673,38.359,38.433,38.003,37.675,37.759,40.111,38.09,38.908]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.187,18.944,18.636,18.829,18.736,19.095,18.561,19.56,18.79,18.78,19.455,18.628,18.147,17.803,19.226],"script":[16.844,17.401,16.093,16.462,16.894,16.582,16.897,17.449,16.579,17.028,17.503,16.948,16.798,15.889,16.753],"paint":[1.666,1.443,1.373,2.27,1.208,1.372,0.726,1.983,2.107,0.84,1.861,1.583,0.907,1.803,2.031]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0255231857299805]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.9122314453125]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.723596572875977]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7328872680664062]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.805925369262695]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[146.716796875]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.5693359375]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.8]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[35.338,34.876,34.75,34.918,35.753,35.211,35.557,35.086,35.213,35.668,34.681,34.793,35.219,35.606,34.41],"script":[2.491,2.484,2.499,2.473,2.44,2.463,2.41,2.428,2.478,2.456,2.429,2.483,2.425,2.424,2.427],"paint":[32.423,31.985,31.865,32.046,32.895,32.384,32.753,32.291,32.325,32.82,31.854,31.921,32.401,32.789,31.583]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[38.483,37.642,38.401,37.951,38.527,39.129,38.526,39.564,39.568,38.2,39.381,38.358,39.489,38.215,38.915],"script":[4.679,4.663,4.734,4.663,4.666,4.802,4.712,4.903,4.927,4.686,4.868,4.825,4.884,4.697,4.918],"paint":[33.37,32.553,33.242,32.862,33.438,33.904,33.396,34.234,34.253,33.106,34.094,33.143,34.084,33.087,33.576]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.451,16.776,15.918,16.445,16.269,16.507,18.415,16,16.816,16.02,16.541,16.644,16.729,16.903,16.605],"script":[0.195,1.114,0.532,1.04,0.655,0.801,0.181,0.783,0.647,0.53,0.896,0.903,0.874,1.168,0.825],"paint":[14.796,14.053,14.395,14.067,14.532,14.697,17.057,13.654,14.912,15.165,14.448,14.104,14.546,14.693,14.792]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.749,2.845,5.471,2.256,4.968,2.447,2.978,4.423,2.651,3.352,3.494,6.211,4.624,2.074,2.71,2.601,2.882,2.93,2.486,3.081,2.516,2.11,2.946,1.937,3.042],"script":[0.056,0.063,0.058,0.056,0.055,0.056,0.056,0.073,0.06,0.803,0.658,0.347,0.995,0.054,0.058,0.056,0.056,0.058,0.065,0.766,0.054,0.052,0.058,0.062,0.941],"paint":[2.527,2.678,1.79,1.077,1.694,2.297,2.829,2.958,1.432,1.689,1.875,1.503,1.36,1.199,2.558,2.012,2.089,2.774,1.999,1.613,2.366,1.138,2.353,1.774,1.641]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[17.746,18.804,18.372,18.113,18.536,18.032,19.285,18.118,18.892,18.702,18.357,17.477,18.43,17.892,17.558],"script":[0.383,0.078,0.732,0.08,0.557,0.067,0.09,0.079,0.876,0.072,0.219,0.067,0.078,0.073,0.632],"paint":[15.291,17.173,16.4,17.116,17.192,16.679,18.272,16.798,16.209,17.563,16.477,16.221,16.492,16.283,15.518]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.864,15.168,14.861,15.019,15.156,14.323,14.604,15.194,14.789,14.612,15.22,14.669,15.513,15.331,14.815],"script":[0.115,0.418,0.262,0.219,0.377,0.109,0.101,0.295,0.103,0.114,0.418,0.107,0.154,0.108,0.104],"paint":[14.022,14.027,13.855,14.003,14.351,13.485,13.8,14.203,13.969,13.55,14.161,13.593,14.739,14.462,13.976]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[364.918,368.754,367.853,377.005,372.095,376.054,368.498,366.64,368.782,369.262,369.758,369.556,371.529,371.261,370.308],"script":[29.408,29.32,27.515,28.84,30.251,29.875,29.221,29.659,28.284,28.167,28.208,29.184,28.448,28.663,29.873],"paint":[328.782,332.698,333.73,341.338,335.162,339.56,332.66,330.41,333.93,333.744,334.97,333.792,336.527,336.185,333.884]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.021,39.686,40.284,39.835,40.802,39.752,39.477,39.79,40.42,40.469,40,41.842,40.462,40.283,40.078],"script":[2.543,2.462,2.454,2.452,2.415,2.426,2.454,2.431,2.526,2.551,2.418,2.487,2.619,2.462,2.577],"paint":[37.65,36.397,36.993,36.537,37.426,36.498,36.21,36.529,37.07,37.108,36.756,38.5,37.034,37.017,36.709]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[10.831,11.405,12.012,11.044,11.674,11.672,11.382,11.761,11.614,11.397,11.647,11.966,11.256,11.719,12.155],"script":[9.732,10.322,10.35,9.702,10.076,9.955,9.635,10.15,9.987,9.567,9.852,10.298,9.722,10.339,10.488],"paint":[0.369,0.369,1.578,1.254,0.94,1.632,1.665,0.724,1.548,1.741,1.716,1.584,0.801,1.287,1.481]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4723787307739258]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7369375228881836]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.6600341796875]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5207719802856445]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.175152778625488]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.423828125]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.37109375]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.2]}},{"framework":"vanillajs-1-keyed","benchmark":"01_run1k","values":{"total":[35.605,35.182,35.186,35.525,35.495,35.35,35.336,35.974,35.059,34.979,35.425,35.339,35.105,35.549,35.657],"script":[2.588,2.528,2.583,2.597,2.556,2.537,2.52,2.55,2.456,2.485,2.479,2.576,2.428,2.556,2.467],"paint":[32.611,32.265,32.206,32.511,32.496,32.428,32.428,33.026,32.214,32.095,32.587,32.386,32.304,32.636,32.799]}},{"framework":"vanillajs-1-keyed","benchmark":"02_replace1k","values":{"total":[38.835,38.872,38.928,38.512,38.616,38.353,39.525,39.031,39.053,39.356,39.38,39.677,40.408,38.782,41.003],"script":[4.864,4.955,4.955,4.807,4.762,4.864,4.984,4.799,4.874,4.918,4.968,5.074,5.095,4.97,5.162],"paint":[33.549,33.502,33.559,33.29,33.423,33.077,34.132,33.785,33.745,34.013,33.999,34.195,34.859,33.402,35.412]}},{"framework":"vanillajs-1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.461,16.04,15.09,15.475,15.941,15.581,15.765,15.805,16.177,16.379,16.202,15.202,15.981,16.487,16.236],"script":[0.161,0.175,0.642,0.159,0.851,0.89,0.811,0.186,0.594,0.823,0.155,0.156,0.782,1.105,0.486],"paint":[13.708,14.175,13.36,13.984,14.07,12.914,13.622,14.055,14.443,14.42,14.495,13.259,14.249,14.384,14.447]}},{"framework":"vanillajs-1-keyed","benchmark":"04_select1k","values":{"total":[5.527,2.247,2.629,2.337,1.833,3.245,2.788,3.078,3.536,3.977,4.524,2.483,2.558,2.57,3.819,3.024,3.112,2.033,4.202,2.988,3.694,2.388,3.452,2.177,2.496],"script":[0.058,0.067,0.064,0.063,0.227,0.833,0.066,0.588,0.056,0.059,0.061,0.596,0.059,0.291,0.057,0.065,0.825,0.056,0.057,0.077,0.059,0.056,0.571,0.055,0.057],"paint":[1.86,2.068,1.628,1.328,1.509,1.813,2.568,2.395,2.265,2.412,1.519,1.556,2.403,2.176,1.349,1.708,2.181,1.194,2.423,2.792,2.089,2.228,2.727,1.359,2.339]}},{"framework":"vanillajs-1-keyed","benchmark":"05_swap1k","values":{"total":[17.304,17.589,18.721,17.601,17.821,17.764,17.855,18.739,17.727,18.521,18.138,19.029,17.792,18.278,18.297],"script":[0.072,0.083,0.077,0.077,0.075,0.075,0.074,0.569,0.082,0.081,0.073,0.066,0.078,0.083,0.075],"paint":[15.65,16.515,17.267,15.878,16.463,16.518,17.081,16.828,16.729,17.222,16.329,18.325,16.005,17.04,16.897]}},{"framework":"vanillajs-1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.647,15.144,14.626,14.711,14.24,14.362,15.07,14.717,14.724,15.263,15.135,14.65,14.445,14.678,15.165],"script":[0.082,0.388,0.08,0.077,0.075,0.2,0.075,0.194,0.074,0.31,0.306,0.201,0.188,0.075,0.075],"paint":[13.841,14.069,14.109,13.923,13.477,13.26,14.319,13.776,14.073,14.279,14.387,13.752,13.466,13.873,14.093]}},{"framework":"vanillajs-1-keyed","benchmark":"07_create10k","values":{"total":[370.816,363.741,367.265,366.082,366.083,373.35,364.549,368.14,376.52,374.841,370.9,364.894,368.065,365.854,377.412],"script":[27.67,27.758,26.943,27.24,26.543,27.241,27.648,28.132,28.163,29.061,29.745,27.575,28.901,27.32,28.249],"paint":[336.334,329.492,333.851,332.316,332.403,339.436,330.373,333.42,341.529,339.154,334.261,330.776,332.601,331.938,342.414]}},{"framework":"vanillajs-1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.024,39.761,39.454,39.676,39.845,40.696,41.391,40.771,40.27,41.064,40.335,40.074,39.347,40.744,40.018],"script":[2.541,2.44,2.521,2.436,2.45,2.483,2.59,2.614,2.514,2.566,2.508,2.599,2.476,2.574,2.466],"paint":[36.699,36.486,36.154,36.464,36.578,37.372,37.976,37.341,36.96,37.658,37.003,36.615,36.032,37.323,36.717]}},{"framework":"vanillajs-1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.656,12.124,11.702,11.8,11.529,11.836,11.682,11.811,11.88,11.727,11.688,11.668,11.149,12.45,12.205],"script":[9.514,10.095,10.09,10.239,9.602,9.735,10.099,10.005,10.365,9.792,10.015,10.051,9.791,10.139,10.282],"paint":[2.06,1.321,1.534,1.47,1.221,1.861,1.496,1.042,1.171,1.854,0.759,1.392,1.286,1.806,0.952]}},{"framework":"vanillajs-1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4304313659667969]}},{"framework":"vanillajs-1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7358684539794922]}},{"framework":"vanillajs-1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.6473112106323242]}},{"framework":"vanillajs-1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6018514633178711]}},{"framework":"vanillajs-1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.092707633972168]}},{"framework":"vanillajs-1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.060546875]}},{"framework":"vanillajs-1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.041015625]}},{"framework":"vanillajs-1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[38.476,37.923,38.242,37.943,38.189,37.699,38.455,38.713,37.827,38.035,38.621,37.553,38.68,38.464,37.409],"script":[4.754,4.619,4.787,4.735,4.802,4.831,4.809,4.781,4.721,4.69,4.86,4.64,4.846,4.815,4.74],"paint":[33.314,32.919,33.087,32.817,32.956,32.495,33.242,33.517,32.702,32.934,33.387,32.498,33.427,33.257,32.262]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[41.223,41.296,41.155,41.383,40.6,41.067,41.71,41.183,40.471,41.823,41.047,40.41,40.145,40.88,41.157],"script":[6.781,6.72,6.845,6.81,6.805,6.825,6.873,6.6,6.631,6.927,6.793,6.689,6.717,6.67,6.648],"paint":[34.002,34.151,33.926,34.122,33.382,33.799,34.447,34.157,33.405,34.47,33.843,33.282,33,33.787,34.079]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.248,16.501,15.408,16.323,16.742,17.279,16.62,16.876,16.517,17.735,16.316,19.009,16.273,17.071,16.533],"script":[0.506,0.893,0.606,0.193,0.878,1.05,0.965,0.986,0.842,1.259,0.164,0.847,0.556,0.694,0.898],"paint":[14.059,14.607,13.174,15.137,14.093,14.301,13.497,14.887,15.031,14.515,14.73,16.213,15.011,14.844,14.632]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[2.418,2.414,4.033,2.629,2.339,3.211,2.493,3.025,2.567,2.647,3.427,4.558,2.589,2.707,3.192,2.346,2.717,1.972,4.091,2.391,3.229,3.728,2.86,3.985,2.526],"script":[0.585,0.323,0.063,0.067,0.069,0.836,0.471,0.861,0.065,0.228,0.956,0.201,0.069,0.071,0.924,0.345,0.062,0.068,0.071,0.071,0.063,0.065,0.433,0.59,0.415],"paint":[1.414,1.988,1.095,1.512,2.166,1.43,1.917,2.058,2.388,1.791,1.905,1.644,1.916,1.715,1.802,1.912,2.554,1.054,1.742,2.214,1.836,2.223,2.314,1.95,2.025]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[17.932,18.342,18.598,17.961,18.5,17.574,18.153,18.892,18.507,18.998,18.326,18.917,18.651,18.138,18.367],"script":[0.09,0.222,0.73,0.096,0.822,0.085,0.504,0.454,0.095,0.101,0.085,0.28,0.546,0.088,0.592],"paint":[16.317,16.785,16.723,16.455,16.061,16.497,15.106,16.673,16.921,18.221,16.752,17.318,16.72,16.66,15.397]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.028,14.842,15.762,14.917,14.724,15.162,14.752,14.69,14.74,15.223,14.883,15.241,14.866,15.698,15.149],"script":[0.111,0.404,0.358,0.269,0.107,0.107,0.243,0.276,0.416,0.111,0.104,0.444,0.115,0.332,0.107],"paint":[13.867,13.731,14.671,13.948,13.915,14.333,13.799,13.854,13.623,14.093,13.803,14.054,13.813,14.497,14.415]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[407.299,403.612,404.809,407.108,404.285,403.846,406.134,405.682,406.022,406.218,404.362,404.952,402.772,405.146,407.676],"script":[60.044,59.214,59.975,61.116,59.814,58.992,59.618,60.526,58.837,60.374,59.404,58.682,57.431,60.228,58.75],"paint":[340.464,337.556,338.11,339.026,337.758,338.184,339.873,338.419,340.543,339.137,338.135,339.72,338.673,338.257,342.185]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.717,43.722,43.518,45.175,43.128,43.991,43.105,43.657,43.771,44.159,43.286,44.041,44.025,43.884,44.001],"script":[4.563,4.235,4.4,4.346,4.287,4.354,4.258,4.453,4.445,4.39,4.332,4.431,4.476,4.431,4.327],"paint":[39.274,38.585,38.277,39.988,37.998,38.763,37.998,38.372,38.468,38.923,38.109,38.732,38.692,38.579,38.761]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.901,12.916,12.268,12.437,11.907,11.869,13.091,12.45,13.051,12.016,12.591,12.083,12.045,11.78,13.132],"script":[11.072,10.759,10.43,10.838,10.362,9.865,11.015,10.596,10.817,10.573,10.705,10.552,10.898,9.873,10.679],"paint":[1.736,1.822,1.752,1.092,1.277,1.922,1.349,1.307,1.174,0.38,1.05,1.444,0.385,1.826,2.364]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5438957214355469]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7899789810180664]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9211034774780273]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6146697998046875]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.594362258911133]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7998046875]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.484375]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[46.158,45.723,45.717,44.184,44.358,45.353,45.33,45.018,44.799,45.758,45.285,45.27,46.561,45.645,45.295],"script":[10.175,9.49,9.573,9.294,9.305,10.025,9.776,9.964,9.993,9.814,9.864,10.081,10.211,9.978,9.532],"paint":[35.516,35.778,35.701,34.463,34.631,34.899,35.085,34.631,34.375,35.51,35.002,34.752,35.91,35.246,35.293]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[50.124,47.703,48.201,49.111,49.063,48.529,49.408,49.146,48.888,48.689,49.47,48.134,48.69,49.542,49.623],"script":[12.465,12.021,11.935,12.242,12.749,12.003,12.606,12.64,12.563,12.384,12.59,11.684,12.572,12.232,12.704],"paint":[37.197,35.265,35.827,36.419,35.881,36.093,36.357,36.08,35.896,35.859,36.45,36.017,35.692,36.835,36.48]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[39.27,37.445,15.795,39.076,34.994,39.561,15.843,35.278,16.895,38.697,35.403,35.834,38.847,36.091,17.045],"script":[1.08,1.93,1.354,0.309,1.036,1.376,1.225,1.859,1.142,1.289,1.281,0.292,1.025,1.696,1.194],"paint":[16.578,14.201,13.775,17.314,14.781,15.273,13.203,13.727,14.202,17.15,14.117,13.78,15.733,14.654,14.753]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[3.109,2.634,5.472,2.549,2.288,3.094,2.696,2.252,5.573,2.532,3.118,2.766,2.379,2.983,2.239,2.448,2.682,2.413,4.382,2.556,5.051,5.841,2.652,4.033,3.409],"script":[0.937,0.294,0.067,0.068,0.069,0.944,0.072,0.073,1.027,0.069,0.397,0.066,0.283,0.804,0.067,0.069,0.493,0.076,0.35,0.068,0.069,0.071,0.526,0.87,1.032],"paint":[2.071,2.231,1.746,1.588,0.861,2.047,2.527,1.094,1.406,2.371,1.454,2.602,1.584,1.646,2.085,2.276,0.573,2.239,1.631,1.954,2.243,2.166,1.452,1.71,2.282]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[18.025,18.86,17.997,19.596,18.993,18.481,18,18.688,17.724,18.236,18.95,18.914,18.574,19.354,19.014],"script":[0.412,0.078,0.089,0.73,1.103,0.461,0.262,0.598,0.525,0.078,0.086,0.293,0.085,0.089,0.152],"paint":[16.358,17.457,16.358,16.748,16.848,16.747,15.898,16.836,15.923,16.839,17.42,16.825,17.386,17.831,17.737]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.301,15.341,15.406,16.637,15.886,15.136,15.339,17.758,15.635,15.41,15.897,15.224,15.873,15.877,15.29],"script":[0.133,0.457,0.387,0.478,0.138,0.294,0.135,0.456,0.366,0.374,0.395,0.249,0.449,0.386,0.135],"paint":[13.992,13.703,13.726,14.767,14.867,13.956,14.015,15.918,13.745,13.853,14.506,13.773,14.235,14.231,13.973]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[467.035,459.315,447.279,459.727,460.062,455.195,467.357,444.377,458.191,460.417,448.267,457.462,467.447,449.11,462.752],"script":[111.681,107.789,108.056,107.64,106.955,107.888,111.808,107.374,107.607,108.139,108.975,106.592,112.219,109.974,110.556],"paint":[348.147,344.967,332.587,345.508,346.129,340.665,348.707,330.46,344.025,345.598,332.637,344.1,348.596,332.471,345.348]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.076,49.126,48.907,49.056,50.077,49.543,49.226,49.002,47.865,48.931,48.169,48.242,47.753,48.563,50.167],"script":[8.775,8.822,8.814,9.497,9.469,9.353,9.345,8.705,8.755,8.874,9.505,8.732,8.773,8.808,8.965],"paint":[39.395,39.414,39.153,38.692,39.736,39.215,38.983,39.357,38.233,39.172,37.77,38.616,38.124,38.881,39.996]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.579,12.381,13.016,12.302,12.947,11.683,12.247,12.851,12.963,12.791,13.107,12.031,12.869,13.285,13.376],"script":[11.057,10.705,10.997,10.725,10.796,10.634,10.823,11.446,11.379,10.855,10.969,10.48,11.256,11.263,11.507],"paint":[0.965,1.59,1.561,1.496,2.052,0.355,1.338,1.314,0.36,1.855,2.05,1.468,1.532,1.652,0.467]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4329671859741211]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.244020462036133]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.343626022338867]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6673069000244141]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.67130947113037]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.4677734375]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.9130859375]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49]}},{"framework":"voby-v0.48.0-keyed","benchmark":"01_run1k","values":{"total":[40.555,40.678,39.791,39.907,39.529,39.902,39.128,39.556,39.752,39.869,40.309,40.133,39.964,40.001,39.688],"script":[7.067,7.152,7.005,6.957,7.074,7.191,6.714,6.844,7.075,7.061,7.379,6.966,7.222,7.341,7.11],"paint":[33.066,33.119,32.347,32.556,32.074,32.316,31.99,32.3,32.272,32.416,32.535,32.756,32.335,32.27,32.177]}},{"framework":"voby-v0.48.0-keyed","benchmark":"02_replace1k","values":{"total":[43.433,42.563,41.852,43.51,43.042,43.374,41.852,43.705,43.104,43.794,44.069,42.188,43.359,43.333,44.125],"script":[8.83,8.283,8.401,9.098,8.727,8.723,8.948,9.129,9.263,9.076,8.928,8.392,8.913,9.092,8.929],"paint":[34.153,33.85,33.041,34.002,33.904,34.213,32.484,34.17,33.407,34.286,34.717,33.361,34.001,33.819,34.779]}},{"framework":"voby-v0.48.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.233,16.571,16.796,16.742,15.903,16.294,16.494,16.157,16.228,16.282,15.835,16.468,16.657,15.504,16.464],"script":[1.413,1.709,1.26,1.706,1.029,1.261,0.95,1.276,1.366,1.26,1.24,0.642,0.934,1.14,1.747],"paint":[13.505,13.285,13.908,14.085,13.632,13.751,13.433,13.843,13.576,13.492,12.871,14.279,14.451,13.351,13.202]}},{"framework":"voby-v0.48.0-keyed","benchmark":"04_select1k","values":{"total":[5.885,2.272,2.87,2.925,2.784,3.101,2.691,2.541,3.996,3.123,3.535,2.624,3.39,6.676,4.151,5.446,3.286,2.851,2.827,2.744,2.793,2.784,2.995,3.011,3.299],"script":[0.57,0.147,0.705,0.6,0.839,0.142,0.467,0.153,0.85,1.092,0.512,1.059,0.363,0.78,0.135,0.138,0.146,0.15,0.61,0.488,0.794,0.995,0.653,0.234,1.1],"paint":[1.606,2.022,1.592,2.229,1.216,2.866,2.126,1.349,1.299,1.935,1.149,1.463,2.034,1.805,2.258,2.511,2.356,2.602,1.612,1.245,1.902,1.323,2.238,2.672,2.109]}},{"framework":"voby-v0.48.0-keyed","benchmark":"05_swap1k","values":{"total":[20.867,20.337,20.178,20.731,20.446,20.091,20.428,20.418,20.352,20.67,20.271,22.387,21.182,19.911,20.07],"script":[1.947,1.588,1.498,1.893,2.025,1.412,1.789,2.153,1.639,1.374,1.142,1.389,1.747,2.078,1.349],"paint":[16.83,16.999,17.816,17.518,16.546,17.707,17.61,16.997,16.998,18.201,17.656,17.564,18,16.578,16.72]}},{"framework":"voby-v0.48.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.215,16.482,15.768,15.868,15.791,16.174,15.845,15.549,15.986,15.548,15.932,15.995,15.675,15.98,15.806],"script":[0.882,0.732,0.726,0.906,0.691,1.043,0.967,0.732,0.917,0.699,0.725,0.86,0.699,0.977,0.687],"paint":[14.342,14.881,13.835,14.247,14.322,14.221,13.938,14.054,14.238,13.833,14.493,14.406,14.305,14.267,14.139]}},{"framework":"voby-v0.48.0-keyed","benchmark":"07_create10k","values":{"total":[394.705,391.934,396.002,396.37,394.502,402.957,391.737,395.385,392.712,393.831,394.055,396.473,396.491,399.094,393.096],"script":[67.837,68.567,70.331,67.111,67.463,67.746,68.964,68.324,68.252,69.439,68.12,68.726,69.491,69.665,67.12],"paint":[320.256,316.458,318.948,322.672,320.629,328.67,316.193,320.421,317.82,317.903,319.298,321.194,320.39,322.46,319.56]}},{"framework":"voby-v0.48.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.126,44.465,44.319,44.025,44.132,44.66,43.817,44.913,43.999,43.864,43.713,44.197,44.08,44.701,44.32],"script":[6.252,6.585,6.734,6.689,6.548,6.738,6.691,6.637,6.566,6.27,6.314,6.663,6.469,6.658,6.625],"paint":[37.955,36.998,36.746,36.506,36.726,37.074,36.291,37.437,36.607,36.743,36.489,36.711,36.758,37.217,36.869]}},{"framework":"voby-v0.48.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.237,15.36,13.545,13.244,13.965,13.099,13.279,12.928,15.115,13.408,14.578,13.946,13.475,13.907,15.354],"script":[11.45,13.467,12.001,11.7,11.691,11.275,11.775,11.482,12.96,11.943,13.02,11.75,12.038,11.952,13.296],"paint":[1.691,1.108,1.463,1.452,1.457,1.102,1.41,0.398,2.046,1.372,0.513,1.085,1.341,1.85,1.953]}},{"framework":"voby-v0.48.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6431703567504883]}},{"framework":"voby-v0.48.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.184615135192871]}},{"framework":"voby-v0.48.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2092485427856445]}},{"framework":"voby-v0.48.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1176328659057617]}},{"framework":"voby-v0.48.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.268893241882324]}},{"framework":"voby-v0.48.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[33.6552734375]}},{"framework":"voby-v0.48.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8427734375]}},{"framework":"voby-v0.48.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.6]}},{"framework":"vue-v3.4.18-keyed","benchmark":"01_run1k","values":{"total":[44.433,43.351,42.88,42.995,42.742,42.284,42.002,43.151,43.557,44.754,43.464,42.424,43.588,43.508,43.974],"script":[9.882,9.083,9.166,8.59,9.089,9.291,8.782,9.007,9.471,9.316,9.146,8.818,9.239,9.034,9.861],"paint":[34.134,33.869,33.312,33.976,33.241,32.601,32.813,33.738,33.675,34.798,33.907,33.19,33.923,34.069,33.705]}},{"framework":"vue-v3.4.18-keyed","benchmark":"02_replace1k","values":{"total":[47.738,47.229,47.468,46.973,45.697,46.399,46.632,47.151,47.155,46.833,46.234,47.709,46.859,45.874,47.28],"script":[11.68,11.394,11.371,11.318,11.56,11.167,12.066,11.634,11.473,11.881,11.403,11.975,11.913,11.079,11.746],"paint":[35.591,35.4,35.644,35.2,33.681,34.789,34.155,35.042,35.24,34.535,34.386,35.303,34.534,34.372,35.114]}},{"framework":"vue-v3.4.18-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.863,18.724,19.587,18.867,18.95,20.403,19.021,20.194,18.891,20.984,19.001,19.001,19.038,18.697,20.032],"script":[3.923,3.241,3.765,3.59,2.926,3.791,3.745,4.099,2.673,3.567,2.734,3.112,3.328,3.078,3.368],"paint":[14.077,13.93,14.83,14.227,14.4,14.713,14.171,14.875,15.215,15.5,14.876,14.895,14.724,14.246,15.545]}},{"framework":"vue-v3.4.18-keyed","benchmark":"04_select1k","values":{"total":[3.999,3.268,4.04,4.296,4.076,3.844,3.835,3.705,4.242,4.243,4.643,4.328,3.138,4.143,4.148,4.017,4.412,4.382,3.816,3.834,3.759,3.801,3.676,4.498,3.333],"script":[1.661,1.603,1.381,2.033,1.571,1.594,1.646,1.064,1.625,1.476,1.638,1.256,0.94,0.989,1.023,1.778,1.548,1.789,1.145,1.214,1.43,1.521,1.057,1.816,0.894],"paint":[1.858,1.564,1.857,2.154,1.747,2.137,1.936,2.538,2.499,1.637,1.656,1.779,2.095,3.059,2.497,1.466,1.102,2.479,2.061,2.511,2.201,1.165,2.518,1.942,2.339]}},{"framework":"vue-v3.4.18-keyed","benchmark":"05_swap1k","values":{"total":[20.377,21.302,20.541,19.932,19.705,20.186,19.15,20.074,20.136,20.398,21.55,19.802,19.877,19.89,20.182],"script":[1.82,1.851,1.532,1.213,1.565,1.991,1.667,1.626,1.735,2.262,1.907,1.709,1.947,1.369,1.802],"paint":[17.87,18.392,17.338,16.99,17.16,16.452,16.373,16.786,17.271,16.851,18.195,17.079,16.935,17.507,16.987]}},{"framework":"vue-v3.4.18-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.316,18.177,18.234,20.053,18.978,19.453,17.972,18.061,18.58,18.216,19.441,17.86,18.402,19.479,18.141],"script":[3.044,3.091,3.092,3.768,3.138,3.096,3.108,2.979,3.197,3.375,3.149,3.029,3.155,3.206,3.197],"paint":[14.483,13.863,14.413,15.419,15.063,15.598,13.827,14.269,14.582,13.592,15.251,13.809,14.456,15.577,14.114]}},{"framework":"vue-v3.4.18-keyed","benchmark":"07_create10k","values":{"total":[441.745,443.524,437.414,439.732,442.745,439.212,444.953,446.687,445.089,440.527,441.791,433.942,440.011,436.374,441.553],"script":[96.827,96.416,93.369,101.901,97.092,96.911,100.254,99.264,99.31,97.328,97.144,96.999,100,94.082,97.46],"paint":[337.825,340.473,337.229,331.122,338.834,335.796,337.917,340.687,339.123,336.586,337.689,330.306,333.395,335.659,337.652]}},{"framework":"vue-v3.4.18-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.853,47.558,48.145,47.876,47.989,48.558,47.726,48.332,48.921,47.694,48.281,48.369,48.147,47.512,48.77],"script":[8.807,8.226,8.224,8.456,8.465,8.368,8.242,8.441,8.714,8.264,8.337,8.585,8.373,8.147,8.622],"paint":[40.088,38.475,39.088,38.557,38.685,39.33,38.628,39.041,39.372,38.529,39.074,38.923,38.9,38.532,39.246]}},{"framework":"vue-v3.4.18-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.82,14.522,15.136,15.435,14.41,15.555,14.427,16.374,14.44,14.824,14.279,14.854,15.563,15.022,15.314],"script":[13.263,13.097,13.58,13.288,12.294,13.346,12.343,13.612,12.738,12.406,12.679,12.487,12.877,12.73,12.875],"paint":[1.459,1.338,1.467,1.538,1.882,1.321,1.987,2.645,1.609,2.311,1.503,2.265,2.586,1.913,2.075]}},{"framework":"vue-v3.4.18-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7182464599609375]}},{"framework":"vue-v3.4.18-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7485103607177734]}},{"framework":"vue-v3.4.18-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.772507667541504]}},{"framework":"vue-v3.4.18-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.17376708984375]}},{"framework":"vue-v3.4.18-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.313244819641113]}},{"framework":"vue-v3.4.18-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[55.765625]}},{"framework":"vue-v3.4.18-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20.4345703125]}},{"framework":"vue-v3.4.18-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[110.1]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"01_run1k","values":{"total":[42.497,42.308,41.728,42.22,42.659,42.017,41.773,41.377,42.263,42.934,42.532,41.828,42.813,43.285,41.756],"script":[8.804,8.651,8.831,8.682,8.808,8.622,8.698,8.485,8.671,8.921,8.771,8.86,9.297,9.494,8.712],"paint":[33.282,33.262,32.508,33.142,33.433,32.99,32.661,32.489,33.184,33.591,33.337,32.561,33.143,33.38,32.629]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"02_replace1k","values":{"total":[47.255,48.456,48.007,48.224,48.357,48.075,47.707,47.828,47.975,47.875,47.876,48.069,48.33,49.002,47.889],"script":[12.352,12.557,12.219,12.712,12.79,12.818,12.243,12.526,12.859,12.543,12.933,12.732,12.884,12.362,12.729],"paint":[34.468,35.475,35.354,35.088,35.136,34.827,35.019,34.878,34.688,34.905,34.532,34.889,35.019,36.139,34.762]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.137,27.033,27.595,27.317,27.89,27.433,26.648,28.914,28.605,27.65,27.6,27.66,27.351,28.085,30.275],"script":[11.61,11.887,11.71,12.005,12.342,11.804,10.912,12.536,12.892,12.114,12.44,11.872,12.071,13.158,12.95],"paint":[15.593,13.247,13.507,13.969,13.934,13.049,14.665,14.782,13.719,14.342,13.932,14.727,13.487,13.823,15.577]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"04_select1k","values":{"total":[12.337,13.284,13.511,12.694,13.115,12.356,13.079,13.188,13.022,13.086,13.633,13.557,14.19,12.539,11.97,12.209,13.113,12.856,13.836,12.571,14.472,12.314,13.079,13.844,13.645],"script":[9.277,10.148,9.642,9.464,10.298,9.045,9.668,9.907,10.061,10.187,10.506,10.382,10.332,9.263,9.61,9.669,9.875,10.151,10.225,9.512,10.672,8.95,9.671,10.736,10.532],"paint":[2.904,2.974,2.989,2.572,2.105,2.785,3.278,3.127,1.724,2.757,2.965,2.964,2.853,2.711,1.55,2.395,3.077,1.562,3.431,2.925,2.043,1.564,2.857,2.479,2.316]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"05_swap1k","values":{"total":[29.611,28.902,28.981,28.644,28.562,29.828,30.179,28.344,30.035,28.698,28.416,27.637,29.09,31.407,28.25],"script":[10.845,10.901,10.865,9.89,10.399,11.523,10.376,10.017,11.451,10.186,10.237,9.326,10.764,10.82,10.235],"paint":[16.814,16.106,16.684,17.687,16.999,17.324,18.549,16.982,17.252,17.264,17.177,16.425,16.712,17.812,16.98]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.315,20.926,21.324,20.221,20.175,19.81,19.611,20.301,21.569,19.767,19.854,19.715,19.654,20.724,19.611],"script":[5.261,5.433,5.431,5.311,5.48,4.993,4.895,5.041,5.606,5.033,5.095,4.947,4.929,5.402,4.912],"paint":[14.299,14.711,15.147,14.196,13.97,13.944,13.727,14.547,15.051,13.998,14.019,13.74,13.707,14.505,13.69]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"07_create10k","values":{"total":[440.034,451.016,445.11,447.954,437.662,441.545,444.62,444.782,441.796,446.248,441.524,440.717,442.929,440.869,438.496],"script":[100.421,101.038,99.187,103.246,98.544,101.881,105.524,97.523,103.956,98.283,103.571,97.7,100.373,100.711,103.033],"paint":[332.709,343.294,339.075,338.131,332.349,332.958,332.649,340.617,331.209,341.306,331.214,336.235,335.915,333.506,328.821]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.8,54.064,53.135,52.972,53.046,52.909,52.912,53.62,53.528,52.699,52.248,53.214,53.535,53.027,53.066],"script":[13.623,13.386,13.236,13.489,13.428,13.379,13.542,13.16,13.46,13.337,13.356,13.398,14.266,13.014,13.464],"paint":[38.299,39.818,39.057,38.633,38.744,38.649,38.486,39.613,39.193,38.483,38.044,38.952,38.384,39.13,38.711]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.459,16.035,15.627,17.278,18.517,15.954,16.346,15.998,15.504,15.689,17.351,17.644,17.678,17.242,16.432],"script":[13.811,13.635,14.088,15.641,15.967,14.375,14.223,14.425,13.668,13.764,15.229,15.053,15.821,15.122,14.532],"paint":[2.517,1.925,1.439,1.525,1.997,1.474,2.018,0.952,1.036,1.557,1.489,1.496,1.056,1.238,1.794]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7086582183837891]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.163657188415527]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.18806266784668]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2241888046264648]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.416019439697266]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[52.734375]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.345703125]}},{"framework":"vue-jsx-v3.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[102]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"01_run1k","values":{"total":[44.949,47.261,46.003,45.282,46.215,46.008,45.61,45.272,46.487,46.378,46.53,44.947,45.26,45.198,45.213],"script":[10.978,11.358,11.62,10.663,11.372,11.706,11.334,10.88,11.989,11.601,11.539,10.709,10.515,10.813,11.055],"paint":[33.554,35.474,33.968,34.215,34.447,33.875,33.896,33.978,34.073,34.38,34.561,33.833,34.324,33.994,33.757]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"02_replace1k","values":{"total":[51.331,49.246,50.255,47.96,48.888,49.335,50.156,48.835,49.974,49.476,49.084,49.558,49.54,49.752,50.761],"script":[14.822,14.042,14.574,13.557,14.088,14.62,14.672,13.542,14.46,13.58,13.874,13.576,14.522,14.666,14.815],"paint":[35.919,34.766,35.251,33.994,34.376,34.177,35.077,34.878,35.097,35.475,34.782,35.44,34.606,34.686,35.518]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.764,22.656,22.838,26.697,22.287,22.677,21.881,22.938,22.721,22.137,23.321,22.406,22.273,21.828,22.609],"script":[7.316,6.385,6.137,7.795,6.649,7.003,6.471,6.508,6.978,6.466,6.55,6.219,5.679,6.438,6.766],"paint":[14.318,14.442,15.109,17.422,13.812,14.945,14.113,14.9,14.602,13.991,14.75,14.758,15.626,14.079,14.717]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"04_select1k","values":{"total":[6.98,6.426,7.153,6.74,6.687,6.625,6.507,6.496,6.235,6.586,6.743,6.224,6.515,6.764,6.526,6.321,6.461,7.201,7.061,6.255,6.944,6.556,6.657,6.725,6.132],"script":[4.032,3.699,4.7,4.714,3.599,3.501,4.679,4.09,3.614,4.031,4.196,3.296,4.602,4.207,3.833,3.428,4.181,4.262,4.467,3.873,4.716,4.088,3.877,4.044,4.126],"paint":[2.448,2.281,2.342,1.916,2.964,2.995,1.726,2.291,2.233,2.443,1.748,2.096,1.803,1.64,2.586,2.771,2.168,2.806,1.41,2.274,2.106,1.82,1.984,1.889,1.894]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"05_swap1k","values":{"total":[23.052,22.903,22.122,22.48,24.212,23.001,23.512,23.246,22.451,23.06,22.764,23.509,22.406,22.932,22.978],"script":[4.742,5.003,4.272,4.597,4.557,5.027,4.62,5.161,4.715,4.907,4.008,4.798,4.269,4.399,4.529],"paint":[17.125,16.349,16.328,16.125,17.637,16.367,17.193,16.493,16.758,16.727,17.744,17.475,16.36,17.211,16.616]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.494,22.161,22.767,22.201,22.399,21.875,21.401,22.324,21.687,21.765,22.494,22.181,22.323,22.849,22.212],"script":[6.876,6.742,6.55,6.782,6.28,6.798,6.124,6.989,6.764,6.509,6.922,6.883,6.619,6.769,6.834],"paint":[14.831,14.545,15.098,14.633,15.077,13.693,14.569,14.544,13.87,14.445,14.73,14.547,14.807,15.316,14.623]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"07_create10k","values":{"total":[453.76,453.178,457.858,449.276,455.135,450.99,455.431,452.742,449.106,453.076,448.861,452.809,456.995,451.841,455.661],"script":[110.816,107.777,108.676,109.395,113.477,112.544,113.297,107.727,105.775,106.61,115.313,114.971,111.751,107.607,108.714],"paint":[336.304,338.831,342.6,333.221,334.942,331.683,335.068,338.255,336.701,339.68,326.906,331.147,338.529,337.599,340.254]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.226,51.118,52.183,53.015,50.859,51.124,52.382,51.309,51.605,53.853,50.488,52.944,51.41,51.247,52.413],"script":[11.883,11.927,12.389,13.528,12.265,12.616,12.802,12.513,12.61,13.253,11.415,13.284,12.784,12.494,12.928],"paint":[38.446,38.355,38.955,38.614,37.725,37.652,38.618,37.915,38.131,39.715,38.207,38.791,37.771,37.891,38.622]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.44,16.175,17.108,16.636,18.654,16.839,17.609,18.553,18.08,17.329,16.276,17.804,16.832,16.359,16.639],"script":[15.859,14.103,14.896,14.913,16.92,14.782,15.342,16.456,15.875,14.949,13.998,15.902,14.926,14.295,14.551],"paint":[1.486,1.931,2.127,0.857,1.429,1.953,1.897,1.841,1.99,1.889,1.39,1.814,1.069,1.967,1.987]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7588930130004883]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.496708869934082]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.546605110168457]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4332904815673828]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.30594825744629]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[60.3271484375]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1259765625]}},{"framework":"vue-pinia-v3.4.18 + 2.1.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[110.7]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"01_run1k","values":{"total":[44.543,43.685,42.671,43.875,43.282,44.014,43.227,42.622,43.996,44.119,42.989,44.139,44.427,43.809,43.916],"script":[10.349,9.231,10.066,9.975,9.496,9.784,9.815,9.861,9.835,9.954,9.567,9.815,9.879,10.013,9.853],"paint":[33.721,33.972,32.155,33.451,33.313,33.805,32.959,32.321,33.612,33.717,32.968,33.864,34.077,33.35,33.602]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"02_replace1k","values":{"total":[51.054,50.571,50.365,50.481,50.574,49.954,50.817,50.289,50.519,52.195,50.253,49.96,50.379,50.688,49.933],"script":[14.749,14.418,14.41,14.132,14.065,14.169,14.186,14.367,14.125,14.592,14.008,14.037,14.262,14.363,13.866],"paint":[35.82,35.743,35.531,35.919,36.034,35.357,36.133,35.485,35.909,37.143,35.801,35.479,35.698,35.878,35.624]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.053,19.461,19.64,20.777,18.841,19.199,20.283,19.432,19.759,19.337,18.707,20.464,19.786,20.07,19.538],"script":[3.826,3.697,3.623,3.915,3.299,3.786,4.604,3.232,3.663,3.796,3.537,3.904,3.596,3.469,4.307],"paint":[15.867,14.603,14.15,15.819,14.537,13.817,14.291,13.807,14.581,14.422,13.877,15.195,15.144,14.608,13.112]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"04_select1k","values":{"total":[6.772,5.388,6.467,6.527,6.05,6.099,5.793,5.304,6.415,6.2,6.415,5.54,5.532,6.543,6.197,5.783,5.613,5.759,6.324,6.292,6.359,6.031,6.303,5.68,5.429],"script":[3.875,3.359,4.085,3.482,3.664,3.729,3.562,3.018,3.569,3.219,3.573,3.244,3.627,3.962,3.87,3.323,3.31,3.307,3.906,3.53,3.73,3.309,3.798,3.732,2.692],"paint":[1.518,1.917,2.259,2.908,2.281,1.915,1.401,1.211,2.699,1.729,2.059,1.831,1.35,2.313,1.687,2.354,2.199,2.346,1.645,1.737,2.504,2.621,1.873,1.358,1.681]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"05_swap1k","values":{"total":[21.837,21.154,21.112,21.383,21.217,21.009,20.9,20.916,22.932,21.534,20.511,21.116,20.764,21.463,21.65],"script":[2.62,2.17,2.205,2.326,2.698,2.373,2.381,1.999,2.904,2.258,1.838,2.371,2.259,2.647,2.781],"paint":[18.141,17.939,16.922,17.227,16.633,17.601,15.573,17.673,18.625,17.787,17.198,17.162,17.198,17.475,17.587]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.243,16.427,16.102,16.213,16.904,16.906,16.336,16.36,16.175,17.212,16.957,16.385,17.052,16.312,17.094],"script":[1.285,1.25,0.966,1.261,1.243,1.58,1.244,1.289,1.369,1.234,1.302,1.204,1.274,1.195,1.246],"paint":[13.68,14.473,14.46,14.494,14.898,14.592,14.132,14.279,14.198,15.065,14.736,14.259,15.001,14.382,15.068]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"07_create10k","values":{"total":[466.529,459.824,441.566,454.271,449.359,447.182,446.03,461.711,458.911,443.26,455.296,455.89,442.404,458.54,465.625],"script":[105.481,104.62,103.627,102.951,103.032,102.143,107.149,107.929,103.349,104.386,105.614,106.227,103.848,106.567,105.258],"paint":[354.036,348.348,331.177,344.509,339.03,338.274,331.823,346.839,348.804,332.169,342.873,342.897,331.791,344.558,353.478]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.152,50.879,49.947,49.838,50.199,50.429,50.46,49.976,50.548,50.455,49.66,49.935,50.334,49.711,50.245],"script":[9.667,10.133,9.703,9.376,9.694,9.916,10.353,9.734,10.048,10.125,9.671,9.786,9.927,9.742,9.596],"paint":[39.534,39.87,39.314,39.559,39.567,39.577,39.177,39.305,39.624,39.414,39.078,39.205,39.525,39.059,39.752]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.992,18.477,18.05,19.157,18.392,18.617,18.655,18.781,19.036,18.085,19.089,18.69,18.219,19.965,18.635],"script":[17.455,16.589,16.182,17.674,16.503,17.023,16.764,16.98,17.181,15.717,16.979,16.213,16.872,17.466,17.074],"paint":[1.342,1.416,1.758,1.383,1.764,1.485,1.776,1.68,1.751,1.329,1.433,2.373,0.863,2.056,1.456]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5581331253051758]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.625260353088379]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6384878158569336]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.323948860168457]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.75620460510254]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[29.123046875]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8896484375]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.8]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"01_run1k","values":{"total":[38.728,39.048,37.637,38.279,37.416,37.448,37.605,38.489,39.005,38.926,38.822,38.41,38.64,40.378,37.994],"script":[5.42,5.457,5.022,5.04,5.071,5.017,5.046,5.794,5.404,5.878,5.745,5.591,5.587,5.64,5.06],"paint":[32.898,33.178,32.193,32.827,31.926,32.013,32.138,32.296,33.208,32.661,32.667,32.415,32.661,34.323,32.526]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"02_replace1k","values":{"total":[44.883,43.225,43.464,43.945,43.842,43.812,43.853,43.775,42.217,43.191,44.224,43.736,43.221,43.901,43.95],"script":[9.596,9.232,9.208,9.484,9.431,9.466,9.391,9.764,9.214,9.317,9.777,9.198,9.402,9.391,9.629],"paint":[34.859,33.581,33.859,34.049,33.898,33.915,34.028,33.595,32.551,33.442,34,34.111,33.398,34.091,33.893]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.844,16.969,18.546,17.029,17.332,18.53,16.815,16.722,16.89,17.535,16.924,17.448,16.517,16.321,16.567],"script":[1.052,1.418,2.091,1.966,1.805,2.427,1.799,1.741,1.561,1.687,2.031,1.155,1.332,1.772,1.332],"paint":[13.868,14.529,15.127,13.867,14.272,14.597,13.917,13.522,13.523,14.567,13.364,15.256,13.503,12.985,13.784]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"04_select1k","values":{"total":[4.485,3.68,2.631,3.484,3.03,3.323,2.808,2.512,3.393,3.089,3.137,3.69,5.759,6.491,3.044,2.822,2.971,2.904,2.754,2.68,3.918,3.594,2.448,3.301,3.339],"script":[0.124,0.544,0.487,1.054,0.753,1.169,0.128,0.127,1.057,0.799,0.133,1.117,0.141,0.881,1.121,0.402,0.119,0.123,0.835,0.124,0.888,0.5,0.127,0.471,0.122],"paint":[2.416,1.117,2.049,2.315,2.184,1.525,2.488,2.289,2.228,2.19,2.899,1.449,2.206,1.979,1.818,1.527,2.758,2.689,1.826,2.088,1.766,2.131,2.221,1.624,2.932]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"05_swap1k","values":{"total":[21.34,22.535,21.436,21.659,21.46,21.879,21.386,22.489,22.578,22.488,21.51,21.449,21.695,22.341,21.739],"script":[3.504,4.038,3.629,3.684,3.643,3.569,3.602,3.744,3.944,3.95,4.127,2.913,3.645,4.158,3.286],"paint":[16.108,16.343,16.511,16.438,16.483,16.555,16.3,17.609,17.369,17.588,15.803,17.427,16.195,16.908,17.175]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.084,16.757,16.046,16.621,16.031,16.491,16.516,16.637,16.091,16.355,16.523,15.99,16.502,16.361,16.499],"script":[1.653,1.779,1.421,1.748,1.654,1.74,1.702,1.706,1.405,1.598,1.617,1.648,1.726,1.746,1.723],"paint":[13.693,14.275,13.926,13.844,13.38,13.885,14.124,13.912,13.76,13.863,14.177,13.641,13.767,13.991,14.362]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"07_create10k","values":{"total":[397.192,395.59,391.591,394.115,397.989,387.336,391.817,389.171,393.075,384.394,390.796,392.527,389.704,391.761,390.534],"script":[63.153,62.244,63.616,67.087,62.231,60.973,62.333,60.874,65.954,59.692,63.269,59.76,62.307,59.532,60.168],"paint":[326.921,326.524,321.434,320.296,329.182,319.841,323.045,321.753,320.611,318.322,321.001,325.946,320.405,325.436,323.686]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.783,44.086,45.071,45.402,45.794,46.417,45.91,46.678,46.134,46.327,46.788,45.955,46.52,45.77,46.789],"script":[7.242,6.985,7.083,7.089,7.209,7.715,7.091,7.73,7.624,7.524,7.692,7.401,7.678,7.352,7.087],"paint":[38.651,36.33,37.168,37.474,37.67,37.803,37.946,37.946,37.657,37.941,38.2,37.696,37.866,37.568,38.83]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.58,13.594,13.159,13.726,13.604,13.733,14.142,13.189,14.023,13.849,14.604,14.324,13.926,13.585,14.127],"script":[12.632,11.731,11.697,12.219,12.289,11.699,12.093,11.029,11.964,12.114,12.775,12.561,12.18,11.86,12.324],"paint":[1.048,1.771,1.367,1.416,1.219,1.952,1.907,0.811,1.22,1.647,1.737,1.66,1.656,0.628,1.386]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4971494674682617]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.180891990661621]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.340214729309082]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0964574813842773]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.035795211791992]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.076171875]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.662109375]}},{"framework":"vuerx-jsx-v0.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[52.9]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[37.427,37.585,37.416,37.465,37.145,39.016,37.246,37.936,38.291,37.928,37.714,37.664,38.05,38.24,38.288],"script":[4.584,4.573,4.625,4.665,4.422,5.013,4.622,4.91,4.901,4.705,4.778,4.749,4.627,5.132,4.709],"paint":[32.437,32.602,32.373,32.384,32.326,33.608,32.223,32.619,32.99,32.811,32.548,32.492,33.009,32.677,33.192]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[42.374,41.971,41.241,43.664,42.051,41.103,41.505,40.884,41.173,43.193,41.921,41.99,42.368,42.376,42.048],"script":[7.111,7.178,6.821,6.954,7.203,6.893,7.08,6.855,6.934,6.96,7.153,7.121,7.268,7.355,7.3],"paint":[34.812,34.322,33.948,36.268,34.414,33.772,33.993,33.586,33.795,35.774,34.326,34.404,34.649,34.583,34.304]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.174,16.941,17.333,17.485,17.706,16.76,16.542,17.142,16.389,17.662,16.229,16.377,16.37,16.548,16.543],"script":[1.241,1.165,1.248,0.936,1.71,0.918,1.199,1.1,1.136,0.949,0.961,0.57,1.041,0.974,1.205],"paint":[14.948,13.84,14.834,15.91,13.361,14.562,13.944,15.094,13.985,14.562,14.549,14.539,13.894,13.83,13.877]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[4.541,3.316,2.841,2.569,2.552,2.695,3.013,3.105,3.768,3.087,3.701,3.499,4.047,2.538,4.267,2.776,2.436,5.436,2.921,3.316,3.018,2.245,2.792,5.503,4.319],"script":[1.132,0.346,0.084,0.1,0.085,0.521,0.089,0.999,0.747,0.553,0.46,0.087,0.092,0.476,0.302,0.085,0.223,0.923,0.714,0.875,0.475,0.493,0.531,0.864,0.597],"paint":[2.159,1.489,1.662,2.364,2.137,2.002,1.677,1.67,1.634,2.429,1.897,1.24,1.611,1.229,1.852,2.592,1.577,2.539,2.121,1.924,1.645,1.644,2.164,2.614,2.542]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[18.261,19.147,17.899,19.514,18.753,18.212,18.572,19.105,17.962,18.382,18.292,18.083,19.424,19.006,18.892],"script":[0.776,0.718,0.098,0.097,0.104,0.424,0.103,1.071,0.096,0.106,0.099,0.758,0.783,0.102,0.754],"paint":[16.424,17.282,16.446,18.12,17.187,16.588,17.154,16.926,15.924,17.334,16.445,15.905,17.205,17.624,16.641]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.581,14.824,14.879,15.337,15.603,15.437,14.847,15.154,15.634,15.011,14.84,14.822,15.337,15.211,14.999],"script":[0.241,0.127,0.124,0.122,0.31,0.204,0.123,0.115,0.13,0.275,0.12,0.12,0.441,0.123,0.338],"paint":[14.805,13.715,14.028,14.459,14.576,14.474,13.997,14.322,14.781,13.886,14.03,13.999,14.208,14.354,13.951]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[399.488,393.198,396.825,398.809,399.207,390.867,396.681,393.118,392.61,396.564,395.35,395.815,397.212,391.316,394.59],"script":[52.557,51.614,53.723,52.43,53.287,52.027,51.846,52.105,52.367,51.542,51.817,53.01,56.049,52.872,50.892],"paint":[340.068,335.044,336.207,339.677,339.285,332.237,338.242,334.333,333.545,338.108,336.868,336.216,334.401,331.911,337.12]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.503,41.965,42.267,42.302,42.291,42.759,41.918,42.727,42.84,43.067,41.987,43.246,43.556,41.806,42.716],"script":[4.544,4.427,4.388,4.34,4.424,4.552,4.444,4.543,4.477,4.458,4.323,4.904,4.841,4.317,4.409],"paint":[37.077,36.721,37.037,37.148,37.03,37.393,36.643,37.36,37.529,37.798,36.809,37.522,37.891,36.663,37.49]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.301,11.861,11.71,11.397,11.615,12.067,11.872,12.325,12.238,11.798,11.935,11.454,11.881,11.97,11.734],"script":[9.386,10.088,10.296,10.146,10.209,10.187,10.398,10.152,10.448,10.024,10.206,9.335,9.988,10.664,9.827],"paint":[1.826,1.676,1.32,0.848,0.421,1.608,1.385,1.501,0.931,0.996,1.64,2.04,1.803,1.211,1.822]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.598057746887207]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.772341728210449]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9095382690429688]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7952461242675781]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.315508842468262]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.0224609375]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.453125]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[96.3]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"01_run1k","values":{"total":[52.37,51.256,52.739,51.811,51.498,51.591,51.658,51.907,51.641,50.948,50.91,51.032,50.854,52.068,51.377],"script":[15.818,15.618,16.465,15.912,15.466,16.017,15.703,16.088,16,15.631,15.432,15.552,15.697,15.95,15.849],"paint":[36.115,35.185,35.813,35.481,35.596,35.144,35.499,35.365,35.208,34.877,35.012,35.034,34.718,35.674,35.101]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"02_replace1k","values":{"total":[60.215,56.749,57.634,56.991,57.902,56.996,57.419,57.383,57.751,57.956,58.081,57.142,57.775,57.527,57.547],"script":[21.302,19.878,20.981,20.357,20.846,19.976,20.234,20.54,20.961,20.509,20.576,20.664,20.204,19.667,20.919],"paint":[38.229,36.42,36.206,36.186,36.587,36.552,36.722,36.408,36.336,36.947,37.046,36.018,37.099,37.405,36.165]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.238,24.461,25.037,24.551,25.269,24.606,26.303,25.827,24.95,25.326,24.024,26.057,24.036,24.496,22.928],"script":[9.488,8.338,8.481,7.817,9.204,8.621,10.082,9.471,8.628,8.029,8.686,9.129,7.857,8.703,7.581],"paint":[14.644,13.623,14.591,15.395,14.357,14.368,13.802,14.806,13.365,15.669,13.79,14.431,15.091,14.644,14.055]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"04_select1k","values":{"total":[5.462,5.508,4.152,4.953,5.182,4.904,5.038,4.825,5.206,4.379,4.263,4.582,4.695,4.899,4.595,4.798,4.554,5.201,4.655,5.138,4.558,4.607,4.98,4.889,5.046],"script":[2.452,3.137,1.7,1.967,2.783,2.227,2.414,2.375,2.108,2.082,1.812,2.137,2.222,2.524,2.268,2.676,2.201,1.867,1.559,1.914,2.221,1.773,2.444,2.316,2.191],"paint":[2.046,1.725,2.336,2.14,2.281,2.38,1.462,1.728,2.068,1.739,2.164,1.397,1.62,2.059,2.206,1.889,0.867,2.063,2.982,2.204,1.651,1.749,1.462,2.464,1.666]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"05_swap1k","values":{"total":[23.081,22.989,22.07,23.389,22.811,23.379,24.28,23.561,22.979,22.737,23.573,23.137,24.145,23.566,22.597],"script":[4.255,3.886,3.623,4.317,3.996,3.798,4.288,4.054,3.778,3.84,3.958,4.743,4.031,4.345,3.707],"paint":[17.558,17.985,17.296,18.062,16.969,18.182,18.583,17.871,17.57,17.839,18.562,16.003,18.287,18.171,17.806]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.669,16.664,16.75,17.162,17.169,16.973,16.653,16.639,16.731,16.774,16.663,17.805,16.968,16.673,16.668],"script":[1.694,1.378,1.424,1.823,1.56,1.719,1.383,1.585,1.453,1.772,1.293,1.785,1.731,1.778,1.451],"paint":[13.903,14.626,14.544,14.552,14.581,14.495,14.553,14.018,14.542,13.95,14.723,15.199,14.388,14.09,14.414]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"07_create10k","values":{"total":[547.05,560.154,545.146,538.005,543.43,562.085,543.127,560.236,539.291,538.767,524.994,554.693,557.737,557.231,544.916],"script":[178.426,180.523,179.455,178.387,179.825,180.863,180.363,178.694,178.877,178.317,177.62,177.437,177.251,176.65,181.676],"paint":[361.519,372.784,358.932,352.414,356.144,374.332,356.01,374.63,353.631,353.722,340.55,370.461,373.76,373.763,356.391]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.664,57.351,57.814,58.253,57.884,57.557,57.579,60.639,57.37,58.242,58.399,58.061,58.158,58.842,57.271],"script":[17.444,17.23,16.712,17.131,16.847,16.684,16.878,17.519,16.787,17.315,17.472,17.157,17.472,17.749,16.812],"paint":[41.266,39.182,40.188,40.214,40.098,39.951,39.773,41.95,39.666,39.995,40.016,39.972,39.738,40.17,39.511]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.098,18.502,17.776,18.473,18.071,18.38,17.094,18.515,17.965,19.465,16.927,18.414,17.184,16.953,16.927],"script":[16.358,16.318,15.619,16.605,16.648,16.681,15.516,16.137,15.438,17.151,15.009,16.168,14.749,15.623,15.064],"paint":[0.783,1.811,1.248,1.772,1.331,1.434,1.274,2.287,2.425,1.924,1.798,2.158,2.342,0.897,1.5]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6641426086425781]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.461180686950684]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.61449146270752]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.025297164916992]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[74.55990314483643]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[36.12890625]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.9033203125]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[54.422,54.898,54.782,55.148,55.408,55.233,55.654,56.05,55.736,56.467,56.571,56.588,55.944,54.906,54.772],"script":[19.353,19.446,19.259,19.159,19.348,19.322,20.004,20.395,19.344,20.091,20.848,20.504,20.162,20.593,19.368],"paint":[34.638,35.029,35.094,35.554,35.62,35.496,35.211,35.221,35.953,35.952,35.296,35.67,35.374,33.834,34.978]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[62.809,63.731,62.138,62.03,62.456,61.905,63.175,61.788,63.706,62.346,63.98,63.978,63.578,62.03,60.351],"script":[25.893,25.765,25.466,25.758,25.548,26.368,26.932,25.651,26.055,25.887,27.012,27.565,26.881,25.734,25.214],"paint":[36.477,37.517,36.245,35.845,36.471,35.105,35.814,35.701,37.215,36.03,36.526,35.994,36.273,35.853,34.699]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.227,20.539,20.94,20.569,21.16,20.94,20.607,22.261,20.786,20.862,20.306,20.271,20.508,20.92,20.58],"script":[5.347,4.826,4.876,4.862,5.572,4.576,4.742,5.264,4.632,4.198,4.255,4.759,4.395,4.068,4.06],"paint":[14.063,14.434,14.724,14.505,13.837,15.009,15.186,15.31,15.018,15.14,14.05,14.196,14.478,15.511,14.522]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[5.577,5.213,4.775,5.577,5.066,4.933,4.983,5.408,5.622,5.218,4.836,5.535,4.62,5.234,5.316,5.037,5.652,5.151,5.371,5.303,4.625,5.283,4.627,6.799,5.341],"script":[2.713,3.074,2.808,2.837,2.293,2.936,2.629,2.699,2.524,2.937,2.155,2.305,2.503,2.771,3.113,2.769,2.514,2.469,2.255,2.527,2.716,2.478,2.105,2.229,2.193],"paint":[2.739,2.01,1.113,2.614,2.487,1.177,1.428,2.589,1.885,2.172,1.732,1.716,1.442,2.193,2.1,1.37,2.435,1.816,1.765,2.662,1.315,2.694,0.581,3.291,3.016]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[21.157,21.409,21.241,20.958,21.558,21.239,22.329,21.538,21.468,21.748,22.564,21.631,21.217,22.353,21.398],"script":[2.776,3.056,2.881,2.229,2.839,2.484,3.077,2.433,2.799,3.122,2.551,2.846,2.188,2.739,3.462],"paint":[15.475,16.474,17.099,17.765,17.342,17.456,18.047,16.528,16.567,16.905,18.654,17.61,16.498,18.266,15.35]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.534,16.44,16.544,16.061,16.487,16.165,16.079,16.493,16.059,16.554,16.622,16.138,16.144,17.888,16.401],"script":[1.248,1.256,1.281,1.259,1.252,1.227,1.242,1.247,1.234,1.23,1.286,1.266,1.301,1.301,1.255],"paint":[14.858,13.856,14.526,14.06,14.512,14.237,14.052,14.293,14.074,14.635,14.375,13.735,13.94,15.506,13.798]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[698.089,679.244,671.535,693.85,679.812,702.221,691.308,694.304,699.492,677.057,687.105,690.72,688.168,681.79,690.018],"script":[310.63,291.442,286.196,304.944,291.056,308.925,306.429,303.457,311.934,294.257,300.342,302.692,299.871,296.213,304.702],"paint":[380.729,381.122,378.476,382.225,382.016,386.685,378.19,384.293,380.928,376.077,380.185,381.38,381.532,378.775,378.724]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.785,65.564,66.895,66.889,66.457,66.713,65.359,65.875,65.697,66.903,65.771,66.413,66.146,66.161,66.013],"script":[24.712,23.573,24.419,24.752,24.476,24.745,23.634,23.423,23.571,23.65,24.248,23.765,24.807,24.026,24.617],"paint":[41.178,41.082,41.574,41.238,41.113,41.104,40.857,41.551,41.257,42.225,40.618,41.721,40.46,41.258,40.536]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.492,25.611,26.331,26.151,24.073,24.909,24.61,24.433,24.998,26.453,26.977,25.997,25.405,26,24.858],"script":[24.273,23.409,23.881,24.649,21.94,22.983,23.13,22.559,22.872,24.618,24.545,23.587,23.417,24.207,23.116],"paint":[1.069,2.097,2.347,1.404,1.52,1.827,0.429,1.778,2.039,1.726,2.333,1.66,1.741,1.016,1.367]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6614599227905273]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.407252311706543]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.434328079223633]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.871448516845703]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.59158897399902]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.40625]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5244140625]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[351.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[56.123,56.373,54.401,55.635,56.419,57.118,56.328,56.334,55.104,54.116,55.076,55.843,56.782,56.193,56.352],"script":[20.998,20.785,19.032,20.064,20.531,20.704,20.262,20.283,20.214,19.425,20.219,20.156,20.899,20.163,20.43],"paint":[34.696,35.187,34.947,35.143,35.475,35.998,35.636,35.632,34.476,34.246,34.447,35.26,35.442,35.604,35.497]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[63.439,64.756,64.688,61.331,62.677,59.506,62.438,63.464,59.392,61.65,62.662,63.83,63.719,63.332,61.641],"script":[25.964,27.794,27.298,25.563,26.979,25.226,25.198,26.986,25.088,25.078,25.772,27.82,27.12,27.524,25.241],"paint":[37.033,36.543,36.96,35.34,35.278,33.857,36.781,36.022,33.876,36.111,36.476,35.577,36.182,35.381,35.933]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.469,28.15,29.456,28.791,29.229,29.881,30.238,31.983,30.199,29.248,29.807,31.241,29.562,29.656,30.093],"script":[13.9,12.743,13.062,12.946,13.005,13.884,13.583,14.181,13.248,12.965,13.594,13.867,13.525,13.113,13.264],"paint":[14.753,14.717,15.116,14.825,13.758,13.861,14.803,16.753,15.497,15.192,14.927,14.02,14.716,15.442,16.057]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.647,15.16,16.017,14.282,14.705,14.778,14.446,15.261,14.627,14.757,14.98,15.188,14.842,14.884,14.503,14.957,15.098,15.532,14.81,15.131,14.314,14.847,15.088,14.729,15.144],"script":[12.356,12.326,13.074,11.49,12.35,12.301,12.011,12.433,11.579,12.225,12.463,12.072,12.367,12.016,11.99,12.386,12.528,12.013,11.378,12.56,12.007,11.841,12.188,11.705,12.636],"paint":[1.457,2.683,1.933,1.938,1.461,1.949,1.203,2.213,2.901,2.39,1.585,2.97,1.967,2.745,2.392,1.474,1.89,3.37,3.276,1.496,1.733,1.914,1.882,1.859,2.357]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[31.79,33.347,31.61,32.367,31.81,32.103,31.803,31.133,30.881,31.983,32.02,32.095,31.981,31.505,31.138],"script":[12.617,13.552,12.525,13.351,13.13,12.491,12.788,12.676,12.14,12.851,12.593,12.443,13.162,12.752,12.868],"paint":[17.964,18.288,18.106,17.461,17.024,18.122,17.736,17.716,17.655,18.142,17.896,18.32,17.497,17.315,16.272]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.341,22.034,21.433,22.256,21.064,20.94,21.074,21.55,21.399,21.173,21.337,21.502,21.462,21.177,21.48],"script":[6.013,6.175,5.682,6.223,5.709,6.047,5.715,6.089,6.08,5.896,6.064,5.84,5.855,6.039,5.848],"paint":[14.597,15.012,14.715,15.284,14.649,13.664,14.657,14.466,14.609,14.524,14.177,14.707,14.817,13.799,14.45]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[691.904,688.046,698.757,700.667,690.631,688.325,689.642,700.151,693.661,683.448,677.082,701.727,706.071,696.188,698.999],"script":[307.42,301.975,309.703,313.502,304.808,299.755,300.226,310.514,307.077,298.691,289.804,313.634,313.556,308.276,302.357],"paint":[377.719,379.455,382.409,380.551,378.511,381.881,382.755,382.866,379.924,378.147,380.365,381.466,385.858,381.303,389.835]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[69.402,67.972,67.842,68.43,68.932,68.234,69.003,69.694,69.448,68.345,68.864,69.678,68.024,69.051,69.04],"script":[27.441,26.122,26.006,26.413,26.392,26.754,26.208,26.468,26.749,26.817,26.657,27.203,25.621,26.898,26.841],"paint":[41.056,41.017,40.977,41.114,41.673,40.655,41.902,42.342,41.869,40.626,41.165,41.556,41.432,41.291,41.315]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.518,26.081,26.019,26.481,26.305,25.485,25.553,26.686,25.898,25.662,25.764,26.294,26.884,26.752,25.644],"script":[23.954,23.98,23.867,24.549,23.877,24.054,23.954,24.98,23.365,23.932,23.987,24.529,24.916,24.538,23.247],"paint":[0.822,1.622,2.055,1.826,2.318,1.318,0.452,1.613,2.131,1.635,1.673,1.001,1.682,1.593,1.942]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6616754531860352]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.546679496765137]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.7616424560546875]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.047693252563477]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.84193801879883]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9072265625]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.1962890625]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[355.9]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"01_run1k","values":{"total":[54.16,53.583,55.28,53.479,54.394,53.97,54.561,55.769,54.045,53.869,54.044,53.172,53.649,53.198,53.569],"script":[19.812,19.514,19.548,19.133,19.35,18.66,19.029,19.535,18.869,18.844,19.348,18.662,19.59,19.065,18.772],"paint":[33.859,33.628,35.276,33.916,34.614,34.873,35.084,35.775,34.73,34.594,34.277,34.067,33.636,33.695,34.365]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"02_replace1k","values":{"total":[20.825,19.735,19.016,19.397,19.201,19.591,22.117,20.797,20.436,20.783,19.797,20.078,20.552,20.039,20.533],"script":[5.622,5.388,4.8,5.076,4.926,5.267,5.887,5.631,5.677,5.717,5.348,5.424,5.608,5.692,5.642],"paint":[14.716,13.916,13.784,13.888,13.823,13.876,15.76,14.686,14.327,14.627,14.019,14.216,14.514,13.923,14.488]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.343,17.913,17.94,16.879,17.456,18.216,18.321,17.261,17.494,18.119,18.609,17.182,17.626,17.862,17.648],"script":[1.776,1.807,1.987,1.81,2.093,1.788,1.612,2.18,1.678,1.588,2.414,1.656,1.608,2.227,1.715],"paint":[14.403,14.728,14.806,14.04,14.263,14.953,15.563,14.072,13.989,14.134,15.015,13.752,14.237,13.73,14.914]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"04_select1k","values":{"total":[4.226,4.255,4.071,4.224,4.269,4.068,3.911,4.153,4.18,4.463,4.415,3.681,4.087,3.948,3.661,4.973,3.466,4.107,4.526,4.735,4.163,4.151,5.28,3.832,4.5],"script":[1.424,1.506,1.244,1.64,1.568,1.54,1.334,1.629,0.87,1.674,2.048,1.753,1.545,1.403,1.323,0.873,1.577,1.872,1.76,1.87,1.319,1.516,1.844,1.735,1.635],"paint":[2.537,2.646,2.709,2.461,2.585,1.761,2.153,1.915,3.184,1.955,1.931,1.29,2.379,2.428,2.227,2.435,1.776,1.77,2.101,2.31,2.731,2.529,1.723,1.508,2.039]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"05_swap1k","values":{"total":[11.461,11.745,11.361,12.01,11.828,11.585,11.305,12.003,12.139,11.467,12.212,12.238,11.443,12.215,12.094],"script":[0.115,0.121,0.12,1.072,0.841,0.596,0.125,0.926,0.708,0.534,0.123,0.738,0.116,0.774,0.116],"paint":[9.904,10.151,9.669,9.583,9.724,9.163,9.671,9.604,9.777,9.603,10.699,9.878,9.755,10.313,11.195]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.013,18.192,18.367,18.021,17.974,17.939,18.593,18.08,17.959,17.631,18.109,17.961,18.058,17.986,17.874],"script":[2.869,2.852,2.666,2.968,2.668,2.795,3.223,2.76,2.624,2.719,2.604,2.684,2.675,2.634,2.56],"paint":[14.178,14.38,15.008,14.35,14.663,14.449,14.662,14.372,14.666,14.237,14.792,14.48,14.698,14.668,14.641]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"07_create10k","values":{"total":[546.557,547.162,545.57,534.471,542.855,552.421,544.947,551.25,543.649,547.083,554.142,551.092,554.64,545.726,548.115],"script":[186.579,184.066,185.791,187.164,184.017,182.532,185.8,185.42,184.315,183.696,189.916,184.204,187.082,185.71,187.937],"paint":[352.943,356.145,352.565,340.381,351.914,363.04,352.341,358.696,352.531,356.489,357.414,360.247,360.614,353.261,353.339]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.937,58.634,59.055,58.568,58.887,59.484,59.667,59.025,59.094,59.707,59.348,58.332,58.643,59.533,59.694],"script":[17.723,18.128,17.859,18.05,18.152,18.434,18.712,18.175,18.254,18.01,17.914,17.494,18.137,18.367,18.354],"paint":[40.292,39.627,40.315,39.581,39.826,40.148,40.038,39.929,39.909,40.756,40.524,39.91,39.591,40.272,40.417]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.463,18.626,18.44,18.319,17.702,18.318,18.334,18.376,18.333,17.529,19.236,17.763,17.801,17.752,17.659],"script":[16.282,16.048,16.278,15.866,15.642,16.318,16.205,16.345,16.184,15.903,16.515,15.202,15.851,16.155,15.286],"paint":[1.649,2.473,1.379,2.238,1.796,1.196,1.768,1.589,1.517,1.53,1.912,2.46,1.296,1.491,2.266]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5465936660766602]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.373108863830566]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.402748107910156]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9890651702880859]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.05220413208008]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.4921875]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.87890625]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81.9]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"01_run1k","values":{"total":[44.731,45.165,45.659,45.498,44.074,44.14,44.289,44.964,44.275,44.131,44.431,45.049,45.238,45.121,45.95],"script":[10.84,11.147,11.687,11.393,10.904,11.027,11.063,11.03,11.408,11.254,11.232,10.99,11.157,11.056,11.838],"paint":[33.466,33.607,33.521,33.633,32.74,32.693,32.805,33.496,32.454,32.446,32.773,33.629,33.651,33.622,33.679]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"02_replace1k","values":{"total":[26.937,24.971,25.557,26.391,25.527,25.502,24.734,25.285,24.787,25.896,25.97,25.955,25.869,24.748,25.513],"script":[10.54,10.259,10.358,11.011,10.321,10.548,10.022,10.369,10.216,10.472,10.712,10.925,10.771,10.077,10.414],"paint":[15.928,14.252,14.744,14.902,14.746,14.5,14.261,14.464,14.101,14.948,14.81,14.565,14.64,14.206,14.641]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[55.935,56.097,58.384,58.413,54.179,56.111,56.193,55.055,56.337,58.328,55.071,54.601,55.689,56.248,56.93],"script":[39.561,39.003,40.319,41.722,37.908,38.865,39.177,38.428,39.931,41.688,38.528,37.729,39.31,39.598,39.953],"paint":[14.602,15.869,15.785,15.626,14.412,15.692,14.178,15.059,15.297,15.299,14.718,15.253,14.618,15.395,15.071]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"04_select1k","values":{"total":[37.459,37.329,38.202,38.717,37.745,39.931,38.715,39.352,38.354,38.148,38.207,39.696,40.658,40.276,42.038,39.825,39.102,39.952,39.224,38.494,39.445,38.238,39.974,37.927,38.27],"script":[34.321,34.143,35.05,35.893,34.271,36.607,35.456,36.729,35.45,34.967,35.378,36.025,37.585,36.676,38.594,36.06,35.739,36.766,36.16,35.451,36.488,35.179,36.292,34.726,34.993],"paint":[2.648,1.981,2.201,2.618,2.854,2.149,1.967,2.439,1.878,1.017,1.951,2.769,2.53,3.394,2.737,3.148,2.191,2.381,2.363,2.865,1.898,2.12,2.692,3.015,2.785]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"05_swap1k","values":{"total":[48.123,46.919,45.73,47.749,47.889,45.742,48.303,48.434,45.467,45.819,49.986,45.583,51.804,48.401,49.821],"script":[36.463,35.448,34.912,36.452,35.744,34.016,35.818,35.881,34.12,34.998,38.412,34.558,38.791,36.81,37.249],"paint":[9.613,10.292,9.223,9.501,10.749,9.084,10.282,10.752,10.578,9.766,10.24,8.47,11.281,9.236,11.245]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[49.041,53.934,48.639,47.828,54.828,54.297,53.549,49.265,49.204,49.439,54.639,48.476,54.467,53.543,51.648],"script":[18.563,20.185,18.133,17.627,20.267,20.533,20.003,18.99,18.718,18.413,20.963,18.597,20.563,20.007,19.501],"paint":[29.464,32.889,29.134,29.222,33.69,32.606,32.494,29.456,29.598,29.751,32.408,29.09,32.899,32.361,31.235]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"07_create10k","values":{"total":[480.701,486.048,485.056,482.234,475.578,479.826,475.237,487.439,476.514,476.596,473.101,482.05,475.713,473.473,484.41],"script":[137.628,140.393,140.149,140.387,140.078,140.232,135.14,139.737,138.876,135.177,136.07,141.303,135.107,139.035,136.398],"paint":[336.604,338.811,338.234,335.375,328.934,332.987,333.54,340.961,331.075,334.85,330.497,334.232,334.009,327.565,341.186]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.84,60.02,61.475,62.434,61.893,62.648,57.712,56.6,61.98,57.515,57.155,59.461,61.456,61.364,60.716],"script":[21.04,20.674,19.923,21.608,21.722,20.905,19.216,19.238,20.769,19.326,19.288,19.813,21.041,21.325,20.885],"paint":[38.948,38.451,40.45,39.918,39.312,40.804,37.62,36.492,40.234,37.296,36.981,38.512,39.541,39.177,38.968]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.852,17.47,14.472,16.651,17.106,15.612,14.152,15.173,14.23,14.587,16.858,16.665,16.697,17.128,14.939],"script":[15.306,15.703,12.692,14.739,15.234,14.18,12.569,13.526,12.243,12.928,15.208,15.01,14.992,15.333,13.163],"paint":[1.449,1.681,0.922,1.833,1.628,1.352,0.929,1.549,1.724,1.341,1.562,0.742,0.824,1.325,1.678]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5502920150756836]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.542430877685547]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8124704360961914]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.955235481262207]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.928308486938477]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.171875]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.8955078125]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"01_run1k","values":{"total":[88.78,88.598,89.689,91.375,89.717,90.437,89.507,89.054,89.5,87.972,88.91,88.307,89.411,88.764,88.952],"script":[51.153,51.256,52.211,52.873,51.973,52.418,51.952,51.504,52.161,51.08,51.605,51.285,51.384,51.672,51.66],"paint":[37.353,37.08,37.271,38.239,37.469,37.795,37.296,37.294,37.132,36.635,37.089,36.774,37.815,36.884,37.005]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"02_replace1k","values":{"total":[95.138,96.317,94.395,94.887,98.481,95.217,97.145,95.008,95.173,96.898,94.431,93.266,94.811,96.4,95.48],"script":[57.487,57.977,56.579,57.462,59.465,57.594,58.624,57.453,57.443,58.383,56.826,56.29,56.945,58.171,57.529],"paint":[37.431,38.082,37.584,37.174,38.593,37.332,38.069,37.321,37.44,38.095,37.367,36.77,37.633,37.797,37.71]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[83.322,83.468,81.751,85.602,87.434,84.891,80.713,79.675,80.024,86.009,85.553,79.369,83.864,79.47,81.164],"script":[47.335,49.563,48.19,49.765,49.883,48.078,47.879,46.963,46.948,48.22,50.292,46.999,46.127,46.529,46.416],"paint":[34.156,32.929,33.392,35.327,36.286,35.617,30.958,32.548,32.919,37.578,34.123,32.226,37.578,31.73,33.434]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"04_select1k","values":{"total":[16.889,17.426,14.329,15.647,13.276,13.556,13.318,15.755,10.139,13.543,14.284,9.875,13.028,13.823,13.422,13.478,9.93,13.886,16.105,17.787,13.335,13.331,15.972,11.722,14.185],"script":[8.43,8.567,8.527,7.582,6.959,8.162,8.319,8.55,6.689,8.226,7.795,7.388,7.249,8.281,7.467,7.533,5.899,8.135,7.782,8.204,7.136,9.048,8.276,7.943,8.288],"paint":[8.055,7.305,4.13,5.263,3.344,3.39,3.004,4.636,3.245,3.434,4.332,1.934,4.346,4.046,4.714,4.097,2.215,4.381,6.783,6.088,3.812,3.077,6.322,2.77,4.932]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"05_swap1k","values":{"total":[51.294,52.03,46.597,50.521,49.122,50.069,48.705,48.944,49.328,48.996,48.37,46.006,47.01,51.704,51.627],"script":[28.069,27.777,26.692,26.395,27.618,27.996,26.341,26.543,24.557,26.639,26.83,26.614,26.326,26.896,26.612],"paint":[22.78,23.75,19.744,22.541,21.003,21.328,21.776,20.674,24.003,20.068,21.393,19.239,20.529,23.854,24.105]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[193.243,192.931,193.116,188.708,190.506,193.875,192.319,189.623,194.531,190.685,196.289,193.821,198.955,191.584,194.159],"script":[122.853,123.183,123.5,119.842,121.968,123.644,119.066,119.508,122.673,120.022,123.453,123.96,124.869,123.759,122.043],"paint":[68.217,68.313,68.351,67.574,67.235,68.76,71.794,68.273,70.57,68.879,71.622,68.317,72.266,66.836,70.592]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"07_create10k","values":{"total":[804.54,797.751,801.143,790.311,789.308,801.46,799.413,791.301,798.601,785.406,789.811,792.777,793.617,793.297,796.071],"script":[443.06,437.208,432.415,432.851,430.184,439.293,439.35,429.258,437.274,428.963,429.996,434.552,433.712,433.151,434.222],"paint":[357.733,356.727,364.945,353.903,355.259,358.423,356.197,358.31,357.533,352.654,355.879,354.621,356.015,356.411,358.231]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[105.326,105.523,106.409,104.259,104.186,104.498,103.223,105.401,104.067,104.539,104.198,104.669,104.063,102.794,104.807],"script":[67.291,65.428,66.774,66.255,65.658,66.889,65.235,66.61,65.236,64.685,66.266,65.841,65.348,65.019,65.894],"paint":[37.489,39.688,39.221,37.606,38.107,37.206,37.604,38.404,38.428,39.436,37.519,38.254,38.3,37.385,38.518]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.654,21.11,18.082,21.956,18.955,21.943,18.602,19.532,23.156,21.491,21.77,23.581,22.712,18.923,22.472],"script":[16.933,17.178,15.814,17.428,16.84,17.478,17.015,16.553,18.624,17.573,17.398,18.587,18.667,16.916,18.645],"paint":[3.703,3.244,2.197,3.408,1.471,3.428,0.83,2.905,4.295,2.307,3.434,2.427,3.125,1.924,3.587]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5016565322875977]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.464906692504883]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.31560230255127]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[43.504631996154785]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[88.50263977050781]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.58984375]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.2705078125]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.5]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"01_run1k","values":{"total":[44.562,43.291,44.052,44.451,44.425,44.682,45.187,44.66,44.464,43.857,44.68,43.796,44.366,43.996,44.308],"script":[10.958,10.268,9.939,10.272,10.63,10.311,10.416,10.309,10.143,10.326,10.362,10.103,10.412,10.666,10.157],"paint":[33.165,32.62,33.716,33.779,33.389,33.913,34.361,33.949,33.9,33.123,33.891,33.28,33.536,32.921,33.726]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"02_replace1k","values":{"total":[25.32,26.124,25.713,27.052,26.089,26.304,25.684,26.271,25.38,25.443,26.324,27.208,26.362,25.995,25.362],"script":[9.707,9.852,9.943,10.019,9.985,10.191,9.987,9.972,9.561,9.64,10.205,9.929,9.47,10.048,9.446],"paint":[15.146,15.808,15.309,16.565,15.663,15.627,15.266,15.856,15.357,15.374,15.681,16.799,16.418,15.46,15.458]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.01,22.01,21.809,21.802,22.796,20.914,21.514,21.845,22.259,21.038,21.658,22,21.824,21.649,21.478],"script":[6.636,6.497,6.342,6.358,6.854,5.869,6.04,6.138,6.81,5.864,6.137,5.788,6.257,6.264,6.38],"paint":[14.096,13.644,13.952,13.715,14.585,13.924,13.285,14.351,13.157,13.373,13.914,14.436,14.434,14.139,13.616]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"04_select1k","values":{"total":[4.593,5.589,4.729,5.138,4.723,4.851,5.229,5.646,4.315,4.691,4.862,4.949,4.577,4.978,4.759,5.01,4.762,4.723,4.518,4.661,4.674,5.588,5.201,5.249,5.272],"script":[2.165,2.898,2.322,2.386,2.207,2.229,2.127,3.195,1.856,2.434,2.35,2.676,2.495,1.97,2.047,2.219,2.829,2.435,2.305,2.001,2.808,2.74,2.347,2.492,2.907],"paint":[1.947,2.57,1.783,2.627,1.854,2.01,2.863,2.141,2.357,1.586,1.604,1.307,1.96,2.889,2.59,1.961,1.828,1.194,2.087,2.181,1.766,2.732,2.735,2.63,2.259]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"05_swap1k","values":{"total":[13.429,12.775,13.36,14.825,13.602,13.331,13.232,13.418,13.712,14,13.73,13.687,13.731,14.016,13.714],"script":[2.643,2.29,2.415,2.631,2.058,2.617,1.998,2.995,2.656,2.548,1.999,2.731,2.23,2.153,2.774],"paint":[9.023,8.425,9.588,10.641,9.811,8.9,9.941,9.495,9.993,10.396,9.611,9.681,10.213,10.587,9.743]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[50.696,49.285,49.708,49.377,50.034,50.955,49.558,52.953,49.259,51.95,49.392,49.787,49.743,48.762,51.027],"script":[17.363,16.976,17.163,16.775,17.261,17.36,17.255,19.211,17.314,18.64,16.789,17.395,17.505,16.922,17.195],"paint":[32.175,30.84,31.356,31.27,31.65,32.721,31.102,32.892,31.16,32.18,31.772,31.479,31.189,30.71,32.881]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"07_create10k","values":{"total":[434.436,433.452,435.585,434.971,433.71,440.28,436.733,436.393,439.661,436.078,436.096,437.44,436.704,438.27,437.757],"script":[98.842,99.249,98.931,97.847,98.526,100.918,99.191,100.562,100.256,99.112,100.776,100.954,100.138,101.134,98.662],"paint":[328.745,327.255,329.752,330.244,328.463,331.725,330.82,329.135,332.629,330.219,328.382,329.654,329.854,330.461,332.331]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.01,50.954,50.861,50.879,49.281,52.424,49.695,50.426,50.821,50.372,49.995,49.565,50.112,50.683,48.798],"script":[10.034,10.905,11.011,10.25,9.819,10.976,10.145,10.072,10.743,10.163,9.757,9.694,10.767,10.911,9.823],"paint":[40.042,39.145,38.961,39.741,38.546,40.493,38.628,39.401,39.156,39.341,39.289,38.971,38.429,38.873,38.04]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.748,11.867,11.777,12.793,12.065,12.517,12.534,11.879,12.306,12.485,12.868,13.076,12.662,13.14,12.953],"script":[10.618,9.909,9.868,10.84,10.342,10.442,10.573,10.19,10.295,10.525,10.778,10.893,10.666,11.304,11.038],"paint":[0.379,1.098,1.825,1.866,0.691,1.981,0.954,1.304,1.104,1.87,1.986,1.286,1.911,1.499,1.365]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4783906936645508]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.86653995513916]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.807729721069336]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7001237869262695]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.09145545959473]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.7119140625]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2392578125]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.1]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"01_run1k","values":{"total":[53.817,51.686,51.702,50.77,51.836,52.361,51.665,51.714,52.46,50.781,51.938,52.445,51.756,52.258,51.319],"script":[19.12,17.703,18.242,17.482,18.089,18.543,17.757,17.822,18.291,17.792,18.141,18.603,18.328,18.353,17.976],"paint":[34.18,33.448,32.962,32.785,33.273,33.337,33.415,33.401,33.651,32.469,33.309,33.365,32.907,33.403,32.861]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"02_replace1k","values":{"total":[18.69,19.214,18.519,18.388,18.386,18.873,18.691,18.576,20.147,18.477,18.948,18.643,19.805,18.741,18.771],"script":[4.384,4.864,4.339,4.304,4.334,4.659,4.391,4.193,4.971,4.292,4.208,4.29,4.737,4.189,4.3],"paint":[13.876,13.922,13.766,13.674,13.633,13.815,13.866,14.026,14.763,13.762,14.377,13.972,14.636,14.179,14.091]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.838,16.651,17.615,19.212,17.036,17.242,17.273,17.129,17.567,17.25,20.258,17.021,16.814,16.832,16.163],"script":[1.679,1.603,1.964,2.618,1.327,1.779,1.647,1.883,1.812,1.007,2.538,1.563,1.347,1.596,1.541],"paint":[13.421,13.361,14.285,15.522,13.602,13.158,13.83,13.32,13.751,15.193,15.626,13.934,14.409,14.082,13.61]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"04_select1k","values":{"total":[7.986,7.643,8.205,8.694,8.499,8.22,6.952,7.39,7.9,8.411,7.989,8.097,7.308,7.84,7.518,8.782,7.744,8.289,7.796,7.72,7.124,8.102,7.738,8.202,7.841],"script":[5.457,5.45,5.669,6.02,5.654,5.459,4.983,5.187,5.342,5.629,5.511,5.708,4.809,5.301,5.209,5.889,4.824,5.716,4.929,5.221,4.715,5.561,5.759,4.709,5.207],"paint":[1.981,1.563,1.725,2.524,2.709,1.285,1.279,2.109,2.43,1.565,2.35,1.482,1.466,1.576,2.197,2.758,2.818,1.732,2.76,2.357,2.298,1.623,1.874,3.026,1.646]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"05_swap1k","values":{"total":[12.591,12.798,12.003,12.109,12.612,12.214,12.305,12.428,13.208,11.75,12.477,12.417,12.249,11.685,12.062],"script":[1.346,0.642,0.946,1.287,1.833,1.481,1.428,1,1.257,0.985,1.237,1.291,1.266,0.885,1.803],"paint":[9.991,10.643,9.485,9.341,9.445,9.322,9.137,9.59,10.294,9.554,10.21,9.726,9.908,9.347,9.182]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.452,39.027,36.848,37.463,37.324,40.218,37.883,37.674,37.498,36.335,36.798,37.739,37.268,36.623,37.342],"script":[7.336,7.16,7.24,7.743,7.386,6.894,7.843,7.761,7.645,6.878,6.833,7.2,7.441,6.875,7.408],"paint":[29.307,31.032,28.527,28.627,29.175,32.203,29.259,28.911,29.094,28.401,29.246,29.398,29.026,28.653,28.73]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"07_create10k","values":{"total":[933.252,903.583,926.543,932.933,922.75,930.024,933.761,925.737,920.722,927.407,923.67,924.781,931.764,913.082,913.552],"script":[203.36,177.985,208.495,204.532,202.939,190.742,212.239,206.59,203.192,205.869,204.349,204.123,206.318,194.802,197.59],"paint":[354.984,350.479,352.129,354.048,350.196,362.777,350.257,351.996,350.764,355.384,352.761,356.322,352.472,352.963,350.784]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.58,60.326,62.459,61.309,61.133,60.739,60.936,59.31,60.987,60.25,60.63,60.117,60.461,60.381,61.21],"script":[20.233,21.681,22.059,21.952,21.826,21.4,21.748,20.41,21.529,21.494,21.011,20.874,21.172,21.287,21.579],"paint":[38.364,37.694,39.343,38.346,38.389,38.371,38.229,37.968,38.49,37.841,38.689,38.193,38.343,38.025,38.614]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.806,25.601,25.06,24.441,24.985,24.432,25.191,25.216,23.97,24.393,24.93,23.865,26.007,25.665,24.478],"script":[23.422,23.488,22.717,21.931,23.113,22.663,23.256,23.699,21.934,22.258,22.689,21.647,23.716,23.661,22.367],"paint":[1.819,2.003,1.869,2.401,1.04,1.22,1.831,0.984,1.609,2.037,2.13,1.574,1.642,1.892,1.99]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.155496597290039]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.5800933837890625]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.589881896972656]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.1614913940429688]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.73548603057861]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[300.37109375]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[62.51171875]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[469]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"01_run1k","values":{"total":[46.633,46.691,46.747,47.53,48.337,46.774,46.002,46.985,47.076,45.446,46.401,43.958,48.159,43.802,47.349],"script":[12.457,12.532,12.811,13.345,12.705,13.03,12.327,12.665,12.493,12.498,12.722,11.924,13.342,12.143,12.637],"paint":[33.711,33.708,33.502,33.751,35.167,33.31,33.132,33.811,34.137,32.497,33.2,31.593,34.269,31.215,34.232]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"02_replace1k","values":{"total":[52.587,51.242,51.978,51.741,50.675,52.457,51.951,51.015,50.903,51.018,50.956,52.037,52.402,52.234,51.393],"script":[16.035,15.269,15.403,15.942,16.374,16.446,16.203,15.303,15.644,15.627,15.309,15.726,16.658,16.616,15.535],"paint":[36.061,35.466,36.13,35.332,33.837,35.529,35.26,35.249,34.779,34.94,35.174,35.829,35.292,35.158,35.356]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.775,19.561,17.806,18.649,18.029,17.874,18.451,17.675,18.714,18.2,17.612,17.661,18.231,17.602,18.219],"script":[2.84,2.635,2.788,2.645,2.652,1.58,2.462,2.235,2.334,1.961,1.735,2.611,2.494,2.345,3.195],"paint":[14.932,15.141,12.819,14.844,14.039,14.574,14.647,13.879,15.263,13.786,14.593,14.057,14.695,13.981,14.341]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"04_select1k","values":{"total":[5.028,4.026,4.482,4.407,4.426,4.539,3.788,3.91,4.921,4.128,4.119,4.021,4.414,4.061,3.927,4.899,4.698,4.376,3.813,4.384,4.458,6.685,4.763,4.15,6.888],"script":[2.769,2.693,1.759,1.841,2.405,1.8,1.594,1.234,2.133,1.906,1.944,2.008,2.032,1.878,1.144,2.045,2.025,1.975,1.583,1.138,2.209,1.794,2.305,1.713,1.318],"paint":[1.77,1.145,1.724,1.717,1.257,2.604,2.071,1.336,2.433,1.219,1.799,1.898,1.761,0.517,2.148,1.403,0.911,2.268,2.104,1.329,1.792,1.644,2.068,2.319,2.241]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"05_swap1k","values":{"total":[20.121,20.807,20.289,21.262,19.6,20.176,20.917,19.659,20.023,20.26,20.083,20.33,20.737,21.116,20.627],"script":[1.497,1.837,1.908,1.965,1.587,1.624,2.465,2.011,1.709,1.942,1.82,1.654,2.1,1.844,2.524],"paint":[17.267,17.055,15.835,17.731,16.565,17.398,17.588,16.663,15.856,17.272,15.805,17.103,16.311,17.875,17.022]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.782,15.809,16.301,16.306,15.355,15.591,15.948,15.332,16.02,15.84,15.351,15.957,15.454,15.901,15.832],"script":[1.017,1.016,0.827,1.006,0.676,0.703,0.961,0.373,0.697,0.703,0.877,0.973,0.719,1.039,0.742],"paint":[14.025,14.074,14.705,14.494,14.013,13.872,14.036,13.959,14.602,14.403,13.688,13.975,14.039,14.133,14.196]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"07_create10k","values":{"total":[482.408,481.041,484.218,492.023,479.689,482.484,475.861,481.366,487.278,484.046,483.264,486.517,480.275,480.308,480.652],"script":[138.488,139.463,141.165,140.671,138.53,139.947,137.191,137.405,142.106,142.044,139.537,143.012,140.158,138.263,140.48],"paint":[336.398,334.193,335.687,343.795,333.833,335.067,331.337,336.569,337.654,334.76,335.727,336.089,332.62,334.369,332.58]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.908,53.06,53.647,54.223,52.647,52.209,52.881,54.315,52.664,54.06,52.832,51.942,52.46,51.554,51.113],"script":[12.058,13.291,12.672,12.553,12.087,12.194,12.424,12.928,12.509,12.92,12.293,12.611,12.067,12.431,12.214],"paint":[39.837,38.774,39.98,40.594,39.592,39.036,39.445,40.381,39.175,40.129,39.542,38.378,39.408,38.18,37.92]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.183,14.091,14.655,13.912,14.279,14.72,14.024,13.644,13.759,14.197,14.703,13.964,14.284,14.263,13.706],"script":[11.638,11.818,12.232,11.887,12.357,12.197,11.884,11.606,12.28,12.668,12.818,11.949,11.926,12.012,11.854],"paint":[1.622,1.366,1.731,1.354,1.81,1.604,1.863,1.955,1.393,1.328,1.776,1.926,2.269,2.155,1.743]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4713430404663086]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6862878799438477]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7437171936035156]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1057968139648438]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.56671142578125]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.7216796875]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.0830078125]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.3]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[63.436,63.385,62.742,63.557,62.709,63.14,63.419,63.878,62.864,62.806,63.395,64.459,62.545,63.128,63.424],"script":[28.026,28.426,27.088,27.436,27.241,27.753,27.851,28.045,27.722,27.467,27.578,29.056,27.343,27.87,27.136],"paint":[34.966,34.527,35.216,35.687,35.007,34.947,35.092,35.382,34.696,34.897,35.38,34.96,34.791,34.83,35.843]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[73.675,74.278,73.632,73.336,72.195,72.87,75.094,72.19,73.043,73.504,74.121,74.058,74,75.577,73.83],"script":[37.054,37.855,36.618,36.225,35.742,36.33,37.901,35.343,36.463,36.725,36.919,37.443,36.912,38.478,37.014],"paint":[36.172,35.942,36.579,36.671,36.012,36.1,36.728,36.355,36.133,36.35,36.743,36.164,36.643,36.608,36.314]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.842,18.536,19.299,19.403,20.126,20.545,19.01,20.922,19.245,20.225,19.952,20.09,19.617,20.076,19.783],"script":[4.828,3.471,4.013,3.181,3.427,3.923,3.939,4.254,3.696,3.732,4.005,4.222,4.015,3.756,3.521],"paint":[14.962,13.763,14.011,14.72,15.103,15.401,13.772,14.96,14.566,14.117,14.088,14.7,13.903,15.638,14.981]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[7.994,7.113,7.188,7.155,8.828,6.988,7.395,7.871,6.766,7.881,7.721,7.75,8.353,7.425,7.112,7.057,7.879,6.552,6.97,7.414,8.279,7.657,7.124,7.869,7.486],"script":[5.41,4.669,4.569,4.078,4.491,4.769,5.136,4.562,3.874,4.877,4.005,4.372,5.261,4.639,4.769,4.492,4.602,3.793,4.506,4.655,4.327,4.593,4.337,5.014,4.309],"paint":[0.966,2.335,1.503,2.599,2.244,1.648,1.397,2.686,2.785,2.174,3.557,2.854,2.946,2.187,1.239,1.72,2.228,2.613,1.669,2.614,3.028,2.922,2.674,1.973,2.916]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[21.284,22.619,22.754,22.724,23.653,22.853,21.654,22.45,23.274,22.521,22.761,22.635,22.587,22.87,24.136],"script":[3.438,3.771,4.632,4.044,4.389,4.01,3.906,4.46,4.352,4.264,4.31,3.923,4.362,4.062,4.112],"paint":[15.269,16.98,17.101,17.307,17.957,17.211,16.965,16.459,17.363,16.908,16.923,17.692,16.67,17.526,18.905]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.217,15.982,16.069,16.253,16.843,16.525,16.151,16.033,16.746,16.29,16.007,15.986,16.603,15.959,16.003],"script":[1.395,1.502,1.31,1.33,1.496,1.651,1.419,1.342,1.325,1.418,1.328,1.313,1.555,1.483,1.452],"paint":[13.876,13.474,14.029,14.075,14.617,14.156,13.754,13.66,14.628,14.115,13.684,13.955,13.989,13.699,13.847]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[572.541,567.218,551.696,564.645,560.798,556.419,568.343,556.415,558.647,561.484,557.978,551.965,560.345,565.383,570.085],"script":[214.076,212.806,212.344,204.634,207.873,202.916,205.281,205.374,205.267,208.165,205.242,205.344,207.72,213.019,210.232],"paint":[351.587,347.634,332.621,353.299,346.3,346.827,356.096,344.369,346.668,346.531,346.067,339.869,345.975,345.628,353.15]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[70.87,68.111,67.987,68.132,69.276,67.772,69.628,67.711,69.266,68.055,69.271,69.67,70.888,68.739,68.854],"script":[30.087,27.884,27.769,27.662,28.771,27.322,29.087,27.23,28.457,28.055,29.242,28.825,29.285,28.39,27.941],"paint":[39.872,39.361,39.32,39.598,39.594,39.575,39.658,39.638,39.948,39.12,39.141,39.938,40.552,39.452,40.002]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.073,34.102,36.042,35.754,36.219,35.506,37.741,36.896,35.691,35.615,36.511,35.338,33.714,34.854,35.128],"script":[34.995,31.707,33.401,33.873,33.451,32.922,35.889,35.011,33.483,34.158,34.606,33.335,32.008,32.518,33.482],"paint":[1.734,1.864,1.821,1.768,2.654,2.451,1.379,1.785,2.09,1.352,0.778,0.892,0.793,2.23,1.54]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.0859336853027344]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.375436782836914]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.458733558654785]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.1963729858398438]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[76.70380878448486]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[284.4765625]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.84765625]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[408.2]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[57.939,60.596,58.511,56.81,59.232,56.997,60.246,55.177,57.792,60.5,60.284,61.16,59.166,59.898,59.4],"script":[22.049,22.577,22.456,20.871,22.855,21.176,22.669,20.438,21.804,22.942,22.786,22.444,21.85,22.588,22.814],"paint":[35.468,37.598,35.63,35.515,35.947,35.366,37.148,34.304,35.564,37.142,37.061,38.269,36.872,36.897,36.16]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[64.048,63.995,62.694,63.838,62.66,63.83,65.971,64.942,65.617,66.192,64.059,63.183,64.396,65.192,63.86],"script":[25.872,25.773,25.507,25.716,25.258,25.778,27.258,26.309,27.117,26.982,25.984,25.663,26.253,27.46,25.857],"paint":[37.755,37.785,36.743,37.628,36.964,37.597,38.257,38.196,38.06,38.753,37.623,37.059,37.686,37.299,37.549]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[167.585,174.29,171.801,169.467,169.524,169.511,170.868,171.141,170.677,169.517,170.48,170.729,169.975,174.944,170.088],"script":[136.397,140.888,139.496,137.854,137.533,137.426,138.085,138.272,137.746,137.897,138.353,137.77,137.901,140.359,138.32],"paint":[30.063,31.265,30.818,30.074,29.27,30.403,31.382,30.647,31.352,29.283,30.526,30.556,30.101,32.534,30.437]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.823,5.032,5.2,4.739,4.624,5.421,5.541,5.183,6.337,5.172,4.683,4.694,5.463,5.268,6.195,5.021,5.146,5.546,4.888,4.98,4.96,4.735,4.992,4.884,5.491],"script":[2.594,2.582,2.721,2.04,2.735,2.975,2.512,2.479,2.59,1.914,1.611,2.237,2.689,2.998,2.707,2.439,2.424,2.422,2.527,2.37,2.459,1.76,2.457,2.678,2.938],"paint":[1.864,1.87,1.548,2.16,1.108,1.632,1.815,1.845,2.759,3.119,2.929,1.721,1.316,0.59,2.293,2.451,2.605,1.821,1.286,2.478,3.205,1.695,2.411,1.448,1.679]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[23.294,24.119,23.184,23.556,23.857,22.379,23.34,23.608,23.727,23.691,23.568,24.872,22.672,23.604,23.729],"script":[4.519,4.528,3.928,3.97,4.58,4.362,4.609,4.871,4.96,4.598,4.204,4.652,4.562,4.551,4.892],"paint":[16.517,18.218,17.786,17.538,17.918,16.783,17.666,17.653,17.49,18.223,17.793,18.28,16.49,18.118,17.206]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.122,17.283,17.204,17.331,18.23,17.535,16.772,16.829,17.008,16.744,17.154,17.808,17.304,16.768,16.895],"script":[1.843,1.673,1.725,1.85,1.932,1.874,1.841,1.5,1.632,1.835,1.852,1.962,2.106,1.857,1.887],"paint":[14.187,14.728,14.769,14.73,15.19,14.792,14.178,14.265,14.441,14.133,14.259,14.999,14.415,13.972,14.335]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[590.248,587.776,592.491,591.639,598.704,588.716,584.727,591.273,589.418,592.012,587.785,590.27,580.233,587.241,587],"script":[224.702,220.905,220.357,222.872,225.621,220.207,220.003,220.339,221.964,223.049,221.612,224.094,216.955,221.353,220.859],"paint":[357.576,359.306,364.806,361.258,365.739,361.376,357.4,363.587,360.118,361.546,358.621,358.391,355.793,358.431,358.638]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[126.758,125.625,128.758,127.816,127.083,128.447,127.778,126.315,125.407,128.811,126.463,126.184,125.897,124.935,124.184],"script":[54.387,51.77,54.283,54.409,52.431,53.713,53.291,53.445,51.717,54.346,52.926,52.573,53.063,52.117,51.665],"paint":[71.521,72.999,73.565,72.53,73.753,73.86,73.603,71.99,72.785,73.557,72.647,72.717,71.961,71.946,71.621]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.215,20.057,20.501,19.825,19.816,19.926,19.756,20.605,19.857,20.572,20.892,19.385,19.746,20.606,20.536],"script":[18.688,17.469,18.473,17.914,17.925,18.258,17.578,19.2,17.506,18.728,18.772,17.948,17.733,17.939,18.739],"paint":[1.432,2.502,1.569,1.83,1.791,1.022,2.087,1.286,1.827,1.759,1.402,0.349,1.367,2.371,1.7]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7877273559570312]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.856842041015625]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9196624755859375]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.076221466064453]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.90069007873535]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[413.1064453125]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[100.4287109375]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[574.3]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"01_run1k","values":{"total":[42.437,42.146,44.059,42.675,43.523,44.848,42.159,42.427,42.849,42.872,42.315,42.663,44.009,45.353,43.2],"script":[8.87,8.741,9.531,8.78,9.543,9.47,8.603,8.785,9.499,8.823,8.829,8.625,9.671,9.879,8.985],"paint":[33.163,32.994,34.153,33.491,33.569,34.98,33.157,33.248,32.954,33.622,33.088,33.635,33.926,35.066,33.818]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"02_replace1k","values":{"total":[22.129,22.009,21.528,23.516,21.794,21.906,21.915,21.629,21.503,21.98,21.477,21.321,21.996,22.458,21.241],"script":[7.168,7.268,7.209,7.26,7.306,7.313,6.933,7.08,6.945,7.031,6.686,6.9,7.105,7.32,6.887],"paint":[14.528,14.334,13.883,15.818,14.083,14.182,14.564,14.1,14.113,14.544,14.327,13.988,14.471,14.711,13.918]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.142,34.027,33.408,33.984,35.91,33.461,33.607,33.092,34.566,33.81,32.96,35.297,33.046,35.599,32.663],"script":[17.277,17.614,17.674,18.299,18.964,17.173,17.917,17.125,18.23,17.649,17.094,18.299,17.977,18.437,17.033],"paint":[15.263,15.056,14.365,14.309,15.277,14.73,14.346,13.618,14.788,14.311,14.022,15.527,13.729,15.763,14.473]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"04_select1k","values":{"total":[21.525,21.001,21.576,21.444,19.846,23.517,20.707,20.756,20.719,21.799,21.691,20.972,20.054,22.008,19.84,21.008,20.156,21.768,21.033,23.122,19.923,21.251,19.528,20.447,21.977],"script":[18.41,17.542,17.805,18.03,17.077,20.402,17.719,18.079,17.551,17.997,18.68,17.518,16.221,18.345,16.628,17.874,17.1,18.299,17.834,19.354,16.59,18.144,16.346,17.862,18.429],"paint":[1.972,2.53,3.575,2.773,2.596,2.914,1.526,1.458,2.508,3.12,2.132,2.735,2.805,2.875,2.181,1.688,2.892,2.477,2.175,3.197,2.516,2.917,1.934,1.73,3.331]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"05_swap1k","values":{"total":[28.613,29.784,30.171,29.074,28.529,29.871,29.193,26.986,29.689,28.777,28.252,29.42,26.888,27.339,27.782],"script":[17.78,18.825,18.494,18.168,17.226,18.094,17.282,16.502,18.257,17.382,17.713,16.499,15.238,15.773,16.262],"paint":[9.264,9.786,9.614,10.164,10.046,10.015,10.786,9.483,9.794,10.004,9.444,11.416,9.797,9.086,10.152]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[42.997,41.34,45.016,43.016,42.462,42.508,41.804,43.499,42.821,44.462,41.857,43.043,42.434,42.375,41.785],"script":[12.22,11.447,13.48,13.078,12.407,12.351,12.345,12.921,12.754,13.195,11.768,12.984,12.454,12.274,12.165],"paint":[29.94,28.885,30.382,28.961,29.245,29.042,28.69,29.181,29.269,29.941,28.933,28.916,28.894,29.29,28.171]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"07_create10k","values":{"total":[452.73,455.146,448.691,454.696,449.607,448.193,456.107,451.133,452.212,450.59,452.395,453.396,452.861,454.044,450.655],"script":[120.437,118.905,113.808,122.152,115.678,116.105,122.312,116.661,119.211,115.764,115.517,117.969,119.059,119.461,116.747],"paint":[325.415,329.538,328.248,325.714,327.273,325.194,326.921,327.578,326.422,328.166,330.224,328.804,326.854,327.743,327.087]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.563,54.21,54.079,53.209,55.459,55.134,54.435,55.88,55.305,55.353,54.099,54.153,52.839,55.192,56.127],"script":[13.338,13.654,13.314,13.623,13.68,13.46,14.015,13.752,13.494,13.508,13.953,13.72,13.423,13.719,13.5],"paint":[40.248,39.693,39.891,38.694,40.807,40.72,39.531,41.179,40.936,40.95,39.21,39.513,38.531,40.489,41.654]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.929,20.946,20.404,19.688,19.574,19.266,20.249,19.126,19.788,20.885,20.999,20.077,19.559,20.235,19.703],"script":[19.013,19.155,18.215,18.229,17.658,17.127,18.045,17.656,17.435,19.158,18.686,17.937,17.62,17.775,18.151],"paint":[1.423,1.325,1.836,1.355,1.81,2.034,2.107,0.397,2.262,0.843,1.722,1.535,1.837,2.37,1.453]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8789291381835938]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5381240844726562]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.518671989440918]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1139411926269531]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.0386962890625]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.35546875]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.55078125]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130.7]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"01_run1k","values":{"total":[40.472,40.033,39.185,40.434,40.003,40.024,40.002,40.528,42.459,40.285,39.779,40.108,40.418,40.557,40.23],"script":[6.911,7.116,6.433,7.002,6.702,6.959,7.109,7.002,6.75,7.005,6.83,6.842,6.99,6.903,6.707],"paint":[33.148,32.512,32.346,33.037,32.885,32.647,32.483,33.109,35.277,32.87,32.528,32.845,33.007,33.24,33.116]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"02_replace1k","values":{"total":[17.009,15.999,15.989,17.976,17.722,18.031,16.172,17.713,16.598,17.682,16.051,17.823,17.845,17.863,17.669],"script":[1.949,1.945,1.898,2.121,2.119,2.102,1.877,1.969,1.897,2.072,1.882,2.154,2.094,2.034,2.065],"paint":[14.6,13.64,13.708,15.444,15.19,15.527,13.934,15.347,14.241,15.207,13.763,15.248,15.312,15.42,15.187]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.064,19.604,19.685,19.546,19.365,19.745,19.546,19.324,19.041,20.465,19.545,18.816,18.808,19.471,19.451],"script":[4.086,3.854,3.678,3.926,4.729,4.206,4.093,4.555,3.974,4.049,4.022,3.851,3.738,3.963,4.113],"paint":[14.273,14.164,14.862,14.503,12.523,13.803,13.505,12.927,13.134,15.371,13.681,13.69,13.408,14.422,13.802]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"04_select1k","values":{"total":[2.672,2.735,2.541,3.247,4.3,3.653,2.952,2.639,2.768,3.846,2.42,4.482,3.244,2.687,2.541,4.018,4.102,2.312,2.655,4.389,4.787,2.142,3.297,3.122,2.981],"script":[0.122,0.702,0.111,0.901,0.113,0.942,0.956,0.114,0.255,0.835,0.597,0.112,0.482,0.469,0.793,1.227,0.832,0.122,0.107,0.543,0.108,0.28,0.937,0.131,0.827],"paint":[1.587,1.94,1.798,2.24,2.628,2.516,1.888,1.314,1.769,2.13,1.726,2.473,2.278,2.122,1.646,1.901,1.455,1.101,2.449,1.943,2.682,1.764,2.255,1.583,1.481]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"05_swap1k","values":{"total":[14.653,14.07,13.287,14.384,14.529,13.488,13.695,14.41,13.306,14.305,13.446,14.424,13.919,14.031,14.586],"script":[3.642,3.643,3.032,2.283,3.358,2.334,3.091,3.511,3.224,3.194,3.193,2.879,3.033,2.752,3.269],"paint":[9.481,8.91,8.971,10.926,9.66,9.807,8.887,9.007,8.881,9.733,8.992,9.715,9.567,10.296,9.805]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.329,33.542,34.289,33.765,34.119,34.004,34.225,33.334,33.336,33.515,33.591,33.418,33.807,33.383,34.008],"script":[3.806,3.745,4.232,4.15,3.969,4.149,4.062,3.929,3.994,4.114,4.19,3.806,4.116,3.901,3.998],"paint":[28.49,28.778,29.127,28.639,29.398,29.029,29.385,28.467,28.476,28.036,28.637,28.672,28.714,28.707,29.236]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"07_create10k","values":{"total":[412.315,414.597,413.097,412.512,414.189,412.178,410.824,410.755,411.664,413.155,416.385,412.442,413.654,412.043,412.689],"script":[66.167,68.214,68.402,70.454,67.802,67.214,65.64,66.751,67.746,70.205,67.931,67.369,67.616,65.866,67.381],"paint":[339.461,339.726,337.939,334.84,339.719,338.277,338.234,337.296,337.271,336.289,341.514,338.416,339.39,339.526,338.636]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.628,48.591,46.043,45.297,46.51,46.303,47.824,46.578,47.819,46.502,46.136,45.706,46.031,45.001,46.654],"script":[7.068,7.432,7.271,7.041,7.238,7.427,7.276,7.235,7.08,7.328,7.307,7.246,7.268,6.527,7.291],"paint":[39.684,40.27,37.92,37.399,38.405,37.823,39.66,38.485,39.832,38.282,37.946,37.596,37.889,37.603,38.507]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.648,12.705,12.56,12.783,12.753,12.318,13.035,12.578,12.95,12.532,12.77,13.243,12.11,12.074,12.3],"script":[10.29,10.073,10.238,10.859,10.721,10.699,11.211,10.281,11.05,10.229,10.427,10.94,10.274,10.22,10.887],"paint":[2.265,2.532,1.803,0.97,1.565,1.527,1.054,2.213,1.806,1.557,2.255,1.384,1.749,1.769,0.382]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5283088684082031]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2488718032836914]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3182449340820312]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7514276504516602]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.00042152404785]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.7841796875]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2373046875]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.2]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[38.492,38.675,39.37,41.889,39.937,39.482,39.306,39.611,39.655,39.96,39.22,40.38,39.731,39.425,39.654],"script":[5.343,4.976,5.341,5.222,5.114,5.242,5.254,5.372,5.291,5.173,5.07,5.238,4.861,5.172,5.115],"paint":[32.709,33.283,33.599,36.237,34.39,33.83,33.631,33.837,33.911,34.318,33.74,34.651,34.455,33.84,34.117]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[20.022,21.194,19.517,19.816,18.671,19.337,20.055,19.806,19.231,18.75,19.649,19.679,19.718,19.274,19.556],"script":[4.033,4.791,4.747,5.045,4.11,4.507,4.857,4.731,4.485,4.149,4.9,4.861,4.779,4.483,4.875],"paint":[15.561,15.947,14.365,14.393,14.169,14.459,14.729,14.635,14.322,14.174,14.356,14.425,14.563,14.422,14.292]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.291,17.343,17.035,17.122,16.408,16.104,16.297,16.787,17.227,16.384,16.847,17.256,16.007,15.77,16.713],"script":[0.541,0.933,0.903,1.153,0.904,0.946,0.843,0.907,0.872,1.107,0.921,0.891,0.964,0.664,0.225],"paint":[13.589,15.385,14.806,14.58,13.678,14.054,14.165,14.695,14.335,13.514,13.724,13.803,13.792,13.653,15.231]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[5.303,2.227,2.26,2.613,1.863,2.7,2.644,5.115,2.482,3.049,3.138,3.215,2.841,3.301,2.512,2.504,2.528,2.203,5.204,2.671,2.857,2.196,4.146,1.97,2.734],"script":[0.063,0.303,0.061,0.066,0.066,0.07,0.714,0.057,0.066,0.336,0.074,1.058,0.067,0.725,0.059,0.059,0.062,0.059,0.895,0.068,0.062,0.057,0.061,0.061,0.064],"paint":[1.828,1.427,1.219,2.44,1.706,0.896,1.213,2.336,2.123,1.812,2.963,2.054,2.24,2.476,2.179,2.343,2.369,2.046,1.826,1.656,2.695,1.319,2.28,1.813,1.873]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[12.792,11.315,11.955,12.54,11.846,10.991,11.542,11.389,11.398,11.597,11.508,11.455,11.531,12.121,12.236],"script":[0.122,0.561,0.096,0.752,0.814,0.102,0.107,0.108,0.11,0.602,0.107,0.101,0.56,0.792,0.41],"paint":[11.039,9.387,9.719,10.767,9.923,9.61,9.381,10.216,10.328,10.019,9.834,9.709,9.822,10.116,10.672]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.421,14.846,15.031,14.788,14.744,15.981,15.446,14.985,14.867,14.75,15.063,15.005,15.366,15.406,15.657],"script":[0.198,0.107,0.256,0.419,0.103,0.249,0.106,0.43,0.109,0.099,0.243,0.117,0.441,0.275,0.303],"paint":[14.484,13.104,14.023,13.67,13.783,14.779,14.593,13.866,13.722,14.262,14.106,13.885,14.181,14.122,14.671]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[415.622,415.065,416.558,413.669,408.244,415.353,416.308,413.428,415.662,413.81,417.848,418.608,411.438,411.927,410.83],"script":[63.883,62.392,65.587,63.279,63.374,62.949,64.067,63.891,64.249,64.395,65.589,62.773,63.433,61.68,62.174],"paint":[344.987,345.972,344.144,343.677,338.19,345.708,345.507,342.597,344.752,342.733,345.533,349.141,341.337,343.713,341.751]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.326,44.329,43.304,43.867,44.589,43.482,44.002,43.789,44.896,43.759,43.573,44.859,44.031,44.755,44.352],"script":[4.484,4.642,4.525,4.537,4.618,4.497,4.595,4.51,4.7,4.674,4.452,4.754,4.523,4.666,4.619],"paint":[37.997,38.808,37.984,38.522,39.097,38.083,38.588,38.417,39.292,38.15,38.303,39.253,38.668,39.228,38.824]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.168,12.209,12.683,12.105,12.92,12.151,12.334,11.766,12.119,12.219,12.504,12.701,13.346,12.317,12.164],"script":[10.448,10.802,11.319,10.073,11.327,10.42,11.062,9.706,10.687,9.858,10.425,10.467,10.835,10.717,9.858],"paint":[1.625,1.311,1.26,1.95,1.131,1.029,1.182,1.656,0.38,2.271,1.995,1.994,2.317,0.908,1.985]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6674489974975586]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.184140205383301]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.342824935913086]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9062232971191406]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.652867317199707]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.130859375]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[36.1484375]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"01_run1k","values":{"total":[37.355,37,36.909,36.431,38.213,36.247,37.575,37.499,37.962,37.267,38.928,39.334,38.272,37.23,39.28],"script":[3.797,4.031,4.093,4.013,4.359,3.776,4.06,4.017,4.175,3.846,4.402,4.471,4.368,3.93,4.268],"paint":[33.155,32.576,32.395,32.005,33.419,32.08,33.094,33.036,33.349,32.993,34.098,34.457,33.508,32.874,34.598]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"02_replace1k","values":{"total":[17.434,17.263,18.055,17.697,17.885,17.552,17.403,17.277,17.614,17.452,17.782,17.776,17.878,17.913,17.66],"script":[2.832,2.66,3.105,2.875,2.913,2.968,2.612,2.898,2.776,2.921,2.934,2.815,2.876,2.841,2.894],"paint":[14.199,14.199,14.576,14.404,14.603,14.163,14.382,13.972,14.404,14.098,14.464,14.601,14.63,14.693,14.38]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.585,20.983,21.885,20.652,21.343,20.599,21.121,21.028,20.302,22.421,20.58,21.254,20.616,20.718,20.88],"script":[5.535,5.043,4.919,5.232,5.434,4.96,4.974,4.732,4.365,5.417,4.94,4.693,4.958,5.002,5.162],"paint":[14.629,14.421,15.697,14.013,14.559,14.146,14.887,14.472,13.993,15.634,14.368,15.353,14.154,14.213,14.456]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"04_select1k","values":{"total":[2.132,4.3,3.12,4.623,2.534,2.273,3.355,2.483,2.665,4.304,2.516,4.855,3.438,3.507,2.779,2.38,3.369,2.793,3.032,2.644,2.533,2.436,2.379,2.993,2.425],"script":[0.171,0.571,0.725,1.101,0.079,0.077,1.019,0.073,0.394,0.568,0.505,0.072,0.773,1.09,0.498,0.226,0.263,0.293,0.827,0.243,0.18,0.082,0.074,0.705,0.409],"paint":[1.138,1.666,2.294,1.978,2.355,1.81,2.235,1.075,2.171,2.266,1.905,1.596,1.744,1.734,1.629,2.058,1.735,2.101,1.541,1.586,1.596,1.526,1.256,2.195,1.919]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"05_swap1k","values":{"total":[14.265,14.31,13.651,15.1,14.502,14.16,14.549,14.8,16.287,14.329,14.475,14.325,14.172,14.705,14.359],"script":[2.942,2.962,2.903,3.316,2.993,3.161,3.136,3.177,3.325,2.834,2.978,2.993,3.149,2.817,2.605],"paint":[10.078,10.025,9.436,10.787,10.819,9.495,10.508,10.598,11.563,10.48,9.588,9.618,9.637,10.618,10.445]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.226,34.918,35.022,34.986,34.936,35.367,35.65,35.046,35.646,35.44,35.379,35.604,34.942,34.647,35.294],"script":[4.279,4.599,4.528,4.267,4.295,4.689,4.323,4.271,4.245,4.22,4.133,4.222,4.28,3.914,4.688],"paint":[30.075,29.556,29.721,30.01,29.533,29.923,30.377,30.051,30.686,30.399,30.213,30.661,29.876,30.025,29.853]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"07_create10k","values":{"total":[395.885,396.073,397.062,398.859,396.576,401.414,397.483,392.211,398.923,390.341,405.311,391.139,394.399,398.035,392.638],"script":[50.158,50.454,48.621,49.043,47.783,48.633,49.422,49.906,49.853,46.547,50.472,49.476,48.134,50.053,48.865],"paint":[339.043,338.848,341.868,343.074,342.166,346.129,341.334,335.622,342.339,337.172,348.001,335.024,339.621,341.368,336.967]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.578,44.762,44.267,45.128,43.877,45.116,45.103,43.967,43.62,46.74,44.483,43.561,45.439,44.931,43.333],"script":[4.936,5.748,5.193,5.473,5.174,5.425,5.511,5.087,5.081,5.239,5.304,5.042,5.36,5.553,4.905],"paint":[37.765,38.16,38.07,38.756,37.86,38.81,38.738,37.996,37.709,40.624,38.334,37.664,39.225,38.524,37.546]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.605,13.961,14.79,13.928,14.154,14.152,13.417,16.161,15.22,13.723,13.824,13.99,14.418,13.501,13.64],"script":[12.783,12.548,13.155,11.94,11.994,12.714,12.31,13.959,13.066,11.559,12.619,12.192,12.75,11.631,11.757],"paint":[1.024,0.776,1.207,1.015,2.069,1.352,0.391,1.427,1.468,2.066,0.384,0.946,0.787,1.781,1.789]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4771881103515625]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0595827102661133]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0497875213623047]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7044591903686523]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.469904899597168]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.9033203125]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7919921875]}},{"framework":"dlightjs-v1.0.0-alpha.36-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.8]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"01_run1k","values":{"total":[59.269,58.719,59.392,58.793,58.498,58.496,60.218,59.423,60.053,59.588,60.05,58.908,58.559,60.49,59.897],"script":[25.798,25.222,26.016,25.614,25.227,24.905,26.235,25.662,26.275,25.971,26.223,25.296,25.182,26.532,25.935],"paint":[33.048,33.093,32.964,32.74,32.84,33.17,33.552,33.322,33.34,33.194,33.392,33.171,32.944,33.509,33.528]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"02_replace1k","values":{"total":[39.582,40.15,37.54,38.136,38.398,39.72,40.396,38.588,38.187,38.087,38.742,38.281,38.813,38.587,38.6],"script":[23.983,23.417,22.271,23.078,23.235,23.177,23.49,23.318,23.069,23.012,23.258,23.157,23.067,23.151,23.174],"paint":[15.117,16.274,14.796,14.57,14.687,16.036,16.428,14.787,14.659,14.609,15.047,14.639,15.29,15.01,14.959]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.893,26.063,26.155,26.212,25.602,26.181,25.505,25.499,25.734,25.488,26.105,25.254,26.389,27.9,25.726],"script":[9.79,10.475,10.338,10.628,9.645,10.283,9.836,10.145,10.141,9.572,9.646,10.113,9.802,10.109,9.8],"paint":[14.978,13.746,14.254,13.939,14.283,14.893,14.214,14.317,14.052,14.507,14.768,13.307,14.808,16.937,14.501]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"04_select1k","values":{"total":[8.366,7.118,7.762,7.794,7.456,8.384,7.863,8.245,7.709,8.512,7.786,7.95,7.274,8.151,7.361,7.584,7.713,6.979,7.71,8.018,8.251,7.738,8.247,8.51,8.807],"script":[5.462,4.596,4.997,5,5.237,5.579,5.002,5.473,5.403,5.17,5.531,5.203,4.94,5.07,4.75,4.799,5.411,4.912,5.632,5.461,4.986,5.318,5.291,6.029,6.103],"paint":[1.997,2.055,2.646,2.397,1.455,1.993,2.752,2.654,2.185,2.855,1.487,2.616,1.898,2.936,2.013,2.655,2.191,1.263,1.972,2.419,3.138,2.307,2.792,1.664,2.199]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"05_swap1k","values":{"total":[16.865,16.179,16.304,16.576,16.311,16.121,16.252,16.63,16.231,16.087,16.481,16.735,17.11,16.644,16.462],"script":[5.622,4.982,6.077,5.139,5.661,4.551,5.386,5.852,5.425,5.093,5.501,5.599,5.272,5.188,4.844],"paint":[9.49,9.592,8.685,9.718,7.653,10.616,9.202,9.002,8.992,9.472,9.711,10.085,10.431,10.141,10.022]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[50.305,50.167,53.948,53.102,53.292,50.505,50.975,49.711,49.726,53.422,52.248,50.149,50.236,49.432,50.849],"script":[19.516,18.689,19.454,18.752,19.682,19.303,19.43,18.952,18.917,19.673,19.502,18.729,18.925,18.034,19.078],"paint":[29.247,30.609,33.683,33.176,32.419,30.369,30.705,29.593,29.716,32.916,31.576,30.551,29.902,30.375,30.602]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"07_create10k","values":{"total":[672.862,673.182,672.007,664.724,664.016,677.2,668.852,672.646,672.21,668.59,668.911,661.689,669.139,671.649,670.613],"script":[323.74,318.904,314.686,314.081,312.435,324.952,316.995,314,316.886,318.866,316.424,310.604,318.879,318.783,319.893],"paint":[342.474,347.596,350.728,344.085,344.914,345.642,345.263,352.239,348.67,343.232,345.823,343.987,343.69,346.195,344.078]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[79.877,80.554,80.114,80.05,80.275,82.156,80.646,83.035,79.977,81.006,79.774,80.604,80.544,81.754,81.4],"script":[40.85,41.244,41.134,41.074,40.959,41.189,41.361,43.16,41.07,41.213,41.063,41.27,41.353,42.011,41.306],"paint":[38.197,38.448,38.041,38.078,38.388,39.739,38.374,38.927,38.064,38.921,37.807,38.481,38.289,38.831,39.203]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.858,18.891,16.583,17.84,17.659,17.711,17.343,17.64,17.117,17.573,17.527,18.487,19.011,17.906,17.12],"script":[15.313,16.958,14.648,15.718,15.289,15.24,15.833,14.958,15.188,15.972,14.983,16.474,16.893,15.445,15.474],"paint":[1.439,1.81,1.84,2.029,1.322,2.375,1.417,2.222,1.114,1.506,2.44,1.922,2.005,1.784,1.544]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7719287872314453]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.346159934997559]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.000749588012695]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.525975227355957]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.81096363067627]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[77.251953125]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.8955078125]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.7]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"01_run1k","values":{"total":[35.407,36.576,35.569,35.403,35.228,38.562,36.627,35.014,35.552,35.751,35.918,35.919,37.074,35.522,36.57],"script":[2.305,2.411,2.208,2.289,2.353,2.328,2.412,2.336,2.348,2.305,2.228,2.271,2.15,2.419,2.254],"paint":[32.677,33.741,32.943,32.707,32.463,35.844,33.793,32.265,32.765,32.97,33.282,33.228,34.495,32.675,33.891]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"02_replace1k","values":{"total":[15.887,15.194,16.346,15.508,15.099,15.286,17.159,15.362,15.436,15.322,15.234,15.077,14.93,15.559,15.488],"script":[1.106,1.206,1.164,1.161,1.143,1.146,1.141,1.278,1.236,1.09,1.143,1.197,1.147,1.074,1.194],"paint":[14.363,13.614,14.763,13.92,13.558,13.726,15.601,13.676,13.797,13.863,13.673,13.496,13.387,14.106,13.874]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.984,16.094,16.47,15.553,15.454,17.734,16.017,16.159,16.198,16.122,16.794,16.573,17.648,16.486,16.375],"script":[1.226,0.975,1.074,1.115,1.066,1.388,1.013,0.724,1.089,1.17,1.228,1.178,0.941,1.445,0.586],"paint":[13.203,13.287,13.854,13.213,13.408,14.265,13.194,14.128,13.404,12.95,14.302,13.848,14.115,13.98,14.509]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"04_select1k","values":{"total":[2.804,3.643,3.009,2.903,4.331,3.043,2.219,2.649,3.219,2.733,4.075,2.6,3.151,2.491,4.216,2.488,3.521,2.929,5.982,2.992,2.766,2.67,2.998,2.792,5.513],"script":[0.932,0.839,0.732,0.532,0.773,0.729,0.108,0.53,0.777,0.553,0.097,0.098,0.991,0.104,0.342,0.102,1.076,0.104,0.1,0.771,0.104,0.105,0.865,0.514,0.783],"paint":[1.766,2.009,2.178,2.269,1.893,2.205,2.014,2.026,2.347,2.082,2.823,1.607,1.498,2.285,2.302,1.316,2.341,2.725,1.309,2.122,1.789,1.569,1.373,2.182,1.899]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"05_swap1k","values":{"total":[11.396,12.218,11.077,11.629,11.464,11.13,11.252,10.785,11.307,10.681,10.893,11.437,11.79,11.674,11.563],"script":[0.244,0.57,0.078,0.088,0.243,0.092,0.605,0.397,0.084,0.538,0.084,0.54,0.612,0.432,0.79],"paint":[8.39,10.315,8.978,9.111,10.173,9.624,9.119,9.429,10.492,9.178,8.8,9.355,10.021,9.81,9.491]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.208,14.723,14.678,15.37,14.685,15.639,14.797,15.11,14.798,15.08,14.794,15.289,14.799,14.852,14.825],"script":[0.419,0.285,0.258,0.148,0.125,0.444,0.119,0.486,0.124,0.201,0.366,0.431,0.344,0.195,0.114],"paint":[14.1,13.689,13.258,14.816,13.727,14.499,13.967,13.904,13.969,14.171,13.421,13.904,13.773,13.644,13.73]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"07_create10k","values":{"total":[505.616,481.551,482.526,484.277,491.855,485.924,486.983,481.845,485.507,484.745,486.887,489.367,479.353,484.85,483.692],"script":[140.445,141.265,141.858,141.192,141.013,140.082,141.187,137.903,140.075,140.265,141.252,142.986,138.407,140.959,139.852],"paint":[357.416,333.307,333.938,336.273,343.877,339.111,338.902,337.135,338.745,337.655,338.88,339.019,334.291,337.191,337.145]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.099,55.623,56.859,55.377,55.793,57.424,56.238,57.091,55.631,56.485,56.138,56.139,54.886,55.196,55.595],"script":[15.65,15.86,16.177,15.229,15.307,16.104,15.582,16.016,15.468,16.031,15.825,15.873,15.691,15.103,15.252],"paint":[40.585,38.864,39.794,39.278,39.554,40.405,39.786,40.19,39.316,39.581,39.425,39.409,38.331,39.215,39.468]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.355,17.867,18.148,17.523,17.543,16.847,17.423,15.961,18.734,16.724,17.321,18.089,18.183,17.772,17.959],"script":[15.624,15.364,15.88,14.975,15.874,15.205,15.582,14.76,16.479,14.801,15.599,16.098,15.791,15.837,16.107],"paint":[1.643,1.819,1.04,2.463,1.261,0.702,0.413,0.524,2.102,1.834,0.811,1.891,2.054,1.844,1.102]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5634775161743164]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.682707786560059]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.742267608642578]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.690851211547852]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.7879581451416]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.3876953125]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2763671875]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.8]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"01_run1k","values":{"total":[46.854,46.787,46.383,42.399,51.556,42.096,44.092,47.187,50.965,46.08,44.399,46.693,47.477,45.342,50.319],"script":[9.012,8.321,8.799,8.715,9.104,8.617,8.511,8.918,9.063,8.817,8.803,8.712,8.433,8.819,8.866],"paint":[33.796,32.871,32.189,32.971,33.799,33.035,31.842,33.52,32.561,32.668,33.545,32.437,32.401,32.338,36.078]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"02_replace1k","values":{"total":[24.746,24.779,27.036,29.873,26.797,27.947,30.034,28.58,26.758,27.268,28.9,20.917,30.379,31.043,23.057],"script":[5.643,5.691,5.538,6.006,5.473,5.637,6.113,5.917,6.143,6.213,5.705,5.865,5.635,5.647,5.94],"paint":[16.02,14.324,14.572,14.825,14.485,14.608,14.81,14.762,14.669,14.344,15.148,14.629,14.675,14.858,16.676]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.394,42.806,41.476,42.948,44.776,19.521,22.704,45.343,20.929,21.315,20.624,22.361,20.466,45.04,42.523],"script":[3.165,3.658,4.128,4.326,3.905,4.04,3.455,3.496,3.344,3.68,3.567,3.812,3.766,3.694,3.555],"paint":[15.907,14.613,14.933,14.124,14.263,13.722,15.321,15.019,14.731,14.516,14.279,15.733,14.154,15.684,13.71]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"04_select1k","values":{"total":[4.591,4.84,7.568,9.072,11.47,6.727,4.657,6.631,9.609,7.619,5.584,8.702,7.835,4.376,9.883,10.26,5.264,9.738,12.136,6.531,5.553,12.944,5.238,8.728,10.766],"script":[0.946,0.934,1.2,1.123,1.129,1.417,1.376,0.582,0.639,1.035,1.729,0.316,0.94,1.827,0.349,1.066,1.89,0.668,0.403,1.326,1.488,1.844,1.407,1.579,0.893],"paint":[2.248,2.903,1.719,1.585,2.716,1.759,2.345,1.48,2.346,1.785,1.73,3.376,1.606,1.43,2.322,1.759,1.652,1.738,2.598,1.381,1.674,2.01,1.764,2.235,2.415]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"05_swap1k","values":{"total":[39.631,14.095,13.704,36.206,14.934,40.14,35.61,36.101,13.57,33.24,12.536,14.864,14.893,35.183,38.419],"script":[1.061,0.963,0.436,0.946,1.856,1.228,0.994,1.049,0.489,1.105,0.922,0.356,2.3,1.936,1.054],"paint":[10.728,10.752,10.311,9.126,9.987,10.45,10.219,9.974,10.099,10.375,10.538,9.92,10.885,9.715,11.438]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.08,40.582,40.638,39.584,36.937,42.272,36.264,43.193,42.279,37.643,44.256,41.369,39.64,38.226,43.943],"script":[7.385,7.186,7.918,7.369,6.455,6.981,6.564,6.955,7.967,7.322,7.052,6.615,6.575,7.508,6.503],"paint":[29.907,32.432,31.929,31.42,29.244,33.256,28.793,30.492,31.577,29.297,29.341,32.072,28.717,29.314,29.901]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"07_create10k","values":{"total":[455.09,449.1,432.973,448.495,447.404,445.415,456.273,447.443,451.935,446.792,432.096,429.225,428.958,431.126,790.926],"script":[93.912,94.151,93.04,92.906,92.969,92.224,95.409,93.87,93.868,92.995,93.395,93.286,91.919,95.285,91.547],"paint":[352.006,345.723,330.966,345.708,344.902,344.362,347.103,344.52,348.827,343.28,330.229,326.447,326.055,327.277,339.826]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.8,51.875,46.821,57.78,54.711,57.711,53.743,52.72,47.402,57.131,56.602,56.272,57.606,55.459,53.081],"script":[7.632,7.292,7.386,7.572,7.669,8.411,8.569,7.757,7.854,7.797,7.911,7.591,7.621,7.489,7.877],"paint":[37.79,37.512,37.397,38.541,39.754,38.732,38.127,38.271,37.915,38.825,37.662,38.41,38.198,38.326,37.135]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.547,14.582,37.406,12.47,13.438,11.626,12.268,16.92,37.129,12.265,13.256,13.193,12.182,12.156,40.089],"script":[9.881,10.426,10.155,10.493,11.242,9.964,10.097,11.538,9.931,9.58,10.173,10.581,9.116,9.994,12.128],"paint":[2.455,1.009,2.287,1.853,2.005,1.55,2.075,1.923,2.173,1.746,1.383,0.505,2.954,1.684,1.947]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5519618988037109]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.624457359313965]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6785879135131836]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0083017349243164]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.937386512756348]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.40234375]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.15234375]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.9]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"01_run1k","values":{"total":[40.902,45.135,45.812,41.761,48.264,48.62,45.02,43.031,43.903,46.898,46.193,44.738,48.33,46.066,46.5],"script":[2.747,2.895,3.053,2.87,2.927,3,2.98,2.912,2.982,3.111,2.806,2.84,2.792,2.858,2.881],"paint":[33.509,34.169,33.175,33.733,33.675,33.923,33.773,34.159,33.756,34.115,33.918,34.29,34.064,33.714,33.969]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"02_replace1k","values":{"total":[25.375,27.533,29.041,23.867,29.281,27.802,20.879,22.326,24.262,19.841,26.744,28.091,27.448,28.961,28.421],"script":[3.614,4.486,4.066,3.982,3.652,4.386,4.424,4.166,4.388,4.11,4.386,4.416,4.14,4.182,4.498],"paint":[14.449,14.281,14.669,13.804,14.022,14.335,14.53,14.06,14.251,13.694,14.507,14.366,14.669,14.796,14.543]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.337,20.089,35.541,19.546,19.288,19.237,35.083,19.312,35.813,19.31,20.569,34.295,22.072,34.616,34.692],"script":[3.207,3.495,4.873,3.169,3.389,3.716,4.207,4.048,4.037,3.895,3.119,3.014,3.952,3.576,3.44],"paint":[14.821,13.981,14.621,15.295,15.082,15.388,14.724,14.169,15.727,14.258,14.391,16.107,15.473,14.875,14.801]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"04_select1k","values":{"total":[8.433,8.49,7.801,10.962,8.367,7.771,8.216,9.243,7.928,8.294,8.302,9.298,7.847,8.797,7.985,11.411,8.633,9.709,8.825,8.813,8.779,8.248,8.024,7.641,8.236],"script":[6.228,6.275,4.704,5.784,5.425,5.558,4.661,5.076,5.158,4.734,5.917,6.201,5.488,6.761,5.717,5.945,6.264,6.132,6.142,5.966,5.871,5.779,5.469,5.407,5.178],"paint":[1.692,1.481,2.089,1.758,2.404,2.104,2.397,1.605,2.663,3.449,2.003,1.63,2.257,1.914,2.062,2.358,2.256,2.104,2.577,2.732,2.098,1.683,2.424,2.128,2.08]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"05_swap1k","values":{"total":[11.985,13.209,28.458,12.379,13.439,27.729999999999997,27.451,11.314,11.745,14.164,27.505000000000003,14.198,13.056,12.018,12.754],"script":[0.834,0.521,1.304,0.249,0.247,1.889,1.076,1.129,1.024,0.653,0.234,1.414,0.261,0.338,1.431],"paint":[10.105,9.749,11.119,11.167,12.166,9.917,10.11,9.804,9.644,10.765,12.026,11.102,11.236,9.802,10.457]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.725,22.149,16.556,15.776,17.818,17.156,23.671,15.998,20.215,17.177,16.227,15.338,16.562,20.228,19.43],"script":[1.679,1.398,1.409,1.463,1.65,1.395,1.551,1.715,1.722,1.654,1.498,1.556,1.642,1.689,1.439],"paint":[14.159,14.731,13.766,13.666,14.308,13.825,14.469,14.152,13.503,14.616,14.203,13.657,13.579,14.628,13.608]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"07_create10k","values":{"total":[491.093,487.122,483.581,498.88,486.4,483.278,482.04,479.178,494.944,478.057,488.091,477.942,477.648,487.288,479.424],"script":[130.072,131.596,138.384,129.446,139.021,138.375,136.2,135.683,135.016,136.619,131.254,135.152,135.184,127.79,136.333],"paint":[350.145,344.281,331.721,356.874,335.103,335.081,335.303,334.555,346.323,333.906,347.093,335.123,332.513,347.701,333.559]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.986,59.597,59.46,59.232,61.846,61.32,61.99,61.411,62.09,62.292,61.772,62.743,62.109,60.395,63.996],"script":[11.813,11.039,11.335,11.486,12.048,12.031,12.205,11.551,12.283,11.77,12.102,11.66,12.101,11.501,12.03],"paint":[39.859,39.626,39.38,38.683,40.07,40.108,40.475,41.3,40.574,41.272,40.429,39.951,40.866,40.175,43.439]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.339,15.626,15.648,15.276,15.653,18.112,30.455000000000005,14.877,15.519,15.085,15.39,30.966,17.866,15.77,16.621],"script":[12.726,13.608,13.044,13.171,13.322,13.641,12.852,13.309,13.025,12.956,12.46,13.136,12.993,12.461,12.326],"paint":[1.55,1.205,1.781,0.761,1.619,1.847,2.322,1.509,1.481,2.069,1.648,1.835,2.777,1.889,2.716]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6624746322631836]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.240492820739746]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.503320693969727]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.235123634338379]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.7040901184082]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[41.4462890625]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.2041015625]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.1]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"01_run1k","values":{"total":[44.67,45.108,59.197,57.066,59.092,56.097,44.96,44.862,45.217,57.118,44.791,44.953,57.861,57.081,46.483],"script":[12.442,12.25,12.127,11.842,12.907,11.458,12.656,12.112,11.379,11.972,12.454,12.024,12.654,11.842,12.85],"paint":[31.979,32.637,33.364,32.561,32.809,32.231,32.079,32.504,33.594,32.759,32.095,32.664,32.785,32.719,33.367]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"02_replace1k","values":{"total":[25.275,23.487,25.396,21.787,23.004,24.338,24.228,22.203,22.195,22.267,24.43,25.127,22.542,25.132,25.768],"script":[7.95,8.32,7.535,7.413,7.4,7.639,8.007,7.841,7.665,7.509,8.009,7.608,7.599,7.086,7.539],"paint":[14.814,14.931,14.614,14.153,14.96,15.814,14.569,14.142,14.308,14.54,14.415,14.708,14.448,14.831,15.75]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.87,19.71,18.933,18.128,21.559,18.668,18.301,19.769,21.455,18.446,19.919,18.924,17.937,23.013,18.548],"script":[4.917,3.648,3.735,4.439,4.61,3.814,3.944,4.129,4.428,3.53,3.66,3.938,3.77,4.037,4.299],"paint":[14.603,14.793,15.075,13.57,15.446,14.704,13.653,13.488,16.317,14.137,14.778,13.024,13.637,15.962,13.294]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"04_select1k","values":{"total":[8.251,7.867,15.191,11.925,10.536,6.85,8.91,8.022,8.22,7.111,4.385,6.502,13.381,10.398,4.338,6.752,8.038,3.827,16.201,10.655,4.643,5.719,3.694,3.828,6.77],"script":[2.638,3.133,2.544,1.847,2.257,3.279,1.844,1.787,2.855,1.857,1.535,2.098,1.298,2.774,2.318,3.389,2.751,1.356,3.828,2.92,1.386,1.335,1.232,1.671,2.717],"paint":[4.269,3.793,5.14,4.476,3.211,3.664,4.367,3.933,3.12,2.812,2.728,4.637,3.125,4.054,1.166,3.847,4.77,1.442,4.41,4.208,1.75,2.215,1.812,1.711,3.176]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"05_swap1k","values":{"total":[16.982,13.907,12.199,54.801,54.943,54.238,11.526,56.825,53.182,56.372,12.925,60.407,11.902,54.87,11.983],"script":[2.162,1.326,1.642,2.046,1.536,1.784,1.741,1.494,1.326,1.745,1.421,1.572,2.382,1.042,2.017],"paint":[10.331,10.019,9.71,10.073,10.191,10.03,9.666,11.505,9.079,11.453,9.588,11.433,9.305,11.172,9.196]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[44.96,43.346,45.039,46.883,45.113,45.233,45.216,45.736,46.575,45.636,43.768,49.092,44.267,42.367,40.974],"script":[12.299,13.739,37.087,13.436,37.306,37.281,36.737,37.797,12.971,37.479,35.56,13.401,36.491,11.825,12.002],"paint":[31.719,28.941,30.125,29.55,29.67,31.018,30.313,31.631,32.862,30.954,30.468,31.236,29.908,29.539,28.027]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"07_create10k","values":{"total":[1485.217,1472.941,1438.897,1447.172,454.46,455.628,453.914,454.598,1445.447,454.524,1412.313,457.311,456.932,1453.099,452.584],"script":[113.105,113.19,113.6,113.755,117.166,115.277,115.454,114.541,113.306,116.904,113.151,119.084,119.373,111.018,116.022],"paint":[352.615,342.53,353.221,345.97,323.159,325.175,324.31,324.275,344.933,322.916,342.49,323.591,322.638,338.181,322.043]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.418,55.659,53.107,55.733,54.282,54.498,54.834,52.608,95.55,55.182,55.126,55.379,56.056,53.967,53.892],"script":[14.394,14.257,12.876,13.938,14.716,14.392,13.954,13.585,14.165,13.71,14.874,14.598,13.909,14.557,13.521],"paint":[39.451,40.076,38.899,40.35,39.212,39.266,40.249,38.026,38.711,40.239,39.594,40.193,40.792,39.038,39.393]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.93,11.683,11.324,14.232,14.213,13.766,11.602,11.872,14,11.201,12.119,12.076,15.295,11.668,13.847],"script":[10.183,9.984,9.531,10.507,9.883,10.506,9.697,10.03,10.218,9.587,9.785,10.082,10.939,9.634,11.165],"paint":[1.641,1.605,1.384,2.635,3.155,2.474,1.81,1.059,2.843,1.532,2.249,1.907,2.958,1.957,2.462]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5707340240478516]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.72432804107666]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.706169128417969]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0058984756469727]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.632941246032715]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8798828125]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1337890625]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"01_run1k","values":{"total":[51.13,50.425,51.025,51.061,51.433,50.607,49.531,48.604,50.686,49.399,51.682,49.536,49.977,49.713,49.979],"script":[15.681,15.245,15.505,15.282,15.599,15.507,14.919,14.997,15.567,14.839,15.338,15.212,15.134,14.58,15.341],"paint":[35.007,34.742,35.09,35.342,35.402,34.674,34.171,33.062,34.679,34.137,35.912,33.898,34.425,34.68,34.215]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"02_replace1k","values":{"total":[24.446,22.555,22.471,22.903,22.165,23.142,23.497,22.431,22.347,22.18,22.815,22.806,22.438,23.53,23.278],"script":[8.167,7.804,7.889,7.953,7.556,8.302,8.399,7.944,7.814,7.557,7.9,7.937,7.969,8.183,7.959],"paint":[15.831,14.331,14.128,14.507,14.161,14.404,14.681,14.046,14.083,14.178,14.464,14.452,14.024,14.937,14.854]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.887,25.767,27.896,27.022,25.634,28.002,25.632,26.717,26.047,27.278,26.374,25.232,26.725,26.034,25.866],"script":[10.177,10.209,11.891,10.845,9.264,10.904,10.244,10.07,10.11,10.145,10.126,9.9,9.544,10.199,10.285],"paint":[15.7,13.753,13.238,14.954,14.595,14.356,13.7,14.891,13.853,14.85,14.939,14.007,15.634,13.719,14.336]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"04_select1k","values":{"total":[6.605,6.849,7.131,7.014,7.25,7.56,7.829,6.255,7.483,6.492,6.636,6.851,8.314,7.312,6.575,7.908,7.321,7.062,6.466,6.387,6.837,6.502,6.451,8.072,6.745],"script":[4.444,4.089,4.545,4.269,4.85,4.617,5.266,4.497,5.078,4.344,4.445,4.252,5.089,4.116,4.406,5.117,4.312,4.089,4.422,4.259,4.599,4.554,3.964,4.372,4.778],"paint":[2.034,2.595,0.851,2.216,1.447,1.944,1.638,1.641,2.287,1.343,1.14,2.468,1.934,2.522,1.656,1.961,2.134,2.835,1.924,1.188,2.11,1.589,1.389,3.197,1.846]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"05_swap1k","values":{"total":[15.683,14.703,15.497,15.685,16.039,15.308,15.048,15.811,15.39,16.008,15.695,15.307,14.954,15.128,15.992],"script":[4.844,4.113,4.105,4.497,3.762,4.396,3.953,4.666,4.183,4.849,4.369,4.242,4.158,4.341,4.336],"paint":[9.245,9.473,9.862,9.688,10.491,10.02,9.542,9.257,9.875,9.06,10.518,9.523,8.618,9.832,10.388]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[46.016,45.304,46.673,45.073,45.351,45.585,47.943,46.103,46.381,46.62,45.422,45.792,47.377,44.993,47.646],"script":[15.231,14.68,15.008,14.486,14.794,15.391,15.304,14.81,15.106,15.456,14.796,14.877,15.4,14.479,16.112],"paint":[29.976,29.327,30.329,29.72,29.658,29.388,31.814,30.348,29.963,30.028,29.792,29.995,30.75,29.688,30.433]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"07_create10k","values":{"total":[495.692,492.264,492.047,515.328,492.603,492.039,493.399,493.298,495.833,492.905,489.936,515.477,492.517,489.86,494.888],"script":[149.432,150.076,148.369,149.482,148.323,150.068,150.094,149.432,151.169,148.594,148.738,149.63,149.119,146.871,149.738],"paint":[338.248,335.319,336.894,358.889,337.171,335.087,335.938,337.047,337.863,337.492,334.487,358.947,336.576,336.284,337.78]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.157,59.201,58.622,58.258,58.665,58.788,59.437,58.285,58.364,59.212,60.408,58.15,58.687,58.546,57.944],"script":[17.474,18.318,17.892,17.662,17.979,17.801,18.375,17.329,17.927,18.411,18.903,17.129,17.291,17.754,17.594],"paint":[39.764,39.96,39.835,39.681,39.798,40.087,40.149,40.063,39.406,39.851,40.568,40.108,40.419,39.89,39.398]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.666,21.544,20.9,22.137,22.304,22.755,22.175,20.957,21.619,21.467,21.155,20.736,21.375,21.236,21.059],"script":[19.448,19.585,19.265,20.399,19.907,20.817,20.094,19.618,19.384,19.084,19.214,19.07,19.044,19.05,19.246],"paint":[2.089,1.583,1.198,0.774,1.466,1.246,1.99,0.702,2.102,1.786,1.649,0.386,2.231,1.561,1.731]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.621800422668457]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9554786682128906]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.319791793823242]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2683067321777344]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.139659881591797]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.119140625]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.2578125]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[114.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[49.382,47.263,49.716,46.798,46.977,48.017,49.218,47.316,48.818,47.538,47.991,47.907,48.259,48.973,48.557],"script":[13.18,11.784,12.941,11.366,11.971,11.773,12.979,11.568,11.659,11.757,12.139,12.835,12.133,12.005,12.771],"paint":[35.75,35.047,36.318,34.994,34.564,35.807,35.797,35.327,36.69,35.335,35.416,34.634,35.67,36.525,35.335]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[21.147,22.185,20.854,22.163,21.054,21.81,21.703,23.342,23.408,21.963,21.809,22.612,21.753,22.146,22.941],"script":[6.601,7.428,6.45,7.164,6.379,7.312,7.33,7.795,7.177,7.316,7.203,7.518,6.581,7.288,7.482],"paint":[14.111,14.295,13.956,14.554,14.201,14.034,13.9,15.116,15.766,14.176,14.16,14.661,14.734,14.397,14.94]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[37.368,40.36,37.978,40.895,37.046,38.147,38.009,41.529,38.483,41.477,38.909,37.857,38.852,38.3,38.825],"script":[21.113,22.803,21.306,24.712,21.008,22.162,21.809,23.073,22.102,23.872,22.292,21.229,21.862,22.217,21.694],"paint":[14.192,16.321,15.638,14.754,14.554,14.62,14.677,16.436,14.735,16.177,14.363,15.033,14.996,14.926,14.582]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[23.711,24.341,25.867,23.65,25.653,23.865,24.59,24.771,25.267,25.734,25.247,25.301,24.623,24.394,24.283,24.488,24.491,24.849,25.419,24.12,23.305,24.672,25.971,23.861,23.263],"script":[20.419,20.721,22.015,19.851,21.699,20.936,21.433,21.065,21.575,22.008,21.558,21.896,20.841,21.258,20.456,20.759,21.316,21.517,22.181,20.119,19.852,21.843,22.027,21.058,19.691],"paint":[1.368,2.272,2.437,2.637,2.341,2.017,1.286,3.367,2.514,2.691,2.503,2.766,2.577,2.352,2.115,3.03,2.111,3.13,1.641,3.097,2.376,2.232,3.007,2.122,2.661]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[32.467,32.99,33.056,32.141,33.697,32.314,33.277,34.158,31.881,33.174,35.187,34.04,32.1,34.631,32.642],"script":[20.751,21.423,21.88,20.255,22.527,20.571,21.618,21.605,19.977,21.257,22.152,21.13,20.389,21.94,20.941],"paint":[10.283,9.233,9.748,10.207,9.641,9.489,9.87,11.835,9.261,10.441,11.661,10.611,10.28,9.891,9.888]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[41.98,44.974,41.646,45.375,41.838,46.12,45.959,45.895,42.563,44.287,42.417,47.041,42.399,42.31,46.837],"script":[11.38,11.797,10.826,10.614,10.927,11.135,11.419,11.793,11.432,11.4,11.195,11.301,11.353,11.314,12.284],"paint":[29.788,32.151,29.88,33.973,29.923,33.902,33.599,33.308,29.982,31.913,30.216,34.673,29.868,30.105,33.489]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[524.166,509.126,483.177,488.116,479.698,500.896,506.503,509.937,481.998,485.609,498.547,499.606,497.748,484.155,482.353],"script":[134.384,134.595,129.251,130.049,130.799,135.674,133.842,134.28,134.589,135.644,134.68,134.734,134.317,135.18,133.929],"paint":[382.455,367.226,347.043,351.213,341.711,358.336,365.846,368.724,340.586,343.107,357.074,358.071,356.531,342.109,341.631]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.612,61.111,62.227,60.97,62.378,62.325,62.342,61.655,62.84,61.566,62.264,62.291,63.724,60.99,61.047],"script":[20.779,20.702,21.191,20.753,21.743,21.832,21.067,20.583,21.139,20.697,21.573,21.707,21.558,20.82,20.473],"paint":[39.904,39.529,40.134,39.284,39.702,39.589,40.264,40.161,40.79,39.916,39.76,39.672,41.219,39.232,39.666]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.163,25.882,28.059,27.422,28.779,27.82,27.282,27.109,24.943,25.896,27.228,28.135,27.655,24.132,27.716],"script":[25.232,23.717,25.93,25.814,26.411,25.402,25.198,24.955,22.783,24.242,25.325,25.955,25.391,22.708,26.147],"paint":[1.827,1.593,2.02,1.127,1.338,1.845,1.983,2.033,2.057,1.533,1.802,1.675,2.162,0.388,1.451]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8120155334472656]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.879240989685059]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.363706588745117]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.155579566955566]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.184922218322754]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[152.435546875]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8876953125]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.1]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"01_run1k","values":{"total":[56.738,57.335,58.285,57.302,57.19,56.051,56.952,57.487,56.835,56.632,57.652,56.719,57.283,56.546,56.436],"script":[21.852,22.468,22.613,22.295,22.116,21.731,22.246,22.778,22.274,22.713,22.503,22.786,22.158,22.053,21.68],"paint":[34.454,34.421,35.195,34.557,34.561,33.895,34.238,34.256,34.103,33.469,34.676,33.502,34.653,34.043,34.291]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"02_replace1k","values":{"total":[26.049,27.368,26.128,26.159,25.762,26.291,26.809,25.748,26.878,28.693,26.709,26.379,26.738,26.542,25.21],"script":[11.64,12.51,11.767,11.843,11.476,11.919,11.978,11.57,12.146,12.766,11.933,11.936,11.833,11.82,10.688],"paint":[13.976,14.403,13.919,13.882,13.856,13.969,14.393,13.712,14.297,15.474,14.354,14.005,14.478,14.301,14.103]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.609,17.525,18.3,17.372,18.103,17.446,17.252,18.434,17.533,16.939,17.556,17.568,18.328,16.864,17.856],"script":[2.367,1.849,1.557,1.331,1.933,2.43,1.082,2.632,1.45,1.961,2.702,1.64,2.437,1.525,2.255],"paint":[13.85,14.182,14.985,14.79,14.491,13.949,14.453,13.629,14.565,13.132,13.467,14.786,14.67,14.327,14.123]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"04_select1k","values":{"total":[5.816,5.939,5.437,6.387,5.926,5.533,5.076,6.006,6.286,5.279,5.859,6.362,5.466,5.89,6.125,6.143,6.008,5.62,5.664,5.514,5.154,6.103,5.39,7.449,5.381],"script":[3.41,3.767,3.102,3.898,3.337,3.284,3.112,2.889,3.352,3.062,3.426,3.982,3.247,2.893,3.589,3.469,2.841,3.704,2.935,3.041,3.093,3.429,3.201,3.787,3.203],"paint":[1.855,2.063,1.351,2.367,1.727,1.434,1.163,2.999,2.225,2.112,1.73,2.262,2.103,2.882,1.586,1.262,2.691,1.456,2.278,1.991,1.955,2.568,2.09,2.427,1.603]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"05_swap1k","values":{"total":[11.584,11.427,11.471,11.593,11.16,11.201,12.393,11.145,11.135,11.782,13.038,11.243,12.146,12.107,11.895],"script":[0.438,0.668,0.118,0.133,0.122,0.12,0.48,0.118,0.116,0.123,0.625,0.22,0.86,0.866,0.826],"paint":[9.357,8.693,9.452,8.634,10.01,8.795,9.741,10.029,9.987,10.302,10.745,8.632,9.073,10.013,10.089]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.331,15.135,15.284,15.109,15.953,15.505,15.294,15.161,15.405,15.387,15.363,15.368,15.428,15.141,15.261],"script":[0.123,0.343,0.378,0.332,0.37,0.192,0.126,0.119,0.124,0.375,0.464,0.366,0.136,0.123,0.362],"paint":[14.381,13.993,13.939,13.959,14.847,14.626,14.42,14.267,14.586,13.998,14.128,14.256,14.544,13.989,14.232]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"07_create10k","values":{"total":[597.704,591.292,607.641,596.871,612.279,600.482,599.097,596.011,594.347,602.887,595.928,594.205,595.171,606.014,593.887],"script":[231.679,229.865,243.301,234.496,243.019,232.42,237.788,234.296,229.636,242.17,230.993,231.922,229.147,231.124,230.466],"paint":[359.115,354.112,357.493,355.856,361.987,361.067,354.399,354.841,358.201,354.122,358.048,355.421,359.298,368.314,356.718]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.594,68.531,68.018,69.772,68.978,68.537,69.318,68.764,69.238,69.753,68.559,69.761,68.73,70.476,69.524],"script":[28.61,29.044,28.635,28.728,28.389,28.6,29.348,28.806,28.262,28.829,28.726,29.399,28.602,28.986,29.202],"paint":[39.082,38.581,38.458,40.137,39.678,39.055,39.094,39.072,40.098,39.835,38.88,39.437,39.167,40.574,39.405]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.461,13.993,13.854,15.394,13.768,13.873,14.682,13.94,14.257,14.924,13.819,14.113,14.198,14.17,13.517],"script":[11.841,12.114,11.98,12.814,11.636,12.227,12.676,11.839,11.734,12.206,11.381,11.768,11.87,12.36,12.168],"paint":[1.535,1.786,1.134,2.06,2.045,1.365,1.909,1.396,2.108,2.351,2.342,1.213,1.21,1.702,1.256]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5830469131469727]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9488906860351562]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.04698371887207]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2535133361816406]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.374146461486816]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.775390625]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.0458984375]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.5]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"01_run1k","values":{"total":[40.197,45.861,46.005,46.105,39.886,42.507,43.221,46.44,45.735,44.429,44.687,40.698,45.774,43.882,39.755],"script":[1.379,1.353,1.404,1.311,1.274,1.286,1.354,1.314,1.372,1.281,1.359,1.367,1.368,1.366,1.208],"paint":[32.674,32.744,33.12,33.029,32.837,33.822,33.006,35.986,33.057,34.402,32.962,32.789,32.907,32.934,33.286]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"02_replace1k","values":{"total":[23.749,18.657,15.3,22.703,24.649,18.339,17.078,15.179,16.358,16.034,17.679,19.043,19.583,20.715,21.961],"script":[1.185,1.181,1.068,1.123,1.152,1.158,1.025,1.029,1.07,1.068,1.143,1.159,1.154,1.154,1.207],"paint":[14.221,13.698,13.454,13.68,14.741,14.244,14.344,14.04,15.173,14.173,13.713,14.124,14.046,14.02,13.786]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.567,15.61,19.041,17.239,16.023,17.529,14.924,15.433,15.952,16.882,16.269,15.876,19.416,16.483,32.117000000000004],"script":[1.62,0.995,1.324,2.082,1.729,0.965,0.838,1.538,0.724,1.965,1.253,1.016,1.085,2.106,1.662],"paint":[13.847,14.268,15.331,13.31,14.198,13.788,12.3,13.03,12.645,14.792,14.466,13.836,15.404,13.439,14.666]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.62,3.234,3.492,3.437,3.934,6.405,3.595,4.081,3.997,3.73,6.176,3.383,3.312,3.483,4.191,3.74,3.804,2.952,3.77,3.783,4.455,3.752,3.352,3.639,3.553],"script":[0.778,0.85,1.196,0.974,0.283,1.636,0.973,1.459,1.503,1.031,1.092,1.702,1.123,1.588,1.599,1.752,1.172,1.424,0.293,1.235,1.488,1.588,1.334,1.328,1.206],"paint":[2.364,1.516,1.522,1.916,3.52,2.438,1.649,1.618,2.372,2.601,1.728,1.03,2.07,1.333,2.471,1.412,2.524,1.406,2.409,1.443,2.846,1.659,1.902,1.784,1.203]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"05_swap1k","values":{"total":[11.111,11.848,26.837,12.037,11.45,27.026000000000003,26.339,27.123,10.491,11.594,11.638,27,26.369,10.987,26.541999999999998],"script":[0.243,0.243,1.211,0.788,0.202,0.975,1.08,0.928,1.565,0.256,1.366,0.78,0.255,0.219,0.252],"paint":[9.773,9.749,9.587,10.188,10.401,10.312,9.079,10.17,8.826,10.403,9.507,10.169,9.713,9.975,10.248]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.452,30.613,30.518,36.127,30.87,33.675,30.934,30.423,30.132,31.726,31.239,31.241,31.313,31.881,33.925],"script":[2.02,1.676,1.665,1.918,1.485,1.571,1.524,1.408,1.803,1.544,1.754,1.793,1.881,1.598,1.428],"paint":[28.61,28.812,28.727,31.835,28.926,29.806,29.293,28.872,27.979,29.86,28.098,28.568,29.31,28.317,28.367]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"07_create10k","values":{"total":[457.909,441.124,462.006,438.113,443.772,459.886,439.032,452.851,458.168,458.345,455.634,455.505,459.189,459.033,445.317],"script":[97.909,98.99,97.902,98.549,97.826,98.163,97.97,96.042,96.326,99.675,96.645,99.021,97.846,96.844,99.069],"paint":[354.839,335.455,351.829,335.079,333.006,350.541,336.148,344.098,348.784,350.822,354.047,345.011,350.093,350.797,334.662]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.944,54.404,53.411,58.965,56.782,60.081,58.142,57.139,58.577,53.28,58.521,54.193,53.882,57.217,54.546],"script":[10.631,10.826,10.391,10.72,10.675,10.673,10.41,10.723,10.534,9.88,10.742,10.635,10.537,11.093,10.448],"paint":[37.547,37.608,37.013,38.124,37.533,38.022,38.007,37.536,36.858,37.586,37.443,37.483,37.36,37.64,37.683]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.507,13.898,14.411,14.268,13.768,30.053000000000004,15.877,13.418,14.21,14.363,13.204,14.825,14.098,13.586,14.452],"script":[11.235,10.764,11.571,12.161,11.465,13.012,13.596,11.476,12.391,12.912,11.11,12.781,11.03,10.741,10.874],"paint":[0.863,2.167,1.81,1.06,1.857,1.047,1.856,1.885,1.756,1.027,1.715,1.06,3.014,1.854,1.841]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7588653564453125]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5638742446899414]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7335472106933594]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.61740779876709]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.33153247833252]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1015625]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.0302734375]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"01_run1k","values":{"total":[116.107,114.768,115.067,114.976,115.329,115.392,115.041,115.367,115.029,115.348,115.166,115.274,115.239,115.517,115.322],"script":[18.425,17.539,17.597,17.702,17.655,17.783,17.803,18.09,17.859,18.104,17.459,18.317,17.496,18.039,18.005],"paint":[29.784,29.592,29.326,29.584,29.142,29.516,29.765,29.366,29.834,29.517,29.696,29.842,29.614,29.564,29.547]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"02_replace1k","values":{"total":[89.043,89.366,88.639,89.665,88.223,88.703,90.196,88.876,88.471,89.141,89.698,88.705,88.833,88.59,89.676],"script":[16.668,16.276,16.643,16.383,16.33,16.473,16.156,16.142,16.313,16.369,16.25,16.454,16.362,16.728,16.511],"paint":[16.242,14.532,14.653,14.686,15.091,14.492,14.162,14.509,14.481,14.729,15.116,14.484,14.709,14.518,14.394]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[159.931,161.364,158.669,159.19,159.578,160.952,157.384,162.293,159.592,159.668,157.691,160.071,158.095,159.358,157.09],"script":[66.433,67.748,67.283,68.032,68.322,67.075,66.991,67.89,66.544,67.006,67.073,67.582,67.648,66.898,67.572],"paint":[15.1,14.798,16.413,14.844,15.754,14.476,15.881,15.443,15.906,14.244,14.519,16.132,15.531,16.189,16.158]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"04_select1k","values":{"total":[116.94,122.236,124.464,121.475,115.991,124.767,116.104,122.636,122.975,115.921,122.818,113.971,115.071,122.539,123.116,124.945,122.904,123.456,115.033,123.3,123.06,120.827,116.265,122.618,113.553],"script":[61.592,62.557,64.097,62.117,62.17,63.199,61.128,63.354,63.461,63.351,61.71,61.375,62.81,64.029,64.036,64.375,64.95,64.893,62.445,66.007,62.41,66.477,62.604,62.32,61.075],"paint":[2.371,3.608,3.45,4.119,3.558,4.932,3.292,2.214,2.752,3.178,3.377,3.673,2.17,2.583,3.946,1.988,2.269,3.798,3.285,3.638,2.61,4.1,4.235,2.846,3.59]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"05_swap1k","values":{"total":[158.418,159.557,158.941,160.139,159.15,158.489,160.339,161.251,159.768,160.93,158.744,159.625,159.73,157.969,160.774],"script":[65.825,64.781,61.321,64.495,64.419,64.82,64.703,63.984,64.779,65.517,65.401,65.915,63.377,64.787,65.537],"paint":[11.548,11.497,11.593,10.81,11.897,12.227,11.413,9.644,11.808,11.308,12.171,11.538,11.017,11.338,11.53]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[117.433,118.198,117.8,118.319,117.158,116.351,116.926,117.549,117.834,119.374,119.493,118.279,120.311,117.149,116.248],"script":[35.589,36.054,35.822,36.133,34.765,34.741,35.114,36.631,35.197,35.508,36.03,34.444,36.285,34.945,35.094],"paint":[29.311,29.281,30.254,29.575,31.246,31.225,30.074,30.906,29.998,30.495,30.363,31.941,29.768,32.306,30.134]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"07_create10k","values":{"total":[940.369,923.64,922.83,914.977,923.489,916.814,923.649,932.152,923.641,922.941,923.786,906.92,940.5,931.576,916.878],"script":[173.289,170.451,170.618,170.521,168.24,165.821,164.833,171.281,170.829,165.294,173.413,164.252,173.881,172.132,163.667],"paint":[348.472,340.862,342.162,338.851,343.811,343.146,344.892,351.409,339.994,347.347,341.989,339.622,350.97,341.166,342.574]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[145.818,145.98,139.187,139.148,139.27,139.077,139.417,139.225,139.128,138.812,139.36,139.337,139.271,138.87,139.139],"script":[33.149,32.413,33.056,32.616,33.372,32.089,33.455,32.93,31.61,32.083,32.21,32.409,33.17,33.041,32.861],"paint":[33.782,34.513,33.25,33.682,33.479,33.577,33.467,33.52,33.398,33.429,33.386,33.238,33.389,33.146,33.593]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[66.683,66.833,66.074,66.039,65.748,67.368,67.682,64.398,66.923,68.322,67.225,67.912,66.817,67.684,66.755],"script":[15.509,14.944,16.273,15.651,15.174,16.337,16.257,16.863,17.23,16.239,16.051,16.297,16.74,15.833,17.304],"paint":[3.233,3.141,1.624,2.474,2.434,1.856,1.575,2.199,1.924,2.255,1.591,2.596,2.159,2.396,1.922]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.3805694580078125]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.009295463562012]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.253120422363281]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.9250946044921875]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.473849296569824]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[946.77734375]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[243.220703125]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[1511.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"01_run1k","values":{"total":[38.871,38.561,38.689,39.183,39.063,37.975,39.013,39.551,39.459,38.975,39.859,39.752,41.053,40.936,39.409],"script":[5.546,5.4,5.617,5.407,5.581,5.211,5.322,5.805,5.765,5.741,5.567,5.983,5.693,5.462,5.737],"paint":[32.91,32.735,32.665,33.346,33.071,32.349,33.241,33.353,33.284,32.828,33.855,33.333,34.946,35.051,33.259]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"02_replace1k","values":{"total":[15.68,15.2,16.913,14.986,16.509,15.845,15.241,15.28,15.01,15.217,15.178,16.397,15.272,15.405,15.125],"script":[1.397,1.225,1.119,1.179,1.158,1.154,1.1,1.13,1.195,1.187,1.176,1.118,1.157,1.136,1.171],"paint":[13.849,13.567,15.401,13.429,14.947,14.281,13.723,13.774,13.419,13.63,13.599,14.891,13.694,13.905,13.548]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.836,16.115,16.676,15.982,16.637,16.905,16.666,17.051,16.366,16.815,16.292,16.6,16.536,17.199,16.451],"script":[1.852,1.139,1.505,1.456,1.316,1.291,1.647,1.68,1.253,1.072,1.022,1.224,1.259,1.654,1.176],"paint":[13.419,13.459,13.842,13.242,13.492,14.085,13.517,14.298,13.149,14.574,14.326,13.929,13.572,13.426,14.115]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.446,3.22,3.382,2.936,3.138,3.191,6.562,3.041,2.925,3.261,2.676,3.112,5.087,3.101,3.017,3.227,2.562,3.317,3.982,3.023,3.242,4.61,5.579,3.08,4.384],"script":[0.973,0.596,0.91,0.499,0.808,1.102,1.205,0.786,0.506,0.881,0.173,0.888,0.696,0.994,0.669,0.829,0.615,0.913,1.016,0.609,0.173,0.947,1.004,0.863,0.62],"paint":[2.05,2.307,1.771,1.383,2.227,1.498,2.047,2.153,2.328,1.321,2.239,1.467,1.745,2.008,2.249,2.108,1.842,2.288,1.185,2.309,2.797,1.502,1.521,1.359,2.809]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"05_swap1k","values":{"total":[11.531,12.095,12.274,11.643,11.751,11.508,12.18,11.015,12.193,11.747,11.961,11.445,10.831,11.072,11.863],"script":[0.178,0.61,0.877,0.879,1.055,0.751,0.866,0.506,0.85,0.992,0.918,0.172,0.504,0.179,0.293],"paint":[9.921,9.096,10.39,9.007,9.279,8.737,9.686,9.566,9.662,9.005,9.568,10.428,8.965,9.833,10.597]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[34.02,32.005,32.206,31.636,31.905,31.416,31.148,31.323,31.967,31.944,32.098,32.293,31.345,31.468,31.639],"script":[2.439,2.475,2.496,2.458,2.426,2.491,2.512,2.432,2.472,2.523,2.399,2.57,2.453,2.461,2.268],"paint":[30.575,28.374,28.783,28.247,28.076,28.06,27.732,28.141,28.789,28.408,28.927,28.656,28.15,28.257,28.47]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"07_create10k","values":{"total":[392.917,397.004,403.445,401.352,396.367,399.827,402.512,398.24,400.437,403.166,397.015,397.669,400.958,395.732,397.168],"script":[56.436,57.187,58.187,58.208,57.44,57.387,58.88,56.836,58.557,59.627,58.579,57.646,56.576,56.911,58.219],"paint":[329.774,332.344,338.5,336.4,332.145,335.682,336.911,334.613,335.175,336.82,331.718,333.333,337.657,332.13,332.162]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.627,43.156,44.16,43.63,44.047,43.883,43.451,44.584,42.84,44.671,45.11,44.508,44.216,44.053,46.021],"script":[5.251,5.386,5.114,5.861,5.744,5.482,5.732,5.841,5.416,5.426,5.559,5.771,5.711,5.708,5.591],"paint":[37.527,36.913,38.12,36.895,37.465,37.533,36.884,37.911,36.575,38.33,38.713,37.905,37.664,37.52,39.58]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.667,12.237,12.181,12.694,12.764,12.704,13.235,13.301,12.685,12.385,13.94,12.679,13.24,12.401,13.209],"script":[10.756,10.613,10.732,10.973,10.695,10.764,11.588,11.432,10.682,10.044,11.603,10.201,10.774,10.453,10.732],"paint":[1.826,1.533,0.367,1.633,1.754,1.651,1.551,1.775,0.797,2.251,1.303,2.002,2.047,1.554,2.347]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5288782119750977]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.686009407043457]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.742860794067383]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7079181671142578]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.237048149108887]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.158203125]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9365234375]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[40.214,41.276,40.397,40.952,40.315,40.468,40.172,40.083,40.1,40.392,40.557,39.861,40.728,40.66,40.399],"script":[5.811,6.384,6.193,6.116,5.995,6.148,5.909,6.013,5.934,6.039,6.452,5.941,6.471,6.078,5.8],"paint":[33.987,34.455,33.801,34.411,33.941,33.908,33.873,33.642,33.716,33.927,33.69,33.499,33.813,34.166,34.159]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[14.636,14.763,15.228,16.504,14.439,14.802,14.715,14.729,15.341,15.569,14.624,14.944,15.484,14.395,15.677],"script":[1.056,1.037,1.024,1.02,1.009,0.97,1.015,1.013,1.085,1.092,0.992,1.086,1.076,1.002,1.046],"paint":[13.221,13.31,13.841,15.075,13.015,13.434,13.321,13.321,13.877,14.115,13.269,13.505,14.038,12.987,14.194]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.483,16.162,16.629,15.966,16.551,16.17,16.352,16.546,16.185,15.956,16.596,17.016,16.426,16.557,15.919],"script":[0.218,0.868,1.292,0.878,0.678,0.822,0.838,0.809,0.574,0.849,0.89,1.392,1.427,1.48,0.905],"paint":[14.531,13.507,13.055,13.536,14.917,14.206,14.207,14.128,13.872,13.836,14.175,14.558,13.494,13.749,13.738]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.669,4.825,2.632,3.066,2.705,2.74,2.435,3.291,2.687,2.26,5.668,4.168,5.447,3.753,5.976,2.505,2.795,2.549,3.901,3.284,2.522,3.328,2.873,2.915,2.988],"script":[0.544,0.07,0.07,0.749,0.307,0.683,0.185,1.061,0.073,0.07,0.886,0.069,0.955,0.071,0.072,0.606,0.071,1.025,0.687,0.859,0.071,0.073,0.084,0.948,0.87],"paint":[1.336,1.275,2.452,1.445,2.289,1.93,1.28,2.12,2.514,2.093,1.708,1.649,2.069,2.528,1.599,1.802,2.62,1.426,3.059,2.327,1.629,3.142,1.852,1.862,1.436]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[11.118,11.14,11.646,10.889,11.004,10.94,10.797,11.156,12.715,11.176,10.501,11.299,11.403,11.495,10.902],"script":[0.073,0.089,0.074,0.074,0.32,0.077,0.55,0.069,1.001,0.082,0.328,0.841,0.096,0.556,0.081],"paint":[9.367,9.255,10.27,9.511,9.397,9.129,8.833,8.736,9.591,9.777,8.837,9.508,9.177,9.83,10.087]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[31.798,31.961,31.465,31.916,32.387,31.486,31.906,32.592,32.968,33.655,32.998,32.702,31.922,33.979,32.888],"script":[2.294,1.983,1.982,2.326,2.315,1.916,2.191,2.153,2.231,2.263,2.277,2.304,2.311,1.984,1.935],"paint":[28.682,29.224,28.755,28.435,29.315,28.474,28.906,29.392,30.026,30.688,29.588,29.41,28.588,30.552,30.142]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[422.427,417.874,418.823,424.898,419.933,419.457,420.662,421.95,415.498,417.696,415.273,418.247,418.456,417.127,417.053],"script":[74.08,73.637,71.99,75.761,73.475,73.329,72.039,75.275,74.726,73.027,73.462,74.468,71.998,73.161,73.094],"paint":[341.401,337.439,340.155,342.428,339.625,339.445,341.461,339.801,333.992,337.961,335.167,337.022,339.764,337.285,337.314]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.41,44.783,43.784,44.754,44.967,45.134,45.194,45.222,45.789,45.057,45.58,45.457,45.76,45.303,45.47],"script":[5.395,5.451,5.512,5.603,5.522,5.535,5.936,5.555,5.601,5.587,5.49,5.584,5.638,5.659,5.676],"paint":[38.128,38.444,37.382,38.354,38.606,38.735,38.381,38.794,39.331,38.596,39.203,38.985,38.998,38.757,38.939]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.635,13.467,13.622,13.143,12.599,13.273,13.187,13.019,12.202,13.292,12.959,13.47,14.097,12.478,13.906],"script":[11.195,10.548,11.73,11.137,10.808,11.84,11.493,11.102,10.82,11.619,11.05,11.798,12.179,11.016,11.189],"paint":[1.333,1.925,1.205,1.915,1.702,1.341,0.853,1.825,1.284,1.561,1.066,0.98,1.831,1.374,2.598]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5972986221313477]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.979879379272461]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.029573440551758]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8490228652954102]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.637201309204102]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[26.1337890625]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.73828125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[59.883,58.167,59.303,59.918,60.39,58.294,60.452,58.598,58.587,60.771,58.491,57.77,59.387,59.303,60.918],"script":[23.847,21.626,22.098,22.894,22.881,22.035,23.431,23.514,23.695,23.807,23.349,23.385,24.175,23.278,23.587],"paint":[35.604,36.101,36.755,36.577,37.072,35.823,36.59,34.652,34.46,36.481,34.73,33.975,34.792,35.585,36.882]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[35.048,36.367,35.734,37.193,37.274,36.821,38.927,35.854,37.76,35.854,35.656,37.14,36.154,35.469,37.548],"script":[20.355,20.885,20.908,22.166,21.946,21.57,22.665,21.114,21.129,21.094,20.914,21.173,21.395,20.728,22.012],"paint":[14.234,15.076,14.354,14.575,14.877,14.786,15.726,14.293,16.169,14.321,14.282,15.497,14.367,14.287,15.084]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[69.532,69.164,68.43,72.078,69.138,69.578,69.722,70.154,69.565,69.678,69.395,69.1,69.519,70.514,70.899],"script":[53.36,52.521,52.81,54.43,52.669,53.279,53.577,53.6,53.236,52.771,53.532,52.375,52.986,53.409,53.813],"paint":[14.095,14.109,14.21,15.674,15.062,14.064,13.172,14.995,14.969,13.91,14.025,15.516,14.38,15.086,15.595]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[53.492,53.468,53.295,53.543,54.339,53.633,53.536,53.057,53.577,54.218,53.524,53.547,53.198,52.656,53.477,52.967,53.188,53.017,53.039,52.564,56.037,52.949,58.049,52.554,53.91],"script":[49.953,49.893,50.223,50.498,50.647,50.659,49.706,50.292,50.834,50.978,49.525,50.439,49.964,49.877,49.844,50.451,50.629,49.892,50.013,49.9,51.624,50.118,53.703,50.146,50.395],"paint":[2.035,2.83,2.756,2.178,2.782,2.724,2.85,2.189,2.11,2.728,2.734,2.948,2.363,2.621,3.031,2.355,2.19,2.842,2.859,1.492,3.468,1.585,3.758,1.277,2.656]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[62.095,62.748,63.304,62.202,63.073,63.354,62.403,65.179,62.639,62.557,62.129,61.692,62.408,61.903,62.097],"script":[50.845,50.349,50.631,50.644,51.134,50.528,50.133,52.838,50.764,50.824,50.567,49.832,50.699,50.665,50.895],"paint":[9.793,10.746,11.511,10.277,9.981,10.921,10.51,10.844,10.351,10.027,9.843,11.214,9.97,9.953,10.188]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[75.604,74.887,75.048,76.31,75.299,74.333,75.723,72.049,74.705,74.648,75.694,75.907,76.047,75.076,74.619],"script":[43.734,42.773,43.742,44.469,42.954,43.13,44.188,40.773,42.085,42.55,42.283,43.404,44.187,43.817,43.366],"paint":[31.031,30.959,30.135,30.693,31.333,30.455,30.524,30.48,31.499,30.927,32.249,31.538,30.856,30.222,30.116]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[759.748,760.506,765.759,774.155,760.385,780.789,758.149,764.372,743.455,771.971,772.17,775.518,771.183,757.743,763.737],"script":[376.318,374.417,380.857,388.087,374.542,388.904,378.802,379.321,358.15,386.352,386.228,383.831,382.73,369.348,374.93],"paint":[376.758,379.378,378.201,379.279,378.701,385.056,372.558,378.142,378.446,378.747,379.175,384.82,381.444,381.676,382.007]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[85.496,84.64,85.5,84.235,85.012,85.961,84.089,86.24,84.819,84.772,85.805,84.949,86.071,84.71,84.4],"script":[43.028,43.967,44.541,43.469,44.024,44.458,43.677,44.693,44.043,44.234,44.514,44.115,44.774,44.271,43.645],"paint":[41.518,39.794,40.034,39.856,40.065,40.557,39.467,40.616,39.828,39.555,40.358,39.901,40.325,39.479,39.844]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.828,24.807,23.088,24.872,22.844,24.409,23.325,26.868,24.213,24.878,23.542,23.834,24.515,24.276,24.639],"script":[22.989,22.181,21.145,22.985,20.812,22.489,21.275,24.463,22.035,22.963,21.295,22.309,22.902,22.096,22.551],"paint":[1.159,2.521,1.844,1.454,1.049,1.798,1.943,2.28,1.186,1.821,2.138,1.42,1.03,1.629,1.998]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6342687606811523]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.279816627502441]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.35072135925293]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.896078109741211]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[57.041433334350586]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[253.1162109375]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.880859375]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[395.3]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"01_run1k","values":{"total":[50.47,50.551,49.604,50.497,51.283,49.534,50.489,50.187,51.97,49.82,49.442,49.674,50.216,49.88,50.298],"script":[16.851,17.145,16.667,17.412,16.455,16.436,17.202,17.123,18.085,16.982,16.698,16.562,16.686,16.613,17.201],"paint":[33.177,32.965,32.499,32.626,34.319,32.652,32.84,32.622,33.44,32.414,32.301,32.694,33.069,32.84,32.653]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"02_replace1k","values":{"total":[24.238,23.953,24.136,23.769,24.435,24.37,24.609,24.656,23.788,23.962,24.784,24.228,24.305,24.057,24.129],"script":[9.254,9.15,9.6,8.964,9.544,9.753,9.288,9.898,8.811,9.299,10.126,9.528,9.627,9.275,9.413],"paint":[14.559,14.372,14.09,14.387,14.437,14.191,14.86,14.294,14.557,14.217,14.226,14.258,14.243,14.336,14.273]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.196,23.325,23.256,23.842,22.947,23.812,22.187,23.497,22.044,21.777,24.111,23.592,23.739,22.828,23.656],"script":[7.501,7.61,7.919,7.18,7.625,6.418,6.468,7.04,6.017,6.212,7.647,6.666,7.24,7.081,6.712],"paint":[14.438,13.609,13.86,15.295,13.562,15.324,14.324,15.528,14.981,14.05,14.717,15.283,15.173,13.781,14.912]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.505,4.752,4.199,5.083,4.454,4.004,5.12,4.757,5.259,4.541,4.736,5.687,4.835,4.6,5.202,4.319,5.04,5.579,5.09,4.985,4.41,6.175,4.49,5.005,5.66],"script":[2.28,2.365,2.196,1.816,2.251,1.747,2.144,1.515,1.678,1.688,1.831,2.733,1.897,1.499,2.385,1.366,2.64,2.721,1.982,2.518,1.422,2.252,2.123,2.434,2.447],"paint":[1.427,2.239,1.888,2.685,1.673,1.165,2.01,2.137,3.45,1.591,1.787,2.103,1.783,2.572,1.606,2.831,2.267,1.938,2.965,1.639,2.631,3.547,2.236,2.433,2.8]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"05_swap1k","values":{"total":[12.786,12.97,13.357,13.973,12.925,13.553,13.181,12.808,13.514,12.9,13.077,13.274,13.232,13.398,13.257],"script":[1.451,1.835,2.175,2.547,2.072,2.653,1.721,2.186,2.238,1.382,2.008,1.672,2.321,1.778,2.424],"paint":[10.599,9.368,9.317,10.33,9.897,8.876,9.858,8.629,9.417,9.307,9.722,10.277,9.446,10.268,8.728]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.678,18.45,18.029,18.271,18.827,17.826,17.875,17.835,18.021,17.903,18.314,18.532,17.886,17.938,18.517],"script":[3.016,2.823,2.746,3.077,3.012,2.811,2.826,2.656,2.688,2.802,3.038,2.886,3.043,2.611,3.091],"paint":[13.902,14.741,14.53,14.438,14.866,14.133,14.01,14.428,14.601,14.122,14.506,14.866,13.801,14.306,14.26]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"07_create10k","values":{"total":[628.285,619.537,617.793,619.594,622.434,619.5,618.157,621.435,616.969,624.508,619.914,620.357,618.443,619.79,618.283],"script":[268.371,264.595,264.947,266.039,267.534,265.129,264.223,266.866,263.528,265.986,264.42,263.564,265.951,265.936,265.456],"paint":[353.042,348.232,346.238,346.817,348.109,347.508,347.101,347.904,346.568,351.805,348.851,350.101,345.731,347.198,346.207]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.677,55.963,56.967,55.998,56.398,57.408,57.253,56.281,56.384,57.122,55.921,56.284,57.952,56.467,57.027],"script":[17.981,16.424,16.75,17.312,16.576,16.681,17.252,16.974,16.522,17.656,16.14,16.223,17.478,16.978,17.265],"paint":[38.762,38.647,39.289,37.79,38.926,39.817,39.091,38.397,38.823,38.515,38.885,39.171,39.579,38.55,38.904]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.869,16.736,16.73,16.052,17.057,14.732,16.365,15.679,16.083,16.055,16.211,15.865,16.359,15.649,16.006],"script":[14.452,14.749,14.565,13.634,14.654,13.28,14.196,13.818,14.336,13.893,14.288,14.005,14.318,14.118,14.131],"paint":[2.327,0.979,1.099,1.331,2.295,0.395,2.08,1.768,1.654,2.072,0.942,1.465,1.938,1.435,1.781]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0401029586791992]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.745843887329102]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.331998825073242]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.616761207580566]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.734707832336426]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1630859375]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.197265625]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[249]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[40.32,40.498,40.799,41.003,42.436,39.638,40.312,40.91,40.663,41.008,40.343,41.032,40.601,39.849,41.775],"script":[6.551,6.538,7.196,7.268,7.273,6.913,6.476,6.968,6.61,6.736,6.522,6.651,6.594,6.549,7.217],"paint":[33.367,33.54,33.205,33.303,34.747,32.298,33.419,33.541,33.627,33.877,33.341,33.968,33.594,32.897,34.151]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[15.964,16.314,15.993,16.159,16.462,16.074,16.928,15.826,16.172,16.793,15.957,16.182,16.293,16.292,17.015],"script":[1.72,1.718,1.811,1.723,1.807,1.755,1.82,1.68,1.754,1.644,1.743,1.754,1.806,1.819,1.725],"paint":[13.808,14.14,13.758,14.008,14.289,13.861,14.667,13.707,13.981,14.714,13.779,14.05,14.06,14.104,14.845]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.432,17.188,17.301,16.652,17.27,17.478,18.489,16.95,17.358,17.145,16.592,15.938,17.072,18.992,16.72],"script":[1.939,1.833,1.178,1.75,1.765,1.756,1.819,0.75,1.501,1.851,1.543,1.005,1.699,1.273,1.959],"paint":[14.181,14.034,14.072,13.676,13.262,14.351,15.663,15.019,14.807,14.214,13.721,13.542,14.289,16.105,13.718]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[4.444,4.408,4.493,3.953,3.968,4.17,3.689,4.46,4.741,3.46,3.602,3.788,3.825,3.3,4.181,4.703,4.719,3.824,4.08,4.126,4.397,3.527,4.454,3.747,4.019],"script":[1.724,1.552,0.99,1.314,1.729,0.626,1.008,1.234,1.636,1.302,1.513,1.058,0.987,1.297,1.244,1.516,1.249,0.973,1.287,1.318,1.456,0.981,1.667,1.003,0.641],"paint":[1.888,2.718,2.935,2.499,1.473,3.426,1.703,2.55,2.476,1.49,1.058,2.325,1.814,1.138,1.926,2.903,3.334,2.718,2.296,2.388,1.996,2.172,2.641,1.59,2.613]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[12.486,12.632,12.207,12.55,12.35,12.464,12.383,11.816,12.19,13.035,11.608,13.202,13.094,13.151,12.42],"script":[1.542,1.702,1.201,1.441,0.982,1.271,1.604,1.039,1.082,1.384,1.484,0.684,1.542,1.301,1.501],"paint":[9.672,9.582,10.057,10.143,10.703,9.641,8.704,9.328,9.605,10.349,7.637,10.338,9.37,10.435,9.185]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[34.381,32.832,34.302,33.29,32.734,33.6,33.025,34.934,32.981,32.645,33.093,32.513,33.361,33.2,33.163],"script":[2.669,2.985,3.03,3.073,2.693,3.07,3.009,3.073,2.849,2.754,2.615,2.802,3.017,3.046,3.043],"paint":[30.553,28.714,30.215,29.175,29.252,29.719,29.188,31.034,29.364,28.764,29.284,28.7,29.554,29.255,29.387]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[431.317,431.555,426.57,430.646,435.826,425.942,431.683,430.222,433.405,427.8,429.361,427.155,428.271,436.293,426.894],"script":[82.505,83.008,81.855,82.227,84.38,81.218,81.585,83.715,84.04,79.833,82.694,80.706,83.008,81.273,81.765],"paint":[341.999,341.614,337.984,341.703,344.705,337.416,343.387,339.801,342.006,341.242,339.935,339.689,338.44,348.327,338.437]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.243,46.688,46.706,46.357,46.436,47.276,46.329,48.497,46.742,46.819,47.683,46.868,48.213,46.265,45.586],"script":[6.74,6.926,6.903,6.632,6.713,7.031,6.634,6.823,6.801,6.871,6.987,6.884,6.649,6.631,6.705],"paint":[39.579,38.91,38.933,38.889,38.806,39.406,38.792,40.774,38.93,39.081,39.823,39.11,40.697,38.777,38.017]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.918,15.248,15.408,16.072,15.393,15.575,16.215,15.049,16.172,15.491,15.957,15.507,15.103,15.805,15.943],"script":[13.815,13.79,13.273,13.829,13.234,13.968,14.062,13.358,13.922,12.772,13.998,13.636,12.636,13.488,13.6],"paint":[1.219,1.371,1.392,2.142,2.055,1.518,1.487,1.197,2.083,2.628,1.872,1.044,2.365,2.223,2.24]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.570530891418457]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.691349983215332]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.685105323791504]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8183450698852539]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.185483932495117]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.7099609375]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.55078125]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.7]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[38.499,39.524,38.217,38.338,39.26,39.28,39.769,40.688,40.516,39.218,39.695,40.333,40.391,40.002,39.055],"script":[5.622,5.753,5.666,5.653,5.665,5.785,5.938,6.419,6.219,5.618,5.977,6.128,6.232,6.033,5.715],"paint":[32.473,33.361,32.156,32.293,33.168,33.075,33.431,33.851,33.856,33.202,33.291,33.787,33.739,33.59,32.908]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[15.551,15.363,15.214,15.226,16.52,15.346,15.484,15.602,15.669,15.269,15.55,15.859,15.356,15.733,15.336],"script":[1.346,1.221,1.166,1.257,1.235,1.223,1.248,1.195,1.193,1.184,1.16,1.232,1.223,1.194,1.305],"paint":[13.779,13.772,13.648,13.589,14.839,13.72,13.831,14.038,14.102,13.677,14.033,14.262,13.71,14.17,13.625]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.964,17.207,17.082,16.546,16.83,17.512,16.869,16.63,17.493,16.912,16.769,17.216,16.111,17.81,17.185],"script":[1.026,1.749,1.253,0.973,1.771,1.232,0.897,0.907,0.997,1.706,1.677,1.679,1.234,1.624,1.424],"paint":[13.471,14.262,14.715,14.183,13.075,15.304,14.912,14.984,15.17,14.185,13.609,14.126,13.51,14.697,13.965]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.64,4.502,4.225,3.823,3.178,3.999,3.571,4.064,2.921,3.951,3.173,3.535,4.087,3.602,3.165,3.245,2.78,5.393,4.603,4.491,3.899,3.333,3.839,3.945],"script":[0.192,0.556,0.177,0.822,1.17,0.917,0.753,1.006,1.441,0.709,0.936,0.735,0.675,0.899,0.698,0.903,0.703,0.493,0.942,0.275,1.045,1.117,1.126,1.009,1.101],"paint":[3.101,2.353,2.717,2.147,1.741,2.158,2.566,2.465,2.518,2.106,2.902,2.331,2.752,3.078,2.79,2.158,2.413,2.03,2.659,2.151,2.417,2.381,2.105,2.717,1.668]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[11.932,11.692,12.318,12.125,11.549,11.849,11.829,11.22,12.034,11.733,11.971,11.522,11.825,11.6,11.972],"script":[0.323,0.19,0.717,0.909,0.858,0.854,0.641,0.188,0.19,0.188,0.913,0.755,1.199,0.229,0.561],"paint":[9.907,9.875,9.755,9.904,9.208,9.828,9.597,9.651,9.242,9.628,10.262,9.477,9.874,10.105,9.837]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[31.23,31.464,31.133,31.203,32.502,32.364,32.399,31.174,31.222,31.304,32.03,31.467,31.57,31.296,31.543],"script":[2.249,1.936,1.874,1.867,1.919,2.149,1.897,1.905,1.879,1.873,2.083,2.043,2.224,1.889,1.892],"paint":[28.218,28.391,28.52,28.584,28.927,29.072,29.679,28.252,28.436,28.171,29.232,28.719,28.574,28.533,28.831]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[416.578,415.85,413.416,409.053,411.134,412.674,421.039,412.78,415.789,416.254,413.343,418.202,414.446,416.382,418.059],"script":[71.746,70.591,71.004,70.039,69.941,71.052,69.951,71.084,70.111,71.469,74.017,72.99,70.859,72.311,74.316],"paint":[338.008,338.484,335.679,332.188,334.491,334.831,344.339,334.903,338.634,338.05,332.573,336.577,336.844,337.288,336.966]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.738,44.196,44.497,45.651,43.566,44.169,45.44,43.969,44.722,45.322,45.494,44.774,44.379,44.194,44.843],"script":[5.814,5.497,5.562,5.804,5.497,5.495,5.754,5.495,5.599,5.65,5.858,5.466,5.402,5.722,5.613],"paint":[38.986,37.803,38.007,38.961,37.191,37.811,38.794,37.567,38.134,38.766,38.776,38.382,38.034,37.575,38.352]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.737,14.89,15.19,16.267,16.631,15.152,14.82,15.897,16.749,17.132,14.883,15.104,15.399,15.244,15.154],"script":[14.145,13.147,13.34,13.662,14.526,13.213,12.671,13.545,14.885,14.994,13.243,13.534,13.683,13.363,13.277],"paint":[1.501,1.65,1.758,2.485,2.029,1.842,2.056,2.262,1.775,2.024,0.74,1.477,0.914,1.066,1.084]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5777406692504883]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.48476505279541]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5159683227539062]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7471113204956055]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.461997032165527]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7421875]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7734375]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[44.406,45.179,45.665,43.973,44.602,44.586,44.078,43.876,43.778,43.682,43.524,43.698,45.688,44.024,44.65],"script":[9.867,11.016,10.581,9.978,10.134,10.223,10.233,10.159,9.545,9.762,9.583,9.972,10.687,10.42,9.813],"paint":[34.118,33.732,34.658,33.566,34.065,33.95,33.422,33.296,33.805,33.499,33.536,33.334,34.573,33.193,34.441]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[25.862,26.155,25.385,25.908,25.856,25.098,27.28,28.109,25.958,26.269,27.57,26.053,27.306,28.41,25.616],"script":[10.554,10.774,10.25,10.551,10.341,10.123,11.135,11.157,10.647,10.74,10.92,10.595,10.917,11.313,10.224],"paint":[14.832,14.904,14.698,14.906,15.029,14.537,15.682,16.475,14.831,15.064,16.185,14.974,15.935,16.613,14.954]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.087,47.147,49.786,46.841,46.021,47.217,45.755,47.501,47.997,48.853,47.895,50.254,49.247,50.023,49.931],"script":[29.695,30.469,31.397,29.699,29.463,29.919,29.035,30.069,31.169,31.294,30.329,32.973,32.415,32.992,31.076],"paint":[16.013,14.556,16.533,15.779,14.715,14.678,14.603,15.296,14.488,15.102,15.992,16.102,14.934,15.911,16.364]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[28.683,30.009,29.252,28.984,28.882,28.016,29.274,30.727,28.62,30.153,28.425,29.685,29.278,29.243,29.522,27.778,28.901,29.622,28.457,29.062,28.253,28.59,29.6,28.619,30.139],"script":[25.912,26.256,25.906,25.808,24.301,25.135,26.416,26.723,25.22,26.749,25.596,26.958,26.167,26.3,25.597,24.824,25.536,26.386,25.879,26.269,25.432,25.402,25.622,25.647,26.726],"paint":[0.981,2.822,2.442,2.495,3.665,2.02,1.856,3.09,2.502,2.606,2.186,2.536,2.523,1.776,3.736,2.066,2.796,2.048,2.394,2.637,1.895,1.79,2.923,1.805,2.553]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[37.358,37.186,38.588,37.039,39.108,37.095,38.187,38.16,38.015,38.474,37.443,38.991,37.461,38.888,37.639],"script":[24.639,25.249,27.058,24.729,26.492,25.688,25.727,26.219,25.302,26.439,25.19,26.925,24.974,26.505,25.559],"paint":[11.223,9.492,10.195,10.707,11.182,9.813,10.829,10.382,10.962,10.21,11.225,10.463,11.095,11.379,10.662]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[51.992,54.63,55.565,55.844,52.989,51.237,55.824,50.732,55.497,55.721,52.556,56.021,56.309,51.432,51.716],"script":[20.127,21.019,20.431,20.938,19.827,18.985,21.499,18.392,21.032,21.393,20.3,21.297,21.759,19.183,19.335],"paint":[30.683,32.481,34.32,33.764,32.296,31.479,33.268,30.903,33.716,33.51,31.192,33.906,33.54,31.451,31.208]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[465.957,448.017,454.264,450.534,450.447,458.912,459.493,457.971,460.78,466.806,465.359,464.281,456.911,462.281,463.2],"script":[107.452,106.794,102.37,110.559,108.11,105.102,104.134,107.704,106.065,110.89,109.086,106.409,104.756,106.206,106.983],"paint":[351.736,334.286,344.653,333.242,335.674,347.108,348.649,343.646,348.028,349.258,349.578,351.218,345.513,348.719,349.61]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.063,57.534,58.314,58.124,59.19,59.911,59.755,59.672,58.747,59.025,59.175,58.038,58.149,59.272,58.438],"script":[18.091,16.936,18.149,17.857,18.214,18.875,18.75,19.303,18.393,18.632,18.491,18.096,17.382,18.84,18.13],"paint":[41.009,39.724,39.292,39.381,40.042,40.132,40.112,39.463,39.436,39.477,39.772,39.061,39.859,39.551,39.43]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.579,18.191,17.435,17.491,16.772,16.921,17.547,19.549,18.652,18.37,18.219,17.503,17.173,19.608,17.408],"script":[18.337,16.127,15.575,16.051,14.87,14.971,15.088,17.881,16.74,16.47,15.746,15.114,14.995,17.475,14.861],"paint":[2.138,1.063,1.75,0.385,0.681,0.982,2.352,1.376,1.826,0.362,2.383,2.28,1.291,2.027,1.846]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4665384292602539]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9551801681518555]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3450870513916016]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6227302551269531]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.29177761077881]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.3408203125]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.927734375]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.5]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"01_run1k","values":{"total":[44.846,43.869,51.425,48.991,49.256,49.404,47.454,49.984,52.208,48.486,47.328,49.62,51.311,50.724,50.552],"script":[9.486,9.875,10.478,9.503,9.811,9.38,9.543,9.864,9.995,9.861,9.975,9.628,10.833,9.874,10.106],"paint":[33.251,33.114,35.009,33.092,32.676,32.948,33.495,32.437,32.798,32.964,34.027,33.293,33.407,33.186,33.566]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"02_replace1k","values":{"total":[67.99,66.335,64.7,63.633,66.784,66.934,62.368,66.421,60.552,65.689,59.008,63.855,64.927,61.037,65.432],"script":[20.402,20.258,20.42,20.37,21.277,20.718,20.06,20.7,20.233,20.384,20.674,20.401,20.491,18.739,20.712],"paint":[35.618,36.233,35.537,35.745,35.722,35.633,35.685,34.683,35.823,35.829,35.469,36.046,35.633,33.529,35.87]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[36.764,37.766999999999996,18.568,21.734,18.458,19.392,37.132999999999996,18.796,37.30200000000001,37.23,37.80800000000001,21.148,18.91,19.115,34.97],"script":[5.163,6.308,3.484,4.285,3.004,4.218,6.039,3.788,5.162,5.483,5.719,3.634,4.176,3.597,5.13],"paint":[15.566,15.413,14.965,15.818,14.374,15.064,14.378,13.494,16.072,14.606,16.047,16.341,14.642,13.44,13.8]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"04_select1k","values":{"total":[32.216,32.115,36.05,37.597,35.925,36.124,34.239,31.066,35.914,33.116,32.836,32.318,34.405,40.444,35.706,35.569,36.248,39.925,35.182,38.572,32.194,31.142,35.756,31.622,35.307],"script":[3.825,3.793,4.671,3.77,3.566,3.079,4.049,4.623,4.259,4.177,4.012,4.794,4.049,4.645,4.931,4.289,4.779,4.363,4.197,3.461,3.93,3.813,4.679,4.401,4.413],"paint":[20.236,19.486,19.999,22.182,21.627,22.281,19.557,21.54,21.415,22.012,19.508,20.429,20.463,21.398,20.712,21.283,21.805,20.507,20.69,20.632,20.151,21.72,22.168,19.818,19.89]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"05_swap1k","values":{"total":[213.283,204.436,209.454,195.825,210.171,198.225,197.596,199.118,200.144,184.933,198.648,215.556,185.84,185.713,190.469],"script":[48.244,49.275,47.718,47.779,48.353,47.349,47.812,48.742,50.23,45.559,49.514,47.87,45.134,45.738,46.395],"paint":[148.938,152.284,144.979,144.703,145.725,147.515,147.636,147.894,149.707,138.867,148.956,150.845,139.839,136.962,143.232]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.531,23.621,32.353,29.492,20.419,21.728,33.303,20.04,33.886,26.754,20.521,34.373,19.127,21.876,26.841],"script":[1.584,1.908,1.889,1.568,1.799,1.699,2.169,1.819,1.932,1.606,1.835,1.801,1.507,1.6,1.669],"paint":[14.734,15.339,15.042,16.3,15.554,15.051,15.904,14.544,15.179,14.976,14.838,15.042,14.689,14.691,14.736]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"07_create10k","values":{"total":[466.879,448.979,453.397,474.75,467.146,488.635,465.534,446.889,468.81,474.376,468.659,446.227,446.404,447.034,454.311],"script":[116.458,110.77,114.901,117.81,113.34,119.71,118.653,109.829,106.644,114.547,109.923,106.545,102.569,107.435,113.477],"paint":[348.193,334.865,330.357,350.23,349.308,358.723,341.724,328.244,356.556,356.325,355.582,334.581,339.407,337.415,336.1]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.557,58.584,56.325,54.034,58.24,57.596,53.629,60.564,58.776,54.913,55.093,55.624,54.796,59.756,56.302],"script":[11.156,11.461,10.898,10.772,10.975,11.079,10.819,11.333,10.605,11.116,10.854,10.962,10.925,11.225,11.199],"paint":[38.81,38.064,38.692,37.435,38.194,38.199,36.969,37.744,37.987,37.709,38.198,38.095,37.884,37.969,37.821]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.727,13.534,28.480999999999998,13.801,12.894,15.787,15.864,14.341,16.072,12.445,13.02,29.427000000000003,16.1,13.733,12.508],"script":[11.286,11.676,10.342,11.498,11.057,11.279,10.687,11.073,10.641,10.791,11.613,11.598,12.049,11.722,11.348],"paint":[1.385,1.79,2.144,1.856,1.77,2.297,0.986,2.046,2.122,1.595,1.348,1.6,2.274,1.951,1.104]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5164823532104492]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.779850959777832]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7264318466186523]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8932018280029297]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.448715209960938]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.798828125]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3623046875]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.9]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"01_run1k","values":{"total":[35.284,35.505,35.642,35.285,35.338,35.274,35.784,35.999,36.558,36.304,36.772,35.831,35.982,36.817,36.174],"script":[2.643,2.542,2.48,2.457,2.463,2.475,2.567,2.598,2.545,2.599,2.569,2.687,2.471,2.607,2.542],"paint":[32.24,32.536,32.737,32.43,32.427,32.387,32.806,33.003,33.605,33.305,33.788,32.744,32.994,33.736,33.222]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"02_replace1k","values":{"total":[14.678,14.281,14.489,14.7,15.471,14.354,14.642,14.97,15.2,14.972,16.11,14.759,14.491,14.99,15.086],"script":[0.648,0.657,0.654,0.654,0.617,0.622,0.653,0.671,0.683,0.647,0.632,0.646,0.647,0.632,0.647],"paint":[13.633,13.232,13.422,13.696,14.444,13.317,13.646,13.947,14.17,13.982,15.084,13.727,13.465,14.017,14.088]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.904,15.784,15.168,15.791,15.297,15.437,15.771,16.544,19.214,15.465,15.669,16.319,16.014,15.788,17.728],"script":[1.453,0.87,0.128,0.702,0.76,0.128,0.127,0.818,0.669,0.132,0.137,0.843,0.132,0.602,0.868],"paint":[15.213,13.494,13.463,13.977,13.493,14.055,14.575,14.178,15.985,14.295,14.239,13.939,14.216,14.161,15.445]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"04_select1k","values":{"total":[2.755,2.973,2.997,3.078,2.9,3.74,2.364,4.834,2.464,3.07,6.233,2.904,3.004,2.722,2.847,3.048,2.934,2.608,1.872,4.978,2.413,2.397,2.696,2.356,3.002],"script":[0.078,0.589,0.481,0.077,0.907,0.075,0.292,0.081,0.074,0.821,0.293,0.429,0.577,0.083,0.086,0.086,0.073,0.085,0.262,0.077,0.08,0.08,0.676,0.272,1.008],"paint":[2.578,2.249,2.398,2.892,1.887,2.33,1.975,1.456,2.289,1.698,2.255,1.514,1.879,1.804,2.657,2.567,2.763,2.424,1.098,3.085,1.18,1.693,1.285,1.989,1.282]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"05_swap1k","values":{"total":[11.939,11.42,11.435,10.935,11.022,11.955,11.464,11.403,11.6,11.279,11.185,11.711,10.879,10.536,11.017],"script":[0.899,0.086,0.088,0.41,0.588,0.775,0.737,0.093,0.807,0.083,0.091,0.759,0.098,0.093,0.079],"paint":[8.426,10.127,10.373,9.533,9.405,9.114,9.251,9.563,9.042,9.915,9.889,9.194,9.403,8.648,8.443]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.384,14.822,16.045,14.819,14.738,15.281,15.349,14.703,15.065,15.214,14.692,14.753,14.709,15.347,14.697],"script":[0.093,0.084,0.08,0.085,0.26,0.292,0.082,0.081,0.093,0.083,0.079,0.094,0.08,0.087,0.08],"paint":[14.496,14.027,15.269,14.012,13.572,14.301,14.609,14.173,14.088,14.423,13.957,13.947,13.881,14.49,13.911]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"07_create10k","values":{"total":[371.908,370.133,369.106,371.33,370.051,365.59,373.13,368.231,367.575,370.467,368.434,367.552,370.547,368.894,372.717],"script":[28.453,28.466,29.03,28.814,29.458,28.382,29.153,29.239,30.073,30.54,29.281,28.048,29.649,28.289,30.83],"paint":[336.868,335.079,333.401,335.61,333.886,330.49,336.77,332.169,330.831,333.24,332.416,332.879,334.198,333.487,335.254]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.946,41.807,43.69,40.172,40.145,41.153,40.488,40.513,41.443,42.224,41.203,41.157,41.077,41.393,41.486],"script":[2.483,2.554,2.614,2.35,2.426,2.596,2.398,2.455,2.464,2.474,2.44,2.437,2.421,2.499,2.524],"paint":[36.596,38.239,40.134,36.969,36.833,37.728,37.241,37.242,38.121,38.9,37.933,37.849,37.809,38.151,38.131]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.816,12.183,12.376,12.085,11.427,12.174,12.2,11.437,12.109,12.274,11.99,12.604,11.814,11.772,12.334],"script":[9.947,10.545,10.385,9.932,9.778,10.383,10.528,9.648,9.523,10.816,10.209,10.723,9.778,9.898,10.694],"paint":[1.797,1.339,1.902,2.068,1.564,1.706,1.565,1.708,2.487,1.359,0.712,1.099,1.952,1.789,1.538]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5064077377319336]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8316268920898438]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8668279647827148]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6702022552490234]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.353330612182617]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.5068359375]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.171875]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"01_run1k","values":{"total":[47.781,47.27,47.745,48.727,46.785,48.097,48.884,48.411,47.627,48.883,48.861,48.191,47.842,47.741,47.98],"script":[13.454,12.901,12.956,14.112,12.935,13.469,13.951,13.375,13.799,14.253,13.983,13.546,13.17,13.086,13.319],"paint":[33.91,33.962,34.385,34.171,33.405,34.219,34.485,34.604,33.408,34.215,34.453,34.211,34.266,34.249,34.24]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"02_replace1k","values":{"total":[28.154,28.703,27.036,26.723,27.413,29.21,26.206,28.149,26.588,25.792,26.957,27.128,27.128,26.752,27.18],"script":[11.564,13.075,12.031,11.443,12.175,13.208,11.516,12.913,11.069,11.229,11.949,11.131,11.424,11.575,11.77],"paint":[16.128,15.162,14.581,14.817,14.772,15.54,14.228,14.77,15.032,14.101,14.569,15.518,15.245,14.719,14.977]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.77,16.588,16.824,16.098,16.397,16.259,16.243,15.521,16.236,15.494,16.264,17.013,16.813,16.414,15.608],"script":[1.114,0.825,0.21,0.201,0.755,0.937,0.917,0.211,0.939,0.198,0.923,0.937,0.207,0.939,0.591],"paint":[14.356,13.986,15.626,13.438,14.453,14.364,13.969,13.394,14.319,14.132,13.623,14.284,14.73,13.841,12.819]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"04_select1k","values":{"total":[2.901,4.431,3.741,3.057,4.112,2.936,2.725,3.183,2.986,2.772,2.84,2.443,3.052,5.68,2.896,3.818,3.203,3.588,2.801,2.374,4.4,2.929,4.095,2.794,2.558],"script":[0.805,1.234,0.657,0.146,1.292,0.8,0.831,0.899,0.881,0.124,0.129,0.528,0.137,1.047,0.231,0.928,0.856,0.829,0.65,0.125,1.137,0.491,0.564,0.248,0.144],"paint":[1.213,1.685,2.007,2.807,2.696,1.932,1.125,0.679,1.185,2.53,2.047,1.109,2.806,2.159,2.554,1.619,0.78,1.82,1.559,2.148,1.638,1.573,1.711,1.772,2.32]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"05_swap1k","values":{"total":[12.478,12.284,11.824,12.291,11.946,12.365,11.741,11.951,12.023,12.531,11.924,12.384,11.773,11.896,12.019],"script":[1.214,1.557,1.055,1.248,0.614,1.095,1.141,1.28,1.281,1.131,1.179,1.218,1.273,1.028,0.911],"paint":[10.282,9.423,8.965,9.669,9.471,9.17,9.252,9.92,9.255,9.843,9.416,9.277,9.232,8.858,10.408]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.307,15.355,15.484,15.32,15.765,15.289,15.107,15.314,15.08,14.769,14.988,14.922,15.366,15.316,14.901],"script":[0.501,0.498,0.273,0.484,0.402,0.446,0.394,0.312,0.216,0.429,0.311,0.185,0.505,0.392,0.18],"paint":[14.062,14.028,14.271,13.768,14.196,14.105,13.982,14.158,14.156,13.619,13.717,13.941,14.11,14.102,13.982]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"07_create10k","values":{"total":[467.841,461.739,463.979,473.287,473.671,462.663,469.872,474.534,470.153,478.708,462.109,471.585,468.023,471.882,475.059],"script":[121.293,121.944,122.043,127.113,128.402,120.627,128.481,126.16,127.232,126.893,121.834,126.283,127.113,125.704,129.039],"paint":[339.785,333.046,335.147,339.276,338.545,335.277,334.601,341.55,336.186,345.079,333.636,338.431,334.23,339.424,339.304]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.568,52.529,52.394,51.798,50.858,51.437,50.202,51.369,51.257,52.514,50.795,52.526,52.75,50.286,51.948],"script":[11.163,11.618,11.222,11.119,10.946,11.471,11.009,11.12,11.452,11.349,10.923,11.027,11.4,11.069,11.035],"paint":[39.468,39.964,40.215,39.766,39.002,39.036,38.29,39.345,38.788,40.263,38.969,40.572,40.462,38.238,40.015]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.429,14.567,13.677,13.497,13.792,13.282,13.397,13.939,13.813,14.019,12.909,13.945,13.336,13.557,13.327],"script":[12.544,12.121,11.814,11.564,11.921,11.378,11.749,11.149,11.924,11.927,11.473,11.915,11.996,11.689,11.798],"paint":[1.725,1.535,1.749,0.77,1.775,1.81,0.751,2.691,1.602,1.999,1.342,1.928,0.719,1.64,0.942]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.654205322265625]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9264116287231445]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.059597015380859]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0473566055297852]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.311805725097656]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[51.15625]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.123046875]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[94.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"01_run1k","values":{"total":[61.717,60.165,61.409,60.758,58.764,60.585,59.948,59.942,59.068,59.155,59.44,59.877,59.028,62.15,59.597],"script":[26.713,26.581,26.005,26.002,25.126,26.089,25.84,25.451,25.731,25.754,25.362,25.803,25.144,26.445,25.789],"paint":[34.81,33.393,35.214,34.569,33.47,34.311,33.923,34.309,33.153,33.212,33.898,33.853,33.702,35.524,33.599]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"02_replace1k","values":{"total":[35.235,34.703,35.074,34.693,35.329,34.842,35.178,35.328,35.188,34.897,36.06,34.727,34.542,35.675,35.754],"script":[21.212,20.368,20.718,20.313,20.998,20.282,20.464,21.124,20.705,20.633,21.547,20.666,20.564,21.043,21.544],"paint":[13.862,14.166,14.172,14.175,14.164,14.374,14.365,14.032,14.306,14.098,14.338,13.894,13.807,14.453,14.04]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[64.39,65.867,62.753,60.921,67.269,60.728,66.17,64.626,65.507,63.482,61.874,59.67,60.655,63.948,60.843],"script":[45.325,48.897,45.699,45.625,48.732,44.959,48.888,47.415,49.478,45.522,45.65,44.649,45.188,46.33,43.548],"paint":[18.61,16.528,16.086,14.486,16.769,15.365,16.681,16.24,15.177,16.338,15.174,14.696,15.316,16.276,14.844]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"04_select1k","values":{"total":[45.548,47.2,47.106,45.177,46.569,47.01,47.726,47.721,50.956,47.518,47.837,48.105,54.22,49.446,49.696,46.624,45.912,47.228,50.122,48.398,52.836,47.173,47.822,49.541,48.43],"script":[41.012,40.461,42.079,41.468,40.832,39.667,41.522,42.352,44.075,43.79,42.436,41.847,47.695,44.107,42.733,39.902,41.381,41.511,42.753,41.367,46.849,41.58,41.246,43.111,42.455],"paint":[2.885,5.323,3.896,2.006,4.414,5.535,3.679,3.432,5.367,2.815,4.291,4.423,4.696,4.426,5.101,5.193,2.192,3.592,5.464,4.533,4.537,3.655,4.631,4.559,4.897]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"05_swap1k","values":{"total":[57.69,56.759,52.405,51.895,55.068,51.724,52.247,53.135,54.791,51.428,49.849,50.304,50.89,54.847,50.84],"script":[42.955,43.832,40.615,41.987,43.687,40.34,39.133,41.419,43.731,39.473,39.266,38.482,40.267,41.112,39.804],"paint":[13.32,11.011,10.552,9.392,11.116,11.22,11.274,10.899,10.636,10.078,9.161,11.67,9.79,11.27,9.238]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[54.194,55.531,54.416,50.823,54.678,52.127,54.681,53.74,52.51,51.441,52.069,53.833,52.499,54.113,53.856],"script":[22.592,23.595,23.559,21.514,21.933,22.372,22.899,22.545,21.719,22.197,22.353,22.829,21.769,21.977,23.069],"paint":[30.899,31.776,30.236,29.13,32.554,29.589,31.127,30.8,29.791,29.082,28.674,30.481,30.302,31.872,30.526]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"07_create10k","values":{"total":[602.595,596.329,593.687,590.077,600.704,591.378,592.312,592.566,599.019,591.948,590.869,595.645,588.85,606.221,595.554],"script":[247.056,245.577,248.667,244.121,248.056,243.45,242.431,245.275,239.153,247.734,245.453,248.892,245.504,246.715,246.739],"paint":[353.368,348.647,342.868,343.81,350.425,345.783,347.728,345.179,357.689,342.05,343.246,344.638,341.158,357.332,346.699]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.768,75.589,75.082,75.11,74.999,75.449,76.229,75.52,75.925,75.029,76.321,75.801,77.335,76.44,76.372],"script":[35.021,34.872,34.55,34.985,34.821,34.458,35.76,35.48,35.371,35.372,35.424,35.513,36.055,35.765,35.21],"paint":[40.428,39.842,40.234,39.817,39.879,40.704,40.159,39.559,40.272,39.354,40.606,39.249,40.966,40.371,40.857]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.937,38.647,35.566,34.295,36.238,57.284,35.608,30.799,36.521,57.209,30.51,30.589,57.858,56.086,57.042],"script":[25.874,34.244,29.727,29.404,31.868,27.182,28.878,28.747,30.31,28.523,28.605,28.988,27.921,28.027,29.559],"paint":[1.344,2.559,2.404,2.873,3.231,2.689,2.407,1.394,2.512,3.256,0.429,1.509,2.99,2.635,2.339]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.748133659362793]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.610014915466309]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.825002670288086]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.599519729614258]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.493614196777344]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.755859375]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.7958984375]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[670.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"01_run1k","values":{"total":[40.66,40.224,40.313,39.799,41.189,40.713,40.907,40.848,42.361,40.423,40.016,41.576,40.323,40.34,39.728],"script":[7.085,6.849,6.849,6.78,6.843,6.851,6.807,6.806,7.738,6.92,6.794,6.945,6.814,6.841,6.733],"paint":[33.125,32.914,33.03,32.606,33.946,33.412,33.683,33.628,34.193,33.081,32.773,34.174,33.06,33.036,32.577]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"02_replace1k","values":{"total":[45.743,45.396,45.008,45.905,45.304,45.047,45.005,46.757,44.993,45.702,44.339,44.569,45.695,45.95,46.068],"script":[10.175,10.146,9.942,9.97,9.886,9.905,9.807,11.046,9.937,10.002,9.944,9.733,9.784,10.8,10.652],"paint":[35.107,34.81,34.624,35.474,34.972,34.691,34.774,35.283,34.584,35.28,33.959,34.351,35.467,34.699,34.95]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.844,16.685,17.389,16.034,15.975,16.769,16.122,17.541,15.988,16.468,16.898,16.6,18.259,16.188,17.224],"script":[1.537,0.702,1.277,0.982,1.664,1.776,1.429,1.298,0.986,1.086,1.874,1.104,1.015,0.667,1.252],"paint":[13.795,14.882,15.022,14.037,12.339,12.255,12.696,15.134,14.012,14.411,13.27,13.9,15.232,13.122,13.984]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"04_select1k","values":{"total":[6.034,2.896,4.028,3.844,3.305,2.649,2.837,3.736,2.935,3.281,3.029,3.459,3.402,4.024,2.558,3.255,3.197,3.403,3.622,3.014,3.748,3.122,3.28,3.442,2.985],"script":[1.309,1.002,1.697,0.934,0.915,0.955,0.634,0.909,1.022,0.987,0.656,1.113,0.936,1.3,0.849,0.905,1.131,0.576,0.839,0.876,1.321,0.857,0.87,0.681,0.811],"paint":[1.784,1.79,0.863,2.026,2.271,1.043,1.475,2.711,1.266,2.138,1.888,2.24,1.734,2.603,1.603,1.397,1.96,1.889,1.602,2.039,1.525,2.16,1.729,2.254,2.052]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"05_swap1k","values":{"total":[11.314,11.104,11.1,11.675,11.403,11.048,11.99,11.354,11.916,11.655,11.616,11.076,11.236,11.365,11.174],"script":[0.789,0.209,0.887,0.108,0.522,0.105,0.642,0.658,1.101,0.12,0.932,0.53,0.832,0.105,0.102],"paint":[8.965,9.823,8.666,10.015,9.896,9.147,9.978,9.232,9.85,10.062,9.405,8.643,8.276,9.648,9.556]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.717,16.047,15.81,16.249,16.176,15.59,15.735,16.407,15.594,15.982,15.966,15.641,15.675,15.795,16.424],"script":[0.673,0.653,0.655,0.888,0.825,0.662,0.642,0.923,0.777,0.642,0.656,0.663,0.638,0.588,0.665],"paint":[14.287,14.166,14.435,14.576,14.464,14.178,14.351,14.723,14.038,14.626,14.26,14.253,14.088,14.476,14.458]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"07_create10k","values":{"total":[641.306,627.21,626.85,632.05,621.852,632.597,632.07,627.021,626.265,629.359,631.28,627.033,630.643,626.836,621.605],"script":[275.245,270.8,271.531,271.414,269.147,273.537,274.235,268.822,271.953,271.939,273.015,270.734,274.512,270.01,267.84],"paint":[359.151,349.68,348.745,353.954,345.953,352.445,350.978,351.499,347.68,350.71,351.595,349.392,349.348,349.885,347.092]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.432,75.054,75.85,76.104,76.154,75.387,76.51,75.866,77.696,75.633,76.107,75.953,76.735,75.821,76.314],"script":[35.448,34.993,35.376,35.661,35.253,35.092,35.734,35.222,35.129,35.871,35.454,35.335,36.343,35.498,35.682],"paint":[39.083,39.169,39.576,39.512,39.948,39.379,39.877,39.742,41.632,38.86,39.755,39.694,39.496,39.439,39.719]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.188,18.679,17.816,18.338,18.605,19.006,20.254,19.485,18.044,18.803,18.645,18.834,19.239,18.152,18.852],"script":[18.05,16.734,15.899,15.984,16.229,17.375,18.095,17.618,15.618,16.904,16.891,17.377,17.084,16.383,16.349],"paint":[0.364,1.842,1.435,1.209,1.352,1.093,2.052,1.762,1.406,1.732,1.664,1.361,2.059,0.907,2.156]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.711318016052246]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.763786315917969]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.80611515045166]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.340601921081543]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.76583957672119]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[229.640625]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[65.7919921875]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[396.4]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"01_run1k","values":{"total":[57.047,56.498,54.828,56.363,56.101,55.289,55.559,56.362,55.519,56.26,56.012,56.18,56.052,57.109,56.106],"script":[20.91,21,18.977,20.309,19.931,19.696,20.163,20.627,20.438,20.989,20.643,20.68,20.734,21.007,20.941],"paint":[35.674,35.054,35.405,35.601,35.719,35.156,34.936,35.275,34.593,34.815,34.919,35.058,34.876,35.657,34.713]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"02_replace1k","values":{"total":[59.809,58.275,57.525,58.92,58.357,59.009,57.957,58.704,57.693,58.775,58.331,58.868,58.536,59.129,57.856],"script":[22.014,20.658,20.921,21.646,21.796,21.776,21.387,21.479,20.476,22.079,21.732,21.377,22.031,21.906,20.805],"paint":[37.317,37.163,36.136,36.82,36.106,36.79,36.101,36.782,36.756,36.252,36.147,37.061,36.068,36.79,36.586]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.803,20.985,20.939,22.69,20.587,20.503,20.041,20.877,20.479,20.617,20.567,21.718,20.255,21.903,22.126],"script":[2.753,2.675,2.148,2.603,2.783,2.331,2.488,2.721,2.803,2.485,2.262,2.286,2.382,2.46,3.162],"paint":[16.178,16.482,17.321,17.645,16.176,16.575,16.061,15.7,16.065,16.392,16.754,17.409,16.035,17.432,17.35]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"04_select1k","values":{"total":[6.431,6.79,6.361,7.648,6.266,6.372,7.493,6.684,5.942,6.21,6.958,6.838,6.019,6.874,6.491,5.986,6.098,6.285,5.925,7.376,6.617,6.504,7.437,5.987,6.944],"script":[3.635,4.52,3.594,4.83,3.997,3.639,4.346,3.408,3.327,3.641,3.957,3.674,3.552,3.982,3.237,3.243,3.155,3.715,3.375,3.993,3.791,4.464,4.561,3.248,4.202],"paint":[2.062,2.14,2.65,2.685,1.487,2.301,2.489,3.156,2.492,2.014,2.838,2.676,1.787,2.366,2.434,2.618,1.902,2.451,2.421,2.976,2.049,1.205,2.285,1.974,1.929]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"05_swap1k","values":{"total":[21.534,23.306,22.31,21.628,21.982,21.824,21.11,21.511,21.173,20.81,21.516,20.607,21.121,20.958,20.928],"script":[0.872,0.914,0.211,0.89,0.696,0.879,0.906,0.897,0.633,0.697,0.718,0.968,1.482,0.203,0.546],"paint":[18.683,19.749,20.01,19.28,19.247,19.51,18.469,18.738,19.088,18.678,19.55,18.26,17.783,19.43,18.676]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.762,16.765,16.541,16.607,16.992,17.183,17.559,16.743,16.271,17.064,16.781,16.655,16.549,16.68,16.58],"script":[0.162,0.221,0.442,0.12,0.115,0.308,0.369,0.131,0.155,0.111,0.12,0.384,0.447,0.327,0.442],"paint":[15.536,15.754,15.333,15.408,15.886,16.097,16.36,15.485,15.365,15.898,15.553,15.523,15.336,15.419,15.346]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"07_create10k","values":{"total":[581.786,591.965,580.581,586.434,588.927,584.878,576.931,586.809,588.227,570.888,584.89,584.896,589.025,580.514,595.971],"script":[208.187,212.025,208.932,214.148,214.054,212.084,208.248,213.45,213.32,203.855,212.289,212.302,212.671,211.029,211.858],"paint":[366.658,372.98,364.985,365.528,368.035,366.065,361.739,366.447,367.991,360.289,365.904,365.778,369.571,362.385,377.354]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.474,63.018,60.021,61.404,59.974,61.975,61.708,61.103,61.468,60.098,61.486,60.937,61.209,59.49,61.142],"script":[20.163,20.526,17.923,20.183,18.708,20.445,19.209,19.494,19.596,18.886,20.097,19.399,19.35,18.412,19.636],"paint":[42.368,41.543,41.205,40.3,40.363,40.579,41.557,40.724,40.946,40.309,40.475,40.615,40.925,40.14,40.588]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.775,20.827,19.296,18.742,19.818,19.949,20.561,20.059,18.834,20.613,19.58,20.191,18.971,20.687,19.869],"script":[18.573,18.954,16.678,16.526,17.821,17.769,18.371,18.1,16.441,18.34,17.847,17.781,17.19,19.2,18.364],"paint":[1.086,1.606,2.043,1.238,1.385,1.167,2.071,0.973,2.294,2.15,1.627,2.298,1.685,1.358,1.385]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5200681686401367]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.407238006591797]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.569584846496582]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2352485656738281]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.202895164489746]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[28.0068359375]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.85546875]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"01_run1k","values":{"total":[39.726,40.528,40.341,40.487,47.992,40.381,39.875,41.547,40.728,40.431,39.705,40.958,41.337,40.512,40.996],"script":[7.804,8.405,8.285,7.648,8.004,8.398,7.685,8.614,8.159,8.034,7.857,8.398,8.479,7.791,7.974],"paint":[31.756,31.969,31.862,32.662,33.456,31.804,32.054,32.755,32.393,32.127,31.673,32.372,32.712,32.545,32.855]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"02_replace1k","values":{"total":[22.989,25.978,24.342,24.473,24.487,22.754,24.326,24.514,24.09,24.316,24.209,24.24,22.845,24.719,25.773],"script":[9.113,10.486,10.004,9.822,9.86,9.044,9.958,10.142,9.425,10.073,9.651,9.984,9.147,9.758,10.051],"paint":[13.74,15.364,14.209,14.398,14.378,13.568,14.225,14.233,14.398,14.105,14.277,14.129,13.562,14.827,15.587]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[49.362,45.885,45.554,48.481,47.107,48.097,48.934,45.392,46.52,47.147,49.696,46.182,48.247,45.754,45.248],"script":[32.156,31.476,30.115,31.323,30.397,31.916,31.819,30.49,32.021,32.184,32.333,30.876,31.53,30.398,31.294],"paint":[16.519,14.283,13.646,15.17,16.47,13.889,15.855,14.78,14.373,14.825,16.058,15.191,15.972,14.733,13.213]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"04_select1k","values":{"total":[37.226,37.224,38.574,37.029,39.499,39.094,34.388,38.025,38.09,37.135,36.626,37.065,36.885,37.258,37.775,37.086,34.037,37.37,37.867,37.154,37.048,38.006,36.749,36.771,36.825],"script":[30.862,31.745,32.409,31.648,32.783,33.194,31.608,32.419,31.68,32.427,30.606,30.934,32.355,31.356,31.358,31.413,31.174,30.799,31.731,31.64,30.955,31.786,31.14,30.724,30.833],"paint":[4.502,3.902,4.519,3.164,3.968,4.543,2.289,3.055,4.254,3.705,2.834,4.529,3.699,3.076,4.868,3.252,2.694,3.113,2.911,4.092,3.716,3.581,4.054,4.31,3.585]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"05_swap1k","values":{"total":[42.366,41.858,40.914,43.655,43.649,41.582,43.851,43.329,42.712,44.349,41.665,39.821,43.936,43.481,43.45],"script":[31.171,30.415,30.922,31.467,31.081,31.905,30.702,31.54,30.466,31.642,30.63,29.546,32.621,31.946,31.463],"paint":[11.01,10.532,9.186,10.584,10.741,8.926,11.56,10.356,11.832,11.64,10.264,9.56,11.069,10.916,11.741]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[47.298,50.737,47.146,53.872,46.672,48.665,50.616,51.304,47.54,47.211,47.016,48.606,49.097,50.931,47.233],"script":[17.558,18.522,17.772,20.364,17.806,18.289,18.348,19.119,17.823,17.811,17.555,18.343,18.063,19.254,17.283],"paint":[28.689,30.964,28.645,32.598,28.458,29.374,31.068,31.275,28.943,28.658,28.478,29.444,29.871,30.556,29.074]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"07_create10k","values":{"total":[419.132,412.465,417.266,415.54,415.413,415.221,418.141,414,418.051,420.821,411.993,415.868,411.681,415.189,411.238],"script":[84.218,85.596,85.855,85.432,86.112,83.868,84.746,84.49,86.346,86.301,85.391,86.229,84.356,85.197,84.101],"paint":[332.804,324.745,329.251,327.911,327.006,329.208,331.139,327.201,329.259,332.287,324.391,327.388,325.22,327.81,325.029]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.479,53.568,54.485,52.154,53.68,54.308,53.212,53.232,54.627,53.891,54.009,53.957,54.255,54.931,53.927],"script":[15.667,16.195,16.164,15.549,15.099,16.611,15.715,15.913,15.976,16.367,16.395,15.665,15.249,16.003,16.181],"paint":[36.531,36.975,38.053,36.342,38.307,37.447,37.219,37.051,38.375,37.261,37.341,38.012,38.727,38.382,37.464]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.966,23.823,23.269,23.695,25.569,23.848,23.947,24.564,24.257,24.605,24.059,23.638,24.565,23.256,24.151],"script":[20.53,20.358,19.87,20.086,21.322,20.509,20.144,19.847,20.41,20.839,19.935,20.112,21.151,19.96,20.445],"paint":[3.051,3.242,2.06,3.389,3.341,2.24,3.575,3.68,2.486,2.998,3.072,2.381,3.181,3.072,2.931]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.443222999572754]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.948498725891113]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.050936698913574]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.918492317199707]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.368244171142578]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.853515625]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.638671875]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[150]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"01_run1k","values":{"total":[46.168,44.374,44.973,45.328,46.708,45.692,44.372,45.074,44.767,46.149,44.977,45.243,44.918,44.947,45.878],"script":[10.744,9.971,10.533,10.615,10.546,10.872,10.371,10.47,10.422,10.962,10.529,10.663,10.376,10.368,10.433],"paint":[34.905,33.98,33.948,34.222,35.678,34.353,33.567,34.142,33.859,34.73,33.984,34.095,34.082,34.071,34.99]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"02_replace1k","values":{"total":[19.404,20.018,20.027,19.003,19.195,20.237,19.22,19.659,19.976,19.756,19.7,19.021,18.863,18.931,19.294],"script":[4.445,4.582,4.527,4.336,4.478,4.429,4.382,4.555,4.633,4.447,4.496,4.319,4.191,4.28,4.308],"paint":[14.496,14.916,15.036,14.246,14.246,15.305,14.436,14.615,14.808,14.821,14.735,14.283,14.245,14.241,14.519]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.747,19.993,20.748,19.908,20.607,21.114,19.924,19.418,20.565,19.374,19.785,19.856,19.42,19.967,20.314],"script":[2.953,4.067,3.969,3.724,3.826,3.706,3.731,3.383,3.624,3.703,2.955,3.364,2.887,3.337,3.747],"paint":[16.888,14.852,14.214,14.713,15.699,15.595,14.812,14.684,15.136,14.342,14.152,14.055,15.157,15.321,14.942]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"04_select1k","values":{"total":[4.641,4.05,4.346,4.532,3.995,4.674,3.991,4.579,3.696,3.293,3.92,4.855,3.834,4.079,3.475,4.443,4.218,4.697,4.884,4.087,5.29,3.851,4.248,4.096,4.203],"script":[1.618,1.251,1.223,0.934,0.947,1.714,0.639,1.735,1.098,0.934,1.11,1.23,1.011,0.987,1.195,1.336,0.983,1.19,0.895,1.222,1.497,0.61,1.009,1.127,1.012],"paint":[2.903,2.269,2.965,2.925,2.44,2.85,2.801,2.722,1.802,1.463,1.96,2.96,2.703,2.968,2.173,2.225,2.561,3.397,2.779,2.758,2.676,3.122,3.125,2.665,1.818]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"05_swap1k","values":{"total":[13.239,14.765,13.026,13.412,13.499,13.177,12.024,12.606,12.489,13.735,12.01,12.08,12.843,11.972,12.722],"script":[1.773,1.651,1.044,0.972,1.734,1.645,1.137,1.092,1.224,1.44,0.675,1.165,1.039,1.048,1.243],"paint":[10.703,11.06,9.547,11.145,9.751,10.843,9.284,9.497,9.963,10.668,9.968,9.941,10.438,9.157,9.344]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[39.261,39.894,38.611,38.832,39.021,39.365,39.234,39.761,39.842,39.329,39.81,39.275,42.003,39.124,39.27],"script":[8.507,8.981,7.969,8.188,7.97,8.446,8.536,9.075,8.755,8.31,8.144,8.654,8.586,8.427,8.509],"paint":[29.908,29.742,29.854,29.522,30.177,29.844,29.528,29.85,29.96,30.035,30.399,29.483,32.29,29.72,29.944]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"07_create10k","values":{"total":[581.739,573.588,569.517,585.152,580.4,569.151,587.029,570.88,581.387,562.901,578.396,571.876,568.063,572.38,590.325],"script":[210.002,205.684,202.348,207.22,205.925,203.289,209.776,203.651,207.423,198.306,208.515,205.119,200.002,202.286,206.061],"paint":[364.722,361.067,360.218,370.853,367.488,358.924,370.01,360.378,366.996,357.75,363.045,359.794,360.471,363.215,377.412]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[69.992,68.49,68.892,69.331,69.602,69.595,70.532,71.009,68.813,67.677,70.512,69.168,69.265,70.791,71.009],"script":[27.881,26.69,26.754,26.673,27.125,27.142,26.87,27.787,26.485,26.155,28.394,27.165,27.051,27.962,27.541],"paint":[41.166,40.852,41.243,41.705,41.477,41.514,42.744,42.187,41.406,40.598,41.162,41.061,41.266,41.889,42.594]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.431,22.848,24.814,20.657,22.037,20.869,22.92,21.087,22.679,21.98,25.225,23.046,22.318,23.906,23.335],"script":[23.559,21.196,23.056,18.945,19.868,19.394,20.335,19.261,20.26,19.756,23.221,21.282,20.297,21.084,21.321],"paint":[2.747,1.555,0.866,1.623,2.077,1.384,2.456,1.726,2.324,2.115,1.896,1.663,1.424,2.273,1.912]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8830146789550781]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.188199043273926]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.265582084655762]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.54459285736084]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.692381858825684]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[57.80859375]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.017578125]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[100.3]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"01_run1k","values":{"total":[56.795,60.882,59.545,60.982,60.228,59.656,59.54,58.195,59.367,59.779,56.882,58.565,59.027,57.039,59.614],"script":[23.447,25.877,26.059,27.128,26.529,26.289,25.885,25.137,26.117,25.851,24.66,24.797,25.73,23.913,26.025],"paint":[32.887,34.538,33.049,33.413,33.257,32.907,33.196,32.63,32.809,33.462,31.762,33.331,32.857,32.683,33.167]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"02_replace1k","values":{"total":[17.499,17.377,17.186,17.569,17.228,17.131,17.592,17.688,18.54,17.048,17.191,17.541,19.06,17.345,17.36],"script":[3.018,3.018,2.701,2.835,3.025,3.077,2.936,3.107,2.96,3.007,2.872,2.89,3.026,3.002,2.887],"paint":[14.058,13.932,14.032,14.327,13.815,13.667,14.284,14.074,15.142,13.631,13.899,14.281,15.616,13.926,14.106]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.799,18.753,19.743,20.404,18.839,19.538,19.506,18.551,19.01,18.978,19.655,18.67,19.076,19.022,19.246],"script":[3.752,3.72,4.036,3.795,3.671,3.598,3.686,3.81,3.646,3.66,3.105,3.553,3.428,3.826,3.478],"paint":[14.476,13.283,13.505,15.358,14.203,13.385,13.99,13.393,13.942,13.799,14.868,14.037,13.644,14.517,13.45]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"04_select1k","values":{"total":[9.151,9.325,8.582,8.333,8.578,7.665,8.338,7.168,7.688,8.621,9.328,8.034,7.286,7.219,8.913,7.73,7.239,7.439,8.742,7.766,7.573,8.006,8.714,8.589,8.42],"script":[5.916,6.913,6.208,5.217,5.79,5.166,5.351,5.125,4.668,6.349,6.406,5.209,4.775,4.958,6.193,4.971,4.716,5.197,6.215,4.705,4.887,5.422,5.763,5.75,5.728],"paint":[2.522,1.999,1.912,1.988,1.913,1.589,1.874,1.184,2.758,1.731,2.05,2.698,1.749,1.704,2.574,2.279,2.328,1.883,1.554,2.034,2.558,1.619,2.811,1.849,1.731]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"05_swap1k","values":{"total":[13.087,12.752,13.075,12.576,12.939,12.499,13.052,13.025,12.896,13.19,12.569,12.77,12.347,12.327,13.154],"script":[1.811,1.44,2.01,1.93,1.604,1.969,1.555,1.101,2.176,2.123,1.671,1.381,1.876,2.014,1.404],"paint":[8.743,9.916,9.555,9.188,10.314,9.048,10.484,9.842,9.143,9.992,9.573,10.077,9.087,9.054,9.928]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.806,36.649,35.431,35.428,34.997,35.801,35.471,35.715,35.617,35.533,36.35,35.582,35.652,35.573,35.349],"script":[5.537,5.864,5.25,5.528,5.603,5.598,5.6,5.478,5.642,5.597,5.597,5.495,5.421,5.92,5.518],"paint":[29.126,29.827,28.831,29.169,28.521,29.165,28.963,29.482,28.609,28.859,29.854,28.735,29.429,28.537,29.076]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"07_create10k","values":{"total":[574.603,573.359,571.48,570.379,564.348,575.885,576.332,570.429,576.372,576.235,571.601,569.046,567.602,578.049,572.119],"script":[216.894,216.699,217.687,218.789,213.366,217.886,217.711,218.273,218.718,218.357,217.867,217.335,217.363,224.083,219.704],"paint":[350.614,349.812,346.781,344.844,344.12,351.19,351.869,345.431,351.035,351.091,347.037,345.093,343.621,346.953,345.264]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.298,61.29,60.458,61.474,61.565,61.549,60.581,61.717,62.346,60.737,61.312,63.599,61.732,64.072,62.002],"script":[21.344,22.312,21.758,22.328,21.314,22.511,21.218,22.11,22.609,21.306,21.824,22.923,21.701,22.342,22.297],"paint":[39.054,38.08,37.877,38.265,39.363,38.18,38.45,38.728,38.833,38.527,38.593,39.789,39.127,40.806,38.833]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.444,28.691,29.044,27.44,30.61,28.24,27.75,26.49,27.505,28.642,28.228,30.078,29.258,27.94,28.386],"script":[26.066,26.808,26.623,25.094,28.508,25.958,25.657,24.663,25.059,26.252,26.279,27.266,27.339,26.376,26.009],"paint":[2.258,1.768,2.31,2.23,0.933,2.171,1.97,1.716,1.533,2.274,1.842,2.677,1.811,1.454,1.617]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1113262176513672]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.716071128845215]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.882790565490723]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.475168228149414]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.92078399658203]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[224.068359375]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.767578125]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[320.9]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"01_run1k","values":{"total":[45.789,46.693,46.271,47.117,46.641,46.602,46.522,47.126,46.992,47.218,47.424,46.87,45.884,47.186,48.014],"script":[12.806,13.011,12.539,12.616,12.899,12.976,12.806,13.663,13.419,13.39,13.206,12.77,12.683,13.426,12.945],"paint":[32.549,33.255,33.307,34.082,33.333,33.212,33.29,33.034,33.144,33.387,33.797,33.675,32.787,33.352,34.658]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"02_replace1k","values":{"total":[19.402,19.256,20.169,19.201,18.656,19.07,19.251,19.007,19.278,19.325,19.649,18.899,19.552,19.193,19.096],"script":[4.77,4.87,4.553,4.72,4.445,4.833,4.845,4.712,4.961,4.644,4.891,4.702,4.581,4.847,4.71],"paint":[14.161,13.975,15.191,14.054,13.79,13.792,13.994,13.867,13.906,14.274,14.284,13.808,14.508,13.939,13.935]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.32,21.114,20.387,21.627,21.778,20.923,22.205,21.418,21.076,22.696,21.733,21.494,22.078,21.959,21.613],"script":[6.097,4.578,4.853,5.863,5.849,5.325,5.68,6.014,5.681,5.284,5.841,5.284,5.94,5.505,4.841],"paint":[15.395,15.443,14.183,14.233,14.35,14.663,14.581,13.597,14.042,16.012,14.015,14.426,14.84,15.718,15.215]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"04_select1k","values":{"total":[6.103,5.846,6.348,5.715,5.492,5.101,6.065,5.056,6.57,4.95,6.472,5.298,5.854,5.792,6.146,5.902,5.896,5.891,6.607,6.094,5.872,6.005,5.663,6.34,5.75],"script":[3.247,2.334,2.305,2.346,3.031,2.639,3.188,2.542,3.605,2.553,3.208,2.518,3.346,2.554,3.387,2.536,3.161,2.854,3.266,2.595,3.182,2.834,3.329,2.836,2.948],"paint":[2.005,2.891,3.903,1.831,2.352,2.204,2.725,1.872,2.099,2.283,2.707,2.054,1.57,2.045,2.63,3.21,2.587,2.629,2.665,2.952,1.979,3.043,1.245,2.347,2.654]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"05_swap1k","values":{"total":[13.55,14.195,13.794,13.128,15.028,14.269,14.632,14.643,14.474,14.836,14.495,13.922,14.491,13.835,14.431],"script":[2.175,3.069,2.496,2.079,3.639,2.924,3.538,2.989,3.16,3.165,3.178,2.895,2.792,2.558,3.203],"paint":[10.248,10.397,10.057,9.968,10.172,10.036,10.023,10.339,9.466,9.884,10.317,9.903,9.951,10.271,9.163]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.877,39.293,38.773,38.568,38.568,38.923,39.478,42.241,38.577,38.903,39.006,41.587,38.572,40.222,41.494],"script":[8.76,8.665,8.592,8.558,8.146,8.47,8.591,8.944,8.374,8.29,8.685,8.617,8.225,9.672,8.58],"paint":[29.316,29.432,29.071,29.348,29.689,29.698,29.662,32.19,29.481,29.889,29.204,32.115,29.606,29.734,31.665]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"07_create10k","values":{"total":[606.847,606.577,607.865,602.148,606.127,603.337,582.096,605.087,602.065,610.372,607.216,599.182,600.756,607.103,602.861],"script":[253.606,253.05,253.419,253.687,254.556,251.811,246.504,252.409,250.634,255.593,254.394,250.049,248.671,254.453,252.488],"paint":[346.097,346.687,347.576,341.688,344.84,344.744,328.871,345.613,344.639,344.668,346.069,342.376,345.343,345.861,343.572]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.541,53.621,51.411,52.679,50.742,51.866,52.597,50.457,51.433,50.277,52.246,52.687,50.717,52.229,51.566],"script":[12.576,13.466,12.541,12.687,12.84,12.774,13.127,12.425,13.084,12.86,13.21,13.367,13.052,13.125,12.874],"paint":[37.063,39.183,37.922,38.887,37.006,38.098,38.555,37.124,37.423,36.491,38.13,38.283,36.746,38.172,37.786]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.19,15.239,15.195,13.728,15.09,14.999,15.814,15.172,14.97,14.621,15.899,15.73,15.808,14.985,15.316],"script":[13.178,13.067,13.616,11.913,13.408,12.845,13.591,12.8,12.783,12.883,14.402,13.772,13.973,13.212,13.592],"paint":[1.467,1.222,0.917,1.719,0.78,1.168,2.124,2.288,0.996,1.641,1.4,1.866,1.027,1.298,1.624]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9869413375854492]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.39421272277832]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.914580345153809]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.830296516418457]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.720491409301758]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[143.240234375]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1767578125]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[224.4]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"01_run1k","values":{"total":[42.915,43.325,45.094,45.209,43.877,42.762,44.064,44.467,44.007,43.179,43.811,42.914,43.546,42.795,43.015],"script":[9.637,9.59,9.627,10.755,9.967,9.608,9.806,9.786,9.508,9.531,9.784,9.622,9.608,10.231,9.694],"paint":[32.837,33.316,35.044,34.026,33.482,32.72,33.822,34.242,34.009,33.197,33.605,32.878,33.483,32.095,32.852]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.061,16.06,16.648,16.844,15.793,15.662,15.656,15.704,16.644,16.429,16.138,16.021,16.633,16.303,17.547],"script":[1.546,1.492,1.605,1.392,1.398,1.389,1.36,1.414,1.628,1.473,1.498,1.562,1.518,1.488,1.48],"paint":[14.099,14.21,14.571,14.998,13.983,13.845,13.888,13.885,14.567,14.586,14.284,14.096,14.751,14.454,15.641]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.831,17.219,17.103,17.282,18.237,18.168,17.586,18.021,18.877,18.364,18.483,18.136,17.043,18.513,18.437],"script":[1.913,1.818,1.524,1.029,2.21,1.984,1.409,2.366,1.622,2.018,1.785,1.833,1.588,2.098,2.222],"paint":[14.13,13.883,13.404,15.119,14.005,15.168,15.116,14.276,15.228,14.832,15.199,14.684,13.207,14.351,15.229]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.948,2.907,3.446,3.514,3.624,3.327,3.427,3.709,5.776,3.437,3.381,3.104,3.577,4.951,3.053,2.989,2.775,3.585,3.142,3.972,3.996,3.279,2.869,3.673,3.714],"script":[1.305,0.225,0.677,0.891,1.458,0.479,0.922,0.882,0.879,1.251,0.898,0.976,1.755,1.645,0.857,0.922,0.92,1.533,1.203,0.835,1.429,0.222,1.042,1.491,1.703],"paint":[2.531,2.196,2.263,2.527,1.535,1.734,2.396,2.518,2.63,1.321,2.374,1.73,1.307,1.653,0.862,1.486,1.736,1.566,1.125,3.031,1.723,2.519,1.714,2.076,1.23]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"05_swap1k","values":{"total":[12.239,12.164,12.682,12.558,12.376,12.626,12.213,12.405,12.279,12.645,13.107,11.836,12.178,13.164,12.493],"script":[0.663,1,1.328,1.37,0.967,1.386,1.699,0.639,1.537,1.205,1.386,0.944,0.94,0.29,1.114],"paint":[10.298,9.737,9.824,9.576,9.773,9.74,8.87,10.238,9.342,9.702,10.732,9.958,9.976,10.695,9.991]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.438,35.758,34.691,33.727,34.762,33.134,33.585,33.819,33.597,35.065,33.634,33.423,33.05,33.685,35.543],"script":[2.797,3.152,2.953,3.054,2.914,2.616,3.044,2.613,3.004,3.067,3.064,2.84,2.948,2.836,3.399],"paint":[29.617,31.748,30.577,29.522,30.77,29.819,29.767,30.258,29.874,30.917,29.777,29.684,29.366,29.732,31.332]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"07_create10k","values":{"total":[442.648,444.715,445.112,442.11,444.499,447.417,442.895,445.342,443.22,442.556,445.683,445.968,443.621,446.272,443.688],"script":[103.729,100.756,102.358,101.608,101.38,104.743,102.351,103.397,100.76,102.557,101.573,103.816,101.965,100.794,101.064],"paint":[332.227,337.394,336.24,333.801,336.382,335.994,333.942,335.26,335.835,333.334,337.44,335.452,334.952,338.805,335.947]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.983,50.025,49.341,51.131,48.624,49.016,46.699,49.807,49.67,50.278,49.376,49.252,48.927,50.283,49.613],"script":[10.501,11.063,10.85,11.044,10.201,10.372,8.578,10.28,10.984,11.247,10.179,10.643,10.503,10.973,10.297],"paint":[38.58,38.04,37.616,39.149,37.49,37.695,37.217,38.515,37.797,38.097,38.26,37.656,37.471,38.4,38.361]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.096,14.501,14.681,14.431,14.137,13.66,15.462,13.665,14.054,13.785,14.526,14.987,14.282,14.396,14.085],"script":[11.719,12.341,12.661,12.046,11.855,11.914,13.467,11.816,12.292,12.334,12.079,12.791,12.531,12.899,12.253],"paint":[1.98,1.601,1.919,1.887,2.188,1.645,1.295,1.008,0.939,1.354,2.168,2.081,0.867,0.908,1.736]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4919414520263672]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.445683479309082]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.590097427368164]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4091501235961914]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.20994281768799]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4873046875]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2451171875]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.4]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"01_run1k","values":{"total":[120.522,125.195,119.787,126.959,127.847,120.883,121.636,125.514,119.989,121.095,121.38,121.9,123.604,119.277,124.151],"script":[85.394,88.451,84.14,91.633,92.382,85.012,86.394,88.407,83.795,85.64,86,86.484,88.263,84.072,88.151],"paint":[34.922,36.529,35.445,35.115,35.253,35.654,35.026,36.889,35.971,35.248,35.141,35.192,35.118,34.99,35.788]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[136.111,132.144,132.715,132.849,133.991,130.75,129.406,131.536,129.775,129.895,133.1,132.665,131.328,130.133,130.283],"script":[104.67,100.637,101.361,101.466,102.497,98.904,98.192,100.321,98.339,98.36,101.533,101.495,100.105,98.653,98.939],"paint":[31.23,31.296,31.126,31.175,31.277,31.612,31.001,31.004,31.21,31.301,31.353,30.949,30.991,31.26,31.131]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[79.689,75.698,78.988,80.571,79.241,78.142,78.736,79.134,75.526,77.03,74.742,77.088,76.485,79.783,79.147],"script":[44.725,42.718,43.983,46.535,47.236,42.572,45.019,46.958,44.029,45.183,42.954,43.355,44.431,45.534,43.099],"paint":[33.14,30.257,33.617,33.401,31.824,35.036,33.092,31.737,31.085,31.033,31.023,31.631,31.086,32.493,32.038]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"04_select1k","values":{"total":[39.177,39.609,44.868,43.824,41.938,42.109,41.549,37.301,44.783,43.998,41.421,45.737,44.436,41.357,39.749,47.199,39.589,42.9,46.353,40.491,41.809,40.988,45.706,44.899,43.545],"script":[8.34,7.427,7.739,7.773,6.314,6.51,6.412,7.197,7.112,6.409,7.145,6.165,7.271,6.121,5.703,7.514,7.355,7.945,7.186,6.127,6.057,5.918,6.294,7.645,7.676],"paint":[25.124,24.349,24.902,24.997,24.769,24.042,23.636,23.345,26.188,25.541,24.312,26.142,25.868,25.694,26.688,25.584,23.217,24.265,25.081,24.951,25.162,24.389,25.651,24.881,24.409]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[24.319,57.761,25.194,24.733,56.957,25.402,25.194,24.809,57.259,24.68,57.145,24.568,56.039,25.629,25.754],"script":[6.522,7.331,6.381,6.686,8.119,6.663,6.257,6.838,7.314,6.32,7.99,6.622,8.699,6.174,6.825],"paint":[16.172,21.323,17.793,17.91,19.364,17.828,17.339,17.572,19.679,18.225,20.009,17.814,19.4,18.691,18.797]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.499,20.369,24.243,23.155,24.893,24.827,25.501,26.149,23.656,24.376,27.247,20.681,22.514,29.698,24.639],"script":[2.533,2.485,2.274,2.637,2.309,2.811,2.35,3.101,3.053,2.502,2.572,2.206,2.359,2.685,2.445],"paint":[16.475,15.946,16.169,15.665,15.833,16.66,15.367,16.216,15.986,15.059,16.917,15.403,15.643,15.523,15.683]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"07_create10k","values":{"total":[1022.267,1024.341,1018.437,1033.393,994.978,1014.298,1020.556,1040.878,1031.098,1022.003,990.989,996.791,1021.622,1013.051,1021.519],"script":[644.128,641.379,639.991,652.131,629.969,636.955,639.817,662.129,653.251,639.315,626.341,635.187,643.734,632.065,639.359],"paint":[374.883,380.092,375.567,378.504,362.326,374.527,375.492,376.044,375.144,379.527,361.885,358.862,375.221,375.998,377.38]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[114.612,115.788,117.858,116.23,120.506,113.881,115.903,114.03,118.38,114.065,114.135,116.819,119.472,116.735,117.675],"script":[74.407,75.918,76.359,75.944,80.27,74.205,75.933,74.543,75.946,74.462,74.582,76.238,79.124,77.076,77.346],"paint":[39.88,39.55,41.167,39.956,39.917,39.35,39.641,39.17,42.113,39.275,39.236,40.239,40.021,39.306,40.014]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[82.541,82.811,83.737,80.477,81.928,81.349,84.048,85.84,81.285,84.436,80.199,80.5,83.144,83.166,82.476],"script":[79.593,81.37,80.122,78.744,79.094,77.59,81.404,80.664,76.722,79.27,77.691,78.694,80.902,78.817,79.962],"paint":[2.818,0.833,3.347,1.617,2.696,3.497,2.286,3.717,3.786,4.151,1.088,1.571,2.12,2.564,1.522]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.079695701599121]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[21.804302215576172]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[25.147835731506348]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[41.19637870788574]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[128.50971794128418]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[2739.7021484375]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[264.0654296875]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[3495.6]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"01_run1k","values":{"total":[40.356,39.871,39.463,38.526,39.417,38.795,39.131,39.919,39.755,40.304,38.676,38.191,38.874,37.334,39.996],"script":[4.961,4.932,4.724,4.666,4.585,4.662,4.935,4.721,4.949,4.943,4.732,4.904,4.434,4.683,4.879],"paint":[34.971,34.503,34.335,33.431,34.391,33.718,33.764,34.784,34.398,34.944,33.528,32.893,34.01,32.235,34.677]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"02_replace1k","values":{"total":[17.803,16.648,16.756,18.12,17.355,16.952,16.843,17.269,17.129,17.371,18.217,17.352,17.056,17.182,17.341],"script":[2.16,2.205,2.226,2.732,2.25,2.35,2.406,2.441,2.459,2.409,2.403,2.461,2.422,2.473,2.434],"paint":[15.155,13.994,14.065,14.889,14.582,14.161,13.984,14.436,14.219,14.57,15.358,14.494,14.251,14.266,14.507]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.892,20.212,20.148,19.875,20.559,19.155,20.014,22.001,19.476,20.668,20.141,19.678,19.357,21.669,19.852],"script":[3.609,3.814,3.912,4.205,3.974,3.794,4.008,3.964,3.223,3.31,4.195,3.744,3.681,4.537,3.973],"paint":[14.228,13.517,14.633,14.25,15.431,13.732,14.251,15.623,14.861,15.836,14.264,14.637,14.4,14.737,14.534]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"04_select1k","values":{"total":[6.214,6.113,6.182,5.92,6.085,6.121,5.608,5.478,5.891,8.363,5.823,6.41,6.635,5.694,5.829,6.126,6.713,5.497,6.429,6.187,6.02,6.29,6.079,5.414,6.652],"script":[3.377,3.363,3.644,3.264,3.393,3.932,2.919,3.279,2.853,4.024,3.398,3.808,4,3.364,3.093,3.099,3.366,3.1,3.617,3.381,3.442,3.394,3.563,3.155,3.605],"paint":[2.717,1.888,2.408,2.208,2.277,2.073,1.878,1.716,2.536,3.338,2.22,2.457,2.488,1.403,1.687,2.901,3.225,2.277,2.658,2.668,1.451,2.758,2.378,1.465,2.902]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"05_swap1k","values":{"total":[17.026,14.779,16.55,16.18,17.773,16.203,16.676,17.127,16.979,16.937,16.651,16.824,14.889,15.088,16.07],"script":[5.852,3.028,5.01,4.805,5.118,5.085,4.651,5.18,4.77,5.497,5.107,5.392,3.588,3.141,4.896],"paint":[9.25,9.801,9.303,9.828,10.737,9.92,11.329,10.501,10.758,8.952,9.217,9.955,10.265,10.667,9.581]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[36.825,35.753,36.131,36.378,36.357,35.054,36.735,39.554,36.727,36.349,36.183,35.97,36.087,36.187,35.504],"script":[5.955,4.799,4.85,4.946,5.105,4.892,5.041,5.55,5.909,5.02,5.374,4.926,4.732,5.061,4.843],"paint":[29.782,29.884,30.311,30.675,30.468,29.031,30.524,33.144,30.002,30.571,29.483,30.287,30.238,29.982,29.586]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"07_create10k","values":{"total":[417.519,422.563,414.638,423.79,417.32,420.599,420.813,419.77,416.228,422.921,417.16,417.638,417.751,417.027,418.464],"script":[59.563,62.157,59.102,61.811,61.707,62.875,60.622,60.834,60.737,61.445,60.388,59.299,61.178,57.329,59.016],"paint":[350.348,352.759,348.106,354.355,347.991,349.921,352.72,351.38,347.974,354.076,349.24,350.925,348.986,352.356,352.105]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.42,45.426,47.073,46.43,44.837,45.296,45.254,45.726,45.467,45.43,46.263,45.022,46.963,45.859,45.942],"script":[5.934,5.508,5.831,6.22,5.957,5.991,5.62,6.23,5.679,5.868,5.425,5.831,6.014,5.811,5.855],"paint":[39.507,39.042,40.338,39.257,38.006,38.401,38.831,38.664,38.865,38.604,39.988,38.264,40.052,39.09,39.16]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.165,12.823,12.764,13.13,13.007,13.736,13.767,13.551,12.669,12.75,12.768,12.694,12.876,12.467,13.168],"script":[11.561,11.03,10.807,11.27,11.13,11.366,11.601,11.603,11.309,11.054,11.453,10.771,10.453,10.851,11.72],"paint":[0.366,1.13,1.863,1.773,1.425,1.269,2.071,1.419,0.708,1.585,1.223,1.838,2.329,1.19,1.343]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6938457489013672]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.06345272064209]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9527387619018555]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9288501739501953]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.566624641418457]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32.2421875]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.921875]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.7]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[45.787,44.963,45.747,47.019,46.04,46.426,47.122,46.284,46.004,46.952,46.352,45.696,46.554,45.568,44.947],"script":[12.099,11.641,12.112,12.205,11.866,12.77,12.691,12.23,12.438,12.606,12.492,12.632,12.867,11.829,12.833],"paint":[33.26,32.905,33.186,34.372,33.72,33.237,33.998,33.64,33.137,33.92,33.435,32.642,33.271,33.285,31.69]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.709,16.531,16.496,16.775,16.846,18.243,16.766,18.369,17.22,18.042,18.127,16.765,17.975,17.909,17.355],"script":[2.266,2.267,2.356,2.345,2.374,2.463,2.344,2.472,2.361,2.43,2.389,2.325,2.45,2.428,2.422],"paint":[13.991,13.857,13.723,14.007,14.025,15.333,14.005,15.472,14.49,15.185,15.306,13.999,15.122,15.036,14.502]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.921,22.19,22.361,21.052,22.096,21.336,20.963,20.608,20.586,22.302,20.712,21.889,21.709,21.519,21.911],"script":[5.3,5.838,6.106,5.39,5.687,6.308,5.317,5.429,5.279,6.176,5.277,5.534,5.83,6.183,6.109],"paint":[14.572,15.021,15.595,14.596,14.94,14.051,13.615,13.654,13.413,14.608,14.185,14.039,13.573,13.202,14.327]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[9.228,6.889,8.085,7.781,8.791,7.814,7.259,8.649,7.978,7.739,7.939,8.133,8.188,8.385,7.603,7.848,8.454,7.334,8.355,7.897,7.71,8.104,8.603,7.726,8.19],"script":[6.058,4.742,4.958,5.138,6.099,5.87,4.957,5.375,5.247,5.521,5.329,5.649,4.952,5.724,5.12,5.416,5.015,5.504,5.795,4.931,4.905,5.514,5.418,4.975,5.713],"paint":[2.38,1.601,2.853,2.498,2.523,1.468,2.186,2.663,2.578,1.433,1.669,2.354,2.948,1.64,1.945,2.282,2.881,1.568,0.952,1.945,2.047,2.454,1.843,1.98,1.915]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[16.85,16.769,16.019,16.321,16.4,16.923,17.327,16.431,17.061,16.574,16.339,17.096,16.502,16.366,16.622],"script":[5.6,5.672,5.276,5.454,5.113,5.302,5.979,5.659,5.8,5.267,5.416,5.482,4.967,5.279,5.709],"paint":[9.538,9.968,9.512,8.682,9.697,9.283,9.488,9.223,10.267,10.239,9.589,9.943,10.086,8.864,9.924]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[34.724,33.783,34.271,33.781,33.253,34.935,33.223,34.544,33.407,33.288,33.397,34.045,33.511,33.832,33.926],"script":[4.174,4.21,4.168,4.143,3.699,4.105,3.58,4.309,3.757,3.86,3.801,3.948,3.735,3.825,3.808],"paint":[29.538,28.5,29.322,28.83,28.777,30.02,28.809,29.51,28.655,28.66,28.869,29.13,29.025,29.276,29.078]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[483.971,477.114,479.621,479.915,488.237,478.459,483.42,480.317,482.97,484.148,488.677,478.606,483.432,487.89,478.022],"script":[134.018,131.513,132.728,133.801,133.691,129.982,134.224,133.706,133.953,133.618,135.546,132.02,134.888,137.001,131.901],"paint":[342.222,338.777,340.178,339.141,347.689,341.745,342.402,339.869,342.1,343.799,346.364,339.809,341.644,343.814,339.344]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.152,55.451,55.277,57.602,55.451,54.706,53.606,54.554,56.692,54.356,50.94,51.538,52.124,56.078,51.964],"script":[14.042,13.389,13.805,15.406,14.212,13.035,12.821,13.089,13.1,13.826,12.229,12.439,13.1,12.994,12.446],"paint":[40.107,41.192,40.493,41.282,40.286,40.804,39.823,40.518,42.657,39.531,37.779,38.169,38.18,42.109,38.288]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.808,25.109,24.042,24.986,23.982,22.828,24.341,26.709,21.507,21.381,23.82,23.289,22.822,24.239,23.291],"script":[20.418,22.673,22.277,23.159,21.612,21.23,22.409,24.367,19.483,19.695,21.896,21.074,20.642,22.023,21.389],"paint":[2.274,1.916,1.669,1.002,2.259,0.688,1.82,2.206,1.891,1.585,0.735,2.11,1.217,2.099,1.769]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5330419540405273]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.581083297729492]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6073036193847656]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9135637283325195]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.22905445098877]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.9033203125]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.41796875]}},{"framework":"riot-v7.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.8]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"01_run1k","values":{"total":[40.241,39.559,39.992,39.578,39.77,40.11,39.602,40.252,40.657,43.194,41.35,40.282,39.405,39.078,40.014],"script":[7.163,6.761,6.677,6.641,6.731,6.548,6.573,7.248,7.355,6.863,7.147,7.076,6.74,6.65,7.224],"paint":[32.659,32.396,32.914,32.511,32.62,33.172,32.617,32.608,32.897,35.86,33.777,32.802,32.269,32.029,32.373]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"02_replace1k","values":{"total":[17.158,17.2,16.623,17.869,18.014,18.102,18.551,17.553,17.913,17.927,17.226,18.699,18.03,18.261,17.244],"script":[2.635,2.641,2.34,2.433,2.397,2.53,2.711,3,2.701,2.451,2.85,2.579,2.475,2.534,2.418],"paint":[14.105,14.117,13.879,15.018,15.208,15.143,15.44,14.107,14.777,15.047,13.938,15.702,15.154,15.333,14.434]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.163,19.161,18.376,17.765,18.669,17.866,17.641,18.085,17.775,17.318,17.746,17.668,19.002,17.841,16.701],"script":[2.876,2.885,2.791,2.276,2.462,1.944,2.379,2.771,1.91,2.597,2.793,2.448,2.541,2.351,1.732],"paint":[14.305,14.428,13.832,12.955,14.665,14.791,13.067,13.971,14.767,13.737,13.42,13.903,15.032,13.537,13.159]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"04_select1k","values":{"total":[5.004,3.613,4.451,3.567,3.779,3.898,2.845,3.709,6.869,4.016,3.256,5.38,3.3,5.229,3.709,3.427,3.348,3.148,2.774,3.906,3.637,4.932,3.681,3.723,3.083],"script":[1.292,0.943,1.217,0.624,1.574,1.977,1.333,1.213,1.28,1.772,1.19,1.231,1.29,0.942,1.235,1.348,1.156,1.26,0.815,1.56,0.973,1.545,1.484,1.428,1.254],"paint":[1.829,1.168,3.121,2.837,2.101,1.813,1.066,0.54,2.554,1.353,1.248,2.963,1.219,1.53,2.368,1.981,1.614,1.113,0.998,1.492,2.561,1.294,1.424,1.287,1.431]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"05_swap1k","values":{"total":[12.231,12.054,12.163,12.424,12.707,11.452,12.51,11.689,11.846,12.294,11.664,12.533,11.991,11.968,12.29],"script":[1.515,1.366,1.054,0.889,1.273,1.591,1.565,0.58,1.357,1.468,0.609,0.587,0.921,0.894,1.428],"paint":[9.341,8.962,9.666,9.763,10.219,7.708,9.339,9.254,8.727,9.416,9.742,10.396,10.035,9.225,9.637]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.743,38.093,35.557,37.442,34.651,37.411,34.916,34.446,35.328,35.657,33.95,35.854,34.583,35.502,34.665],"script":[4.708,4.63,4.741,4.544,4.892,4.383,4.913,4.774,4.947,4.422,4.9,4.99,4.532,5.419,4.923],"paint":[34.895,32.327,29.854,31.952,28.713,32.237,28.891,28.706,29.441,30.152,28.302,29.45,28.871,29.288,28.971]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"07_create10k","values":{"total":[417.879,418.063,422.917,401.709,419.015,401.202,404.001,426.011,404.706,421.39,422.863,420.157,418.607,418.193,425.13],"script":[79.225,79.138,81.544,73.255,78.233,76.39,75.393,84.117,75.66,80.286,80.719,79.542,78.918,75.503,80.978],"paint":[332.02,332.342,334.555,321.828,333.776,318.253,322.004,334.519,322.242,334.353,335.55,333.902,332.378,336.086,337.452]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.556,45.203,45.398,44.872,46.745,45.12,45.977,46.172,45.815,46.542,45.194,45.139,46.008,45.357,46.605],"script":[8.016,6.946,7.217,7.128,7.627,7.078,7.021,7.544,7.07,7.188,7.01,7.019,7.601,7.137,7.257],"paint":[38.643,37.383,37.331,36.941,38.222,37.228,38.15,37.738,37.848,38.464,37.302,37.233,37.554,37.248,38.47]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.609,16.043,15.902,16.213,16.379,15.255,15.902,15.537,15.69,15.984,15.144,16.598,15.452,16.309,16.519],"script":[13.73,14.153,14.091,14.039,14.153,13.989,13.831,14.375,14.214,14.654,13.84,14.301,13.801,14.695,14.825],"paint":[1.782,1.791,1.634,2.077,1.332,0.381,1.982,0.389,1.373,1.249,0.684,1.248,1.199,1.173,1.6]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8001441955566406]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.4340925216674805]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.633708953857422]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1238336563110352]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.059785842895508]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[71.0341796875]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8583984375]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[117.1]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"01_run1k","values":{"total":[42.053,42.905,43.24,43.407,42.636,42.601,42.865,42.709,42.291,42.597,41.74,44.187,42.957,42.651,43.194],"script":[7.679,8.266,8.169,8.234,8.211,8.53,8.109,8.271,7.496,8.267,7.476,8.056,8.267,8.307,8.383],"paint":[33.914,34.18,34.612,34.7,33.989,33.624,34.312,33.94,34.333,33.882,33.828,35.654,34.241,33.908,34.357]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"02_replace1k","values":{"total":[23.068,15.82,16.417,18.549,21.955,17.908,16.984,15.763,17.765,17.911,19.169,22.305,16.335,16.793,21.217],"script":[1.685,1.54,1.509,1.623,1.609,1.574,1.533,1.518,1.532,1.639,1.67,1.694,1.646,1.577,1.625],"paint":[13.781,13.541,13.576,13.792,13.51,14.196,14.02,13.863,14.088,14.655,14.15,14.402,14.286,15.072,13.645]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.566,19.774,18.939,32.572,16.509,18.421,19.285,18.219,18.622,18.306,17.624,17.131,18.149,17.263,17.165],"script":[2.191,2.724,1.108,1.854,1.62,1.207,1.104,1.953,1.578,1.561,1.32,1.246,1.489,1.883,2.349],"paint":[15.258,14.275,16.525,14.452,13.854,15.835,16.372,15.272,15.031,14.785,15.116,15.391,15.275,15.248,14.701]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"04_select1k","values":{"total":[3.31,4.351,3.95,3.913,3.643,2.448,3.189,3.18,3.748,3.7,3.423,3.982,3.356,3.213,3.619,4.198,5.405,4.924,3.302,4.975,3.832,3.477,4.164,7.202,2.763],"script":[1.022,1.157,0.557,1.319,1.114,0.218,0.901,0.85,0.949,1.424,0.913,0.956,0.623,0.323,0.961,1.175,0.355,1.181,0.218,0.22,0.87,0.682,0.996,0.221,0.218],"paint":[1.788,2.107,2.377,2.307,2.407,2.116,2.184,1.24,2.072,2.155,1.607,2.065,2.614,2.161,2.543,1.876,2.714,2.947,1.696,1.438,2.837,1.391,2.538,2.466,2.423]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"05_swap1k","values":{"total":[26.893,26.72,12.739,12.676,11.201,11.943,11.549,11.865,13.742,11.539,13.749,12.07,27.312,12.13,26.946],"script":[0.615,0.208,0.882,0.982,0.321,1.581,0.823,0.299,0.863,0.184,0.91,1.104,0.842,0.724,0.573],"paint":[10.232,10.758,10.119,9.769,9.287,9.284,10.587,10.134,11.103,9.503,10.634,9.985,10.426,10.775,10.278]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.128,16.367,16.292,16.263,16.15,16.103,16.008,16.066,15.681,15.627,16.125,16.419,16.35,16.136,16.201],"script":[0.377,0.382,0.571,0.597,0.586,0.567,0.33,0.289,0.332,0.26,0.561,0.603,0.426,0.581,0.332],"paint":[14.726,14.831,14.57,14.679,14.728,14.773,14.842,15.014,14.546,14.009,14.544,14.662,15.316,14.804,14.641]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"07_create10k","values":{"total":[434.82,434.112,434.782,432.195,433.639,437.217,436.545,439.152,445.337,442.128,438.683,445.022,444.534,437.834,432.919],"script":[90.259,88.56,89.327,89.623,90.27,95.595,90.542,89.83,100.424,96.422,91.365,100.203,89.236,89.363,89.687],"paint":[336.951,338.191,337.995,335.258,336.143,334.263,338.573,341.726,337.358,338.305,339.933,337.483,347.938,341.088,335.878]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.211,47.458,47.757,48.019,47.556,49.472,48.929,47.71,46.583,48.044,49.097,48.64,49.063,46.941,49.293],"script":[7.394,6.996,7.088,7.153,7.072,7.747,7.627,7.759,6.975,7.126,7.715,7.724,7.622,7.056,7.724],"paint":[38.85,39.492,39.711,39.955,39.535,40.759,40.377,39.092,38.675,39.962,40.431,39.952,40.533,38.954,40.651]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.701,14.246,15.067,15.134,13.835,13.789,14.242,13.936,14.353,13.887,14.332,15.717,13.692,13.905,13.886],"script":[11.793,11.79,12.649,12.554,11.399,11.604,11.877,11.793,11.87,11.918,12.461,13.368,11.622,11.482,12.372],"paint":[1.579,2.326,1.506,1.615,2.35,2.097,1.518,1.552,1.869,1.666,1.082,1.482,1.962,1.727,1.417]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8547477722167969]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.1051740646362305]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.267002105712891]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2412567138671875]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.617819786071777]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[117.6025390625]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.4853515625]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[160.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"01_run1k","values":{"total":[58.333,55.089,56.308,58.26,57.679,58.519,53.862,57.684,54.266,57.192,58.11,57.008,58.667,57.891,56.994],"script":[21.454,21.028,21.988,21.938,21.352,22.407,20.779,20.969,20.807,21.722,22.593,21.888,22.786,22.028,21.514],"paint":[36.431,33.651,33.887,35.877,35.852,35.664,32.685,36.272,33.05,35.024,35.094,34.699,35.457,35.422,35.036]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"02_replace1k","values":{"total":[28.607,30.219,29.431,29.879,30.757,30.639,29.696,30.378,30.035,29.431,28.45,30.127,28.466,30.201,30.229],"script":[14.412,15.921,15.202,15.278,16.138,16.25,15.288,15.663,15.501,15.096,14.451,15.469,14.415,15.441,15.7],"paint":[13.738,13.919,13.839,14.188,14.248,13.993,14.016,14.342,14.062,13.927,13.559,14.266,13.594,14.366,14.149]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[70.004,67.644,67.207,67.492,69.069,67.722,72.009,67.504,67.898,67.362,73.566,68.031,70.647,67.018,67.406],"script":[52.097,51.64,51.245,51.369,51.77,51.097,55.64,51.45,51.333,51.017,57.198,51.787,53.091,50.932,51.323],"paint":[15.794,14.862,13.617,15.052,15.24,14.257,14.337,13.4,15.459,14.189,14.571,14.857,15.175,14.348,14.164]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"04_select1k","values":{"total":[53.869,59.357,53.638,55.919,54.364,54.969,54.11,53.953,54.386,53.224,56.909,53.06,59.901,55.421,53.81,60.517,53.461,55.008,53.642,61.43,53.902,54.579,60.438,53.896,54.023],"script":[50.21,55.844,50.529,52.029,50.556,50.518,49.946,50.871,51.522,49.504,53.098,49.68,56.453,52.311,50.357,57.758,50.315,51.6,50.498,57.747,50.717,50.278,56.65,50.694,50.561],"paint":[2.59,3.06,2.277,3.054,2.89,3.824,3.592,1.801,2.188,3.106,2.861,2.779,2.143,2.926,2.719,1.761,2.773,2.58,2.317,2.779,2.165,3.166,2.626,3.018,3.267]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"05_swap1k","values":{"total":[62.417,60.969,64.056,61.985,60.445,60.713,68.89,62.129,61.49,61.608,61.632,61.514,61.565,62.031,62.229],"script":[50.983,49.638,52.79,50.594,49.913,49.672,56.203,51.053,50.152,50.302,49.756,49.838,50.118,50.649,50.799],"paint":[9.578,10.33,10.302,9.554,8.69,8.956,11.412,9.384,10.956,9.597,10.513,10.33,10.658,9.804,10.084]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[60.308,57.912,59.482,60.066,59.66,59.029,60.979,60.048,58.804,60.569,58.259,59.374,60.575,60.84,59.013],"script":[29.611,28.44,29.818,29.956,29.422,28.807,30.371,29.332,28.823,30.228,28.713,29.968,30.226,29.999,29.014],"paint":[29.931,28.678,28.648,28.904,29.308,29.066,29.518,29.734,29.17,29.505,28.375,28.655,29.02,30.061,29.029]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"07_create10k","values":{"total":[649.361,639.451,648.434,647.75,655.799,651.848,655.074,651.183,643.86,644.778,631.296,629.97,648.615,646.719,637.589],"script":[285.675,280.221,284.076,286.946,287.898,287.566,291.158,284.251,277.152,282.519,271.091,274.552,287.779,283.903,277.297],"paint":[356.905,352.553,357.656,354.078,361.088,357.334,357.221,360.229,359.84,355.447,353.376,348.672,354.056,355.927,353.69]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[83.947,84.786,84.417,82.87,84.241,83.158,83.373,84.486,84.254,85.432,83.287,83.719,84.952,85.045,82.847],"script":[43.297,43.811,43.962,43.014,43.075,41.388,42.569,43.41,44.118,44.325,43.531,43.793,44.011,43.75,42.461],"paint":[39.762,40.095,39.561,38.965,40.277,40.959,39.903,40.157,39.252,40.188,38.871,39.036,40.035,40.394,39.49]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.934,29.077,28.402,26.796,30.368,28.332,27.495,27.16,28.943,27.925,29.296,30.115,27.366,26.935,29.957],"script":[25.443,27.292,26.317,25.107,28.413,26.464,25.532,24.982,26.835,26.369,26.941,27.967,25.407,25.09,27.502],"paint":[1.381,1.666,1.975,1.575,1.182,1.756,1.095,2.075,2.003,1.452,2.258,1.869,0.792,1.096,2.333]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7524213790893555]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.869088172912598]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[19.192293167114258]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.136829376220703]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[93.31236839294434]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[436.837890625]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[127.9482421875]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[772.4]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"01_run1k","values":{"total":[36.188,36.509,36.228,36.189,35.755,36.459,35.588,36.062,35.652,35.396,35.247,35.708,36.703,35.527,36.102],"script":[1.923,2.061,1.871,1.878,1.903,1.876,1.892,1.906,1.952,1.95,2.011,1.882,2.055,1.979,1.871],"paint":[33.829,34.013,33.904,33.901,33.434,34.139,33.279,33.727,33.271,33.009,32.786,33.36,34.218,33.101,33.778]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"02_replace1k","values":{"total":[17.739,16.586,16.813,15.734,16.024,15.737,16.264,16.834,15.719,15.805,16.964,15.522,15.456,15.513,15.761],"script":[1.391,1.287,1.303,1.41,1.376,1.352,1.245,1.223,1.281,1.364,1.312,1.211,1.164,1.227,1.309],"paint":[15.746,14.832,14.946,13.921,14.21,13.943,14.593,15.172,14.057,14.008,15.179,13.928,13.867,13.911,14.022]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.222,16.939,17.216,18.838,17.238,17.723,17.17,18.309,18.005,18.023,17.397,17.344,17.357,17.428,16.971],"script":[1.853,1.97,1.06,1.963,1.447,2.175,1.911,1.917,1.93,2.223,1.82,1.311,1.191,1.314,1.285],"paint":[13.006,13.186,14.963,14.718,14.597,14.251,13.246,14.538,14.795,14.432,14.595,14.732,14.16,14.566,14.974]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"04_select1k","values":{"total":[3.917,3.08,3.999,3.595,4.073,3.843,3.472,4.253,3.531,4.802,4.404,3.697,3.274,3.604,3.42,3.896,4.033,4.656,3.782,4.095,3.355,3.562,3.479,4.149,3.787],"script":[0.924,0.66,1.741,1.302,1.225,0.981,1.712,1.549,1.212,1.03,1.641,0.697,1.153,1.221,0.91,1.765,1.629,1.022,0.999,1.325,0.728,1.499,1.328,1.655,1.075],"paint":[2.288,2.31,1.326,2.173,1.829,2.746,1.645,1.887,1.735,1.94,1.605,2.138,0.459,2.279,1.377,1.42,2.285,2.137,1.918,2.018,2.512,1.947,1.464,2.391,2.256]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"05_swap1k","values":{"total":[11.674,11.823,11.62,10.857,11.46,11.754,11.443,11.638,11.836,11.929,11.281,10.908,11.194,11.475,12.036],"script":[0.836,0.569,0.553,0.101,0.588,0.528,0.212,0.093,0.439,0.496,0.101,0.102,0.1,0.109,0.096],"paint":[10.066,9.341,8.952,8.938,9.583,9.347,10.175,10.505,10.127,9.499,9.818,9.616,10.056,9.427,10.653]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.538,31.896,32.062,32.094,31.515,30.871,33.792,32.08,31.846,33.781,32.873,32.805,32.491,32.545,32.915],"script":[2.154,2.435,2.152,2.114,2.086,1.983,2.491,2.155,2.375,2.577,2.072,2.414,2.431,2.166,2.438],"paint":[29.617,28.514,28.866,28.998,28.359,28.104,30.129,29.183,28.43,30.352,29.675,29.526,29.26,29.419,29.759]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"07_create10k","values":{"total":[563.272,543.996,543.452,559.948,547.575,563.676,560.563,558.776,541.819,542.703,556.418,558.456,546.212,539.355,537.012],"script":[192.372,193.737,194.582,195.695,196.777,197.724,193.76,193.238,193.188,194.401,192.827,194.03,190.833,189.813,191.253],"paint":[363.943,343.459,342.068,357.414,344.007,358.966,359.969,358.725,341.886,341.54,356.685,357.54,348.32,342.745,338.284]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.825,63.376,63.83,64.504,63.788,65.681,64.856,63.104,66.045,62.947,64.625,64.094,65.478,64.815,64.266],"script":[21.857,21.707,21.78,22.433,22.614,23.462,23.122,21.484,23.255,21.43,23.085,21.979,22.499,22.303,22.909],"paint":[40.036,40.712,41.172,41.141,40.245,41.32,40.824,40.696,41.869,40.587,40.644,41.183,42.025,41.602,40.446]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.815,14.684,14.453,14.361,14.383,14.298,14.022,13.832,13.684,13.563,14.801,13.378,13.569,14.161,14.193],"script":[11.719,12.377,12.313,11.807,12.375,12.489,12.352,12.194,12.02,11.831,11.827,11.879,11.974,11.411,12.135],"paint":[1.954,2.147,1.73,1.592,0.807,1.68,1.523,0.399,0.872,0.791,1.408,0.405,1.484,1.987,1.811]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5660123825073242]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9245643615722656]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.0659990310668945]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.123658180236816]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.59217548370361]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3828125]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.9580078125]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.8]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[41.652,41.621,42.287,42.222,42.096,41.479,42.444,40.827,41.421,42.579,43.043,42.442,43.619,43.129,42.607],"script":[6.069,5.945,6.595,6.806,6.26,6.11,6.145,6.223,6.129,6.636,6.632,6.155,6.471,6.188,6.787],"paint":[35.153,35.256,35.245,34.999,35.418,34.946,35.872,34.166,34.874,35.511,35.963,35.824,36.719,36.498,35.39]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[18.803,19.72,18.618,20.063,18.809,18.344,18.669,18.871,20.021,18.996,17.975,18.849,19.929,18.207,18.448],"script":[3.385,3.277,3.336,3.368,3.437,3.203,3.31,3.397,3.311,3.388,3.14,3.367,3.318,3.301,3.279],"paint":[14.973,15.954,14.874,16.236,14.985,14.69,14.969,15.089,16.254,15.224,14.409,15.074,16.164,14.486,14.782]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.705,21.737,22.323,24.096,22.188,25.924,22.738,24.87,21.597,21.73,21.746,21.847,22.484,21.234,21.73],"script":[6.524,5.552,6.291,8.225,5.741,6.855,6.341,8.385,5.289,6.058,5.827,5.14,5.51,6.012,5.644],"paint":[14.59,14.311,13.801,14.768,15.153,17.71,15.2,15.471,14.732,14.055,14.416,15.103,15.092,14.191,14.736]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[10.185,9.638,9.305,9.554,10.353,9.644,8.526,8.756,8.801,9.906,10.469,9.644,10.202,9.944,9.396,11.173,9.58,9.471,9.787,9.978,8.987,11.661,9.492,9.172,9.921],"script":[6.261,6.129,6.03,5.984,6.716,6.075,6.167,5.828,5.823,6.414,5.957,6.913,6.675,6.404,6.012,7.001,6.431,6.09,6.446,6.31,5.367,7.399,6.064,6.234,6.22],"paint":[3.12,3.337,2.347,2.412,3.469,3.381,1.567,2.005,1.411,3.201,3.504,1.837,3.316,2.699,2.42,3.499,2.829,3.215,2.64,2.776,3.094,2.61,2.825,2.783,2.709]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[18.048,16.821,17.639,17.358,17.437,16.977,17.564,16.841,17.38,17.634,18.76,17.054,17.008,16.429,16.396],"script":[6.078,5.557,5.759,5.818,5.868,5.042,6.215,5.225,5.796,5.761,6.27,5.942,5.66,5.334,5.5],"paint":[10.937,10.277,9.48,10.25,10.508,10.222,10.053,10.547,10.008,10.517,10.229,9.66,9.637,9.831,9.312]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[42.559,40.966,41.434,41.083,42.114,41.943,43.355,41.555,42.523,41.776,42.051,40.805,42.366,40.945,42.063],"script":[8.609,8.103,8.099,7.974,9.059,8.443,8.069,8.005,8.053,8.558,8.089,8.104,8.546,8.08,8.371],"paint":[33.123,31.681,32.449,31.5,32.102,32.346,34.425,32.595,33.397,32.11,33.14,31.87,32.661,31.886,32.53]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[438.128,442.566,441.688,440.012,437.686,442.308,441.877,436.885,439.442,439.104,441.99,438.803,430.415,428.889,430.291],"script":[84.5,84.157,85.577,85.86,85.566,84.749,83.421,84.391,84.233,84.714,85.531,84.991,81.555,79.553,78.673],"paint":[346.766,351.679,349.04,347.361,345.318,350.807,351.5,345.754,348.327,347.435,349.711,347.061,342.311,342.555,344.808]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.828,47.393,51.168,50.205,50.461,50.214,51.474,50.594,49.989,51.455,52.271,50.56,51.077,50.109,50.86],"script":[8.541,8.183,8.854,8.59,8.451,8.885,8.863,8.454,8.344,9,8.937,8.397,9.096,8.302,8.841],"paint":[41.391,38.303,41.43,40.703,41.03,40.376,41.694,41.181,40.734,41.428,42.3,41.254,41.044,40.913,40.959]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.583,13.293,13.45,12.712,12.975,13.252,12.842,13.605,12.641,13.375,12.399,12.851,12.668,13.074,12.546],"script":[11.835,11.107,11.744,10.749,11.585,11.845,10.514,11.745,11.035,11.061,10.839,10.647,10.68,11.006,10.419],"paint":[0.935,1.493,1.6,1.868,1.294,0.856,1.307,1.761,1.51,2.014,1.454,2.114,1.892,1.063,1.816]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5187244415283203]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.1248531341552734]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1228208541870117]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6917409896850586]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.177468299865723]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[31.6689453125]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.552734375]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[75.4]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"01_run1k","values":{"total":[67.497,68.743,68.209,68.911,69.193,71.276,68.64,70.164,67.196,68.575,68.165,70.87,70.217,68.758,68.84],"script":[30.655,31.055,30.382,30.42,30.653,32.292,31,32.228,29.987,30.295,30.208,32.948,31.538,30.634,30.776],"paint":[36.35,37.2,37.342,37.994,38.029,38.478,37.147,37.446,36.737,37.776,37.474,37.442,38.179,37.631,37.58]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"02_replace1k","values":{"total":[21.359,19.291,20.956,19.207,19.836,19.313,20.604,18.939,18.736,20.43,18.611,19.473,19.301,19.322,21.164],"script":[3.703,3.563,3.327,3.629,4.013,3.747,3.233,3.783,3.208,3.174,3.126,3.863,3.698,3.893,3.377],"paint":[17.084,15.204,17.064,15.057,15.268,15.073,16.83,14.664,15.059,16.706,15.036,15.09,15.073,14.906,17.263]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.397,19.384,18.958,19.452,19.938,19.275,18.792,18.788,19.199,20.404,19.583,20.679,20.4,19.359,18.933],"script":[1.858,1.762,1.742,1.583,2.178,2.323,1.61,1.94,1.403,1.64,2.358,2.611,1.839,1.81,2.019],"paint":[16.53,16.282,16.29,15.74,15.979,15.578,15.651,15.037,16.311,17.427,15.334,15.778,15.451,15.842,15.332]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"04_select1k","values":{"total":[10.031,9.085,9.246,9.585,9.574,9.301,9.255,8.786,8.745,7.537,8.151,8.238,8.712,8.206,8.203,8.429,7.747,9.6,8.191,7.793,7.613,8.668,8.428,7.361,9.048],"script":[5.822,5.384,6.356,5.878,6.719,6.518,6.318,6.131,5.762,4.324,5.717,5.547,5.688,4.984,5.515,6.151,5.107,6.706,5.643,5.126,4.787,6.178,5.615,5.092,6.287],"paint":[3.478,2.29,1.752,3.374,0.897,2.005,1.84,1.913,2.8,2.931,2.305,1.934,2.847,2.937,2.56,2.091,2.499,1.449,2.184,1.851,2.701,2.301,1.683,1.51,2.577]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"05_swap1k","values":{"total":[14.002,13.43,12.874,13.861,13.489,12.072,12.768,13.419,14.199,12.065,14.019,12.939,13.411,13.223,13.476],"script":[1.122,0.582,0.111,0.45,0.418,0.524,0.102,0.768,0.866,0.55,0.928,0.637,0.928,0.355,0.758],"paint":[11.823,10.486,11.113,12.375,12.371,9.972,10.91,11.298,11.844,9.922,11.563,11.195,10.774,11.902,10.8]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[39.444,40.842,39.189,38.686,39.134,38.241,38.903,39.828,38.547,38.441,38.974,39.441,39.097,38.776,38.361],"script":[6.659,6.638,6.1,5.77,6.687,6.436,6.634,6.095,6.038,6.119,6.58,6.004,6.434,6.483,6.544],"paint":[31.364,33.004,31.957,31.723,31.318,30.563,31.126,32.612,31.675,30.834,31.226,32.209,31.615,31.149,30.979]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"07_create10k","values":{"total":[696.349,673.516,686.477,680.719,685.308,686.047,679.052,683.619,680.05,674.155,679.841,665.451,679.423,674.631,674.969],"script":[277.984,273.809,279.589,280.093,284.276,279.613,275.681,278.949,278.843,276.843,281.029,270.468,279.262,274.843,276.836],"paint":[410.767,392.058,399.163,392.996,393.356,399.094,394.889,397.226,393.501,389.825,390.998,387.406,392.458,392.061,390.622]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[77.164,74.027,73.121,73.636,74.011,73.216,74.857,74.391,74.617,74.531,74.56,75.407,73.917,75.018,74.164],"script":[31.018,31.612,30.723,30.658,30.973,30.649,31.998,31.655,31.123,31.282,31.513,32.434,31.231,31.742,31.969],"paint":[44.556,41.471,41.473,41.977,42.09,41.597,41.911,41.771,42.515,42.292,42.093,41.986,41.706,42.315,41.236]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.465,29.319,27.278,28.186,29.572,26.156,28.178,27.681,27.657,27.547,29.063,28.455,27.852,28.26,27.352],"script":[26.721,26.963,25.728,26.575,27.533,23.835,25.871,25.809,25.983,26.072,26.867,25.915,26.469,26.653,24.543],"paint":[0.88,2.25,1.446,1.518,1.135,1.642,2.056,1.769,0.807,1.378,2.081,1.866,1.286,1.505,2.123]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5639715194702148]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.263603210449219]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.405727386474609]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9573202133178711]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[56.64607048034668]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.3017578125]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6376953125]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.4]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"01_run1k","values":{"total":[45.914,46.694,48.038,47.192,46.035,46.798,46.126,47.464,48.091,47.76,48.72,47.293,46.252,46.473,46.815],"script":[12.825,13.223,14.067,13.996,13.156,13.68,13.543,13.522,14.215,13.275,13.318,13.799,12.924,12.985,13.579],"paint":[32.669,33.037,33.553,32.759,32.466,32.718,32.17,33.527,33.463,34.072,34.975,33.057,32.893,33.075,32.816]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"02_replace1k","values":{"total":[18.831,19.012,19.028,19.056,19.056,18.904,20.458,19.433,19.629,20.788,19.203,19.538,19.129,20.581,19.001],"script":[4.295,4.254,4.307,4.41,4.319,4.311,4.763,4.628,4.669,4.722,4.556,4.321,4.456,4.799,4.243],"paint":[14.144,14.36,14.315,14.221,14.323,14.147,15.28,14.352,14.569,15.604,14.218,14.715,14.291,15.279,14.334]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.58,16.646,16.118,16.755,16.415,16.637,17.174,16.787,17.122,16.844,16.29,16.817,17.315,15.985,16.201],"script":[0.969,1.378,0.918,1.217,0.298,1.569,1.637,0.974,1.373,1.301,0.971,1.214,1.462,1.259,0.734],"paint":[13.049,13.907,13.389,14.576,14.597,14.378,13.994,14.521,14.195,14.476,14.341,13.563,14.293,13.4,13.65]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"04_select1k","values":{"total":[3.055,2.734,3.029,2.738,2.964,2.724,4.411,4.179,2.837,3.013,3.375,4.635,2.277,2.55,2.592,5.539,2.658,4.704,3.132,3.115,2.926,2.769,2.786,2.321,3.049],"script":[0.911,0.105,0.104,0.281,0.764,0.68,1.079,0.601,0.097,0.833,0.851,0.834,0.117,0.782,0.104,0.407,0.771,0.839,0.862,0.105,0.103,0.103,0.779,0.12,0.578],"paint":[2.046,2.532,2.209,2.363,2.103,1.916,1.845,2.317,2.646,1.43,1.087,1.691,1.886,1.668,1.599,1.286,1.783,1.07,1.601,2.915,2.43,1.801,1.038,2.094,2.376]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"05_swap1k","values":{"total":[11.905,12.088,12.24,12.154,11.421,11.462,10.938,11.375,11.848,12.023,11.332,12.25,11.731,11.738,12.007],"script":[1.094,0.845,0.728,0.635,0.112,0.097,0.102,0.997,0.1,0.101,0.457,0.456,0.763,0.323,0.45],"paint":[9.103,9.74,10.782,10.272,10.311,10.071,9.571,8.715,11.065,10.971,9.428,10.445,10.462,9.661,10.051]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.461,40.217,40.537,40.094,40.27,41.118,40.274,41.927,39.69,40.504,41.028,39.01,39.915,39.746,40.252],"script":[9.152,9.442,9.282,9.078,9.098,9.333,9.826,10.417,9.128,9.673,10.17,8.584,9.238,9.085,9.551],"paint":[30.441,29.905,30.282,30.284,30.385,30.906,29.72,30.621,29.737,29.769,30.138,29.654,29.892,29.546,29.976]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"07_create10k","values":{"total":[437.705,436.179,439.893,441.467,444.61,435.004,445.129,441.799,441.06,435.486,439.381,440.906,437.685,438.437,443.58],"script":[102.375,98.114,100.717,100.787,105.646,99.132,104.131,100.713,100.783,100.539,99.939,101.566,99.206,100.192,102.549],"paint":[328.129,331.227,332.463,333.049,332.232,329.071,333.948,334.335,333.302,327.781,332.74,332.611,331.677,331.525,334.302]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.636,49.242,47.264,49.029,49.044,46.678,48.649,48.766,49.077,47.211,47.803,48.873,47.515,48.018,47.872],"script":[10.127,10.172,9.326,10.231,9.732,9.302,9.453,9.669,9.846,9.44,9.682,10.292,9.623,9.959,9.691],"paint":[37.588,38.208,37.059,37.924,38.5,36.469,38.276,38.242,38.385,36.915,37.271,37.691,36.999,37.233,37.135]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.401,18.377,18.415,18.072,18.069,17.681,17.992,17.327,17.105,16.899,17.671,18.754,18.062,19.875,18.014],"script":[15.481,15.875,16.848,15.972,16.339,15.334,15.933,15.551,15.019,15.509,15.899,16.587,16.415,17.93,16.072],"paint":[1.817,1.641,1.481,1.181,1.639,2.258,1.892,1.014,1.998,1.254,0.89,2.085,1.565,1.857,1.224]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.650343894958496]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.120978355407715]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1730194091796875]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.224123001098633]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.521735191345215]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[123.3427734375]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.9970703125]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.7]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"01_run1k","values":{"total":[49.066,46.972,46.601,46.361,46.095,47.573,47.373,48.714,46.594,46.956,48.95,47.093,47.146,46.709,47.114],"script":[13.542,14.115,13.205,13.34,12.721,14.135,14.01,14.051,13.914,13.621,14.426,13.804,13.815,13.272,13.671],"paint":[35.093,32.465,32.962,32.602,32.952,33.029,32.958,34.234,32.247,32.944,34.101,32.866,32.913,33.008,33.026]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"02_replace1k","values":{"total":[25.327,25.594,26.775,25.928,25.98,28.321,26.688,26.409,26.533,26.02,25.775,25.368,26.106,26.152,26.65],"script":[10.077,10.218,10.594,10.233,10.461,11.396,11.015,10.573,10.858,10.413,10.29,10.136,10.673,10.441,10.861],"paint":[14.829,14.947,15.692,15.251,15.068,16.473,15.249,15.42,15.223,15.195,15.03,14.79,14.981,15.238,15.355]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46.335,46.257,46.769,43.444,47.295,44.892,44.607,45.39,44.339,48.123,45.086,45.837,46.725,45.558,44.609],"script":[28.839,29.075,30.273,26.442,29.272,28.199,27.718,28.095,27.979,30.914,27.559,29.438,28.76,28.426,28.229],"paint":[16.409,15.467,14.27,15.533,16.769,14.805,14.88,15.341,15.274,14.575,15.913,14.504,15.986,15.475,14.896]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"04_select1k","values":{"total":[29.792,30.352,29.744,29.984,31.29,30.641,31.316,29.712,29.007,33.239,29.462,31.127,29.608,29.503,31.107,30.105,29.499,29.775,29.431,30.19,27.753,30.47,29.159,27.877,29.883],"script":[26.565,26.328,26.251,27.033,28.361,26.825,27.882,25.909,25.803,29.475,26.263,27.177,26.45,25.72,28.622,26.669,26.629,26.361,26.404,26.827,24.703,26.619,25.757,25.152,26.993],"paint":[2.338,1.603,3.3,2.764,2.555,3.61,2.47,3.624,2.249,2.332,2.383,2.225,2.044,2.145,1.672,2.494,1.97,2.86,2.84,2.141,2.512,3.045,2.844,1.563,2.671]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"05_swap1k","values":{"total":[38.329,39.044,38.426,37.82,39.354,36.518,39.235,37.517,39.085,40.245,38.418,38.692,37.433,39.444,39.031],"script":[25.928,26.74,26.589,26.355,26.294,24.836,27.323,25.953,26.876,28.162,26.393,26.432,25.848,27.172,26.027],"paint":[10.484,10.86,10.198,9.903,11.412,9.707,10.293,9.988,11.378,10.375,10.585,10.31,10.306,10.917,11.467]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[51.397,56.38,52.208,51.901,51.929,51.378,51.678,51.707,51.805,55.678,50.961,56.905,51.496,56.562,51.403],"script":[19.655,21.617,19.801,19.96,19.631,20.024,19.419,19.9,19.729,21.607,19.137,21.924,20.116,22.069,19.522],"paint":[30.776,33.971,31.28,31.036,31.498,30.253,31.432,30.806,30.911,33.285,30.792,34.176,30.228,33.57,30.794]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"07_create10k","values":{"total":[471.686,470.804,477.063,474.46,472.913,470.796,474.821,472.041,479.923,473.252,471.895,468.666,468.99,470.187,476.511],"script":[131.375,136.404,132.189,136.92,136.158,132.839,134.826,135.886,135.429,135.426,134.341,135.644,135.044,135.198,139.199],"paint":[333.543,327.559,337.866,330.941,330.008,331.232,333.014,329.142,337.793,331.14,331,326.48,327.284,328.07,330.58]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.763,60.555,60.058,60.969,59.985,59.555,60.979,60.871,60.313,60.567,60.378,59.621,60.212,59.754,60.611],"script":[20.812,20.229,20.2,20.958,20.076,20.021,20.778,20.566,20.245,20.803,20.715,20.283,20.207,20.34,20.412],"paint":[39.032,39.459,38.993,39.109,39.04,38.664,39.275,39.403,39.018,38.889,38.771,38.472,39.105,38.505,39.319]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.087,12.377,13.024,11.991,13.471,12.661,12.317,12.28,12.468,13.355,12.723,12.246,12.045,11.963,12.727],"script":[10.29,10.338,11.256,10.436,11.861,10.93,10.489,10.631,10.941,11.551,10.42,9.897,10.615,9.735,10.441],"paint":[1.562,1.942,0.959,0.907,1.498,1.644,1.743,0.742,1.431,1.701,2.21,1.47,1.332,2.148,2.199]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4891061782836914]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6115541458129883]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.639925003051758]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7423667907714844]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.950050354003906]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.0947265625]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.9716796875]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.1]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"01_run1k","values":{"total":[39.269,36.935,38.006,38.334,38.118,37.59,37.64,37.407,38.914,40.132,37.5,38.258,37.651,38.25,38.214],"script":[5.091,4.796,4.997,5.076,5.147,5.141,5.196,4.755,5.126,5.116,4.766,4.997,5.087,5.074,5.088],"paint":[33.768,31.736,32.599,32.833,32.554,32.036,32.051,32.235,33.364,34.606,32.335,32.82,32.16,32.739,32.697]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"02_replace1k","values":{"total":[14.797,15.708,15.15,14.657,14.714,15.326,14.861,15.27,16.672,14.669,15.163,14.782,14.664,15.358,15.312],"script":[0.839,0.852,0.896,0.81,0.803,0.831,0.87,0.858,0.821,0.859,0.834,0.848,0.857,0.839,0.826],"paint":[13.556,14.427,13.909,13.439,13.523,14.156,13.64,14.063,15.455,13.437,13.96,13.548,13.436,14.177,14.131]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.963,16.2,17.6,17.227,17.227,17.144,17.65,17.434,17.032,17.014,18.949,17.148,17.254,18.912,17.322],"script":[1.411,1.935,2.068,1.945,1.565,2.149,1.714,1.926,2.13,1.826,2.443,1.954,1.846,2.078,1.43],"paint":[13.761,12.426,14.063,14.007,14.039,14.017,14.719,13.517,13.523,13.886,14.463,14.153,14.136,15.608,14.825]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"04_select1k","values":{"total":[3.34,3.701,3.098,3.745,3.451,3.373,3.229,3.521,3.127,3.653,3.383,3.7,3.736,3.798,3.281,3.7,3.398,6.284,3.117,4.898,3.932,3.441,4.126,3.522,4.14],"script":[0.864,1.281,1.341,0.945,1.291,1.209,1.141,0.967,1.25,0.647,1.204,0.928,1.213,1.362,0.994,1.696,1.182,1.277,0.97,1.583,1.298,0.98,1.684,1.2,0.914],"paint":[1.4,2.165,1.655,2.675,2.038,2.067,1.523,1.268,1.123,2.633,1.185,2.649,1.456,1.652,1.671,1.883,2.112,2.143,2.046,2.321,2.035,2.36,2.349,1.391,1.658]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"05_swap1k","values":{"total":[11.764,11.92,11.811,11.9,12.174,11.831,12.28,11.327,12.183,12.4,12.549,12.014,12.497,12.05,11.929],"script":[1.246,0.858,0.601,0.636,0.928,0.289,1.527,1.152,1.053,1.25,1.598,0.928,1.517,1.263,1.154],"paint":[9.578,9.191,9.365,9.746,9.597,9.881,9.45,8.712,9.925,9.876,10.003,9.502,10.114,10.117,9.817]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[30.704,30.661,31.502,32.005,30.638,30.628,30.574,30.629,31.651,30.548,31.165,30.998,30.148,31.132,31.485],"script":[1.355,1.699,1.608,1.325,1.557,1.662,1.676,1.573,1.771,1.615,1.747,1.652,1.512,1.736,1.527],"paint":[28.626,28.185,29.201,29.195,28.32,27.865,28.118,28.231,29.194,28.148,28.605,28.576,27.861,28.353,28.996]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"07_create10k","values":{"total":[407.307,392.446,396.066,394.461,399.615,395.874,393.944,397.96,396.637,396.747,396.31,392.704,397.748,391.408,397.755],"script":[56.947,52.817,53.902,53.959,54.089,53.409,53.897,53.293,54.09,54.053,55.65,55.176,53.848,55.024,53.556],"paint":[343.535,332.93,335.5,333.832,338.655,335.785,333.287,337.735,335.758,335.875,333.87,330.837,337.198,329.529,337.47]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.754,43.355,44.004,44.33,44.84,43.459,43.996,44.591,45.154,43.886,43.026,43.094,44.831,43.12,43.29],"script":[5.266,5.229,5.506,5.586,5.622,5.167,5.472,5.573,5.511,5.669,5.234,5.195,5.584,5.213,5.132],"paint":[37.617,37.269,37.655,37.875,38.375,37.431,37.675,38.16,38.657,37.379,36.959,37.124,38.27,37.055,37.311]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.499,12.502,12.385,12.545,12.856,12.352,12.211,12.336,12.048,12.922,12.62,12.024,12.656,11.877,12.628],"script":[10.387,10.406,10.614,10.871,10.691,10.059,10.42,10.542,10.382,10.71,10.4,10.582,10.788,10.13,10.331],"paint":[2.022,2.014,1.092,0.725,2.073,2.199,1.12,1.704,1.577,1.636,1.848,1.351,1.387,1.655,2.202]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49310779571533203]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7478513717651367]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.760061264038086]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3034963607788086]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.899914741516113]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.6357421875]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.96875]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"01_run1k","values":{"total":[42.169,39.87,39.639,40.402,42.417,41.53,41.162,41.577,41.075,41.096,42.515,41.884,41.783,41.262,41.61],"script":[8.019,7.831,7.749,8.099,8.062,7.97,8.014,8.108,7.7,7.63,8.336,8.102,7.92,8.057,8.01],"paint":[33.702,31.615,31.425,31.907,33.904,33.129,32.735,33.014,32.913,33.041,33.753,33.328,33.424,32.778,33.156]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"02_replace1k","values":{"total":[19.144,19.359,19.135,19.731,19.268,20.525,19.216,18.965,19.43,19.386,19.303,18.952,20.387,19.256,19.884],"script":[4.348,4.558,4.412,4.486,4.439,4.407,4.312,4.372,4.442,4.376,4.416,4.248,4.308,4.41,4.51],"paint":[14.32,14.338,14.301,14.813,14.407,15.649,14.465,14.164,14.53,14.56,14.428,14.277,15.616,14.4,14.93]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.695,16.403,16.257,16.483,16.751,16.22,16.715,15.776,15.917,17.017,16.67,16.631,16.61,16.626,16.657],"script":[0.572,1.167,1.184,0.988,0.873,0.832,0.196,0.731,0.201,0.935,1.303,1.494,1.016,1.078,0.772],"paint":[15.186,14.233,14.089,14.461,14.612,14.205,15.383,13.558,14.218,15.199,14.047,14.092,14.152,13.999,13.757]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"04_select1k","values":{"total":[2.25,4.019,2.792,3.325,3.271,2.551,2.379,2.844,6.152,2.623,2.606,3.459,3.456,3.035,3.927,2.535,2.326,4.41,1.941,3.57,2.562,3.109,2.482,3.956,2.604],"script":[0.075,0.723,0.918,0.993,0.842,0.08,0.071,0.457,0.635,0.068,0.42,0.07,0.428,0.61,0.499,0.067,0.078,0.206,0.08,0.075,0.505,0.796,0.527,0.471,0.07],"paint":[2.074,1.539,1.434,2.226,1.523,1.705,0.96,2.083,1.53,1.592,2.085,1.561,1.577,1.458,1.425,2.034,1.52,1.921,1.117,1.494,1.153,1.442,1.377,1.2,2.27]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"05_swap1k","values":{"total":[19.316,18.645,17.338,18.668,18.094,19.31,17.219,18.659,18.201,17.973,17.577,18.838,17.381,18.748,17.678],"script":[7.643,7.192,6.195,7.183,7.087,7.716,5.781,6.949,6.925,6.157,5.907,6.592,5.748,7.076,5.866],"paint":[10.319,9.154,9.317,9.538,9.689,10.062,10.053,10.995,9.496,10.731,9.259,10.604,9.798,9.792,10.556]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.023,37.889,39.122,37.29,37.948,37.687,37.232,37.485,41.286,39.711,37.83,39.475,38.274,37.348,40.608],"script":[7.017,7.286,7.279,7.204,7.371,7.08,6.821,6.92,7.394,7.305,7.209,7.562,7.389,6.821,7.027],"paint":[29.496,29.476,30.627,29.286,29.471,29.667,29.609,29.651,32.798,31.19,29.805,30.974,30.031,29.397,32.168]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"07_create10k","values":{"total":[421.413,424.97,422.107,421.687,421.29,422.303,421.441,424.701,424.02,422.646,424.735,425.089,421.44,421.994,418.764],"script":[91.53,86.441,91.38,87.399,90.717,90.752,90.418,90.573,88.21,90.865,92.618,89.431,91.814,91.097,89.948],"paint":[322.957,331.566,323.878,327.496,323.812,324.645,324.172,327.376,329.07,324.885,325.318,328.903,322.819,323.97,322.111]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.785,49.308,49.25,48.828,49.46,49.607,50.563,51.032,49.575,49.686,49.978,50.413,50.486,49.194,50.326],"script":[10.296,10.212,10.262,10.37,10.104,10.104,10.878,10.428,10.537,10.652,10.179,10.297,10.467,10.056,10.513],"paint":[38.611,38.177,38.118,37.602,38.471,38.606,38.754,39.724,38.165,38.15,38.885,39.22,39.092,38.279,38.892]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.263,13.171,13.138,12.371,12.99,13.745,13.041,12.844,12.713,13.672,13.758,13.095,12.245,13.509,13.203],"script":[11.658,11.361,11.099,11.23,10.705,12.004,11.662,11.185,11.122,11.386,11.863,10.801,10.853,11.305,11.339],"paint":[1.09,1.558,1.307,0.365,2.189,1.655,1.296,0.766,1.503,1.912,1.285,2.212,0.378,2.123,1.06]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5326509475708008]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.794438362121582]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.682803153991699]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7857933044433594]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.811501502990723]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.85546875]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7021484375]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.2]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"01_run1k","values":{"total":[36.879,36.82,37.304,37.864,36.499,37.126,36.999,36.649,37.202,37.977,37.06,36.424,37.008,37.191,37.104],"script":[3.821,4.036,3.933,3.944,3.796,3.908,4.209,3.928,3.907,3.905,3.993,3.701,3.912,3.935,3.956],"paint":[32.632,32.363,32.947,33.488,32.28,32.798,32.379,32.282,32.88,33.658,32.644,32.303,32.686,32.823,32.719]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"02_replace1k","values":{"total":[15.94,15.341,15.326,15.285,15.369,15.673,15.593,16.341,16.279,15.414,15.899,15.692,15.702,16.138,15.617],"script":[1.261,1.299,1.218,1.273,1.213,1.23,1.224,1.239,1.206,1.319,1.236,1.201,1.212,1.266,1.338],"paint":[14.211,13.613,13.723,13.603,13.757,14.062,13.986,14.655,14.62,13.671,14.296,14.127,14.132,14.502,13.839]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.496,16.795,17.227,18.717,18.14,18.798,17.99,18.313,19.554,16.39,18.426,16.972,17.158,17.278,17.51],"script":[1.469,1.508,1.639,1.516,1.766,1.828,1.536,1.337,2.323,2.033,2.175,1.048,1.396,1.332,1.742],"paint":[14.048,14.125,14.178,14.733,14.391,15.135,15.173,15.691,15.666,13.392,14.46,14.413,14.244,14.822,14.362]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.725,3.862,4.031,3.847,5.161,4.002,4.787,4.803,3.993,4.67,4.331,6.115,5.679,3.838,3.399,3.662,3.538,4.388,3.895,3.719,3.487,3.934,3.892,3.447,5.91],"script":[1.807,1.996,1.72,2.414,1.673,1.243,2.032,1.255,0.974,1.558,1.517,1.889,2.258,1.892,1.211,1.538,1.065,1.815,1.329,1.763,1.265,1.079,1.169,0.957,1.731],"paint":[1.496,1.765,0.987,0.808,1.606,2.399,2.6,2.879,2.396,2.985,2.693,2.203,2.239,1.825,1.643,2.024,2.353,2.45,1.714,1.109,1.96,2.74,1.85,1.535,1.932]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"05_swap1k","values":{"total":[13.042,12.92,12.437,12.342,12.839,12.389,12.724,12.156,12.833,11.627,12.627,12.093,13.706,12.268,12.945],"script":[1.999,2.215,1.442,1.064,1.499,1.276,1.59,0.972,1.642,1.627,2.089,1.495,1.496,1.12,2.01],"paint":[10.03,9.595,8.833,9.796,9.316,9.547,9.131,8.904,9.433,8.196,9.862,9.069,9.9,9.479,9.372]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.245,32.205,33.2,32.184,31.732,32.346,31.764,32.911,32.286,32.335,32.24,32.367,30.822,31.253,31.492],"script":[2.161,2.41,2.186,2.195,2.202,2.444,2.404,2.391,2.431,2.249,2.372,2.374,1.911,2.271,2.234],"paint":[32.052,28.937,29.475,29.001,28.272,28.809,28.304,29.746,29.074,29.357,29.077,29.174,27.722,28.204,28.393]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"07_create10k","values":{"total":[404.456,402.577,403.826,402.295,404.272,402.954,411.012,404.653,400.478,399.994,402.278,403.623,400.294,402.359,401.25],"script":[65.392,62.117,64.574,61.709,64.574,62.757,62.132,64.733,62.432,61.566,62.332,63.795,62.023,63.867,62.228],"paint":[332.128,333.601,332.241,333.679,332.908,333.358,342.029,333.187,331.286,331.6,333.163,333,331.458,331.692,332.247]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.11,41.826,42.674,41.624,40.807,40.817,42.126,44.143,42.331,43.087,42.252,43.307,42.924,43.554,43.671],"script":[4.354,4.401,4.212,4.361,4.388,4.264,4.353,4.636,4.584,4.715,4.377,4.919,4.867,4.719,4.733],"paint":[36.874,36.543,37.57,36.39,35.541,35.694,36.764,38.576,36.889,37.521,37.012,37.443,37.107,37.977,38.062]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.128,13.422,13.11,13.757,13.721,13.855,13.56,13.291,13.882,13.633,13.25,12.926,13.438,13.468,13.988],"script":[11.118,11.022,11.981,11.425,11.609,12.367,11.121,11.1,12.139,11.538,11.113,11.418,11.873,11.288,11.914],"paint":[1.926,2.307,1.047,2.251,2.019,1.386,2.133,2.102,1.59,2.014,1.394,0.672,1.475,2.083,1.98]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5001192092895508]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.131106376647949]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0895309448242188]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7178659439086914]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.251532554626465]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5576171875]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.9609375]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.9]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"01_run1k","values":{"total":[41.144,46.815,48.024,47.181,49.295,47.017,47.3,41.114,41.472,48.357,40.664,48.369,41.7,40.185,42.032],"script":[7.514,7.598,8.393,7.283,7.252,7.359,7.12,7.114,7.602,7.278,7.268,7.462,7.423,7.291,7.199],"paint":[32.949,33.989,32.778,32.568,32.635,33.708,32.52,32.742,33.719,32.594,32.491,34.051,33.424,32.604,32.808]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"02_replace1k","values":{"total":[25.886,16.662,18.242,20.362,17.15,17.356,20.627,24.021,22.196,17.549,17.462,22.988,22.987,16.114,18.087],"script":[2.262,2.231,2.373,2.214,2.191,2.167,2.138,2.212,2.153,2.121,2.339,2.243,2.202,2.225,2.161],"paint":[13.808,14.304,15.744,13.956,14.044,14.151,14.424,14.016,14.424,14.271,14.775,14.852,14.027,13.774,14.296]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.761,20.366,20.961,19.835,19.08,21.302,34.856,19.671,17.648,19.604,16.966,20.687,19.258,35.323,34.257],"script":[2.412,3.399,4.337,3.364,4.833,2.849,3.848,3.003,3.13,3.836,3.01,3.517,3.145,3.743,3.543],"paint":[14.317,14.276,13.554,14.871,13.491,15.102,15.854,13.966,13.768,15.662,13.854,14.619,13.166,15.539,15.071]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"04_select1k","values":{"total":[6.204,6.077,5.438,6.369,5.285,5.97,7.094,5.527,6.772,6.603,5.856,6.003,5.679,6.308,7.182,7.606,5.98,7.03,6.131,6.235,5.34,5.754,5.676,5.262,5.652],"script":[3.303,3.349,2.891,3.32,3.311,2.861,3.074,2.786,3.662,3.793,3.08,3.223,2.957,3.286,3.874,2.9,2.861,4.046,2.602,3.468,1.966,2.979,3.51,2.977,1.571],"paint":[2.253,2.308,1.77,1.713,1.85,2.136,3.001,2.26,2.957,2.669,2.654,2.658,1.937,1.994,1.836,2.197,2.996,2.508,3.38,1.679,2.287,1.911,1.51,2.16,2.503]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"05_swap1k","values":{"total":[12.349,13.941,13.291,29.116,13.004,13.583,14.219,12.701,29.21,14.816,12.259,28.733999999999995,14.164,16.489,12.249],"script":[2.954,2.363,2.713,3.013,3.404,2.376,2.459,3.092,2.578,2.319,2.075,2.263,2.187,3.371,1.637],"paint":[8.792,9.394,10.466,9.558,9.495,9.473,9.441,9.444,10.591,9.565,9.65,9.919,9.733,9.211,10.501]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.218,36.075,35.471,37.05,33.148,33.122,39.584,32.108,33.292,36.943,32.542,32.99,34.377,32.521,39.406],"script":[3.92,3.523,3.762,3.98,3.746,3.441,3.884,3.772,3.678,3.514,3.724,3.766,3.815,3.737,4.065],"paint":[29.15,29.005,28.579,29.811,29.275,29.331,28.272,28.149,29.185,29.183,28.691,28.955,29.945,28.351,32.588]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"07_create10k","values":{"total":[438.324,442.033,423.654,425.186,442.424,422.05,446.29,418.195,430.673,419.322,424.64,438.069,423.247,421.597,425.969],"script":[84.196,82.992,81.742,83.004,82.587,82.686,85.321,81.952,84.182,81.204,82.083,83.449,81.386,82.022,82.843],"paint":[343.975,351.352,338.168,337.995,351.64,336.915,355.659,333.72,337.577,335.299,340.468,351.611,339.351,335.749,340.945]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.974,56.439,56.233,57.738,57.844,57.612,56.087,56.464,57.973,57.806,58.665,56.622,58.569,56.771,57.694],"script":[7.361,7.043,7.007,7.166,7.122,7.376,7.144,7.33,7.429,7.11,7.144,7.367,7.639,7.167,7.324],"paint":[38.111,37.718,37.852,37.826,38.221,38.502,37.745,37.841,38.29,38.181,39.81,38.069,38.922,37.934,37.704]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.182,15.37,16.843,13.611,14.542,15.091,30.662,16.113,16.932,14.835,15.813,14.998,13.956,13.643,14.984],"script":[12.372,12.984,14.037,12.493,13.4,13.152,12.792,12.645,12.861,13.45,13.245,13.137,12.963,12.317,13.336],"paint":[1.887,1.454,1.539,1.057,1.087,1.877,1.875,1.873,1.794,1.335,1.586,1.798,0.941,0.409,1.588]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7092838287353516]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.038762092590332]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9942636489868164]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0808849334716797]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.797054290771484]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.9345703125]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.712890625]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[94.5]}},{"framework":"vanillajs-non-keyed","benchmark":"01_run1k","values":{"total":[36.693,34.725,34.461,35.293,35.012,35.64,36.507,35.166,35.055,36.029,35.145,35.816,35.061,35.499,35.611],"script":[2.49,2.424,2.424,2.398,2.393,2.68,2.421,2.426,2.544,2.631,2.47,2.524,2.426,2.502,2.509],"paint":[33.757,31.925,31.645,32.468,32.258,32.562,33.683,32.352,32.113,32.971,32.269,32.888,32.23,32.604,32.742]}},{"framework":"vanillajs-non-keyed","benchmark":"02_replace1k","values":{"total":[16.341,18.133,16.312,16.26,16.453,16.536,16.391,16.098,16.219,16.453,16.512,16.644,16.709,16.272,16.555],"script":[1.872,1.976,1.93,1.908,2.019,1.962,2.081,1.869,1.948,1.976,1.986,1.976,1.993,1.903,1.884],"paint":[14.065,15.749,14.029,13.963,13.99,14.152,13.873,13.836,13.877,14.073,14.104,14.301,14.283,13.964,14.298]}},{"framework":"vanillajs-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.309,15.765,17.017,16.025,16.242,15.903,16.515,16.572,15.932,15.935,17.323,15.953,16.212,16.598,15.942],"script":[0.192,0.923,1.209,0.768,1.221,0.483,0.355,0.812,0.791,0.498,0.659,0.162,1.094,1.13,0.906],"paint":[14.864,13.109,14.272,14.499,13.305,14.323,14.482,14.438,13.808,13.301,14,14.524,13.634,14.484,13.76]}},{"framework":"vanillajs-non-keyed","benchmark":"04_select1k","values":{"total":[2.575,2.734,2.452,4.573,3.159,2.732,2.291,2.872,2.19,3.091,2.149,2.589,3.646,3.161,2.451,2.707,1.993,2.169,4.136,2.545,2.495,3.713,2.59,2.489,2.217],"script":[0.057,0.055,0.529,0.058,0.056,0.06,0.056,0.06,0.526,0.743,0.054,0.063,0.172,0.704,0.062,0.799,0.207,0.054,0.057,0.059,0.516,0.054,0.054,0.634,0.6],"paint":[0.567,2.321,1.833,2.403,1.848,2.571,1.346,2.718,0.983,2.247,1.997,2.431,0.825,2.359,2.048,1.135,1.588,2.015,2.154,2.385,1.304,1.894,1.958,1.761,1.254]}},{"framework":"vanillajs-non-keyed","benchmark":"05_swap1k","values":{"total":[11.834,10.96,11.52,11.373,10.769,11.55,11.834,11.232,11.815,11.289,11.105,10.512,11.253,11.095,11.89],"script":[0.377,0.485,1.136,0.094,0.375,1.058,0.731,0.087,0.092,0.48,0.083,0.081,0.094,0.415,0.872],"paint":[10.172,9.454,9.188,10.065,9.144,9.425,8.938,9.855,9.998,9.88,9.806,9.119,9.894,9.958,9.751]}},{"framework":"vanillajs-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.414,33.41,34.172,33.662,34.029,34.737,33.776,34.221,33.724,33.684,35.236,34.214,33.618,34.78,33.864],"script":[3.127,3.163,3.497,3.61,3.548,3.514,3.16,3.409,3.22,3.216,3.368,3.195,3.447,3.751,3.404],"paint":[31.417,29.514,29.954,28.971,29.456,30.481,29.873,29.819,29.655,29.754,30.739,30.297,29.109,30.126,29.512]}},{"framework":"vanillajs-non-keyed","benchmark":"07_create10k","values":{"total":[375.232,369.314,368.358,371.014,367.053,372.506,368.12,370.965,367.269,368.978,370.483,367.436,370.465,373.447,367.239],"script":[29.694,27.277,27.356,30.012,30.719,28.886,30.034,28.13,28.387,29.203,30.132,29.874,28.991,29.276,27.418],"paint":[338.879,335.357,334.396,334.265,329.699,336.844,331.543,336.215,332.268,333.11,333.784,330.93,334.18,337.462,333.224]}},{"framework":"vanillajs-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.541,40.083,39.33,39.209,40.598,39.799,39.649,40.37,41.835,40.075,40.558,40.037,41.178,39.33,40.389],"script":[2.58,2.495,2.422,2.472,2.455,2.473,2.458,2.617,2.555,2.582,2.639,2.581,2.65,2.448,2.603],"paint":[37.108,36.805,36.135,35.971,37.269,36.524,36.384,36.931,38.447,36.662,37.097,36.635,37.68,36.046,36.971]}},{"framework":"vanillajs-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.073,12.025,12.024,12.464,11.943,10.843,12.03,11.66,11.462,12.007,11.719,11.452,11.384,11.043,11.589],"script":[10.104,10.363,10.081,10.167,9.563,9.843,10.071,10.261,9.331,10.308,9.617,9.837,9.563,9.918,9.697],"paint":[0.977,0.764,0.986,1.412,1.855,0.578,1.641,1.317,0.546,1.037,2.022,0.718,1.744,1.043,0.918]}},{"framework":"vanillajs-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44146156311035156]}},{"framework":"vanillajs-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7387580871582031]}},{"framework":"vanillajs-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.676844596862793]}},{"framework":"vanillajs-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.619450569152832]}},{"framework":"vanillajs-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.175838470458984]}},{"framework":"vanillajs-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.9794921875]}},{"framework":"vanillajs-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4296875]}},{"framework":"vanillajs-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"01_run1k","values":{"total":[35.457,36.128,34.692,34.252,35.914,34.282,34.357,35.491,35.024,34.883,34.507,35.37,35.585,35.426,35.639],"script":[2.449,2.558,2.397,2.388,2.472,2.344,2.328,2.439,2.413,2.41,2.347,2.479,2.357,2.51,2.463],"paint":[32.555,33.174,31.886,31.458,33.049,31.545,31.649,32.694,32.222,32.069,31.775,32.503,32.82,32.547,32.782]}},{"framework":"vanillajs-1-non-keyed","benchmark":"02_replace1k","values":{"total":[15.851,15.783,15.743,16.23,16.255,15.843,15.955,15.797,16.255,16.111,15.861,16.321,16.217,15.971,16.078],"script":[1.585,1.632,1.563,1.644,1.727,1.698,1.593,1.622,1.738,1.687,1.58,1.674,1.582,1.699,1.602],"paint":[13.87,13.786,13.796,14.178,14.114,13.737,13.921,13.795,14.105,14.018,13.875,14.258,14.244,13.917,14.064]}},{"framework":"vanillajs-1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.355,15.174,16.225,15.543,15.957,15.692,16.922,15.288,15.445,16.046,15.725,15.115,15.653,15.091,15.663],"script":[0.667,0.161,1.358,0.659,0.184,0.183,0.866,0.577,0.976,0.582,0.167,0.153,0.803,0.543,0.156],"paint":[13.039,13.251,13.388,13.561,14.499,14.503,13.655,13.242,12.86,13.846,14.565,14.051,13.222,13.382,14.522]}},{"framework":"vanillajs-1-non-keyed","benchmark":"04_select1k","values":{"total":[2.424,4.158,2.323,2.912,3.037,2.228,2.704,2.194,2.211,2.225,2.336,2.33,2.19,5.827,2.478,3.473,2.897,4.66,4.442,2.477,2.321,2.193,2.434,2.557,2.657],"script":[0.373,0.056,0.119,0.393,0.818,0.059,0.057,0.058,0.059,0.059,0.059,0.065,0.06,0.529,0.057,0.963,0.406,0.065,0.055,0.061,0.299,0.056,0.578,0.061,0.056],"paint":[1.134,1.202,2.109,2.422,1.425,1.301,1.921,2.038,2.054,2.065,2.179,1.185,0.506,2.03,1.509,1.868,2.396,1.708,2.503,2.308,1.612,2.046,1.765,1.709,0.834]}},{"framework":"vanillajs-1-non-keyed","benchmark":"05_swap1k","values":{"total":[11.425,11.945,11.77,11.863,11.404,11.707,11.512,11.119,10.722,11.114,11.394,11.092,11.355,11.529,11.534],"script":[0.688,0.568,0.271,0.754,0.561,0.831,0.589,0.122,0.439,0.615,0.126,0.123,0.614,0.74,1.256],"paint":[9.35,9.777,9.376,10.175,9.075,9.866,9.091,9.392,8.774,9.307,10.333,9.287,8.625,8.66,8.804]}},{"framework":"vanillajs-1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.84,33.47,33.022,33.244,32.887,33.339,33.663,33.79,33.552,32.818,33.268,33.457,33.502,33.144,33.62],"script":[2.677,2.844,3.011,2.783,2.929,2.654,3.022,3.141,2.95,2.809,2.743,2.595,2.81,3.007,2.708],"paint":[30.431,29.802,29.273,29.559,29.227,29.712,29.592,29.872,29.891,29.039,29.83,29.789,29.989,29.347,29.784]}},{"framework":"vanillajs-1-non-keyed","benchmark":"07_create10k","values":{"total":[368.313,377.388,372.447,364.153,366.881,363.819,368.347,366.248,365.535,366.487,365.691,365.468,378.29,367.91,366.087],"script":[27.221,27.738,27.765,27.552,27.455,28.133,27.148,27.203,27.22,28.923,27.134,27.287,28.6,27.721,27.371],"paint":[334.405,342.964,338.068,329.547,332.831,329.057,334.584,332.436,331.608,330.743,331.918,331.564,342.754,333.622,332.158]}},{"framework":"vanillajs-1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.496,39.832,40.122,39.775,39.805,40.744,39.908,40.219,39.663,39.718,39.757,40.029,40.348,40.838,41.114],"script":[2.553,2.516,2.535,2.662,2.547,2.508,2.508,2.429,2.476,2.549,2.508,2.571,2.569,2.645,2.644],"paint":[38.095,36.475,36.769,36.272,36.41,37.395,36.517,36.887,36.376,36.287,36.433,36.581,37,37.315,37.625]}},{"framework":"vanillajs-1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.514,11.759,11.646,12.41,11.963,11.183,11.574,11.963,11.923,12.448,11.594,12.117,11.607,11.891,12.175],"script":[10.411,10.116,9.952,10.233,9.45,9.319,10.168,9.972,10.5,10.593,9.54,10.62,10.001,9.668,10.578],"paint":[1.279,1.565,0.851,1.691,1.528,1.083,0.395,1.265,1.334,1.76,1.178,0.556,1.301,2.138,1.516]}},{"framework":"vanillajs-1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.43665218353271484]}},{"framework":"vanillajs-1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7241792678833008]}},{"framework":"vanillajs-1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.6646442413330078]}},{"framework":"vanillajs-1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5123929977416992]}},{"framework":"vanillajs-1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[11.99890422821045]}},{"framework":"vanillajs-1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.0205078125]}},{"framework":"vanillajs-1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.1767578125]}},{"framework":"vanillajs-1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.5]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"01_run1k","values":{"total":[36.106,33.809,35.417,33.539,35.235,35.353,35.782,35.458,36.289,34.764,35.745,34.869,36.682,34.926,35.544],"script":[2.687,2.426,2.586,2.558,2.617,2.577,2.46,2.464,2.631,2.55,2.724,2.464,2.639,2.479,2.423],"paint":[32.963,30.966,32.409,30.574,32.219,32.373,32.833,32.578,33.148,31.811,32.616,32.04,33.668,32.033,32.713]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.226,17.425,16.123,15.833,16.451,16.046,17.061,15.9,16.105,16.413,15.946,16.066,16.097,16.091,16.289],"script":[2.17,2.128,2.174,2.122,2.167,2.111,2.197,2.058,2.085,2.156,2.09,2.134,2.129,2.082,2.24],"paint":[13.646,14.889,13.552,13.315,13.87,13.528,14.444,13.435,13.579,13.86,13.453,13.52,13.535,13.603,13.662]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.549,17.055,16.838,16.626,16.847,16.398,16.777,16.588,17.002,16.112,17.484,16.409,16.608,16.232,16.257],"script":[1.774,0.939,1.7,1.303,2.058,1.468,1.748,1.405,1.659,1.594,1.471,1.319,1.505,1.396,1.511],"paint":[13.447,13.927,14.177,13.546,13.757,12.849,12.92,13.514,13.937,13.197,14.241,14.067,13.52,13.858,13.468]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.745,3.794,4.084,3.365,3.117,3.478,3.039,3.103,3.89,3.634,4.199,3.618,3.074,2.966,3.336,3.729,3.394,3.345,4.07,3.343,3.154,3.541,2.89,3.26,3.976],"script":[1.464,0.901,1.198,0.996,0.572,1.055,1.254,1.174,0.912,1.459,1.871,1.591,1.167,1.14,1.291,1.022,0.936,1.29,0.929,0.916,1.567,0.257,0.772,1.084,1.779],"paint":[2.171,2.625,1.758,1.537,1.499,2.312,1.342,1.834,2.862,0.555,1.843,1.843,1.299,1.716,1.223,2.235,2.351,1.947,2.098,1.509,0.967,3.184,1.617,1.34,2.039]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"05_swap1k","values":{"total":[19.814,20.411,19.597,20.422,19.512,19.085,19.989,19.858,19.593,19.103,19.811,20.219,19.281,19.202,19.122],"script":[1.846,2.176,1.465,1.578,1.482,1.039,1.869,1.964,1.207,1.468,1.903,1.406,0.979,1.617,1.294],"paint":[16.775,16.481,16.665,17.68,16.648,16.342,16.661,16.545,17.39,16.629,16.637,17.091,17.297,16.522,17.136]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.725,15.468,15.39,15.95,15.836,15.689,15.477,15.429,15.709,15.406,15.532,15.549,16.22,16.222,15.738],"script":[0.711,0.738,0.699,0.696,0.955,0.719,0.709,0.693,0.701,0.703,0.825,0.692,0.898,0.771,0.706],"paint":[14.243,13.992,13.664,14.303,14.177,14.141,13.744,13.73,14.088,13.67,13.989,14.181,14.65,14.742,14.272]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"07_create10k","values":{"total":[426.944,421.015,420.993,417.161,418.851,419.688,418.093,417.226,420.929,422.115,418.942,422.004,416.482,419.755,420.389],"script":[89.238,92.343,91.407,90.209,90.434,93.374,87.712,90.683,90.767,95.633,92.716,92.705,89.745,91.294,89.46],"paint":[330.975,322.063,322.89,320.298,321.537,319.593,323.712,319.761,323.76,319.597,319.637,322.409,320.13,321.625,324.053]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.807,47.708,47.367,47.845,47.532,47.838,47.545,47.533,47.181,47.325,49.076,47.08,47.876,47.541,47.554],"script":[9.78,9.475,9.408,9.609,9.817,9.698,9.702,9.565,9.685,9.48,9.395,9.663,9.724,9.533,9.795],"paint":[37.116,37.325,37.082,37.387,36.821,37.282,36.949,37.062,36.634,36.99,38.796,36.563,37.166,37.165,36.868]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.762,13.844,13.891,14.373,14.856,14.246,15.04,14.578,13.505,14.253,14.608,14.45,14.242,14.164,14.357],"script":[12.916,12.131,11.585,12.173,12.35,12.496,12.827,12.491,11.88,12.421,12.603,13.018,12.339,12.511,12.258],"paint":[1.739,1.186,2.21,1.064,2.408,1.659,1.852,1.994,0.705,1.044,1.341,1.339,1.804,0.715,0.979]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7299995422363281]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.890883445739746]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.992438316345215]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.204547882080078]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.10545349121094]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[33.0810546875]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.67578125]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.5]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"01_run1k","values":{"total":[44.509,42.564,44.117,42.935,43.065,42.068,42.5,43.074,43.619,43.203,43.065,42.575,42.839,41.887,42.781],"script":[9.726,8.935,9.203,8.997,8.912,9.076,9,9.278,9.195,8.974,9.384,8.862,9.132,8.572,8.857],"paint":[34.362,33.203,34.237,33.535,33.744,32.603,33.092,33.401,34.005,33.81,33.265,33.305,33.315,32.912,33.509]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"02_replace1k","values":{"total":[19.971,20.382,18.77,18.841,18.809,18.453,18.435,20.032,19.182,19.305,19.5,18.702,19.173,19.368,19.404],"script":[4.662,4.855,4.243,4.235,4.217,3.752,4.053,4.755,4.34,4.315,4.427,4.185,4.236,4.12,4.418],"paint":[14.893,15.094,14.094,14.156,14.136,14.261,14.004,14.796,14.391,14.582,14.671,14.071,14.504,14.83,14.584]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.207,19.577,18.744,20.858,20.514,19.979,20.427,20.328,18.593,19.497,19.65,20.932,18.454,18.535,18.994],"script":[3.527,3.892,3.054,3.385,3.749,3.117,3.802,3.461,2.326,3.56,3.399,3.969,2.712,3.241,3.516],"paint":[14.512,13.547,13.784,15.486,14.884,15.802,15.333,14.948,15.036,14.38,14.73,15.221,14.401,13.871,13.625]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"04_select1k","values":{"total":[4.221,3.689,3.756,3.826,4.299,3.968,4.022,4.321,4.591,4.609,5.488,3.182,4.013,4.167,3.882,4.436,4.233,3.899,4.668,4.755,3.545,3.866,4.511,5.328,3.502],"script":[1.885,1.404,1.314,1.549,1.554,1.016,1.551,2.031,1.416,2.02,1.776,1.426,1.7,2.039,1.459,1.504,1.759,1.511,1.769,2.149,1.242,1.747,1.728,1.481,1.08],"paint":[2.205,2.137,1.417,1.334,2.645,2.637,1.765,1.393,2.184,1.657,2.58,1.648,1.313,2.016,2.134,1.619,2.386,2.277,2.025,2.507,2.192,1.58,1.703,1.261,1.945]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"05_swap1k","values":{"total":[13.557,12.66,12.569,13.045,13.62,12.764,13.247,12.427,12.071,13.157,12.976,12.265,12.288,12.517,13.24],"script":[1.83,1.568,1.201,1.499,1.559,1.569,1.312,1.179,1.759,1.976,1.826,1.583,1.487,1.759,1.844],"paint":[10.977,9.832,10.091,9.839,10.944,10.176,9.689,9.082,9.303,9.544,9.855,9.362,9.426,9.217,10.384]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.461,38.681,37.732,38.131,37.752,38.075,37.805,37.397,37.863,37.401,41.81,38.762,41.589,37.506,37.89],"script":[7.283,7.557,6.826,7.054,6.929,7.16,7.193,6.743,6.875,6.709,7.568,7.373,7.53,6.864,7.247],"paint":[30.192,30.289,29.783,29.682,30.038,29.863,29.448,29.826,29.972,29.305,33.466,30.422,33.14,29.542,29.873]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"07_create10k","values":{"total":[438.945,443.713,444.26,443.231,442.341,444.149,440.802,432.604,440.847,436.557,439.472,441.341,444.032,439.147,440.829],"script":[94.4,95.904,99.786,97.792,98.101,99.411,98.408,97.263,96.29,97.732,95.501,98.454,100.263,92.298,95.586],"paint":[337.674,340.842,337.299,338.695,337.525,338.097,335.66,328.61,337.815,331.931,337.246,335.935,336.988,340.056,338.379]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.643,48.151,48.201,49.924,49.341,48.467,48.68,49.17,47.968,48.053,48.262,48.288,49.316,48.555,48.178],"script":[8.764,8.396,8.329,9.124,8.988,8.398,8.485,8.496,7.999,8.397,8.471,8.603,8.564,8.625,8.108],"paint":[39.026,38.865,39.003,39.94,39.521,39.186,39.308,39.697,39.085,38.801,38.931,38.798,39.912,38.975,39.196]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.952,14.584,15.519,16.14,15.765,15.397,15.928,16.309,14.863,14.354,15.764,15.411,14.884,15.348,15.68],"script":[14.054,12.88,13.438,14.08,14.007,12.918,14.109,14.226,12.708,12.171,14.124,13.773,12.205,13.351,13.872],"paint":[1.112,0.819,1.59,1.205,1.657,2.38,1.718,1.236,1.294,1.186,1.412,1.483,1.88,1.904,1.705]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7202816009521484]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.754087448120117]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.783806800842285]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1860589981079102]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.259394645690918]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[55.755859375]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20.46484375]}},{"framework":"vue-v3.4.18-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[101.6]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"01_run1k","values":{"total":[44.498,43.699,43.187,44.379,44.408,43.188,44.31,44.245,45.438,43.625,42.666,42.65,44.727,44.123,42.998],"script":[10.15,9.676,9.566,9.628,10.057,9.614,10.174,10.015,9.964,9.683,9.53,9.469,10.323,10.025,9.451],"paint":[33.9,33.56,33.178,34.24,33.887,33.105,33.679,33.768,34.984,33.483,32.684,32.713,33.955,33.616,33.082]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"02_replace1k","values":{"total":[17.669,17.42,17.722,17.559,17.296,17.519,17.583,17.491,17.548,18.258,17.582,17.593,17.479,17.58,17.397],"script":[2.71,2.642,2.771,2.635,2.631,2.614,2.729,2.675,2.68,2.719,2.676,2.661,2.64,2.665,2.627],"paint":[14.513,14.337,14.552,14.531,14.295,14.48,14.389,14.423,14.481,15.078,14.474,14.477,14.451,14.528,14.372]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.668,19.662,19.486,19.478,19.644,19.794,21.349,19.526,19.987,20.331,19.923,21.448,19.995,20.959,20.164],"script":[3.655,4.074,3.828,3.827,3.595,3.995,3.633,3.858,3.421,3.841,3.866,3.807,3.993,4.272,4.153],"paint":[14.669,13.433,13.703,14.265,13.501,14.479,15.804,13.413,15.247,14.601,13.3,15.81,13.359,14.778,14.803]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"04_select1k","values":{"total":[6.975,6.178,7.258,6.763,5.679,5.797,6.742,5.883,5.893,6.941,5.609,5.8,6.547,5.887,5.57,6.662,6.327,6.053,5.419,5.57,6.606,6.223,5.975,5.787,6.28],"script":[4.446,3.95,4.188,4.197,2.899,3.255,3.952,3.392,3.129,3.925,3.709,3.843,3.71,3.879,3.243,3.945,3.712,3.547,3.048,3.336,3.771,3.935,3.81,3.332,3.492],"paint":[1.958,1.936,2.058,1.365,2.046,1.493,2.285,1.237,2.488,2.885,1.794,1.369,2.7,1.218,2.224,1.862,2.321,1.726,1.229,1.653,2.696,1.507,1.453,2.022,2.649]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"05_swap1k","values":{"total":[13.194,13.698,12.994,13.986,12.38,13.292,13.542,13.372,13.56,13.31,13.422,13.234,12.94,13.523,13.155],"script":[2.177,1.569,1.394,2.209,1.826,2.24,1.818,2.388,1.884,1.808,1.797,1.495,1.782,1.891,2.028],"paint":[10.356,10.628,10.009,10.761,9.502,9.73,9.483,9.719,10.236,10.006,10.282,10.197,9.576,9.587,9.885]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.055,36.19,35.641,35.758,33.989,34.929,34.634,37.369,37.095,36.981,34.972,37.431,37.295,36.116,35.553],"script":[3.831,4.59,4.333,4.486,3.794,4.032,3.759,4.811,4.54,4.451,4.113,4.777,4.438,4.766,4.64],"paint":[30.463,30.547,30.164,30.456,29.142,29.549,30.077,31.713,31.386,31.69,29.659,31.492,31.661,30.523,29.515]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"07_create10k","values":{"total":[459.936,451.241,454.737,455.893,451.749,453.983,454.31,456.343,445.134,456.024,450.98,447.172,452.903,457.207,443.966],"script":[105.795,105.059,103.394,103.665,107.542,102.885,102.755,104.33,106.167,105.42,103.748,102.446,102.598,103.484,105.83],"paint":[347.223,339.369,344.443,345.315,337.018,344.236,344.738,345.192,332.15,343.72,340.425,337.825,343.435,346.924,331.321]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.126,49.345,49.969,49.924,49.932,49.968,50.641,49.269,50.72,50.646,51.137,50.667,50.64,50.622,50.606],"script":[9.555,9.317,9.625,9.505,9.408,9.795,10.05,9.414,9.656,10.303,10.307,10.316,9.931,10.242,9.811],"paint":[40.648,39.17,39.418,39.471,39.606,39.26,39.709,38.989,40.095,39.427,39.904,39.463,39.831,39.432,39.866]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.135,19.389,19.519,19.419,19.341,18.602,19.112,18.064,19.48,18.318,17.791,18.586,19.247,18.878,19.748],"script":[17.391,17.617,17.599,17.854,16.929,16.845,17.495,15.702,17.781,16.675,15.866,16.727,17.048,16.564,17.614],"paint":[2.045,1.644,1.053,1.456,2.3,1.647,1.506,2.081,1.359,1.545,1.654,1.756,1.619,1.783,1.999]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.559361457824707]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.609344482421875]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6329355239868164]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2088680267333984]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.76487922668457]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[29.119140625]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.8701171875]}},{"framework":"vue-vapor-v3.2024.0-66cea4b-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81.9]}}] \ No newline at end of file +[{"framework":"alpine-v3.12.0-keyed","benchmark":"01_run1k","values":{"total":[103.607,102.254,102.591,103.227,103.918,107.872,106.871,106.214,109.419,107.731,105.471,106.149,106.285,106.437,107.222],"script":[68.895,67.427,67.459,68.012,68.903,69.495,70.204,69.632,71.934,70.247,69.31,69.715,69.909,70.139,70.882],"paint":[34.232,34.351,34.657,34.756,34.555,37.887,36.129,36.05,36.972,37.009,35.676,35.952,35.9,35.832,35.864]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"02_replace1k","values":{"total":[125.675,126.615,125.484,126.377,127.919,129.478,128.177,126.176,128.629,128.274,128.225,125.961,126.01,127.082,125.97],"script":[90.378,93.931,91.434,92.303,94.46,95.374,95.313,91.875,93.746,95.624,95.219,91.899,92.24,94.267,93.084],"paint":[34.686,32.034,33.518,33.557,32.941,33.576,32.348,33.777,34.37,32.132,32.491,33.538,33.214,32.308,32.375]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.216,22.378,22.123,24.056,22.349,22.594,22.218,22.033,26.049,22.659,22.544,21.581,22.753,21.603,22.277],"script":[5.201,4.837,4.888,4.848,4.539,5.205,4.658,4.766,4.842,4.706,5.021,4.707,5.082,4.914,4.943],"paint":[15.481,15.429,15.773,17.804,16.272,15.652,16.054,15.928,18.977,15.993,15.894,15.488,16.148,14.654,15.047]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"04_select1k","values":{"total":[36.747,36.725,34.089,33.967,36.758,33.631,36.617,40.243,37.58,35.255,36.84,37.012,36.843,34.378,33.205,36.281,34.098,34.895,33.844,34.453,34.041,33.738,35.621,33.985,32.594],"script":[29.336,30.715,29.819,30.498,29.261,29.576,29.702,32.31,31.515,30.687,31.767,32.738,32.832,30.689,30.392,30.03,30.665,31.569,30.34,30.842,30.665,30.659,31.81,30.607,29.46],"paint":[6.249,5.525,3.252,2.581,5.735,3.154,5.764,6.926,5.134,4.33,3.159,2.848,2.699,2.793,1.61,5.3,2.618,2.44,2.255,2.742,2.007,2.239,2.335,3.186,2.143]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"05_swap1k","values":{"total":[35.981,33.578,32.108,33.094,33.526,32.616,33.118,34.254,32.774,34.354,34.193,34.011,32.586,33.577,33.461],"script":[12.639,13.3,12.353,13.01,12.881,12.131,12.285,13.715,12.462,12.749,13.315,13.01,12.067,13.359,13.104],"paint":[20.891,19.024,18.384,18.237,18.782,18.475,19.479,18.653,18.096,19.171,18.228,19.154,18.986,18.836,18.748]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.704,24.981,24.282,24.219,24.421,24.02,24.072,24.29,24.384,24.221,24.989,23.986,23.892,24.178,26.632],"script":[8.649,8.396,8.369,8.258,8.138,8.205,8.13,8.188,8.043,8.285,8.284,8.011,7.52,8.229,8.308],"paint":[14.779,15.495,14.876,14.947,15.36,14.789,15.169,15.052,15.583,14.7,15.733,15.094,15.343,14.936,17.521]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"07_create10k","values":{"total":[947.253,941.109,939.441,941.708,936.228,932.425,943.091,943.124,942.337,939.233,935.55,917.989,917.258,948.936,935.121],"script":[583.398,589.414,589.875,588.497,585.727,581.678,591.654,590.298,584.783,588.118,584.933,565.909,567.488,591.836,581.664],"paint":[356.865,344.775,342.423,346.369,343.58,343.82,344.533,345.15,350.67,344.245,343.679,345.22,342.854,350.185,346.631]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[119.145,122.647,118.164,119.258,119.248,119.22,117.88,119.267,118.915,118.937,118.59,118.347,119.077,119.633,119.166],"script":[80.514,83.019,80.482,81.704,80.86,80.402,80.195,82.121,82.268,82.059,81.042,81.228,81.512,80.218,81.814],"paint":[37.652,38.666,36.707,36.581,37.438,37.755,36.718,36.169,35.702,35.925,36.572,36.158,36.582,38.216,36.385]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[53.849,52.829,52.801,52.977,52.313,53.284,52.711,52.509,52.398,51.392,50.835,50.894,51.945,54.888,51.577],"script":[51.64,49.996,50.787,50.783,50.35,51.165,50.668,50.05,50.198,48.761,48.592,49.297,49.762,52.024,49.995],"paint":[1.241,1.585,1.392,2.054,1.303,1.978,1.507,2.314,1.478,1.688,2.104,1.465,1.423,1.461,0.935]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6623735427856445]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[13.917808532714844]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[14.029696464538574]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.5181503295898438]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[128.82764625549316]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.7734375]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.576171875]}},{"framework":"alpine-v3.12.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.9]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[54.37,55.43,56.193,57.707,56.183,56.953,57.094,57.772,57.703,57.515,56.645,55.272,56.629,55.74,55.919],"script":[19.759,21.275,20.78,22.091,20.708,21.436,21.356,21.475,21.895,20.568,21.452,19.588,21.326,20.794,20.925],"paint":[34.191,33.713,34.993,35.191,35.036,35.101,35.298,35.847,35.378,36.515,34.76,35.231,34.857,34.485,34.516]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[68.309,70.936,66.799,69.121,68.242,67.256,68.034,66.842,69.719,71.703,70.363,69.611,70.722,70.61,67.167],"script":[31.321,33.484,31.323,32.294,30.912,31.389,31.39,30.522,31.107,32.87,31.321,31.293,31.344,31.861,31.393],"paint":[36.524,36.994,35.044,36.383,36.875,35.418,36.167,35.882,38.166,38.364,38.61,37.872,38.918,38.301,35.323]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.64,28.336,27.064,27.541,26.331,28.173,26.2,26.223,29.892,28.155,27.681,26.112,28.009,28.109,26.688],"script":[10.814,10.683,10.268,10.492,10.352,10.573,10.232,9.978,11.308,10.897,10.475,10.372,10.254,10.867,10.557],"paint":[17.208,15.987,14.239,15.68,13.839,16.299,14.139,15.251,16.247,15.175,16.166,14.579,16.414,15.666,14.533]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[11.757,11.661,11.334,10.756,11.606,11.365,12.142,11.771,12.381,11.086,11.707,12.404,11.448,10.884,12.287,12.112,11.893,12.422,11.769,12.196,10.866,11.491,12.031,11.763,12.308],"script":[8.831,8.252,8.49,8.184,9.175,9.349,8.705,8.706,8.762,8.71,8.708,8.52,8.716,8.653,9.131,9.339,8.629,8.444,8.992,9.486,8.817,9.015,9.334,9.036,9.196],"paint":[2.055,3.253,1.976,2.441,1.331,1.146,2.948,2.744,2.994,1.361,2.485,3.704,2.164,2.104,2.612,1.978,3.118,3.199,2.629,2.168,1.182,1.902,2.556,1.71,2.96]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[28.251,27.77,27.889,27.715,27.665,28.975,28.476,28.564,27.814,28.114,27.855,27.854,27.706,31.639,27.945],"script":[9.198,9.07,8.692,8.477,9.222,9.094,9.487,8.835,9.018,9.48,9.472,9.52,9.26,10.431,8.921],"paint":[17.208,17.668,17.078,18.463,17.627,17.902,17.887,17.96,17.149,17.064,16.851,17.054,16.834,19.894,17.195]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[109.721,106.542,109.547,107.459,108.409,108.922,107.581,108.452,108.507,107.021,107.658,106.712,107.627,108.471,108.369],"script":[36.156,35.697,37.157,36.196,35.989,35.936,36.8,36.655,36.054,35.529,36.267,35.324,36.528,36.258,35.928],"paint":[72.03,69.551,71.358,69.904,71.151,71.812,69.863,70.3,71.107,70.249,70.176,70.138,69.911,71.025,71.235]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[601.542,610.266,600.617,603.254,602.341,599.173,603.699,614.448,618.358,588.921,601.52,593.562,602.83,598.929,595.312],"script":[235.44,243.767,235.048,245.219,238.09,235.784,241.764,247.02,252.06,229.12,234.443,234.636,241.776,234.555,237.406],"paint":[359.296,359.795,358.905,351.093,357.561,356.742,355.255,360.788,359.413,353.163,360.346,352.318,354.397,357.712,351.237]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[71.213,71.177,69.939,69.811,70.625,70.132,69.728,69.887,69.813,70.315,70.936,69.857,70.435,69.26,70.586],"script":[30.618,31.021,30.508,30.347,31.17,29.946,30.153,30.369,30.54,30.414,31.211,30.226,31.218,29.86,30.99],"paint":[39.668,39.256,38.51,38.548,38.573,39.292,38.688,38.607,38.371,38.996,38.834,38.758,38.329,38.513,38.704]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.872,18.231,18.403,19.453,17.763,19.551,18.606,17.058,17.776,18.839,19.102,17.119,17.381,19.794,18.485],"script":[15.598,16.649,16.723,16.988,15.585,17.824,16.648,14.75,15.918,17.21,17.234,15.206,15.484,17.153,16.9],"paint":[1.252,1.069,1.202,1.752,1.409,1.62,1.643,1.884,1.283,1.523,1.423,1.624,1.073,2.542,1.481]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44365596771240234]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.599560737609863]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.491524696350098]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.826088905334473]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.56851291656494]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.1123046875]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[73.4833984375]}},{"framework":"anansi-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[41.4]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"01_run1k","values":{"total":[44.889,44.044,45.891,44.714,44.762,45.363,46.007,44.772,44.555,44.064,43.682,45.863,43.279,46.656,44.323],"script":[9.657,9.25,10.202,10.053,10.152,10.273,9.926,9.672,9.447,9.099,8.851,10.352,9.091,9.809,9.519],"paint":[34.807,34.372,35.259,34.218,34.184,34.661,35.668,34.669,34.695,34.544,34.397,35.085,33.76,36.417,34.367]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"02_replace1k","values":{"total":[56.046,53.898,55.218,54.382,54.087,54.766,54.793,54.183,55.739,55.801,55.502,54.111,54.119,54.022,54.412],"script":[16.937,16.133,16.407,16.041,15.916,15.959,16.194,16.118,16.365,17.282,16.716,15.929,16.342,16.107,16.423],"paint":[38.636,37.287,38.337,37.847,37.613,38.328,38.11,37.588,38.86,38.067,38.311,37.715,37.305,37.449,37.522]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.87,17.233,17.348,19.222,17.287,17.048,17.302,17.731,18.153,18.063,18.623,18,17.482,16.64,17.523],"script":[1.493,1.514,1.842,2.73,1.961,1.35,1.506,2.347,1.752,1.77,2.083,2.309,2.066,1.046,1.961],"paint":[14.521,14.662,13.98,14.989,14.263,14.15,13.659,13.758,13.547,14.546,15.387,13.587,13.737,14.622,13.985]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"04_select1k","values":{"total":[3.655,3.902,3.912,3.523,3.918,3.513,3.41,3.762,4.143,3.86,3.794,4.57,3.951,4.312,3.328,3.939,3.899,4.222,3.747,3.688,4.177,3.823,3.726,4.934,3.939],"script":[1.275,1.542,1.514,1.016,0.631,1.304,0.918,1.053,1.532,1.559,1.284,1.312,1.276,0.916,1.143,1.259,1.065,1.348,1.241,1.737,1.262,1.358,0.676,1.865,1.274],"paint":[2.294,2.266,1.91,1.772,3.192,1.347,2.397,2.257,2.086,2.142,2.417,2.857,2.579,3.299,2.078,1.678,2.739,2.37,1.986,1.86,1.92,1.836,2.961,2.78,1.704]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"05_swap1k","values":{"total":[20.385,19.744,19.835,19.935,21.784,19.465,20.465,19.685,20.039,20.317,20.009,19.967,21.443,19.404,20.202],"script":[1.806,1.117,1.724,1.488,1.658,1.037,1.569,1.265,1.637,1.353,2.097,1.437,1.019,1.313,1.718],"paint":[16.362,17.122,17.369,17.742,18.617,16.954,17.517,16.72,17.2,17.344,16.671,16.709,17.931,16.76,17.492]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.967,16.079,15.913,15.921,15.746,15.94,15.515,15.751,17.35,15.485,15.87,16.13,15.905,16.018,16.159],"script":[1.097,1.1,1.071,1.07,0.928,1.035,0.775,1.002,0.963,0.777,1.102,0.845,0.965,1.097,1.071],"paint":[14.171,13.966,14.142,14.166,14.125,14.017,13.824,14.054,15.325,13.829,14.079,14.548,14.247,14.163,14.215]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"07_create10k","values":{"total":[452.838,445.978,452.346,445.026,444.628,445.789,447.831,447.077,448.97,442.659,449.835,447.42,445.271,444.143,444.344],"script":[101.376,102.436,106.789,100.778,100.802,101.97,101.889,101.978,101.531,100.493,103.619,103.02,101.567,100.321,101.813],"paint":[344.643,336.735,338.529,337.426,337.127,337.044,338.564,338.004,340.511,335.44,339.473,337.696,336.966,337.138,335.84]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.208,47.798,47.636,48.441,49.823,47.285,48.056,48.429,47.914,49.122,48.966,48.752,48.963,49.18,49.652],"script":[8.434,8.597,8.334,8.507,9.049,8.329,8.257,8.294,8.588,8.675,8.442,8.322,8.539,8.538,8.746],"paint":[38.888,38.278,38.41,39.053,39.856,38.077,38.861,39.261,38.424,39.546,39.627,39.537,39.525,39.676,40.028]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.394,24.243,24.258,24.109,24.933,25.528,24.029,24.091,24.293,25.059,23.381,24.321,23.732,22.652,23.421],"script":[22.561,22.435,22.316,21.888,22.914,23.967,21.873,22.352,22.396,22.999,21.272,22.225,22.066,20.946,21.514],"paint":[0.9,1.705,1.838,2.11,1.766,1.438,1.296,1.43,1.029,1.961,1.661,1.989,0.726,0.764,1.82]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.406661033630371]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.666803359985352]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.87972354888916]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.193966865539551]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.7732515335083]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[137.7392578125]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[42.990234375]}},{"framework":"angular-cf-v17.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[198.2]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"01_run1k","values":{"total":[45.075,44.244,45.397,45.282,44.363,44.21,44.132,44.033,44.077,44.065,44.139,43.954,44.668,44.07,44.942],"script":[9.1,8.493,9.062,9.393,8.682,8.46,8.615,8.691,8.844,8.845,8.767,8.852,8.729,8.957,9.04],"paint":[35.527,35.309,35.887,35.444,35.25,35.31,35.067,34.915,34.814,34.781,34.937,34.66,35.471,34.687,35.473]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"02_replace1k","values":{"total":[51.087,50.573,50.414,51.577,50.772,51.155,51.606,51.441,51.291,51.273,52.817,50.597,52.015,51.117,50.892],"script":[14.469,14.182,14.528,14.472,14.288,14.167,13.97,14.384,14.599,14.038,15.146,13.541,14.257,14.355,14.129],"paint":[36.16,35.953,35.438,36.669,36.046,36.535,37.172,36.554,36.245,36.794,37.202,36.608,37.318,36.301,36.3]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.988,18.64,17.21,17.53,17.25,17.156,16.74,17.931,17.895,17.511,17.338,17.411,17.432,17.636,16.935],"script":[2.41,1.935,1.598,1.855,2.239,2.071,1.333,2.456,1.87,1.595,1.586,1.948,1.507,2.146,1.629],"paint":[13.208,14.484,14.185,13.834,13.79,13.381,14.089,13.849,14.495,14.557,13.408,14.067,14.6,12.435,14.234]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"04_select1k","values":{"total":[3.942,4.52,3.741,3.661,3.666,4.042,4.73,4.004,3.795,3.515,4.143,3.722,4.667,3.756,4.202,4.393,4.589,3.506,3.941,4.287,3.471,3.981,3.298,3.948,4.224],"script":[1.571,1.255,1.014,1.326,0.926,1.484,1.545,0.907,1.291,1.238,1.895,1.709,1.702,0.981,1.555,1.493,1.466,0.987,1.459,1.944,1.549,1.928,1.138,1.519,1.277],"paint":[1.625,3.172,2.303,2.235,2.657,1.564,2.875,2.466,2.406,1.389,1.788,1.915,2.855,1.689,1.979,2.737,1.965,1.621,2.391,2.245,1.823,1.955,2.062,2.195,2.85]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"05_swap1k","values":{"total":[20.642,20.305,21.28,19.827,20.53,20.736,21.671,19.69,19.176,19.505,19.938,19.901,21.285,19.693,19.755],"script":[1.786,1.83,2.315,1.314,1.968,1.701,0.988,1.569,1.062,1.565,1.587,1.378,1.587,1.764,1.489],"paint":[17.123,17.181,16.994,17.462,17.452,17.707,19.322,16.674,17,16.352,17.047,17.372,17.869,16.394,16.723]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.731,15.979,15.898,15.842,16.295,15.942,15.993,15.854,15.965,15.72,15.876,16.726,16.009,15.969,15.981],"script":[0.908,0.904,1.039,1.019,0.842,1.074,0.917,1.08,0.732,0.899,0.969,0.766,0.993,1.041,1.017],"paint":[13.998,14.371,14.159,14.082,14.589,13.863,14.377,14.093,14.489,14.15,14.193,14.961,14.293,14.227,14.242]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"07_create10k","values":{"total":[441.104,442.817,445.865,446.514,450.346,443.621,440.538,442.616,440.573,445.996,442.315,445.258,450.994,444.511,440.3],"script":[90.95,91.861,92.569,91.628,92.326,92.672,91.7,92.025,91.643,91.749,91.925,93.761,93.204,92.185,91.334],"paint":[343.474,344.112,346.31,348.319,351.077,344.06,342.171,343.902,342.262,347.352,343.761,344.815,351.155,345.668,342.3]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.234,48.215,48.979,48.771,48.865,48.601,48.286,49.051,49.254,49.881,48.443,48.45,48.94,47.534,47.125],"script":[8.768,7.877,8.138,8.112,7.761,7.963,7.786,8.4,7.912,8.258,8.199,8.041,8.261,7.792,7.832],"paint":[39.51,39.375,39.871,39.734,40.158,39.747,39.611,39.725,40.422,40.711,39.333,39.479,39.542,38.812,38.372]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.865,20.632,22.387,20.846,21.663,24.1,20.885,20.869,21.827,21.1,20.19,21.553,19.467,21.24,21.742],"script":[19.994,18.933,19.752,18.763,19.862,20.832,19.394,18.668,20.286,18.949,18.665,19.586,17.768,18.758,19.199],"paint":[1.24,1.603,2.486,1.993,1.704,2.64,1.388,2.113,1.45,1.931,1.414,1.835,1.597,2.381,2.454]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9627647399902344]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5691938400268555]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.726968765258789]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.6038713455200195]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.216822624206543]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[105.8125]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.48828125]}},{"framework":"angular-cf-nozone-v17.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[151.2]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"01_run1k","values":{"total":[44.338,44.53,43.096,44.903,43.607,42.76,42.378,44.063,44.449,46.013,45.162,43.11,45.172,43.544,45.183],"script":[9.596,9.859,9.504,10.097,9.369,8.954,9.127,9.207,9.753,9.785,9.616,9.403,9.525,9.259,9.826],"paint":[34.299,34.168,33.168,34.357,33.82,33.381,32.833,34.423,34.264,35.824,35.044,33.278,35.212,33.86,34.94]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"02_replace1k","values":{"total":[55.033,55.022,54.374,54.626,54.914,54.488,54.313,54.482,55.376,54.803,54.562,54.393,55.126,55.074,55.593],"script":[16.842,16.871,16.245,16.198,16.462,16.42,16.485,16.787,16.9,16.565,16.501,16.453,16.604,16.758,17.125],"paint":[37.658,37.67,37.658,37.945,37.974,37.59,37.34,37.229,38.012,37.769,37.599,37.471,38.029,37.866,37.989]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.34,18.269,18.09,17.589,17.401,17.882,17.352,17.893,17.325,18.872,18.234,17.635,18.989,17.685,18.11],"script":[2.279,2.653,2.437,1.956,1.508,3.343,2.75,2.57,2.273,3.029,2.39,2.748,2.391,2.256,2.895],"paint":[14.244,14.698,14.594,12.769,14.149,12.378,13.577,13.735,13.822,14.565,14.183,12.887,13.799,14.414,13.836]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"04_select1k","values":{"total":[5.705,5.239,5.042,6.119,5.405,5.792,5.44,7.018,5.706,5.17,5.337,5.646,5.665,5.315,5.802,6.015,5.773,6.32,6.053,5.886,5.868,5.528,6.108,4.953,5.81],"script":[2.197,2.281,1.899,2.521,2.337,1.516,2.394,3.082,2.522,2.214,2.26,2.175,2.294,2.299,2.511,2.775,2.403,2.897,2.539,2.229,2.713,2.393,2.6,1.56,2.636],"paint":[2.267,2.161,2.484,2.453,2.132,3.228,2.905,3.774,3.029,2.79,2.235,2.784,2.89,2.878,3.069,3,3.087,2.694,2.998,2.791,1.886,2.997,3.376,2.139,3.038]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"05_swap1k","values":{"total":[21.488,20.328,19.373,20.596,21.248,19.4,19.407,19.825,19.46,19.073,18.94,19.953,19.717,18.778,19.91],"script":[1.828,1.121,1.213,1.282,1.41,1.779,1.283,0.999,1.652,1.535,1.115,1.412,1.425,1.248,1.778],"paint":[18.094,18.095,16.484,18.079,17.965,16.481,16.578,17.062,16.762,16.214,15.993,17.128,17.298,15.852,16.919]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.05,17.554,16.911,18.388,16.967,17.557,17.677,17.257,18.104,19.322,18.696,18.103,18.238,18.581,17.956],"script":[1.297,1.519,1.343,1.318,1.429,1.345,1.627,1.329,1.375,1.599,1.518,1.349,1.456,1.574,1.198],"paint":[14.985,14.97,14.767,16.231,14.776,15.217,15.013,15,15.869,16.6,16.302,15.659,15.302,15.993,16]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"07_create10k","values":{"total":[450.625,451.611,448.179,452.474,450.697,453.732,450.589,454.596,451.244,450.347,457.048,459.099,452.868,449.202,450.091],"script":[103.289,104.552,103.482,104.236,104.686,104.126,103.86,106.387,104.252,105.157,110.143,111.193,103.312,103.209,104.272],"paint":[340.449,340.297,337.759,341.452,339.264,342.326,340.026,341.478,340.316,338.226,340.02,341.026,342.673,339.129,338.95]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.739,49.65,50.588,49.052,50.957,49.469,49.914,48.677,51.271,48.577,49.4,50.003,49.417,49.547,51.37],"script":[9.083,8.901,9.032,8.898,9.826,9.21,9.111,9.111,9.782,9.059,8.991,9.368,9.065,9.058,9.363],"paint":[39.765,39.847,40.633,39.23,40.167,39.355,39.895,38.659,40.55,38.615,39.504,39.716,39.34,39.579,41.049]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.017,24.562,24.413,24.533,23.785,24.229,24.832,23.381,23.739,24.368,25.021,23.874,24.595,25.284,23.886],"script":[21.488,22.673,22.019,22.904,21.712,22.236,22.483,21.237,21.644,22.776,23.066,21.868,22.521,23.401,22.279],"paint":[1.799,1.778,2.025,1.523,1.963,1.831,1.481,2.051,1.364,0.702,1.323,1.529,1.677,1.782,1.052]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4137916564941406]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.768803596496582]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.942601203918457]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2640390396118164]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.996676445007324]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[139.2041015625]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[43.427734375]}},{"framework":"angular-cf-signals-v17.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[198.2]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"01_run1k","values":{"total":[45.351,47.489,45.138,46.255,45.693,45.588,45.233,47.09,45.479,45.824,44.418,46.041,45.782,45.516,45.56],"script":[10.089,11.08,10.589,10.213,10.508,10.72,10.664,11.01,10.352,10.386,10.744,10.524,10.525,10.461,11.06],"paint":[34.815,35.984,34.111,35.331,34.747,34.425,34.116,35.637,34.692,35.011,33.245,35.086,34.829,34.633,34.09]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"02_replace1k","values":{"total":[54.622,55.235,54.833,54.493,53.816,54.999,55.274,56.328,55.556,54.518,54.796,54.865,54.954,54.036,55.254],"script":[16.526,17.301,16.5,16.442,16.597,16.907,16.425,16.382,16.509,16.48,16.625,16.752,16.401,16.365,16.274],"paint":[37.609,37.45,37.861,37.571,36.752,37.622,38.358,39.465,38.554,37.571,37.707,37.624,38.083,37.188,38.501]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.643,17.032,19.926,17.517,17.657,17.904,17.794,17.376,16.736,19.016,18.256,18.711,16.848,17.172,17.576],"script":[1.674,1.832,2.067,2.271,2.154,1.238,1.215,1.648,1.762,2.113,2.193,2.013,1.547,1.867,2.096],"paint":[16.019,14.35,16.122,13.926,14.553,15.283,14.986,14.547,13.43,15.507,14.411,15.17,13.675,14.126,13.854]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"04_select1k","values":{"total":[3.901,4.295,3.947,3.664,3.85,4.19,4.366,4.078,4.313,4.373,3.889,3.689,4.141,4.171,3.676,4.937,4.295,3.7,3.935,3.85,3.752,3.884,3.884,3.484,3.495],"script":[1.564,1.701,1.244,1.391,1.263,1.46,1.781,1.467,1.574,1.713,0.773,0.947,1.151,1.523,1.41,1.58,2.041,1.188,1.848,1.402,1.042,1.092,1.4,0.963,0.964],"paint":[2.244,1.839,2.242,1.804,2.492,1.958,2.487,2.518,2.631,1.252,2.845,1.712,1.876,2.56,1.624,2.8,1.67,2.408,1.988,2.355,2.419,2.701,2.388,2.115,2.434]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"05_swap1k","values":{"total":[174.157,168.981,171.799,170.208,168.986,169.787,170.059,168.426,169.835,170.015,169.497,170.325,175.266,174.904,173.727],"script":[28.343,27.889,28.507,27.344,27.634,27.999,28.232,28.244,27.557,28.501,27.321,27.691,28.203,29.174,28.114],"paint":[143.746,139.476,142.502,140.769,139.352,140.182,140.075,138.317,140.208,138.923,139.868,141.024,144.123,144.593,143.242]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.634,16.224,16.03,16.039,16.318,16.313,16.863,16.025,15.948,15.961,16.07,15.92,16.029,15.943,16.03],"script":[1.047,1.131,0.938,0.84,0.928,0.84,1.128,1.017,0.779,0.92,0.924,1.061,0.909,1.102,1.096],"paint":[14.146,14.386,14.421,14.246,14.706,14.691,14.746,14.306,14.547,14.368,14.391,13.896,14.143,13.847,13.913]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"07_create10k","values":{"total":[454.042,452.019,451.221,453.252,456.209,451.414,448.799,450.313,456.832,449.676,452.098,451.186,449.079,450.811,457.115],"script":[102.658,103.97,103.924,108.447,108.995,107.089,103.592,107.938,105.998,103.14,106.055,103.758,103.931,102.341,110.041],"paint":[344.446,341.028,340.398,338.106,340.476,337.561,338.224,335.612,343.933,339.619,339.111,340.056,338.174,341.41,340.333]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.544,48.672,49.648,50.894,49.101,50.479,48.394,50.022,50.406,49.054,49.016,49.454,51.544,49.743,49.673],"script":[9.136,8.88,8.96,9.401,8.922,9.387,8.997,9.213,9.698,8.984,8.996,9.344,9.751,9.044,9.304],"paint":[40.5,38.895,39.845,40.585,39.289,40.182,38.503,39.914,39.777,39.165,39.113,39.193,40.845,39.737,39.453]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.718,25.931,25.559,26.223,25.935,25.651,25.301,26.114,26.098,27.077,26.419,27.16,27.411,27.063,26.949],"script":[24.49,23.972,23.403,24.512,23.997,23.77,24.027,24.602,24.324,25.023,24.245,25.154,24.329,24.301,24.563],"paint":[2.092,1.342,2.032,1.274,1.833,1.769,0.823,1.422,0.825,1.939,0.769,1.737,1.429,2.644,1.894]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4721183776855469]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.920070648193359]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.068483352661133]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.473480224609375]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.3015079498291]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[147.0751953125]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.1875]}},{"framework":"angular-ngfor-v17.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[205.4]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"01_run1k","values":{"total":[46.945,47.197,44.759,46.455,44.185,44.403,45.68,46.573,44.763,45.976,46.242,46.308,46.251,47.388,45.505],"script":[11.194,11.406,10.306,11.982,10.153,10.423,11.09,11.147,10.752,11.114,10.928,10.866,11.133,11.248,10.476],"paint":[35.316,35.339,33.996,34.001,33.594,33.557,34.122,35,33.577,34.42,34.882,35.028,34.693,35.684,34.602]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"02_replace1k","values":{"total":[52.614,52.562,54.222,53.926,54.324,53.719,53.767,55.216,55.673,52.451,53.978,53.771,54.515,54.91,54.586],"script":[17.004,16.454,17.162,17.665,16.938,17.447,17.6,17.689,17.872,16.63,17.663,17.431,17.824,18.399,16.461],"paint":[35.147,35.64,36.585,35.816,36.943,35.822,35.703,37.071,37.311,35.368,35.862,35.896,36.238,36.037,37.697]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[56.94,56.19,56.117,56.26,55.488,55.212,54.329,55.851,56.149,56.551,56.219,53.907,55.096,59.647,55.857],"script":[40.534,39.236,39.405,38.852,39.153,37.988,37.517,39.227,39.247,38.329,39.287,37.57,38.194,40.844,37.98],"paint":[14.739,15.5,14.671,16.045,14.385,15.751,15.361,15.283,15.384,16.766,14.912,14.797,15.747,16.556,15.933]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"04_select1k","values":{"total":[40.856,39.771,40.844,39.658,41.599,40.51,38.665,38.869,39.828,40.238,38.752,40.711,39.721,39.585,39.501,40.783,38.283,38.386,38.993,40.453,39.169,36.604,40.17,40.421,41.711],"script":[36.804,36.451,37.021,36.1,37.379,37.067,34.386,35.047,35.568,36.296,34.79,36.623,35.716,35.189,35.271,36.803,34.857,35.227,34.314,36.804,35.846,32.876,36.507,36.644,38.335],"paint":[2.588,1.974,2.749,2.252,3.097,2.727,2.48,2.618,3.6,3.102,3.335,2.936,2.776,2.244,3.235,2.964,2.404,2.067,3.454,2.679,2.208,2.732,2.538,2.762,2.653]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"05_swap1k","values":{"total":[55.499,56.166,56.161,53.612,53.7,56.018,55.134,54.609,54.858,55.045,54.683,55.379,54.721,54.675,53.836],"script":[36.206,36.62,37.415,34.798,34.414,36.298,34.552,35.179,35.553,36.61,35.366,36.147,35.801,34.921,35.079],"paint":[17.593,18.428,17.715,17.749,17.026,18.315,19.199,18.113,17.693,16.59,17.438,17.729,16.693,17.727,17.513]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[123.214,122.717,122.118,119.768,120.84,120.596,122.006,119.961,120.416,122.904,120.289,121.156,121.141,121.898,124.057],"script":[49.069,51.255,49.751,48.157,48.558,48.413,50.533,48.534,48.393,50.876,48.471,49.006,49.63,49.831,49.034],"paint":[72.738,70.582,71.107,70.52,70.722,70.8,70.009,70.516,70.793,71.089,70.685,70.837,70.289,70.655,73.83]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"07_create10k","values":{"total":[488.535,491.712,488.045,474.012,489.716,488.971,491.376,488.359,488.716,489.745,497.135,488.893,491.193,492.703,473.195],"script":[138.271,139.831,140.214,139.885,138.918,139.474,141.169,138.372,139.613,142.415,142.926,141.059,140.275,140.685,139.697],"paint":[343.453,344.833,340.921,327.522,344.106,342.791,343.342,343.362,342.214,340.602,347.384,340.787,343.713,345.185,326.803]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.883,62.86,62.774,62.146,62.831,62.503,63.179,62.604,64.196,62.343,63.14,60.534,62.578,63.256,62.497],"script":[21.9,21.738,21.252,21.057,22.373,22.07,22.61,22.398,23.129,21.883,22.621,20.714,21.49,22.215,21.886],"paint":[40.066,40.232,40.527,40.196,39.542,39.499,39.678,39.306,40.182,39.561,39.625,38.925,40.165,40.033,39.699]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.929,15.456,16.359,18.261,15.419,16.897,15.575,17.006,15.458,17.338,16.53,16.738,17.371,16,15.374],"script":[15.169,13.507,14.679,16.407,13.438,15.548,13.486,15.215,13.615,15.468,14.636,14.947,15.563,14.619,13.573],"paint":[1.659,1.862,0.783,0.883,0.96,0.867,1.838,0.988,0.904,1.788,1.616,0.907,1.718,0.357,1.706]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5494728088378906]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.548704147338867]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8187255859375]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.768355369567871]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.974596977233887]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.1806640625]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.8984375]}},{"framework":"apprun-v3.30.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[66]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"01_run1k","values":{"total":[99.724,98.562,98.513,99.406,98.8,98.872,98.104,98.266,96.954,99.051,97.279,100.345,99.579,100.262,99.873],"script":[62.441,61.203,60.188,61.019,61.544,61.537,60.545,60.268,60.214,61.774,60.57,62.729,61.405,62.299,61.917],"paint":[37.075,37.153,38.114,38.19,37.042,37.124,37.346,37.797,36.533,37.075,36.515,37.407,37.961,37.74,37.739]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"02_replace1k","values":{"total":[105.86,105.103,105.06,105.072,95.845,106.95,103.059,104.882,105.531,105.31,103.777,106.748,103.591,107.035,103.818],"script":[66.528,67.001,66.657,70.52,60.457,67.614,65.439,66.489,66.75,66.419,65.879,66.61,65.42,67.207,65.737],"paint":[39.106,37.885,38.158,34.182,35.169,38.926,37.392,38.167,38.55,38.681,37.672,39.933,37.962,39.443,37.854]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[45.739,50.779,50.558,51.948,51.326,50.778,49.147,47.62,47.968,48.056,49.397,47,49.908,47.781,47.714],"script":[29.643,31.654,31.91,32.855,33.377,32.015,33.132,31.34,30.871,32.056,30.716,30.249,31.828,31.517,31.436],"paint":[15.916,16.913,17.429,18.625,17.638,17.837,15.86,16.138,16.105,15.86,16.881,16.604,17.382,15.992,16.129]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"04_select1k","values":{"total":[14.503,13.899,16.42,13.792,11.266,13.962,13.833,15.109,15.449,14.222,13.865,14.569,14.232,12.379,16.683,15.095,13.749,17.046,13.97,14.266,14.203,15.711,14.225,14.307,13.973],"script":[8.258,8.219,8.627,8.103,8.271,8.122,8.389,8.822,9.482,7.784,9.186,8.65,8.156,7.113,9.501,8.817,9.037,8.58,7.54,8.545,8.175,9.601,8.435,7.683,8.517],"paint":[4.33,4.849,4.463,4.444,2.783,3.612,4.428,4.209,4.81,4.251,3.153,3.688,4.871,5.071,5.694,5.768,4.389,7.095,3.692,3.691,5.152,4.29,5.284,4.637,3.236]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"05_swap1k","values":{"total":[54.881,52.954,53.218,53.77,53.799,54.857,53.326,54.655,54.722,54.884,55.946,53.493,54.874,55.034,52.826],"script":[32.699,30.633,30.925,30.924,31.804,32.537,31.393,33.198,32.476,33.263,31.569,33.269,32.897,31.474,30.821],"paint":[21.02,20.936,20.575,20.762,19.831,19.212,20.432,20.761,21.789,20.324,22.415,20.055,18.878,22.217,21.198]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[97.799,98.343,100.912,98.808,97.22,96.172,94.522,96.509,99.162,98.637,95.581,96.137,96.414,98.668,96.844],"script":[22.516,22.031,21.606,21.278,22.094,22.126,21.171,21.953,22.169,22.373,21.53,21.506,22.15,21.777,21.112],"paint":[73.762,73.838,77.464,76.221,73.992,72.343,71.786,73.005,74.972,74.092,73.027,73.533,73.004,75.377,74.467]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"07_create10k","values":{"total":[824.702,836.585,830.455,823.319,818.271,826.739,835.293,828.248,825.699,835.859,831.548,819.188,834.022,826.018,828.963],"script":[459.854,469.67,466.55,455.589,454.812,461.888,467.273,466.151,460.556,467.847,463.116,454.898,469.019,458.375,463.758],"paint":[361.055,363.162,359.956,364.128,359.469,361.013,364.347,358.256,361.293,364.174,364.408,360.434,361.254,364.042,361.23]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[110.172,112.843,110.834,113.288,111.261,114.296,113.195,113.133,114.511,113.028,111.573,113.969,112.777,108.387,111.683],"script":[71.36,74.728,73.05,75.006,73.486,73.615,75.216,73.265,73.511,74.326,73.275,74.638,73.347,70.11,73.338],"paint":[38.38,37.732,37.393,37.886,37.391,40.172,37.591,39.482,40.362,38.321,37.901,38.682,39.03,37.871,37.974]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.702,21.772,19.17,24.947,23.432,25.13,22.046,21.394,23.005,21.755,25.714,25.376,22.482,22.677,25.336],"script":[22.458,19.489,17.06,20.557,18.835,20.442,20.664,19.354,18.226,19.49,20.897,19.769,20.983,18.093,20.528],"paint":[2.208,2.204,2.044,2.894,3.407,3.638,1.311,1.956,4.154,1.456,2.634,2.859,1.42,3.385,3.233]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5060567855834961]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.99211597442627]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.883932113647461]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[50.931705474853516]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[101.12662506103516]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.599609375]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.2685546875]}},{"framework":"arrowjs-v1.0.0-alpha.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.6]}},{"framework":"art-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[43.849,42.663,42.954,44.531,43.57,44.537,42.966,43.008,43.842,44.837,45.387,45.445,44.129,43.043,43.964],"script":[10.347,9.894,9.845,11.007,10.037,10.287,9.884,10.028,10.561,10.126,10.751,10.71,9.841,10.046,10.778],"paint":[33.333,32.612,32.916,33.37,33.347,34.093,32.839,32.819,33.116,34.551,34.452,34.575,34.129,32.835,33.013]}},{"framework":"art-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[46.91,46.398,47.373,45.65,47.468,45.486,46.653,46.302,45.123,45.472,46.961,46.367,46.896,47.189,47.334],"script":[12.605,12.015,12.308,11.64,11.777,11.625,12.144,11.658,11.595,11.659,11.645,11.806,11.877,11.985,12.078],"paint":[34.12,34.171,34.874,33.813,34.787,33.693,34.331,34.445,33.343,33.598,35.111,34.373,34.809,35.016,35.066]}},{"framework":"art-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.001,20.838,20.616,21.881,20.964,20.706,21.342,21.803,21.594,22.705,22.569,23.873,21.972,24.267,20.918],"script":[6.955,6.715,6.302,6.837,7.281,6.779,6.841,7.069,6.22,6.842,6.27,6.868,7.956,7.242,6.048],"paint":[14.736,13.492,14.182,14.901,13.536,13.799,13.715,13.909,14.384,15.352,14.158,16.149,13.289,16.758,14.074]}},{"framework":"art-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[10.831,8.432,5.286,8.717,8.492,8.928,5.243,9.157,10.491,5.558,5.32,10.454,7.63,11.1,5.99,11.863,8.962,5.334,6.541,9.437,14.932,4.825,8.441,9.018,6.09],"script":[3.976,3.932,2.316,2.881,2.804,3.886,2.502,3.161,3.939,2.872,2.782,3.254,2.567,3.494,3.146,4.426,4.532,2.274,2.647,3.322,3.782,2.75,2.593,3.005,2.97],"paint":[4.51,3.018,1.672,4.619,3.854,4.116,2.595,4.028,3.359,1.852,1.846,4.185,2.554,4.086,2.699,3.462,5.159,2.745,1.827,3.394,3.999,1.937,2.527,4.689,2.532]}},{"framework":"art-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[23.643,25.909,20.696,22.207,40.62,39.413,20.945,42.628,25.456,20.925,20.076,27.581,45.43,43.651,21.457],"script":[3.642,2.089,2.195,3.349,1.817,2.719,1.903,2.394,2.134,3.062,2.361,2.587,3.467,2.21,3.347],"paint":[17.919,19.768,16.981,16.963,17.058,17.136,16.888,20.047,19.74,17.696,17.586,22.162,19.987,20.398,17.266]}},{"framework":"art-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.579,16.769,17.147,16.663,17.681,17.452,16.71,16.632,17.193,16.152,16.102,17.5,16.534,18.535,16.652],"script":[1.341,1.071,1.3,1.05,1.263,1.571,1.612,1.267,1.347,1.266,1.338,0.996,1.323,1.309,1.074],"paint":[15.272,14.408,14.829,14.34,14.776,14.637,13.811,14.13,14.601,14.191,14.135,14.929,14.071,15.45,14.137]}},{"framework":"art-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[434.699,431.927,433.205,430.933,427.767,431.417,428.045,437.208,434.271,431.459,433.923,435.237,429.833,432.7,431.701],"script":[101.128,101.361,101.156,100.913,100.423,97.597,98.698,102.503,101.356,99.078,102.049,102.371,99.638,100.69,99.678],"paint":[331.377,328.32,329.896,327.725,325.237,331.675,327.19,332.334,330.777,330.151,329.755,330.614,328.046,329.914,329.905]}},{"framework":"art-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.731,48.939,50.38,48.779,50.527,49.612,49.152,48.796,49.552,48.864,48.982,48.71,49.967,66.23,49.341],"script":[9.734,9.755,10.711,9.937,9.798,10.367,9.842,9.839,9.845,10.032,10.288,9.647,9.795,9.726,9.85],"paint":[39.723,38.87,39.362,38.558,40.413,38.936,39.005,38.652,38.911,38.417,38.384,38.752,39.894,38.64,39.203]}},{"framework":"art-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.937,12.324,12.463,12.281,12.487,16.311,14.669,14.81,12.508,15.301,12.277,12.387,15.504,12.376,12.4],"script":[10.87,10.141,10.592,9.828,9.399,11.507,10.664,11.292,10.048,11.019,10.958,11.023,11.082,10.988,9.928],"paint":[0.988,0.956,0.48,1.608,1.52,2.729,1.683,2.402,1.84,4.038,0.726,1.275,2.889,1.303,2.382]}},{"framework":"art-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5035724639892578]}},{"framework":"art-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7564563751220703]}},{"framework":"art-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8595104217529297]}},{"framework":"art-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.770045280456543]}},{"framework":"art-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.93278980255127]}},{"framework":"art-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3369140625]}},{"framework":"art-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.646484375]}},{"framework":"art-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.5]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"01_run1k","values":{"total":[61.77,61.509,60.838,62.542,61.001,63.572,61.572,60.454,62.332,60.534,61.519,61.049,62.441,62.208,61.633],"script":[24.53,24.15,24.589,24.028,24.371,26.3,23.925,23.218,24.905,24.08,25.053,23.809,24.76,25.019,24.724],"paint":[36.945,37.064,35.981,36.808,36.368,36.9,37.378,36.972,37.02,36.194,36.102,36.913,36.332,36.807,36.541]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"02_replace1k","values":{"total":[67.267,66.664,66.058,68.501,66.905,66.174,66.426,67.094,66.681,66.89,66.628,65.553,66.348,67.719,66.562],"script":[29.732,28.933,29.083,29.763,29.635,29.071,29.069,29.11,28.671,29.494,28.925,27.933,29.023,29.086,28.831],"paint":[37.093,37.166,36.716,38.233,36.816,36.834,36.886,37.476,37.486,36.947,37.201,37.076,37.06,38.085,37.209]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[63.55,64.287,63.11,64.334,63.7,63.34,63.823,64.909,62.924,63.769,63.589,62.794,64.824,63.816,63.782],"script":[45.69,44.949,45.134,45.557,44.501,45.244,45.741,47.455,44.932,45.736,46.072,45.412,46.58,45.641,45.064],"paint":[17.415,17.989,15.89,17.5,18.201,15.528,16.32,17.015,17.415,16.021,14.839,15.76,17.624,16.566,17.365]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"04_select1k","values":{"total":[42.431,42.712,41.213,40,39.934,38.9,38.6,39.669,40.732,40.296,42.134,40.48,41.34,43.101,40.918,42.318,40.123,41.159,41.511,41.68,42.365,40.377,42.039,43.534,41.322],"script":[35.155,36.81,35.191,34.537,34.271,32.61,32.425,33.667,34.394,34.366,36.813,34.251,34.967,37.231,33.77,36.677,33.93,34.469,34.68,35.458,35.293,34.366,33.955,37.697,35.283],"paint":[4.661,4.214,5.079,4.17,3.84,4.416,4.828,3.89,4.647,4.475,4.595,3.963,3.724,3.851,5.463,3.251,3.554,4.522,4.433,4.973,4.002,4.603,5.154,4.577,5.182]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"05_swap1k","values":{"total":[194.538,193.566,190.601,191.924,193.702,191.75,195.894,193.569,195.197,194.722,195.19,195.06,195.728,195.158,193.254],"script":[50.337,49.976,50.675,50.327,50.32,49.252,52.349,53.456,51.355,50.594,50.886,50.738,49.148,50.639,51.252],"paint":[142.713,142.958,138.104,139.503,141.328,139.179,141.355,138.39,142.339,141.606,143.538,142.551,143.53,142.95,141.499]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.433,35.21,35.513,35.343,34.975,35.119,34.532,35.332,35.553,35.984,35.963,36.654,35.514,34.894,35.915],"script":[16.99,17.334,17.571,17.399,17.537,17.493,17.313,17.83,17.533,17.738,17.178,17.673,17.395,17.378,18.036],"paint":[16.342,16.279,15.711,16.365,16.441,15.738,16.189,15.51,16.057,15.805,16.036,16.877,16.519,16.344,16.321]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"07_create10k","values":{"total":[563.178,557.531,559.658,559.331,556.443,559.141,561.367,557.649,554.091,555.741,554.547,570.324,560.571,563.415,563.578],"script":[211.752,207.971,208.611,209.863,207.242,212.752,211.927,211.327,207.819,207.943,206.972,212.774,211.081,211.483,211.454],"paint":[345.274,343.471,344.96,343.631,342.947,340.459,343.663,340.471,340.657,341.906,341.723,351.15,343.357,345.853,346.097]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[77.643,78.659,76.609,76.782,78.384,79.9,78.549,79.009,78.252,79.039,76.138,76.374,77.551,79.353,77.091],"script":[34.914,34.797,34.63,34.997,35.1,34.901,35.191,35.38,35.638,35.622,34.881,34.518,34.694,35.008,34.508],"paint":[42.065,43.176,41.308,41.169,42.648,44.288,42.689,42.964,41.882,42.602,40.631,41.189,42.157,43.616,41.924]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.964,19.818,19.586,20.27,21.229,20.817,19.864,21.26,19.802,20.027,20.787,21.317,20.649,20.134,19.919],"script":[18.278,17.874,17.444,18.578,19.706,18.471,18.313,19.07,17.7,17.84,19.115,19.334,19.291,18.246,17.971],"paint":[1.024,1.249,1.223,0.804,1.39,1.591,0.499,2.099,1.588,2.074,0.718,1.885,0.775,1.781,0.362]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6080522537231445]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.455817222595215]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.757458686828613]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[32.17576885223389]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[65.39810085296631]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.123046875]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.46875]}},{"framework":"better-react-v1.1.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.7]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[123.507,121.712,123.188,122.09,123.509,122.88,122.819,123.552,124.391,122.415,124.497,120.157,122.361,123.428,123.158],"script":[85.137,83.856,84.417,83.797,85.218,84.037,84.67,85.319,84.613,83.85,85.552,81.885,83.994,84.672,84.583],"paint":[37.901,37.402,38.297,37.813,37.8,38.381,37.689,37.759,39.305,38.099,38.47,37.803,37.873,38.304,38.133]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[135.894,134.798,135.029,134.223,133.5,136.364,134.868,135.085,137.47,134.149,135.698,136.912,137.348,138.349,135.649],"script":[100.907,100.047,100.343,99.631,98.956,101.338,100.317,100.32,101.427,99.307,100.597,101.215,101.051,102.79,101.087],"paint":[34.521,34.175,34.223,34.121,34.094,34.557,34.071,34.288,35.553,34.37,34.625,35.216,35.811,35.081,34.099]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[87.252,84.409,86.425,85.165,87.093,85.048,85.779,86.248,87.174,85.674,84.978,86.637,85.038,86.981,85.439],"script":[68.845,66.375,67.667,66.492,67.983,67.005,67.613,68.166,67.842,67.005,67.054,67.857,66.623,67.991,67.668],"paint":[16.716,16.223,17.207,17.499,17.2,16.568,16.738,15.518,17.575,16.317,16.129,17.458,16.574,17.063,15.517]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[67.858,65.974,67.313,66.087,66.396,66.623,65.949,66.413,65.879,66.525,68.179,66.055,65.177,65.887,66.322,67.265,66.751,69.291,65.664,66.615,66.605,67.343,66.021,67.749,66.887],"script":[62.302,62.514,63.044,61.741,62.162,62.767,61.862,63.31,62.947,62.985,63.753,62.5,62.509,62.977,62.845,63.181,62.529,62.677,62.066,63.176,62.617,63.093,63.047,63.665,63.477],"paint":[5.402,2.423,3.748,3.176,2.917,2.986,3.911,3.033,2.769,3.264,3.165,3.291,1.626,3.509,1.327,3.008,4.033,6.039,3.449,2.029,3.003,3.616,2.828,3.218,2.267]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[87.274,84.439,84.121,84.878,83.501,83.925,86.279,85.833,83.194,84.658,83.384,86.092,85.366,85.809,83.079],"script":[65.211,62.857,63.311,63.632,63.471,62.848,62.557,63.738,62.953,62.948,63.012,62.943,63.606,62.815,61.906],"paint":[20.588,19.253,18.653,19.85,18.601,19.149,20.612,20.402,18.905,20.533,17.994,21.15,19.668,19.629,19.231]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[46.808,47.246,47.307,47.043,47.142,49.804,47.269,47.779,46.724,47.148,47.498,47.787,49.117,47.817,47.308],"script":[30.722,31.155,31.162,30.861,31.124,31.52,30.83,31.782,31.05,31.15,31.292,30.925,32.159,31.23,30.746],"paint":[15.297,15.05,15.056,15.454,14.98,17.086,15.323,15.496,15.122,15.25,15.391,16.109,15.934,15.324,15.826]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[1143.745,1150.559,1129.892,1142.613,1150.874,1142.48,1194.703,1136.804,1131.209,1173.644,1144.887,1131.017,1129.863,1140.476,1131.007],"script":[766.869,774.11,718.82,759.466,753.052,765.435,759.547,757.738,752.914,775.963,766.26,752.674,750.663,750.735,754.32],"paint":[370.099,369.708,404.16,375.862,390.905,370.341,428.251,372.317,371.556,390.877,371.841,371.54,372.469,382.932,369.931]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[144.294,146.196,141.286,142.674,148.916,144.065,145.178,143.826,144.262,148.03,145.828,141.248,145.831,143.967,145.137],"script":[98.833,99.823,97.245,97.465,102.139,99.135,99.975,99.7,100.035,101.51,99.764,96.962,101.083,99.331,99.389],"paint":[44.514,45.381,43.098,44.198,45.764,43.987,44.234,43.167,43.268,45.535,45.073,43.348,43.76,43.702,44.791]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[36.672,37.559,38.186,35.92,37.055,39.536,36.713,40.351,36.568,39.173,37.635,37.928,36.901,39.042,39.803],"script":[34.736,35.692,36.58,34.007,35.183,37.322,34.949,37.873,34.584,36.449,34.846,34.96,34.595,37.525,37.328],"paint":[1.823,1.353,1.504,1.159,1.767,2.098,0.838,1.896,2.289,2.611,2.67,2.846,1.205,1.414,2.21]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[44.29856586456299]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[56.74979591369629]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[56.978187561035156]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[53.22998905181885]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[126.1485481262207]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[3727.9794921875]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1224.41796875]}},{"framework":"blazor-wasm-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.8]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[110.928,111.815,111.409,110.165,112.339,109.241,107.951,108.706,108.32,107.399,109.206,111.179,111.5,114.032,112.349],"script":[71.99,71.399,72.44,71.488,73.277,71.343,69.83,70.044,69.893,69.209,70.21,72.595,72.691,73.89,73.523],"paint":[38.496,39.774,38.496,38.222,38.585,37.433,37.663,37.983,37.97,37.723,38.517,38.096,38.348,39.68,38.359]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[119.463,122.121,119.586,115.152,124.564,118.967,119.168,120.335,117.802,117.866,115.686,117.029,116.937,119.885,116.92],"script":[84.68,85.148,85.05,80.917,87.48,84.35,83.633,82.531,81.487,82.154,81.004,81.53,82.152,85.106,82.544],"paint":[34.325,36.51,34.074,33.784,36.534,34.16,35.072,37.304,35.823,35.249,34.242,35.06,34.331,34.319,33.919]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[33.542,33.196,33.115,33.306,33.86,32.577,33.308,33.531,33.142,33.357,34.033,33.332,32.695,33.588,33.012],"script":[16.41,15.446,15.594,15.902,15.408,15.353,15.717,15.824,15.154,15.617,15.668,15.691,14.904,16.084,15.738],"paint":[15.665,15.513,15.378,16.08,17.228,15.69,16.08,16.12,16.386,15.841,16.609,15.035,15.976,16.664,15.741]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[17.412,16.183,16.985,16.399,15.941,17.079,16.79,17.012,16.883,16.887,17.694,16.495,16.552,16.81,17.855,17.083,17.107,17.786,17.283,16.685,17.103,17.035,16.968,16.666,17.149],"script":[14.746,13.794,14.373,13.493,13.408,13.992,13.788,13.325,13.353,13.856,13.241,13.957,13.731,14.087,13.813,13.298,13.824,14.49,14.305,13.526,13.773,13.918,13.967,13.282,14.245],"paint":[2.567,2.256,1.726,1.719,1.989,2.23,2.79,3.022,3.028,2.166,3.424,1.626,2.322,2.589,3.258,3.639,3.133,3.147,2.093,3.027,2.152,2.507,2.251,3.25,2.833]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[34.174,33.558,37.358,34.781,33.271,33.263,34.719,33.972,34.013,33.824,34.376,34.469,34.349,33.869,35.219],"script":[14.357,13.993,13.725,14.299,13.892,13.422,13.772,14.325,13.942,13.372,13.73,13.466,14.049,13.916,14.588],"paint":[18.512,18.251,20.645,19.319,17.755,18.5,19.884,18.311,18.62,18.374,19.342,18.502,18.088,17.98,19.8]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.116,23.369,22.802,23.039,22.968,23.025,23.282,22.916,22.964,23.657,23.454,22.878,22.869,23.169,23.663],"script":[7.21,6.829,6.859,6.883,7.161,6.916,7.16,6.916,7.038,7.196,6.984,6.903,7.091,7.213,7.216],"paint":[15.435,15.279,14.876,15.114,14.88,15.314,15.372,15.266,15.177,15.722,15.696,14.649,15.028,14.877,15.71]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[1035.12,1050.729,1063.165,1068.449,1050.793,1065.708,1064.42,1054.801,1075.044,1048.819,1057.981,1050.388,1065.301,1050.515,1057.653],"script":[651.619,657.423,668.393,652.544,674.407,652.538,674.865,661.285,674.291,672.893,678.503,658.53,679.134,668.424,668.339],"paint":[376.73,386.405,387.977,409.034,369.623,406.168,382.442,386.67,394.032,369.152,372.694,384.956,379.446,375.257,382.246]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[118.557,119.762,119.35,117.967,119.718,119.659,118.91,119.876,120.485,118.91,123.525,119.735,119.711,117.025,119.994],"script":[73.738,75.115,75.43,73.865,75.43,75.591,74.548,74.62,75.835,74.685,77.345,75.211,74.186,73.111,75.387],"paint":[43.697,43.66,42.974,43.144,43.348,43.092,43.397,44.14,43.665,43.252,45.286,43.557,44.535,42.943,43.617]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.99,26.528,26.1,26.554,26.853,26.158,25.48,26.245,26.599,25.85,26.001,24.961,25.123,25.653,25.858],"script":[23.597,24.607,24.535,24.246,24.211,23.521,23.608,23.981,23.922,23.83,23.629,23.165,23.841,23.655,23.902],"paint":[1.231,1.812,0.985,1.417,2.487,2.124,1.248,1.239,1.813,1.167,2.272,0.831,0.559,1.684,1.856]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[41.43125629425049]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[52.8817663192749]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[53.01170349121094]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[49.2861328125]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[134.14484214782715]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11023.5888671875]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2813.087890625]}},{"framework":"blazor-wasm-aot-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.3]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"01_run1k","values":{"total":[36.414,37.826,37.061,37.311,36.552,36.809,36.175,36.173,35.983,35.897,36.44,35.726,35.84,36.485,36.673],"script":[3.58,3.76,3.682,3.556,3.608,3.729,3.564,3.52,3.56,3.47,3.595,3.529,3.582,3.653,3.575],"paint":[32.416,33.656,32.973,33.35,32.541,32.672,32.197,32.251,32.032,32.011,32.439,31.742,31.847,32.414,32.703]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"02_replace1k","values":{"total":[41.468,41.397,40.337,41.485,40.332,41.728,40.681,40.188,40.855,41.923,41.791,40.27,40.475,41.156,40.809],"script":[6.931,6.893,6.226,6.432,6.452,6.247,6.394,6.212,6.234,6.476,6.408,6.165,6.318,6.627,6.503],"paint":[34.072,34.077,33.668,34.606,33.429,35.035,33.855,33.543,34.195,35.004,34.95,33.653,33.705,34.1,33.874]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.649,16.522,16.351,16.691,15.918,16.503,16.391,16.04,16.007,16.517,16.022,20.102,16.348,16.225,15.485],"script":[1.368,2.065,0.997,1.199,1.412,1.794,1.024,1.439,1.266,1.306,1.273,1.069,0.913,1.229,1.238],"paint":[13.467,12.672,13.781,14.1,13.184,12.94,14.122,13.082,13.269,13.67,12.955,17.127,13.601,13.808,12.547]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"04_select1k","values":{"total":[2.851,2.786,3.305,2.764,3.491,3.134,3.754,2.866,3.495,3.982,3.839,4.114,3.18,3.567,3.442,4.396,4.043,2.778,2.814,3.148,3.698,3.49,3.264,3.218,3.191],"script":[0.929,0.816,1.341,0.62,0.821,0.175,1.233,1.246,1.398,0.863,0.937,0.182,0.191,1.12,0.893,0.561,0.968,0.678,0.663,1.126,1.155,0.804,1.023,0.191,0.897],"paint":[1.822,1.874,1.136,2.045,1.496,2.646,2.413,1.115,1.999,1.633,2.788,2.593,2.877,1.495,1.608,1.551,2.488,1.996,1.63,1.921,2.428,1.586,1.351,1.984,2.189]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"05_swap1k","values":{"total":[18.906,19.535,19.343,19.015,18.795,18.998,18.9,19.045,18.765,18.766,19.11,18.736,18.544,18.991,18.606],"script":[0.64,1.203,1.157,0.837,0.889,0.808,0.629,0.86,0.905,0.767,0.947,0.941,0.207,0.598,0.534],"paint":[17.262,16.806,16.68,17.458,16.557,16.601,16.779,16.605,17.127,16.821,16.641,16.512,17.378,17.401,16.491]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.165,15.281,15.486,15.202,15.087,15.335,15.388,15.297,15.192,15.316,15.227,15.338,15.149,15.179,15.286],"script":[0.439,0.184,0.342,0.438,0.176,0.488,0.342,0.267,0.488,0.506,0.19,0.485,0.407,0.195,0.451],"paint":[14.028,14.379,14.199,14.025,14.211,14.093,14.126,14.037,13.978,14.07,14.329,14.135,13.942,14.038,14.116]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"07_create10k","values":{"total":[385.459,383.872,380.006,388.538,383.766,381.671,387.835,391.351,391.747,386.205,386.919,393.284,386.012,389.191,393.46],"script":[45.081,45.912,44.998,45.833,45.774,45.359,45.417,44.633,46.648,45.26,46.117,46.37,44.841,45.068,46.051],"paint":[333.593,331.306,328.227,336.052,331.393,329.532,335.797,340.1,338.403,334.234,334.087,340.279,334.532,337.517,340.394]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.35,41.547,42.055,42.395,40.782,42.801,40.451,41.356,42.112,40.958,40.94,40.715,41.462,40.807,43.652],"script":[3.438,3.338,3.471,3.529,3.505,3.592,3.218,3.248,3.755,3.302,3.378,3.232,3.485,3.334,3.676],"paint":[38.077,37.334,37.707,38.001,36.411,38.347,36.402,37.196,37.505,36.777,36.724,36.658,37.131,36.566,39.114]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.479,12.219,11.695,11.688,11.429,11.767,12.5,11.468,11.63,11.822,12.277,11.259,11.58,11.697,11.854],"script":[9.867,10.016,9.332,9.507,9.496,9.572,10.327,9.982,10.022,9.796,10.655,10.057,10.132,9.858,10.13],"paint":[2.527,2.122,2.282,1.93,1.172,2.117,2.101,1.212,1.152,1.944,1.105,1.12,0.963,1.74,1.326]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5469226837158203]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.448617935180664]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.463076591491699]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7782049179077148]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.24301052093506]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.984375]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.3173828125]}},{"framework":"blockdom-v0.9.28-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.8]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"01_run1k","values":{"total":[54.597,44.985,48.416,44.142,45.199,48.209,48.936,48.256,48.519,45.97,44.304,49.324,41.769,46.127,48.333],"script":[9.088,8.755,9.882,9.947,8.952,9.929,9.986,9.925,8.907,8.925,9.305,9.491,8.501,9.252,9.024],"paint":[33.182,33.923,33.341,32.561,32.648,33.671,32.902,33.62,32.386,32.547,32.057,33.03,32.6,33.89,33.169]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"02_replace1k","values":{"total":[58.156,59.703,55.79,53.198,52.958,59.151,51.576,58.272,56.616,57.897,55.034,54.025,55.502,52.989,51.218],"script":[13.697,13.89,13.436,13.829,13.773,13.944,13.649,14.044,13.686,13.818,13.691,13.552,13.333,13.88,14.225],"paint":[33.857,35.387,34.349,34.372,33.808,35.704,34.041,33.962,34.142,33.797,33.61,34.414,33.955,34.817,34.203]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.848,19.531,19.317,19.997,21.394,20.264,22.423,19.936,19.919,19.671,19.244,19.325,19.742,20.414,18.749],"script":[4.859,3.885,4.535,4.818,3.879,4.986,4.576,4.728,4.733,4.091,3.621,4.597,5.111,3.95,4.808],"paint":[14.972,14.895,13.789,14.48,14.715,14.222,15.67,14.746,15.072,14.594,14.714,14.614,14.526,15.647,13.829]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"04_select1k","values":{"total":[4.346,3.992,4.017,4.302,4.495,4.66,4.812,4.461,4.556,4.636,4.585,4.588,4.515,4.68,4.962,4.101,4.863,4.684,4.673,4.402,4.518,4.371,4.237,4.228,3.546],"script":[1.763,1.94,2.078,1.168,2.02,1.96,1.214,1.845,1.376,1.456,1.991,2.255,1.993,2.367,2.246,1.633,2.208,2.285,2.338,1.462,2.367,1.45,0.766,1.438,1.288],"paint":[2.46,1.927,1.717,2.321,2.347,1.646,2.4,2.494,2.579,2.942,2.454,2.211,0.991,1.677,2.272,2.348,2.283,1.804,2.212,2.818,1.991,2.801,2.834,2.35,1.69]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"05_swap1k","values":{"total":[19.536,22.036,20.272,19.127,20.531,19.884,34.845,19.759,19.383,18.778,19.334,20.826,19.539,19.634,35.519],"script":[1.208,2.138,1.678,1.994,1.705,1.914,1.739,1.67,2.442,1.858,1.765,2.718,2.109,1.45,2.565],"paint":[18.224,16.771,16.964,16.83,17.666,17.763,17.752,15.268,16.819,16.812,16.811,17.888,17.314,17.362,16.912]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.569,14.136,15.507,17.937,15.195,14.735,17.926,13.922,14.132,14.245,15.37,14.773,14.266,19.142,14.112],"script":[1.085,1.119,0.946,1.142,1.063,1.095,0.975,0.759,1.117,0.841,0.906,0.825,0.835,1.13,0.891],"paint":[13.255,12.626,13.212,13.324,13.678,13.503,13.294,12.832,12.327,13.232,12.786,13.311,12.65,13.288,12.783]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"07_create10k","values":{"total":[464.429,447.02,464.06,445.899,454.459,456.269,452.411,451.212,459.803,457.779,466.093,454.761,447.397,457.37,461.931],"script":[103.717,110.295,107.035,106.09,104.287,103.285,106.499,109.586,111.283,104.004,112.672,106.335,102.264,110.08,108.141],"paint":[347.698,329.138,351.274,334.826,344.396,350.338,342.11,338.309,343.618,347.788,344.008,345.434,343.012,342.894,348]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.054,53.759,58.003,54.943,54.356,56.059,53.694,49.471,53.088,54.221,53.688,56.37,57.024,58.717,53.171],"script":[11.513,10.378,10.023,10.458,10.313,10.34,10.61,10.937,10.47,10.986,10.335,11.584,9.867,10.6,10.57],"paint":[37.241,37.698,37.264,37.984,37.484,37.689,37.273,38.014,36.836,36.94,36.732,39.049,37.558,37.741,37.05]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.574,13.941,13.55,12.993,14.321,13.736,12.96,13.712,13.577,14.006,14.201,13.227,14.638,14.102,13.469],"script":[12.274,11.912,11.624,11.531,12.373,11.969,11.156,12.458,11.52,12.096,11.67,11.985,12.694,12.565,12.337],"paint":[1.588,1.227,1.855,1.4,1.875,1.706,1.734,1.185,1.989,1.841,1.299,1.179,1.883,1.479,1.071]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6187896728515625]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.634884834289551]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.811847686767578]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.605961799621582]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.20957660675049]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.095703125]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.599609375]}},{"framework":"bobril-v20.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.6]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"01_run1k","values":{"total":[36.298,36.056,37.006,35.818,36.49,36.114,36.503,37.85,37.042,37.115,36.43,37.022,36.869,36.527,37.05],"script":[3.056,3.03,3.065,3.141,3.046,2.986,3.185,3.151,3.183,3.286,3.188,3.161,3.125,3.004,3.247],"paint":[32.836,32.629,33.517,32.295,33.033,32.731,32.902,34.276,33.45,33.406,32.834,33.458,33.331,33.119,33.401]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"02_replace1k","values":{"total":[41.775,41.701,41.468,41.894,40.865,41.852,41.358,40.449,42.63,40.916,40.8,40.738,40.841,41.433,40.7],"script":[5.945,6.026,5.885,6.616,5.982,5.995,6.083,5.839,6.084,6.03,6.05,5.896,6.035,6.076,6.03],"paint":[35.381,35.176,35.124,34.786,34.441,35.366,34.794,34.159,36.111,34.427,34.321,34.389,34.345,34.896,34.213]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.676,17.936,18.359,17.749,16.675,17.692,17.335,18.333,17.313,17.002,16.891,16.804,17.644,17.258,16.293],"script":[1.557,1.479,2.127,1.694,1.278,2.22,1.575,1.815,1.283,1.773,1.576,1.309,2.001,1.708,1.192],"paint":[13.971,15.159,15.025,14.905,14.209,14.083,14.102,15.234,14.881,13.717,12.56,13.771,14.117,14.574,13.862]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"04_select1k","values":{"total":[3.605,4.346,3.347,3.67,4.07,3.722,3.557,4.25,4.021,3.933,3.112,4.059,4.815,3.89,3.427,4.079,4.49,3.471,4.196,3.72,3.362,4.771,3.479,4.678,4.044],"script":[1.416,1.879,1.285,1.609,1.728,0.899,1.361,1.937,1.499,1.53,1.059,1.44,1.973,0.967,1.6,0.853,1.547,1.158,1.743,1.292,1.408,1.767,1.152,1.528,1.692],"paint":[2.063,1.226,1.959,1.694,1.639,2.72,2.062,1.618,1.909,2.283,1.958,1.374,1.68,2.49,1.732,3.13,2.84,1.759,1.738,1.68,1.309,2.544,2.049,3.034,1.063]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"05_swap1k","values":{"total":[19.626,19.571,20.238,20.279,20.207,19.969,21.315,19.88,20.692,20.057,19.426,20.32,19.398,19.735,19.862],"script":[1.408,1.56,1.728,0.888,1.705,1.492,1.9,1.543,1.248,1.708,1.285,1.458,1.132,1.448,0.899],"paint":[17.073,16.645,16.994,18.078,17.375,17.031,16.556,17.214,18.12,17.065,17.025,16.644,16.803,16.773,17.894]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.879,16.552,15.902,15.646,16.508,15.722,15.543,17.033,15.545,16.21,15.851,15.546,15.355,17.2,15.781],"script":[0.665,0.919,0.921,0.778,0.978,0.726,0.634,0.801,0.64,0.807,0.962,0.636,0.617,0.858,0.813],"paint":[14.485,14.342,14.286,14.081,14.498,14.182,14.03,15.185,14.143,14.443,14.194,14.249,14.089,15.42,14.202]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"07_create10k","values":{"total":[393.452,391.126,393.47,384.871,389.088,388.127,386.511,405.04,393.114,409.585,415.337,420.123,411.574,407.693,409.618],"script":[46.754,47.619,44.391,43.754,45.74,46.417,42.75,47.731,45.271,48.444,48.223,51.425,50.171,47.353,48.543],"paint":[339.765,336.59,342.123,334.301,336.668,334.946,337.073,350.144,340.393,353.868,359.654,361.442,353.909,353.005,353.992]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.16,42.602,42.181,42.594,41.597,41.773,43.312,42.359,43.899,42.313,42.605,42.719,43.799,42.47,43.72],"script":[3.382,3.335,3.324,3.371,3.358,3.374,3.353,3.429,3.325,3.467,3.455,3.439,3.514,3.478,3.348],"paint":[37.918,38.385,38.028,38.317,37.355,37.557,39.028,38.03,39.687,37.96,38.266,38.392,39.364,38.123,39.497]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.146,12.355,12.383,12.375,12.542,12.797,12.107,12.902,11.989,11.647,12.326,11.711,12.582,12.443,13.096],"script":[10.469,10.457,11.091,10.502,10.837,11.004,10.465,10.735,10.354,10.398,10.769,10.227,10.734,10.698,11.23],"paint":[1.592,1.812,1.206,1.784,0.954,1.102,0.807,1.885,1.543,1.155,1.373,1.4,1.765,1.112,1.472]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7569961547851562]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.422994613647461]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.481843948364258]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0205516815185547]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.405522346496582]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[50.6142578125]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.900390625]}},{"framework":"cample-v3.2.0-alpha.15-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[110.5]}},{"framework":"crank-v0.4.1-keyed","benchmark":"01_run1k","values":{"total":[42.816,44.375,43.494,43.486,44.413,43.506,43.403,45.091,44.355,45.502,44.076,43.669,45.048,44.364,45.231],"script":[10.108,10.439,10.318,10.121,10.413,10.139,10.419,11.018,10.594,10.461,10.138,10.185,11.366,11.14,10.317],"paint":[32.241,33.525,32.747,32.945,33.575,32.935,32.546,33.645,33.339,34.405,33.509,33.021,33.236,32.786,34.485]}},{"framework":"crank-v0.4.1-keyed","benchmark":"02_replace1k","values":{"total":[46.593,46.54,45.47,45.452,47.099,45.691,46.077,47.406,47.778,45.994,46.424,48.05,46.072,47.361,45.905],"script":[12.035,12.182,11.983,11.695,12.49,11.875,11.977,13.116,12.57,11.787,11.825,13.105,11.664,11.938,11.923],"paint":[34.12,33.918,33.06,33.335,34.162,33.394,33.662,33.84,34.766,33.759,34.157,34.503,33.952,34.995,33.563]}},{"framework":"crank-v0.4.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.072,21.276,22.288,20.887,21.717,21.597,21.872,21.322,21.864,22.449,21.113,23.719,22.32,21.157,21.543],"script":[7.305,6.482,6.441,6.351,6.171,5.772,5.824,6.142,6.007,6.8,5.82,5.923,6.482,5.794,6.248],"paint":[15.211,13.51,14.528,13.492,14.242,14.341,14.607,13.758,14.41,13.534,14.035,15.264,14.295,13.863,14.205]}},{"framework":"crank-v0.4.1-keyed","benchmark":"04_select1k","values":{"total":[5.943,5.858,5.671,5.788,4.914,5.146,5.293,5.159,5.019,5.907,5.736,4.518,5.384,5.013,5.303,4.542,5.422,5.18,5.002,5.518,5.04,4.516,5.527,4.413,5.157],"script":[2.962,3.221,3.294,2.943,2.471,2.484,2.444,2.152,2.566,2.759,2.541,2.362,3.07,2.263,1.921,2.522,2.788,2.813,2.799,3.057,2.502,2.282,3.062,2.134,2.789],"paint":[1.949,1.701,1.767,1.732,2.325,2.333,1.573,2.887,1.966,3.024,2.109,1.996,1.912,2.341,3.255,1.901,2.506,2.235,1.354,1.663,2.407,2.102,2.339,1.136,2.24]}},{"framework":"crank-v0.4.1-keyed","benchmark":"05_swap1k","values":{"total":[21.434,21.826,21.07,21.773,21.216,21.336,21.213,23.342,21.114,21.966,20.943,21.508,21.209,21.142,21.807],"script":[2.699,3.644,3.261,3.754,3.124,2.737,2.629,3.86,3.207,3.846,3.235,3.721,3.249,2.75,3.011],"paint":[17.656,16.634,16.076,16.109,16.37,17.055,17.343,18.11,16.094,16.298,16.393,16.764,16.945,16.521,17.753]}},{"framework":"crank-v0.4.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.592,16.723,16.919,17.026,16.547,16.55,17.019,17.411,16.577,16.491,16.619,16.936,16.476,16.573,16.585],"script":[1.402,1.73,1.729,1.781,1.616,1.56,1.397,1.774,1.751,1.416,1.652,1.645,1.517,1.415,1.722],"paint":[14.381,13.932,14.322,14.226,13.969,14.121,14.324,14.902,14.076,14.356,14.213,14.463,14.094,14.143,13.887]}},{"framework":"crank-v0.4.1-keyed","benchmark":"07_create10k","values":{"total":[457.565,459.881,449.312,452.886,458.396,454.86,451.276,449.09,463.378,457.915,455.142,457.919,462.284,460.285,454.942],"script":[117.616,117.278,115.752,115.611,117.667,116.514,115.3,115.694,117.09,116.814,116.729,118.422,116.693,115.966,116.657],"paint":[333.186,335.902,326.599,330.585,334.067,331.668,329.134,326.542,339.655,334.408,331.699,332.751,338.891,333.791,331.329]}},{"framework":"crank-v0.4.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.734,50.785,50.505,49.794,51.995,51.033,50.732,50.385,51.462,51.01,51.41,51.308,51.238,51.125,51.877],"script":[11.698,11.655,11.807,11.33,11.833,12.022,11.496,11.85,11.741,11.686,11.684,12.163,12.077,11.959,11.639],"paint":[38.138,38.244,37.816,37.567,39.259,38.12,38.348,37.649,38.83,38.439,38.779,38.275,38.284,38.237,39.334]}},{"framework":"crank-v0.4.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.894,12.537,12.125,12.672,12.645,12.143,12.576,12.87,12.228,12.534,12.008,12.314,12.368,12.328,11.991],"script":[11.058,10.698,10.176,10.714,11.002,10.639,10.127,10.389,10.525,10.642,10.587,10.55,10.159,10.909,10.859],"paint":[1.75,1.228,1.161,1.131,1.551,1.419,2.011,2.095,1.613,1.058,1.348,1.687,1.635,1.335,1.05]}},{"framework":"crank-v0.4.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5609369277954102]}},{"framework":"crank-v0.4.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7811594009399414]}},{"framework":"crank-v0.4.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8536148071289062]}},{"framework":"crank-v0.4.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.904754638671875]}},{"framework":"crank-v0.4.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.553187370300293]}},{"framework":"crank-v0.4.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[20.40234375]}},{"framework":"crank-v0.4.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.4453125]}},{"framework":"crank-v0.4.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.1]}},{"framework":"dark-v1.0.2-keyed","benchmark":"01_run1k","values":{"total":[47.094,47.451,46.926,48.201,47.591,48.609,47.383,46.954,47.08,47.477,47.738,47.921,49.101,48.426,47.103],"script":[14.273,14.558,14.037,15.14,13.818,15.198,14.254,14.326,14.27,14.241,14.823,15.067,14.923,15.518,13.989],"paint":[32.372,32.476,32.459,32.64,33.34,32.967,32.707,32.204,32.364,32.798,32.483,32.431,33.755,32.461,32.699]}},{"framework":"dark-v1.0.2-keyed","benchmark":"02_replace1k","values":{"total":[55.556,55.605,53.783,54.322,55.514,53.877,55.168,55.486,54.411,55.149,55.166,55.875,55.18,54.706,55.087],"script":[19.193,18.926,18.34,18.585,18.522,18.277,18.544,18.594,18.42,18.621,18.509,18.693,18.68,18.28,18.6],"paint":[35.899,36.228,35.007,35.29,36.529,35.156,36.179,36.443,35.543,36.087,36.201,36.735,36.072,35.987,36.047]}},{"framework":"dark-v1.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.073,19.179,18.607,18.718,17.596,18.935,18.206,18.37,18.394,18.106,18.737,18.471,18.432,18.364,19.035],"script":[3.944,3.088,3.21,3.367,2.934,3.322,3.559,3.111,3.362,3.436,3.026,3.405,3.109,3.535,3.388],"paint":[14.81,12.848,13.925,13.464,13.374,13.627,13.052,14.226,13.238,13.003,14.238,12.858,13.922,13.17,14.292]}},{"framework":"dark-v1.0.2-keyed","benchmark":"04_select1k","values":{"total":[3.974,2.882,3.231,5.632,3.687,3.101,3.126,3.49,2.793,3.207,3.547,4.27,2.945,3.117,3.602,3.719,3.369,3.487,2.914,3.48,3.448,3.21,3.642,2.721,3.816],"script":[1.199,1.363,0.568,1.186,1.176,0.662,0.545,0.833,0.623,1.002,0.913,1.233,1.133,0.92,1.023,0.942,0.938,1.087,0.92,0.885,0.897,1.064,0.929,1.187,0.603],"paint":[1.934,1.415,1.648,1.563,2.404,2.329,2.479,1.446,2.062,2.096,1.638,2.938,1.708,2.099,2.265,2.675,1.498,1.741,1.165,2.096,1.628,1.811,2.42,1.426,2.595]}},{"framework":"dark-v1.0.2-keyed","benchmark":"05_swap1k","values":{"total":[21.661,21.534,21.56,22.167,21.399,20.898,22.494,21.473,22.465,21.666,22.49,21.209,21.269,21.901,21.053],"script":[2.797,2.505,3.312,3.459,3.114,3.413,3.436,3.025,3.668,2.851,3.738,3.071,2.609,3.153,3.309],"paint":[16.92,17.237,16.553,17.299,17.177,15.631,17.503,16.997,16.814,17.493,16.225,16.352,17.978,17.403,16.35]}},{"framework":"dark-v1.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.48,16.494,16.189,16.582,16.288,17.082,16.631,16.561,16.113,16.829,16.244,16.558,16.597,17.317,16.247],"script":[1.42,1.397,1.417,1.392,1.486,1.394,1.413,1.45,1.401,1.38,1.48,1.381,1.791,1.736,1.669],"paint":[14.137,14.38,13.749,14.119,14.027,14.448,14.178,14.38,13.959,14.678,13.725,14.419,14.046,14.398,13.64]}},{"framework":"dark-v1.0.2-keyed","benchmark":"07_create10k","values":{"total":[494.381,480.254,482.181,488.091,492.687,492.695,487.718,493.023,508.016,496.677,509.879,489.578,492.315,498.323,510.765],"script":[151.474,153.361,149.612,151.425,151.625,148.904,153.664,153.318,155.806,153.145,154.864,154.595,150.506,155.902,155.578],"paint":[335.192,319.765,325.121,329.699,333.921,336.813,327.009,332.792,345.275,336.69,348.113,327.89,334.869,335.504,348.314]}},{"framework":"dark-v1.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.56,54.613,54.857,55.984,55.191,55.617,54.028,55.105,56.003,55.591,54.47,56.349,54.514,56.027,54.763],"script":[15.571,15.125,14.621,15.918,15.052,15.204,14.926,15.168,15.145,14.944,14.462,15.189,15.193,15.072,15.389],"paint":[40.587,38.231,38.826,38.775,38.784,39.114,37.741,38.583,39.579,39.463,38.558,40.208,38.073,39.963,38.266]}},{"framework":"dark-v1.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.899,13.772,13.938,13.494,12.391,12.792,13.484,13.59,12.608,13.384,12.198,13.42,13.716,12.973,13.234],"script":[10.75,11.35,11.302,11.894,11.025,10.859,11.909,11.508,10.723,11.533,10.644,11.522,11.308,11.323,11.478],"paint":[2.062,2.326,2.507,1.51,1.281,1.587,1.289,1.989,1.787,1.362,1.081,0.922,2.311,1.536,0.787]}},{"framework":"dark-v1.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6416215896606445]}},{"framework":"dark-v1.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.897149085998535]}},{"framework":"dark-v1.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.838281631469727]}},{"framework":"dark-v1.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3409490585327148]}},{"framework":"dark-v1.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.778456687927246]}},{"framework":"dark-v1.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[35.55859375]}},{"framework":"dark-v1.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.4677734375]}},{"framework":"dark-v1.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[71.7]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"01_run1k","values":{"total":[38.612,38.832,40.286,38.939,38.577,38.629,38.881,39.653,39.763,38.965,38.382,39.151,38.752,38.931,39.155],"script":[5.295,5.387,5.412,5.338,5.218,5.351,5.333,5.464,5.392,5.286,5.52,5.361,5.34,5.3,5.419],"paint":[32.899,33.048,34.47,33.195,32.945,32.879,33.143,33.786,33.973,33.235,32.46,33.399,33.015,33.225,33.339]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"02_replace1k","values":{"total":[43.872,42.809,44.04,44.74,43.31,42.632,45.235,43.427,43.267,43.357,43.764,43.259,44.599,42.914,43.216],"script":[9.132,8.539,8.939,9.017,8.46,8.821,8.836,8.534,8.791,8.767,8.822,8.58,9.061,8.585,8.518],"paint":[34.28,33.82,34.639,35.28,34.405,33.364,35.958,34.444,34.041,34.158,34.517,34.262,35.104,33.902,34.265]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.329,18.113,16.547,16.564,16.692,17.232,16.994,16.401,16.9,17.264,17.398,16.614,16.917,17.252,16.469],"script":[0.959,1.594,1.496,1.505,1.683,1.279,1.734,1.151,1.764,1.317,2.024,1.169,1.89,2.088,1.722],"paint":[13.901,15.026,13.237,14.058,13.622,14.482,13.652,13.444,12.828,15.256,13.428,14.298,14.582,12.62,13.412]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"04_select1k","values":{"total":[3.317,2.85,5.909,3.074,5.198,2.895,2.805,3.15,3.162,3.665,3.427,3.801,5.628,2.964,3.522,3.865,2.953,3.415,2.98,2.864,3.466,3.678,3.631,3.27,2.986],"script":[0.825,0.846,1.031,0.89,0.956,0.908,0.965,0.827,0.177,0.915,1.121,0.562,0.562,0.755,1.412,0.184,0.747,0.985,0.184,0.486,1.049,1.253,1.142,0.942,0.344],"paint":[2.396,1.905,1.931,1.465,2.284,1.117,1.748,2.212,1.982,0.839,2.071,1.506,1.147,2.106,1.54,1.64,2.103,1.844,1.617,2.283,1.681,2.325,1.581,1.678,1.748]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"05_swap1k","values":{"total":[20.263,19.658,20.421,20.414,19.293,20.403,20.608,20.865,20.513,20.226,19.731,20.916,19.633,19.611,20.21],"script":[1.806,1.732,1.869,2.565,1.893,1.607,2.242,1.9,1.913,1.636,2.011,2.356,1.646,1.618,2.132],"paint":[17.504,16.132,16.661,15.689,15.879,17.34,16.844,17.709,17.542,17.25,16.161,16.484,16.049,16.328,16.136]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.499,16.477,15.927,15.623,15.45,15.407,15.831,15.997,15.742,15.818,15.433,15.793,15.767,15.771,15.428],"script":[0.737,0.741,0.726,0.947,0.737,0.726,1.037,0.729,0.744,0.742,0.733,0.989,0.742,0.738,0.752],"paint":[14.042,14.757,14.418,13.94,13.846,14.005,14.077,14.536,14.058,14.231,13.984,14.096,14.32,14.338,13.682]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"07_create10k","values":{"total":[402.324,403.352,400.285,406.022,405.036,402.625,405.062,402.141,400.962,404.824,404.171,399.468,403.584,399.543,397.439],"script":[58.979,60.764,57.682,60.439,60.644,59.454,61.722,58.601,57.714,58.375,62.013,58.513,57.97,59.872,57.399],"paint":[336.616,335.849,336.036,338.947,337.789,336.593,336.768,336.964,336.686,339.732,335.628,334.336,338.304,332.797,333.364]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.186,44.157,44.908,44.769,44.545,46.68,44.488,44.841,44.852,44.703,46.115,45.867,46.009,45.199,46.389],"script":[5.912,6.029,6.053,6.024,6.02,6.117,6.28,6.168,6.242,6.148,6.384,6.317,6.194,6.323,6.326],"paint":[36.4,37.261,37.95,37.82,37.596,39.685,37.349,37.829,37.768,37.653,38.883,38.623,38.989,37.935,39.185]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.288,15.491,15.116,15.258,18.174,15.511,16.074,15.372,16.386,15.111,16.243,16.027,15.719,15.717,16.049],"script":[14.037,13.88,13.795,13.232,16.099,14.42,14.062,13.995,14.071,13.379,14.343,13.844,13.742,13.918,14.124],"paint":[1.376,0.719,0.891,1.955,1.99,0.374,1.813,0.362,2.238,1.652,1.768,1.119,1.895,1.111,1.109]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7494726181030273]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.58535099029541]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.498356819152832]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.695009231567383]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.3262939453125]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[317.310546875]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[92.9248046875]}},{"framework":"dioxus-v0.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[555.5]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"01_run1k","values":{"total":[37.913,36.196,38.41,37.689,39.844,38.534,37.25,37.446,37.303,40.155,40.079,39.352,39.848,39.554,39.94],"script":[4.18,4.056,4.383,4.004,4.17,4.064,4.198,4.281,3.898,4.021,4.383,4.102,4.291,4.276,4.296],"paint":[33.302,31.736,33.611,33.266,35.252,34.04,32.636,32.757,32.987,35.716,35.267,34.818,35.137,34.853,35.221]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"02_replace1k","values":{"total":[42.199,42.887,42.297,41.655,42.659,44.065,42.957,42.244,42.822,43.73,42.676,43.498,42.299,44.214,42.91],"script":[7.444,7.367,7.341,7.187,7.382,7.381,7.399,7.151,7.268,7.2,7.343,7.314,7.189,7.331,7.192],"paint":[34.307,35.103,34.532,34.044,34.839,36.242,35.115,34.704,35.132,36.091,34.894,35.681,34.662,36.43,35.256]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.464,17.535,17.991,17.773,18.034,17.915,18.832,17.941,17.786,17.72,17.808,17.774,17.75,17.918,17.439],"script":[1.691,1.853,2.331,1.499,2.037,2.064,1.784,1.997,1.956,2.024,1.433,1.97,2.068,1.761,1.925],"paint":[14.353,14.116,14.552,14.754,14.804,14.443,14.975,14.815,14.145,13.825,14.016,13.827,14.183,14.648,14.126]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"04_select1k","values":{"total":[2.972,2.67,4.03,3.266,3.082,3.118,2.893,3.093,3.063,3.498,3.743,3.64,3.058,3.504,3.318,4.851,3.052,2.629,3.117,2.487,2.824,3.545,5.199,3.833,3.17],"script":[0.125,0.528,0.975,0.127,1.129,0.739,0.124,0.934,0.246,0.952,0.926,0.128,0.414,0.133,0.128,0.127,0.118,0.185,0.12,0.51,0.825,0.12,1.438,0.941,0.716],"paint":[2.734,1.757,1.081,1.997,1.098,1.699,2.134,2.059,2.716,1.805,2.71,2.416,1.821,2.418,1.338,2.432,2.66,2.342,2.896,1.528,1.893,2.281,2.15,1.663,1.66]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"05_swap1k","values":{"total":[21.255,21.765,20.077,21.014,20.945,20.426,20.51,20.911,20.91,20.583,20.911,22.227,21.571,21.782,21.426],"script":[2.751,2.631,2.35,2.692,2.666,2.021,2.754,2.38,2.514,2.283,2.579,2.356,2.312,2.678,2.548],"paint":[17.322,18.281,16.808,16.982,16.888,16.907,16.482,17.164,17.031,16.306,16.668,17.781,17.627,17.476,18.014]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.424,15.946,16.579,16.291,16.154,17.393,16.725,16.079,16.479,16.496,16.625,16.714,17.178,16.164,16.561],"script":[1.36,1.023,1.06,1.061,1.03,1.458,1.052,1.03,1.073,1.049,1.007,1.138,1.097,1.001,1.039],"paint":[14.056,14.007,14.519,14.535,13.921,15.231,14.69,14.35,14.738,14.404,14.655,14.387,15.128,14.498,14.716]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"07_create10k","values":{"total":[391.891,387.29,386.976,402.351,390.598,392.804,392.848,393.323,395.38,395.498,398.661,389.116,393.783,393.269,395.506],"script":[47.251,44.939,45.233,44.221,44.972,44.792,46.302,45.158,46.565,46.186,47.112,45.821,45.317,45.946,47.205],"paint":[337.853,335.661,334.976,351.26,338.911,341.174,339.791,341.304,342.072,342.463,344.818,336.597,341.744,340.565,341.54]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.601,43.768,43.099,43.8,44.335,43.001,42.877,42.174,43.402,42.691,45.272,42.277,42.785,42.178,43.07],"script":[4.769,4.764,4.782,4.958,5.126,4.676,4.741,4.739,5.05,4.755,5.035,4.619,4.599,4.66,4.845],"paint":[37.931,38.159,37.437,37.937,38.306,37.456,37.267,36.546,37.519,37.054,39.361,36.799,37.276,36.674,37.383]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.467,12.432,12.08,12.528,12.027,12.307,12.14,12.133,12.142,13.368,11.929,12.812,13.96,12.215,12.244],"script":[10.696,10.729,10.552,10.724,10.492,10.364,11.022,10.791,10.782,11.159,10.216,10.736,11.981,10.325,10.738],"paint":[1.683,1.612,1.445,1.713,0.57,1.866,0.385,0.438,0.797,1.938,1.631,1.973,1.085,1.809,1.406]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.48430919647216797]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0430164337158203]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0727148056030273]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6978769302368164]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.437349319458008]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.2001953125]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.068359375]}},{"framework":"dlightjs-v1.0.0-next.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.9]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"01_run1k","values":{"total":[69.307,64.973,60.689,62.999,66.013,64.438,68.027,69.844,70.794,66.748,64.492,62.157,68.498,63.536,65.776],"script":[27.226,29.086,27.928,28.419,28.525,29.333,28.563,29.134,28.614,27.997,29.984,26.79,28.557,28.606,28.661],"paint":[32.821,33.045,32.314,32.299,34.235,34.133,33.054,33.132,32.519,33.135,32.809,34.496,34.405,34.765,33.361]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"02_replace1k","values":{"total":[79.923,74.176,75.945,75.063,82.569,82.331,79.982,80.751,81.08,75.665,81.069,79.406,76.732,78.736,77.06],"script":[34.187,35.642,34.723,34.333,33.787,34.993,34.21,34.21,36.172,32.803,33.802,35.257,33.474,35.084,33.854],"paint":[37.352,35.566,36.583,35.946,36.74,36.898,36.175,37.058,36.507,36.102,35.716,35.728,36.065,35.345,36.979]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[40.406,41.426,41.54899999999999,24.707,41.859,25.397,28.085,40.795,27.147,39.944,24.34,25.205,26.128,25.143,24.555],"script":[9.863,10.109,10.487,9.309,10.929,10.545,11.104,10.672,10.596,9.091,9.569,10.553,9.593,10.68,10.129],"paint":[14.507,14.951,14.908,14.826,14.852,13.243,16.847,13.521,15.993,15.402,14.672,14.409,14.35,14.362,13.199]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.807,2.932,3.423,5.728,3.479,3.58,4.448,3.159,6.275,3.16,2.869,5.941,3.253,3.426,4.256,3.222,3.434,3.883,3.805,3.507,3.23,3.524,3.441,3.397,2.9],"script":[0.873,0.738,0.376,0.71,1.084,0.923,0.257,0.838,0.261,0.921,1.109,1.526,0.638,1.208,1.226,1.241,1.503,1.533,1.597,1.001,1.173,0.265,0.658,0.72,1.385],"paint":[1.907,1.194,1.881,2.001,2.302,1.856,1.697,1.426,2.819,1.809,1.663,1.784,2.518,1.999,2.663,1.88,1.828,2.25,1.473,2.401,1.266,1.639,1.395,2.56,1.417]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"05_swap1k","values":{"total":[45.743,45.989,45.983,31.666,30.445,32.034,46.024,29.473,29.372,32.064,29.186,28.572,30.293,32.213,32.254],"script":[12.383,13.267,12.061,12.896,11.783,11.505,12.774,12.683,12.44,11.962,12.18,11.922,12.715,12.679,12.404],"paint":[18.213,16.907,17.864,16.211,18.539,17.621,17.202,16.677,16.334,17.275,16.893,16.547,16.042,17.198,17.103]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.246,21.738,18.277,23.963,23.283,23.489,15.896,16.002,20.231,18.145,18.014,16.409,21.712,17.817,16.518],"script":[0.255,0.434,0.257,0.483,0.564,0.664,0.496,0.269,0.542,0.713,0.382,0.377,0.52,0.524,0.434],"paint":[14.606,14.789,14.518,14.602,15.477,14.606,14.448,14.139,14.461,14.163,14.293,14.352,14.671,14.423,14.18]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"07_create10k","values":{"total":[610.991,602.707,601.439,607.795,601.91,602.951,609.671,601.33,606.948,609.617,592.432,590.2,603.816,601.33,613.708],"script":[255.857,252.315,250.718,257.831,252.752,253.53,256.655,253.602,254.501,255.673,245.538,241.411,249.321,250.815,255.998],"paint":[348.746,345.97,347.242,346.307,346.045,346.55,345.629,344.81,349.555,350.814,344.103,346.012,351.667,346.871,351.705]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.459,75.512,75.665,76.581,79.48,80.366,75.163,76.822,77.943,75.415,74.62,76.128,78.445,80.077,75.959],"script":[27.147,27.521,28.046,27.831,28.511,28.623,28.379,27.636,28.285,27.558,27.405,28.978,29.164,27.487,27.722],"paint":[41.784,41.722,41.894,43.188,41.704,41.952,41.367,43.081,42.186,42.38,41.816,41.735,41.925,42.224,42.678]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.077,22.555,22.893,22.806,22.261,22.071,23.36,23.45,23.03,22.726,23.989,21.43,22.366,23.056,23.455],"script":[20.083,20.633,19.754,21.348,19.634,19.087,19.719,19.836,21.063,20.575,21.419,19.469,19.581,20.212,21.188],"paint":[1.509,1.786,1.887,1.344,1.105,2.866,1.358,3.447,1.844,2.002,1.878,1.108,2.033,1.949,0.986]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6973409652709961]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.261355400085449]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.40902042388916]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4993352890014648]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[63.720370292663574]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.736328125]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.517578125]}},{"framework":"dojo-v8.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.6]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"01_run1k","values":{"total":[44.038,43.898,43.523,43.184,44.06,44.879,43.439,44.128,45.355,46.393,43.586,43.779,45.649,43.756,44.131],"script":[10.378,10.337,10.457,9.874,10.358,11.148,10.27,10.27,11.195,11.681,10.25,10.364,11.501,10.391,10.444],"paint":[33.23,33.133,32.633,32.893,33.278,33.306,32.751,33.384,33.71,34.277,32.905,32.984,33.735,32.955,33.251]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"02_replace1k","values":{"total":[49.592,50.879,50.291,50.995,49.814,50.246,49.948,49.851,50.364,49.625,51.635,51.6,50.07,50.18,50.675],"script":[14.775,15.262,14.96,15.33,14.647,14.846,14.866,14.659,14.749,14.771,15.098,15.341,14.705,14.721,15.145],"paint":[34.379,35.177,34.895,35.23,34.733,34.953,34.641,34.767,35.192,34.418,36.079,35.803,34.924,35.031,35.095]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.63,17.81,16.628,16.23,16.892,16.793,17.161,16.531,16.825,16.983,16.58,17.52,17.194,16.055,17.223],"script":[1.497,1.009,1.244,1.229,1.212,1.379,1.551,1.504,0.91,1.552,1.767,1.221,2.054,0.968,1.436],"paint":[13.981,14.986,13.846,13.7,14.329,13.925,14.591,14.217,14.815,14.451,14.471,14.518,14.151,14.42,14.243]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"04_select1k","values":{"total":[3.346,3.306,3.621,4.825,4.318,3.595,3.559,3.659,4.067,3.735,3.14,4.237,3.565,3.716,3.191,5.991,3.367,3.51,2.825,3.583,3.692,2.822,2.97,3.915,3.219],"script":[0.86,0.878,1.044,1.065,1.486,1.218,1.311,0.993,0.223,1.493,1.016,1.192,1.386,1.393,0.954,1.165,1.056,1.112,0.942,1.344,1.297,0.683,0.797,1.13,0.563],"paint":[1.983,2.317,1.373,1.422,1.884,2.272,2.142,2.563,2.751,1.642,1.633,1.621,1.59,2.223,1.687,1.584,1.785,2.301,1.14,2.141,2.289,1.634,2.065,1.642,1.093]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"05_swap1k","values":{"total":[19.05,18.575,19.398,18.689,18.568,18.693,19.166,19.237,18.363,17.731,18.701,18.757,18.682,18.745,19.129],"script":[1.036,0.771,0.137,1.308,0.129,0.648,0.775,0.138,0.855,0.134,0.78,0.453,0.14,0.658,0.255],"paint":[16.348,16.522,18.079,16.162,17.437,15.705,17.301,17.719,16.235,16.496,16.172,17.301,15.96,16.508,17.45]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.196,14.796,15.163,14.783,14.73,14.893,15.064,14.85,14.893,15.297,15.053,15.161,15.257,14.775,15.024],"script":[0.497,0.472,0.521,0.501,0.35,0.263,0.459,0.411,0.537,0.535,0.367,0.488,0.43,0.493,0.298],"paint":[13.94,13.621,13.876,13.562,13.672,13.825,13.899,13.728,13.613,13.702,13.817,13.632,13.978,13.553,13.929]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"07_create10k","values":{"total":[464.589,479.505,465.055,471.451,467.752,465.132,467.006,475.631,471.012,470.898,469.264,479.257,472.233,470.972,472.229],"script":[120.714,130.676,121.346,126.548,122.456,123.136,122.062,124.892,125.88,123.359,122.544,130.311,125.655,122.61,128.589],"paint":[336.707,341.399,336.959,337.148,338.139,335.207,337.974,342.8,338.388,340.777,339.926,341.953,339.81,341.608,336.915]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.682,51.18,52.11,52.851,52.321,51.949,51.423,50.186,51.64,53.445,52.139,53.872,51.401,50.952,51.484],"script":[10.987,11.054,11.688,11.861,11.825,11.22,10.992,10.998,11.007,11.874,11.009,11.966,11.123,11.122,11.141],"paint":[39.791,39.213,39.535,40.07,39.587,39.805,39.476,38.288,39.733,40.651,40.186,40.914,39.349,38.921,39.426]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.659,16.474,17.704,17.04,17.233,16.939,17.59,17.448,17.703,17.608,17.147,16.453,17.202,17.228,17.096],"script":[15.764,15.181,15.616,15.461,15.001,15.055,15.485,15.615,15.316,15.708,15.313,14.869,15.161,15.997,15.277],"paint":[1.811,0.818,1.979,1.344,2.016,1.788,2.004,1.743,1.915,1.793,1.175,1.492,1.185,1.13,1.732]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6291818618774414]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.8252220153808594]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8240785598754883]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.627566337585449]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.736724853515625]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[135.361328125]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.0673828125]}},{"framework":"dominator-v0.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.5]}},{"framework":"doohtml-keyed","benchmark":"01_run1k","values":{"total":[35.12,37.053,35.542,37.112,34.906,35.769,35.349,35.403,35.545,35.967,35.751,36.55,36.993,36.943,36.097],"script":[2.314,2.261,2.313,2.412,2.241,2.229,2.381,2.36,2.216,2.344,2.251,2.367,2.432,2.441,2.253],"paint":[32.399,34.348,32.824,34.304,32.248,33.107,32.563,32.597,32.923,33.182,33.079,33.779,34.118,34.063,33.425]}},{"framework":"doohtml-keyed","benchmark":"02_replace1k","values":{"total":[39.359,40.889,40.47,38.905,39.774,38.951,40.314,39.048,39.173,40.553,39.243,40.188,41.21,39.578,40.445],"script":[4.799,5.116,5.192,4.783,4.945,4.809,5.079,4.752,4.846,5.026,4.799,4.962,5.19,4.852,5.125],"paint":[34.112,35.322,34.84,33.698,34.407,33.705,34.811,33.858,33.888,35.102,34.022,34.779,35.564,34.25,34.865]}},{"framework":"doohtml-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.493,16.82,17.352,16.319,16.403,17.051,16.701,16.525,16.781,17.169,16.075,17.061,16.073,16.333,16.322],"script":[1.39,0.689,0.61,0.886,1.03,1.472,0.957,0.913,1.402,0.989,0.889,1.242,0.223,0.743,0.978],"paint":[14.998,14.444,15.268,14.739,13.271,14.086,14.393,14.914,13.224,15.18,13.873,13.343,14.572,13.793,13.84]}},{"framework":"doohtml-keyed","benchmark":"04_select1k","values":{"total":[2.794,2.708,2.729,2.468,2.987,2.747,2.75,2.986,2.867,3.112,2.935,3.886,2.531,2.244,3.493,2.751,2.64,2.534,2.516,2.664,3.679,2.479,3.256,3.046,2.845],"script":[0.058,0.058,0.082,0.057,0.057,0.07,0.066,1.041,0.068,0.791,0.527,0.754,0.068,0.059,0.642,0.451,0.058,0.061,0.058,0.3,1.014,0.062,0.065,0.68,0.813],"paint":[2.078,2.526,1.879,1.643,2.813,1.857,2.557,1.838,2.673,1.45,2.133,2.978,1.91,2.064,2.3,2.181,2.471,2.365,2.34,1.906,2.532,1.561,2.718,2.249,1.288]}},{"framework":"doohtml-keyed","benchmark":"05_swap1k","values":{"total":[18.267,18.357,18.672,18.319,18.795,18.483,19.015,18.533,19.183,18.467,18.635,18.004,17.896,18.131,18.202],"script":[0.081,0.143,0.08,0.07,0.729,0.083,0.078,0.074,0.074,0.078,0.499,0.19,0.076,0.342,0.073],"paint":[16.357,17.257,16.958,16.976,16.287,16.194,17.867,16.494,17.32,16.163,16.785,16.768,16.586,15.645,16.797]}},{"framework":"doohtml-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.756,15.196,15.241,14.749,15.036,15.093,15.109,15.148,15.24,14.82,15.242,15.127,14.81,15.247,16.338],"script":[0.08,0.385,0.078,0.077,0.076,0.076,0.074,0.158,0.315,0.083,0.082,0.273,0.073,0.081,0.448],"paint":[13.662,14.076,14.133,13.911,14.271,14.297,13.818,14.238,13.839,14.026,14.148,14.105,13.703,14.418,15.148]}},{"framework":"doohtml-keyed","benchmark":"07_create10k","values":{"total":[368.196,371.699,370.478,371.916,372.376,371.049,371.561,367.48,369.402,373.478,373.339,370.796,372.578,374.391,370.701],"script":[25.639,25.77,24.986,25.969,24.83,24.951,26.138,24.176,23.905,26.479,25.063,24.245,26.229,25.935,25.716],"paint":[335.987,338.739,338.742,339.246,340.934,339.378,338.718,336.677,338.753,340.354,341.573,339.957,339.772,341.85,338.318]}},{"framework":"doohtml-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.989,41.235,40.576,41.194,41.383,40.381,40.639,40.155,39.747,40.341,41.612,39.729,41.682,39.931,40.948],"script":[2.526,2.256,2.289,2.352,2.509,2.232,2.375,2.259,2.258,2.244,2.418,2.304,2.362,2.283,2.424],"paint":[38.578,38.094,37.404,37.95,38.009,37.287,37.405,37.012,36.631,37.223,38.315,36.59,38.456,36.822,37.675]}},{"framework":"doohtml-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.621,12.329,13.101,12.056,12.281,12.437,12.502,12.893,13.06,12.609,13.083,12.495,12.651,12.905,12.443],"script":[10.665,10.676,10.985,10.687,10.727,10.444,10.482,10.962,11.002,10.831,11.127,10.712,10.624,10.47,10.756],"paint":[1.306,1.574,2.043,1.284,1.476,1.402,1.938,1.125,1.983,1.701,0.968,1.691,1.252,1.804,1.604]}},{"framework":"doohtml-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5305919647216797]}},{"framework":"doohtml-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7125463485717773]}},{"framework":"doohtml-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.709014892578125]}},{"framework":"doohtml-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6190519332885742]}},{"framework":"doohtml-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.16050910949707]}},{"framework":"doohtml-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.375]}},{"framework":"doohtml-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.951171875]}},{"framework":"doohtml-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[68.9]}},{"framework":"doohtml-dom-keyed","benchmark":"01_run1k","values":{"total":[34.895,36.776,36.839,34.933,34.905,35.913,35.977,36.26,35.006,34.429,36.168,37.386,35.381,34.828,35.87],"script":[2.36,2.31,2.517,2.248,2.253,2.278,2.248,2.35,2.207,2.283,2.465,2.312,2.272,2.432,2.393],"paint":[32.126,34.048,33.885,32.268,32.261,33.192,33.304,33.504,32.371,31.736,33.275,34.666,32.682,31.994,33.056]}},{"framework":"doohtml-dom-keyed","benchmark":"02_replace1k","values":{"total":[40.711,40.561,38.984,38.666,39.099,40.304,38.746,40.647,39.175,39.04,39.114,38.565,39.879,38.56,38.641],"script":[5.123,4.902,4.689,4.677,4.699,4.736,4.669,4.901,4.595,4.655,4.618,4.614,4.714,4.812,4.572],"paint":[35.125,35.215,33.87,33.548,33.966,35.089,33.652,35.278,34.116,33.953,34.061,33.55,34.534,33.29,33.64]}},{"framework":"doohtml-dom-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.864,15.969,16.546,16.688,15.858,15.952,16.953,16.286,15.917,16.794,16.632,16.922,16.184,15.801,16.65],"script":[1.026,0.837,0.838,0.939,1.059,0.228,0.898,0.535,0.572,1.408,0.92,0.65,0.204,1.08,1.446],"paint":[14.363,13.525,14.224,14.444,13.641,14.262,14.359,14.568,14.057,13.587,14.237,14.915,14.83,12.947,13.592]}},{"framework":"doohtml-dom-keyed","benchmark":"04_select1k","values":{"total":[3.812,2.536,2.49,2.773,2.635,2.485,1.962,1.819,2.765,2.521,2.911,3.158,2.972,4.305,2.729,2.484,2.622,2.465,4.099,2.721,4.054,2.772,2.282,2.756,2.409],"script":[0.056,0.056,0.884,0.062,0.804,0.057,0.057,0.066,1.057,0.054,0.058,0.058,0.056,1.082,0.785,0.058,0.06,0.058,0.804,0.219,0.941,0.066,0.064,0.064,0.063],"paint":[1.613,2.168,1.076,2.568,1.73,2.33,1.523,1.652,1.621,0.553,2.758,1.671,2.826,1.898,1.147,2.323,2.466,2.302,1.166,1.872,1.636,2.619,1.16,1.528,2.254]}},{"framework":"doohtml-dom-keyed","benchmark":"05_swap1k","values":{"total":[17.86,18.422,18.154,18.129,18.642,17.905,19.808,17.618,17.794,17.526,17.811,18.3,18.836,17.858,17.789],"script":[0.078,0.653,0.075,0.082,0.917,0.071,0.08,0.084,0.122,0.074,0.072,0.723,0.54,0.083,0.076],"paint":[16.563,16.721,16.771,16.503,16.402,16.448,18.562,15.564,16.308,16.474,16.003,15.91,16.112,16.375,16.567]}},{"framework":"doohtml-dom-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.302,15.152,14.787,14.691,15.174,14.839,14.514,14.756,15.157,14.705,14.709,14.706,14.866,15.626,15.112],"script":[0.332,0.387,0.083,0.078,0.364,0.08,0.084,0.081,0.085,0.076,0.078,0.081,0.08,0.11,0.083],"paint":[14.198,14.031,13.734,13.61,14.091,13.589,13.7,13.979,14.242,13.867,13.926,13.932,14.059,14.731,13.994]}},{"framework":"doohtml-dom-keyed","benchmark":"07_create10k","values":{"total":[364.654,375.636,364.747,365.125,365.81,367.181,364.18,366.823,366.004,364.062,367.639,362.941,366.407,370.302,376.114],"script":[25.445,25.518,24.712,23.723,24.242,24.298,24.359,24.7,25.88,24.051,24.243,24.688,25.321,25.626,25.177],"paint":[332.528,343.489,333.4,334.402,334.95,336.321,333.225,335.538,333.424,333.404,336.849,331.673,334.499,338.153,344.391]}},{"framework":"doohtml-dom-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.163,40.093,40.446,41.194,40.409,39.615,42.537,40.717,40.127,40.378,39.981,40.546,40.215,40.889,40.232],"script":[2.3,2.333,2.303,2.446,2.285,2.264,2.482,2.279,2.284,2.262,2.285,2.306,2.29,2.307,2.287],"paint":[37.03,36.911,37.274,37.908,37.215,36.484,39.193,37.566,36.995,37.261,36.851,37.403,37.089,37.729,37.1]}},{"framework":"doohtml-dom-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.413,11.648,12.148,12.311,11.677,11.383,11.804,11.895,11.933,11.509,11.744,11.214,11.604,11.18,12.001],"script":[9.524,9.82,9.744,10.628,9.815,9.908,9.727,9.95,10.255,9.478,10.572,9.912,10.137,10.079,10.083],"paint":[1.804,1.005,2.329,1.595,1.773,1.4,2,1.859,1.589,1.945,1.087,1.217,1.365,0.365,1.828]}},{"framework":"doohtml-dom-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5178089141845703]}},{"framework":"doohtml-dom-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7073736190795898]}},{"framework":"doohtml-dom-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.7334585189819336]}},{"framework":"doohtml-dom-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6012897491455078]}},{"framework":"doohtml-dom-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.15517520904541]}},{"framework":"doohtml-dom-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.2919921875]}},{"framework":"doohtml-dom-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.943359375]}},{"framework":"doohtml-dom-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.6]}},{"framework":"doz-v5-preview-keyed","benchmark":"01_run1k","values":{"total":[59.231,60.21,60.878,60.267,59.886,60.717,60.25,61.356,59.778,59.32,59.559,60.686,59.157,60.574,59.79],"script":[25.495,25.827,26.351,26.441,25.877,25.979,25.916,26.123,25.485,25.356,26.059,26.099,25.79,26.372,26.424],"paint":[33.297,33.934,34.069,33.398,33.568,34.281,33.911,34.833,33.873,33.541,33.076,34.149,32.972,33.799,32.919]}},{"framework":"doz-v5-preview-keyed","benchmark":"02_replace1k","values":{"total":[62.837,63.019,62.627,63.607,62.618,62.497,62.254,63.198,62.207,62.812,62.553,62.006,61.872,62.367,63.366],"script":[27.555,27.578,27.175,27.56,27.154,27.289,27.214,27.784,27.172,27.051,27.317,27.396,26.815,27.596,27.485],"paint":[34.846,34.982,35.025,35.524,35.038,34.774,34.597,34.97,34.608,35.332,34.781,34.163,34.609,34.331,35.435]}},{"framework":"doz-v5-preview-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.214,29.034,28.758,27.989,29.276,29.362,29.566,29.458,28.278,28.742,29.915,28.015,28.766,29.663,28.776],"script":[11.845,11.756,12.638,12.042,12.945,11.096,11.657,11.06,10.937,11.49,11.948,12.01,11.121,11.491,12.637],"paint":[16.016,16.314,14.522,13.8,14.254,16.673,16.519,17.193,16.046,15.898,16.467,14.243,15.807,16.774,14.693]}},{"framework":"doz-v5-preview-keyed","benchmark":"04_select1k","values":{"total":[8.684,9.118,9.285,8.815,9.433,9.149,9.489,8.462,9.144,8.972,9.27,8.401,8.402,9.114,8.086,8.069,9.217,9.476,9.428,8.244,9.323,8.379,8.994,9.405,8.997],"script":[5.825,6.778,5.901,6.14,6.404,5.953,6.763,5.878,6.372,6.319,6.27,6.034,6.141,6.267,6.396,6.333,6.174,6.081,6.666,6.101,6.59,6.204,6.004,6.197,6.215],"paint":[2.274,1.642,1.519,2.455,2.472,2.371,2.14,2.068,1.911,0.958,2.871,1.682,1.593,1.992,1.448,1.134,2.919,2.281,2.017,1.653,1.812,2.046,2.857,2.076,1.891]}},{"framework":"doz-v5-preview-keyed","benchmark":"05_swap1k","values":{"total":[25.278,25.665,25.639,25.213,24.921,24.344,24.895,25.55,26.943,27.361,25.836,27.205,24.729,26.518,24.741],"script":[6.553,6.705,7.156,6.177,6.227,6.779,5.789,6.211,5.933,6.687,6.896,6.785,6.109,5.952,5.771],"paint":[16.17,17.467,16.429,16.838,17.115,15.841,17.395,17.317,19.914,19.023,17.632,18.9,17.603,18.554,17.562]}},{"framework":"doz-v5-preview-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.498,20.94,20.723,20.344,20.394,20.468,20.386,20.478,20.868,20.659,21.289,20.656,20.455,20.355,20.484],"script":[5.582,5.642,5.879,5.473,5.549,5.478,5.473,5.555,5.584,5.553,5.863,5.488,5.538,5.484,5.677],"paint":[15.131,14.565,14.44,13.543,13.808,13.838,14.142,14.162,14.54,14.385,14.683,14.466,14.146,13.767,14.082]}},{"framework":"doz-v5-preview-keyed","benchmark":"07_create10k","values":{"total":[678.997,682.357,677.24,677.763,675.95,680.652,688.777,682.389,682.992,675.773,671.023,675.826,677.317,676.005,676.531],"script":[322.294,323.813,323.301,324.657,324.707,322.446,325.318,322.816,323.166,322.365,322.739,321.872,324.627,322.522,320.892],"paint":[349.961,351.99,347.34,346.538,344.537,351.556,356.78,352.99,353.25,346.798,341.7,347.217,346.093,346.904,349.018]}},{"framework":"doz-v5-preview-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[115.526,117.121,118.328,113.979,114.907,115.283,115.472,114.455,113.645,117.913,113.327,114.797,117.512,117.966,117.904],"script":[44.774,46.57,43.589,43.618,44.56,44.675,45.383,44.958,43.597,44.033,43.86,44.129,44.747,45.426,45.456],"paint":[69.839,69.643,73.845,69.474,69.456,69.686,69.143,68.605,69.109,72.968,68.554,69.765,71.877,71.613,71.532]}},{"framework":"doz-v5-preview-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.44,16.477,17.833,16.72,16.388,16.358,17.504,16.558,15.45,15.667,15.927,16.541,15.935,16.312,15.135],"script":[14.195,14.302,15.539,14.961,14.509,14.022,14.789,14.392,13.878,13.983,14.156,14.607,13.828,14.55,13.68],"paint":[1.804,1.888,2.204,1.67,1.733,1.95,2.114,2.075,1.483,1.21,1.677,1.835,2.009,0.83,1.37]}},{"framework":"doz-v5-preview-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7342910766601562]}},{"framework":"doz-v5-preview-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.512258529663086]}},{"framework":"doz-v5-preview-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.242131233215332]}},{"framework":"doz-v5-preview-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.82599925994873]}},{"framework":"doz-v5-preview-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.92591094970703]}},{"framework":"doz-v5-preview-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[72.984375]}},{"framework":"doz-v5-preview-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.111328125]}},{"framework":"doz-v5-preview-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.3]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"01_run1k","values":{"total":[49.912,48.954,47.968,48.178,49.66,50.111,49.566,48.425,48.91,49.739,50.618,47.956,48.123,49.7,48.546],"script":[14.593,14.67,13.931,14.036,14.443,14.702,14.264,14.416,14.328,14.431,14.822,14.317,14.347,14.325,14.108],"paint":[34.892,33.859,33.592,33.701,34.768,35.007,34.888,33.567,34.15,34.869,35.362,33.216,33.353,34.928,34.026]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"02_replace1k","values":{"total":[53.776,53.074,53.932,52.92,54.983,53.821,54.885,52.011,52.109,51.804,53.084,51.335,51.841,53.687,52.621],"script":[16.9,16.179,16.424,16.19,17.48,16.609,17.11,16.287,16.142,16.211,15.91,16.093,15.918,16.776,15.922],"paint":[36.407,36.413,37.044,36.271,37.02,36.756,37.316,35.245,35.506,35.136,36.697,34.799,35.446,36.418,36.173]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.776,16.036,16.464,16.059,16.263,16.904,16.503,16.118,15.839,16.208,16.561,18.14,15.824,16.238,16.191],"script":[0.69,1.832,1.076,1.022,0.588,1.123,0.6,0.895,1.279,1.283,1.09,0.982,0.237,0.883,0.928],"paint":[13.533,12.018,14.008,13.503,13.983,13.996,14.347,13.399,13.551,13.908,14.084,16.023,14.355,13.872,13.7]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"04_select1k","values":{"total":[3.106,2.811,5.924,2.978,2.906,2.332,2.547,2.546,3.033,3.118,3.351,2.853,3.207,2.695,3.306,2.975,4.855,5.889,3.054,2.511,3.661,7.246,2.937,3.049,2.764],"script":[0.105,0.096,0.099,0.612,0.102,0.099,0.097,0.106,0.935,0.924,0.922,0.105,0.453,0.102,0.78,0.586,0.917,0.777,0.873,0.654,0.103,0.731,0.108,1.105,0.106],"paint":[2.89,2.244,2.596,1.679,2.704,2.135,2.352,2.339,1.601,2.095,2.328,2.653,1.645,1.514,2.415,2.289,1.842,1.869,1.436,1.761,1.171,1.305,1.992,1.841,1.012]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"05_swap1k","values":{"total":[19.688,18.785,18.968,18.555,19.261,18.531,19.088,19.317,17.9,18.932,18.516,19.397,18.708,18.428,18.875],"script":[0.446,0.657,0.124,1.004,0.133,0.544,1.138,0.124,0.124,0.137,0.129,1.005,0.913,0.554,1.033],"paint":[17.652,16.31,16.342,16.242,18.076,16.129,16.26,17.824,16.335,17.475,17.341,16.956,16.439,16.052,15.598]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.996,14.862,14.743,14.759,15.091,14.858,14.959,14.779,14.655,14.825,14.746,14.854,14.818,15.181,14.764],"script":[0.241,0.468,0.319,0.121,0.302,0.122,0.216,0.127,0.386,0.119,0.114,0.119,0.12,0.46,0.302],"paint":[14.246,13.408,13.664,13.928,13.914,14.044,14.007,13.931,13.244,14,13.569,13.944,13.858,14.001,13.722]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"07_create10k","values":{"total":[491.664,492.172,490.862,486.939,490.859,485.672,491.204,490.453,488.744,488.442,487.915,496.682,489.035,492.433,490.642],"script":[145.925,145.23,148.024,145.483,147.613,146.415,145.968,146.584,144.918,147.814,144.806,145.703,147.097,149.791,149.134],"paint":[337.906,340.279,336.189,334.558,336.518,332.471,338.57,337.059,337.164,333.941,336.425,344.306,335.224,335.847,334.859]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.42,51.139,51.61,51.019,52.852,52.975,51.479,52.562,50.42,52.632,51.476,51.053,52.895,51.751,50.828],"script":[11.552,11.735,11.717,11.912,11.855,12.589,11.998,12.119,11.709,12.739,11.812,11.662,12.424,12.167,11.746],"paint":[39.693,38.517,38.994,38.237,40.047,39.476,38.602,39.533,37.833,38.985,38.729,38.433,39.579,38.72,38.192]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.239,15.772,17.551,16.01,17.031,16.594,16.905,16.765,17.438,16.173,17.304,16.886,16.903,17.138,17.458],"script":[15.247,14.278,15.207,14.358,15.033,14.671,14.805,14.881,15.49,14.278,15.125,15.152,14.974,15.286,15.764],"paint":[1.347,1.29,1.317,1.383,1.872,1.8,1.416,1.77,1.233,1.803,1.915,1.604,1.038,1.755,0.838]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5634098052978516]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.5638322830200195]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.689360618591309]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9402713775634766]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.66111660003662]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.693359375]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1396484375]}},{"framework":"ef-js-v0.17.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.2]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"01_run1k","values":{"total":[50.55,43.718,52.117,42.488,48.79,46.785,44.075,51.16,43.667,42.486,51.638,42.466,50.603,48.743,44.403],"script":[9.398,9.147,9.83,9.224,9.421,9.212,9.792,9.15,9.383,9.142,9.613,8.885,9.51,9.451,9.104],"paint":[33.574,32.583,33.591,32.833,32.214,33.37,33.494,32.689,32.727,32.906,32.583,33.13,33.597,33.309,34.574]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"02_replace1k","values":{"total":[50.322,56.886,57.452,54.957,54.467,54.652,50,54.547,58.153,51.147,59.034,50.437,56.629,59.621,56.928],"script":[11.274,12.12,12.566,11.826,12.433,12.196,10.964,11.444,12.29,11.524,12.265,11.786,11.845,12.918,12.221],"paint":[35.819,36.301,36.017,37.054,36.256,36.177,36.585,35.82,36.016,35.632,36.241,35.937,36.65,36.105,35.421]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[43.799,19.306,40.234,22.058,19.714,20.013,19.826,23.525,44.403,44.371,22.132,44.463,20.377,46.377,20.901],"script":[4.826,4.277,2.814,4.818,4.359,3.069,3.227,4.632,4.847,4.168,3.989,3.552,3.628,3.169,3.612],"paint":[13.832,14.26,15.685,15.526,13.757,15.892,13.323,14.507,14.157,13.541,13.697,14.089,13.737,17.211,15.782]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"04_select1k","values":{"total":[10.086,5.766,10.392,11.556,7.453,7.867,9.161,10.833,8.852,8.913,9.581,6.125,8.336,5.985,6.912,7.038,9.417,6.886,6.927,4.8,4.823,9.431,10.642,5.9,8.225],"script":[0.752,1.446,1.686,1.433,1.24,1.387,1.144,2.054,2.038,0.707,0.788,1.142,1.876,1.107,1.946,0.375,0.368,1.585,1.548,1.695,1.79,2.071,0.371,1.331,1.469],"paint":[2.619,2.503,1.954,2.286,1.661,2.462,2.35,2.008,1.445,1.709,2.154,2.384,2.357,1.773,2.39,2.715,3.131,3.008,2.201,2.582,1.39,1.118,2.377,2.416,1.656]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"05_swap1k","values":{"total":[43.411,20.847,24.663,21.916,21.035,20.366,19.968,41.319,20.651,40.31,22.407,40.321,42.284,42.644,43.538],"script":[1.58,1.863,0.432,0.979,1.731,1.111,1.477,1.374,1.322,1.096,1.243,1.569,2.108,2.33,2.88],"paint":[17.351,17.041,18.516,18.074,16.088,18.282,16.818,17.52,15.834,17.312,19.639,16.715,17.266,17.615,17.893]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.222,23.941,18.519,22.879,23.195,23.818,21.721,16.962,17.262,18.476,20.886,17.699,24.219,22.402,21.125],"script":[0.985,0.767,1.058,0.972,0.73,0.951,0.917,0.736,0.743,1.02,0.835,0.744,0.988,1.055,0.71],"paint":[14.718,15.047,15.093,14.687,15.323,14.988,14.945,14.892,15.113,14.511,14.854,15.204,15.239,14.798,15.085]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"07_create10k","values":{"total":[458.229,455.732,458.674,456.721,439.584,454.299,455.947,456.059,452.644,439.539,456.161,455.587,455.285,453.9,456.662],"script":[101.254,100.404,101.959,103.272,100.247,100.589,100.871,99.356,99.6,101.817,100.854,101.557,103.437,101.597,100.443],"paint":[347.657,346.497,347.793,344.647,330.122,345.225,345.531,347.482,344.023,330.113,346.298,344.605,342.457,343.064,344.15]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.139,58.109,53.133,52.625,57.603,52.185,55.087,54.213,53.545,52.749,54.92,52.961,56.765,52.25,52.504],"script":[8.321,8.599,8.298,8.265,8.702,8.12,9.532,8.672,8.364,8.222,8.123,8.074,8.117,7.922,8.218],"paint":[37.708,38.625,38.012,37.896,38.603,37.292,38.779,37.969,38.348,37.874,37.795,38.184,38.034,37.65,37.714]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.658,38.409,13.223,15.03,37.311,14.689,14.51,14.227,13.801,14.807,14.202,15.092,15,14.023,37.126],"script":[12.28,11.448,12.062,10.494,12.346,12.081,11.641,10.659,10.644,11.845,12.273,10.286,11.075,12.121,11.633],"paint":[1.509,2.224,1.037,2.566,1.132,0.76,1.533,1.853,1.022,0.899,1.811,2.472,1.739,1.797,2.115]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5522308349609375]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.679945945739746]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.737974166870117]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0723180770874023]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.29666233062744]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.5205078125]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.1708984375]}},{"framework":"elm-v0.19.1-3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[67.9]}},{"framework":"ember-v5.3.0-keyed","benchmark":"01_run1k","values":{"total":[66.71,69.146,69.164,66.534,66.598,68.621,68.591,69.048,68.004,68.385,66.582,69.331,67.363,67.185,67.425],"script":[32.01,33.279,32.956,31.48,31.561,33.291,32.509,34.001,32.728,32.972,31.869,33.702,31.693,32.254,31.931],"paint":[34.208,35.38,35.669,34.606,34.58,34.845,35.6,34.596,34.751,34.947,34.226,35.163,35.227,34.452,35.022]}},{"framework":"ember-v5.3.0-keyed","benchmark":"02_replace1k","values":{"total":[84.388,83.094,82.163,81.283,81.6,82.397,83.774,83.817,82.606,83.712,83.251,83.839,82.947,84.149,84.758],"script":[44.427,44.98,44.233,42.627,43.616,44.464,45.342,43.841,44.604,44.997,44.915,45.18,44.661,45.901,44.281],"paint":[39.465,37.589,37.449,38.156,37.492,37.425,37.952,39.475,37.498,38.228,37.853,38.13,37.784,37.727,39.832]}},{"framework":"ember-v5.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.456,24.091,25.104,24.154,25.734,24.264,23.36,23.614,23.469,24.021,24.062,24.584,23.118,23.107,23.247],"script":[8.367,7.821,7.233,7.847,7.531,8.203,7.665,7.562,8.021,7.999,7.58,8.693,7.695,7.379,7.522],"paint":[14.59,13.926,16.725,14.382,16.381,14.448,14.535,14.471,13.936,14.747,15.16,12.707,14.242,14.335,14.094]}},{"framework":"ember-v5.3.0-keyed","benchmark":"04_select1k","values":{"total":[18.224,18.463,17.119,18.041,19.737,18.623,17.62,18.856,18.047,17.089,17.348,17.499,17.282,17.902,18.211,17.672,17.637,17.995,18.297,18.149,16.719,17.633,20.418,17.971,16.954],"script":[14.601,14.684,13.93,15.041,14.573,15.105,14.516,15.679,14.79,13.903,14.491,13.966,14.355,15.015,14.539,14.413,14.503,14.239,14.578,14.857,14.036,14.224,16.03,15.012,14.502],"paint":[2.469,2.845,2.224,2.369,3.389,2.854,2.121,2.565,1.389,2.537,1.914,2.996,2.255,2.699,3.061,3.081,2.091,3.134,3.535,2.532,1.268,3.236,3.334,1.402,2.279]}},{"framework":"ember-v5.3.0-keyed","benchmark":"05_swap1k","values":{"total":[30.551,28.709,28.139,29.277,28.855,30.904,29.182,29.258,28.924,29.327,29.202,28.838,28.496,28.474,29.877],"script":[9.095,9.457,9.118,10.21,9.1,9.215,10.093,9.645,8.984,9.707,8.519,9.705,8.854,9.643,10.642],"paint":[19.97,16.557,17.732,16.926,18.762,19.7,17.688,17.799,18.481,17.354,19.616,17.459,18.322,17.451,17.888]}},{"framework":"ember-v5.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.692,24.992,24.726,24.465,24.569,24.348,24.498,24.308,25.334,24.314,24.389,24.366,24.391,24.62,24.534],"script":[8.955,9.113,9.226,8.81,8.849,8.928,8.994,8.882,8.902,8.867,8.922,8.565,8.99,8.855,8.813],"paint":[14.954,15.011,14.71,14.84,14.639,14.647,14.683,14.32,15.059,14.141,14.085,14.987,14.32,14.674,14.969]}},{"framework":"ember-v5.3.0-keyed","benchmark":"07_create10k","values":{"total":[611.034,602.99,598.542,599.946,603.323,611.057,610.88,608.843,616.185,610.655,610.726,614.524,601.713,620.706,606.016],"script":[247.069,238.722,235.028,238.869,242.338,251.736,249.04,248.167,248.235,247.331,249.572,251.064,245.268,248.331,244.793],"paint":[356.843,357.025,355.877,353.849,353.742,352.212,354.763,353.529,360.869,355.78,354.027,356.249,349.321,364.899,354.133]}},{"framework":"ember-v5.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[78.722,79.082,80.242,78.134,80.347,79.419,79.389,80.968,81.282,79.951,79.679,79.148,80.894,79.803,80.679],"script":[37.574,38.027,38.827,37.155,38.986,37.874,37.515,37.92,38.958,38.157,37.531,37.702,38.425,37.917,38.678],"paint":[40.185,40.078,40.457,40.021,40.435,40.581,40.995,42.075,41.361,40.829,41.196,40.505,41.294,40.934,41.067]}},{"framework":"ember-v5.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.967,21.922,20.034,21.48,20.639,21.6,21.931,21.004,20.706,20.562,21.108,22.918,20.738,21.628,21.64],"script":[19.369,20.159,18.585,19.349,18.722,19.344,19.325,18.928,18.823,18.344,18.973,20.925,18.557,19.44,19.856],"paint":[1.495,1.662,1.344,1.361,1.131,1.95,1.24,1.365,1.046,2.123,1.233,1.721,1.832,2.073,1.012]}},{"framework":"ember-v5.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[6.789891242980957]}},{"framework":"ember-v5.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.453709602355957]}},{"framework":"ember-v5.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.629490852355957]}},{"framework":"ember-v5.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.034618377685547]}},{"framework":"ember-v5.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[58.77493953704834]}},{"framework":"ember-v5.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[433.8076171875]}},{"framework":"ember-v5.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[103.873046875]}},{"framework":"ember-v5.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[588.5]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"01_run1k","values":{"total":[47.883,47.273,47.471,49.074,48.267,49.796,49.405,48.872,47.711,46.752,50.05,48.248,47.922,49.135,47.321],"script":[11.727,11.139,11.057,12.122,11.831,12.716,12.391,12.281,11.299,11.252,12.765,11.754,11.166,12.303,11.093],"paint":[35.703,35.713,35.973,36.547,36.006,36.643,36.544,36.148,35.979,35.069,36.848,36.031,36.316,36.404,35.799]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"02_replace1k","values":{"total":[54.476,52.684,53.092,53.795,54.029,52.922,54.111,54.346,54.987,54.285,52.737,52.074,53.246,53.864,52.933],"script":[16.598,15.133,15.268,15.507,16.381,15.461,15.578,15.42,15.947,16.392,15.373,15.428,15.56,15.407,15.154],"paint":[37.391,37.088,37.386,37.814,37.179,37.006,38.085,38.475,38.58,37.439,36.917,36.191,37.237,37.986,37.334]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.688,18.355,16.958,16.915,16.963,19.477,17.349,16.601,17.008,17.105,16.924,16.549,16.205,16.545,16.575],"script":[0.925,1.232,0.851,1.236,0.973,0.953,1.118,1.172,0.253,1.038,0.554,1.232,0.26,0.609,1.188],"paint":[15.176,16.055,14.19,14.38,14.312,16.011,14.348,13.676,15.566,14.647,14.697,14.104,14.878,14.38,14.054]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"04_select1k","values":{"total":[2.386,4.053,2.569,2.195,3.23,2.784,3.647,2.826,2.771,2.81,2.551,3.104,2.584,3.471,2.225,2.233,2.842,2.851,4.937,3.867,4.999,2.443,4.282,2.762,2.506],"script":[0.053,0.055,0.532,0.052,0.758,0.053,0.928,0.051,0.064,0.687,0.051,0.871,0.056,0.826,0.052,0.051,0.056,0.055,1.015,0.051,0.051,0.055,0.056,0.051,0.449],"paint":[2.233,1.41,1.579,1.102,2.376,2.63,2.389,2.68,2.503,1.983,2.397,1.744,2.432,2.043,2.081,1.223,1.772,1.819,1.77,1.433,2.036,2.298,2.021,2.611,1.955]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"05_swap1k","values":{"total":[20.56,21.199,19.828,20.997,19.857,19.654,20.24,20.301,20.697,20.367,19.512,19.157,20.149,19.939,21.206],"script":[1.007,1.496,0.9,1.498,0.594,0.667,1.089,0.813,0.893,1.095,1.267,1.029,1.543,1.026,1.268],"paint":[18.078,18.588,16.983,18.463,18.466,17.635,16.907,17.633,18.077,17.635,16.792,17.127,16.652,17.851,18.372]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.988,16.039,15.96,16.043,16.001,15.891,15.921,16.337,15.666,15.917,16.994,15.937,16.425,15.746,15.993],"script":[0.598,0.609,0.386,0.579,0.598,0.615,0.484,0.612,0.614,0.58,0.636,0.605,0.633,0.456,0.584],"paint":[14.916,14.609,14.837,14.434,14.876,14.75,14.383,14.57,14.329,14.603,15.279,14.044,14.861,14.395,14.647]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"07_create10k","values":{"total":[481.594,476.456,481.917,482.119,477.012,477.733,471.028,478.382,474.083,477.123,476.86,476.487,482.091,479.024,482.596],"script":[123.935,125.234,124.693,123.206,122.656,125.202,120.377,124.027,124.172,124.872,123.431,125.568,127.708,122.395,128.469],"paint":[350.944,344.355,350.529,352.186,347.565,345.828,343.782,347.529,343.161,345.561,346.657,344.226,347.629,349.508,347.44]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.713,54.962,53.591,53.69,54.768,52.81,53.09,54.597,52.989,53.043,52.369,52.131,54.94,53.114,52.906],"script":[10.848,11.634,10.705,10.69,11.378,10.488,11.065,11.587,10.806,10.976,10.421,10.65,11.47,10.541,11.047],"paint":[41.96,42.402,41.961,42.107,42.497,41.431,41.113,42.097,41.256,41.135,41.045,40.584,42.572,41.671,40.947]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.065,12.331,12.364,11.815,12.389,12.015,12.949,12.359,11.977,12.37,13.591,11.977,12.53,11.879,11.764],"script":[10.635,10.515,10.605,9.961,10.688,9.687,11.049,10.417,10.561,11.169,10.783,10.374,10.715,10.404,9.912],"paint":[1.342,1.636,0.837,1.762,1.615,1.402,1.59,1.847,1.314,0.374,2.173,1.506,1.713,1.387,1.749]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4886503219604492]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.937403678894043]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0795717239379883]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7443532943725586]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.145925521850586]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.2041015625]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8798828125]}},{"framework":"fntags-v0.3.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.1]}},{"framework":"fre-v2.5.5-keyed","benchmark":"01_run1k","values":{"total":[55.013,53.67,61.833,60.861,53.916,60.372,53.21,54.313,55.139,63.759,56.338,61.826,63.886,65.966,65.968],"script":[16.8,16.914,17.858,17.869,16.932,17.581,17.325,16.648,17.462,18.311,17.72,17.429,17.318,18.85,19.264],"paint":[36.934,36.299,36.801,36.029,36.557,36.155,35.58,36.637,36.653,37.37,37.529,37.55,37.393,37.944,38.019]}},{"framework":"fre-v2.5.5-keyed","benchmark":"02_replace1k","values":{"total":[61.185,61.547,62.261,62.184,60.844,61.188,62.793,63.819,63.928,63.047,61.719,62.403,62.408,63.961,61.768],"script":[23.504,23.454,22.829,22.748,23.044,22.536,23.119,23.419,24.114,22.282,22.672,22.158,22.674,22.303,22.605],"paint":[37.049,37.464,38.736,38.176,37.205,38.053,39.033,38.891,39.119,39.606,38.414,39.398,38.649,39.128,38.495]}},{"framework":"fre-v2.5.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[49.973,50.28,50.436,28.792,48.484,27.395,24.836,28.998,49.118,50.679,28.576,47.929,49.7,50.597,29.549],"script":[11.676,10.038,9.646,9.452,8.67,8.794,9.971,10.822,10.74,11.095,10.465,10.152,10.547,10.564,8.745],"paint":[17.31,16.997,16.244,16.691,16.322,17.082,14.622,17.118,15.726,15.994,16.147,16.638,17.244,17.653,17.297]}},{"framework":"fre-v2.5.5-keyed","benchmark":"04_select1k","values":{"total":[9.433,10.985,15.231,5.701,5.384,10.515,9.199,9,8.127,13.335,17.654,16.035,9.812,5.926,5.465,5.367,16.605,6.411,9.616,5.272,4.804,9.254,13.678,17.113,13.159],"script":[4.744,3.709,4.023,2.84,2.916,3.423,4.205,4.613,3.059,3.008,5.296,3.162,3.802,2.246,2.816,2.537,5.025,3.668,3.548,2.803,3.078,3.906,3.647,4.419,3.757],"paint":[4.372,2.549,2.894,2.715,2.016,4.453,3.378,3.778,2.997,3.922,4.054,3.619,4.027,2.746,1.824,2.68,4.553,1.873,3.519,2.342,1.592,3.835,4.061,5.069,4.68]}},{"framework":"fre-v2.5.5-keyed","benchmark":"05_swap1k","values":{"total":[22.731,21.924,48.861,22.675,21.432,23.182,21.87,21.717,23.441,43.465,21.463,21.808,21.732,26.957,23.33],"script":[3.659,4.176,4.151,4.413,3.508,3.209,4.379,3.872,3.614,4.227,4.228,3.471,4.806,4.162,3.214],"paint":[18.934,17.618,19.629,17.642,17.796,17.915,17.376,17.352,18.989,17.42,17.108,18.15,16.813,19.694,17.911]}},{"framework":"fre-v2.5.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.817,17.287,16.884,19.763,20.557,17.3,17.166,17.575,17.696,17.218,19.297,17.214,16.863,17.236,19.879],"script":[1.684,1.593,1.559,1.678,1.472,1.746,1.631,1.666,1.816,1.447,1.552,1.638,1.725,1.399,1.601],"paint":[15.298,13.878,14.61,16.329,16.968,14.548,14.547,14.671,14.946,14.541,15.906,15.07,14.279,14.583,16.242]}},{"framework":"fre-v2.5.5-keyed","benchmark":"07_create10k","values":{"total":[537.581,532.388,536.663,536.152,537.391,532.663,534.684,534.155,538.312,536.073,531.728,530.268,535.414,536.632,536.267],"script":[166.889,167.398,164.622,164.399,167.397,167.023,169.767,165.676,171.018,171.148,163.914,165.294,167.258,168.744,169.828],"paint":[362.956,358.206,359.311,362.046,361.139,358.238,358.154,358.172,359.086,358.162,360.615,358.342,358.983,361.101,359.738]}},{"framework":"fre-v2.5.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[82.406,82.287,82.854,62.8,81.391,79.183,82.629,81.712,82.766,61.297,64.092,83.31,61.776,81.856,78.717],"script":[20.671,20.046,20.407,19.851,19.554,19.604,18.835,20.057,19.331,19.514,20.35,19.993,18.873,20.114,19.334],"paint":[43.382,41.591,41.774,42.293,41.667,41.249,43.137,41.725,43.243,41.086,41.798,42.893,41.676,42.96,41.037]}},{"framework":"fre-v2.5.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.42,21.412,18.499,21.48,19.605,18.273,18.705,21.991,18.998,19.033,22.856,21.582,18.552,21.237,21.835],"script":[17.45,17.091,16.32,17.505,17.7,15.961,17.507,18.441,16.49,16.916,18.586,17.185,16.646,17.592,17.863],"paint":[3.384,3.293,1.124,3.736,1.122,2.219,1.1,3.092,1.634,1.336,2.233,3.531,1.811,2.733,3.272]}},{"framework":"fre-v2.5.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5240669250488281]}},{"framework":"fre-v2.5.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.82424259185791]}},{"framework":"fre-v2.5.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.440950393676758]}},{"framework":"fre-v2.5.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[15.879773139953613]}},{"framework":"fre-v2.5.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.599735260009766]}},{"framework":"fre-v2.5.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.28515625]}},{"framework":"fre-v2.5.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.0029296875]}},{"framework":"fre-v2.5.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.5]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"01_run1k","values":{"total":[56.807,44.741,44.911,57.777,59.377,59.27,45.646,58.816,58.198,45.714,44.714,45.538,45.455,57.022,44.737],"script":[11.588,12.422,11.932,11.08,11.923,12.536,12.211,12.298,12.067,11.839,11.766,12.545,11.602,12.014,12.183],"paint":[32.8,32.091,32.737,33.203,33.441,34.326,32.909,33.485,33.406,33.612,32.704,32.754,33.642,32.82,32.316]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"02_replace1k","values":{"total":[52.441,52.738,52.477,52.555,53.131,51.677,54.817,52.608,53.094,52.258,53.591,52.886,53.383,52.656,52.881],"script":[17.261,16.532,17.352,16.703,17.162,17.19,17.401,16.472,17.471,17.59,17.807,16.866,17.357,17.227,16.802],"paint":[34.92,35.972,34.849,35.564,35.72,34.223,36.818,35.869,35.347,34.356,35.507,35.761,35.762,35.183,35.639]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.379,18.31,18.651,18.078,18.185,18.831,22.552,19.687,22.034,19.937,21.731,19.165,62.777,58.467,19.31],"script":[4.03,4.061,3.958,4.415,3.787,4.186,4.517,4.575,5.334,4.786,4.351,3.289,3.36,3.597,3.848],"paint":[13.02,13.737,14.579,13.315,14.283,13.97,15.424,13.453,15.683,15.013,16.213,13.662,16.422,14.045,13.4]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"04_select1k","values":{"total":[7.618,8.903,5.906,7.951,4.172,7.674,8.682,6.553,9.846,7.505,5.593,7.272,7.354,7.423,9.786,12.739,8.399,4.731,16.688,4.417,13.435,7.61,6.732,15.594,14.961],"script":[2.568,2.239,1.847,1.955,1.217,2.618,3.656,1.525,2.77,1.917,0.713,3.069,2.462,1.521,2.961,3.304,1.7,1.189,1.978,1.357,2.284,2.24,1.9,2.636,3.075],"paint":[3.695,4.608,2.863,4.821,2.043,2.786,4.112,2.718,4.787,3.497,2.76,4.517,4.372,4.182,4.277,3.973,3.227,2.456,2.678,2.438,4.343,3.612,3.42,3.285,3.704]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"05_swap1k","values":{"total":[61.952,62.231,20.202,62.518,24.548,20.877,66.484,24.943,61.375,66.345,66.884,19.448,67.485,63.253,19.403],"script":[1.709,1.886,2.086,1.72,2.088,1.762,2.198,2.619,2.203,2.111,3.212,1.807,2.629,1.465,1.91],"paint":[17.261,18.12,16.522,16.678,18.261,16.841,18.909,18.993,16.421,18.62,19.215,16.95,19.643,17.365,17.373]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.258,18.476,16.284,16.056,16.264,16.064,16.132,16.656,16.193,15.988,18.236,18.095,16.09,18.074,15.422],"script":[0.985,0.855,1.016,0.836,0.849,0.807,0.817,1.179,0.86,1.041,1.147,0.849,1.087,0.945,1.111],"paint":[14.217,15.847,14.177,14.269,14.201,14.036,14.382,14.477,14.405,13.905,15.324,15.125,13.687,15.422,13.595]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"07_create10k","values":{"total":[1440.442,1471.929,1420.4,1426.394,455.943,454.885,457.193,1420.856,1433.749,1426.596,1419.812,1411.512,449.99,1432.058,452.94],"script":[119.508,109.344,115.919,113.769,119.324,118.377,118.559,115.97,111.912,113.727,112.906,115.709,114.928,110.786,115.672],"paint":[346.278,349.142,344.203,347.435,321.954,321.929,324.04,343.494,341.048,349.478,347.632,338.177,319.976,341.587,322.92]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.208,53.708,53.265,53.268,53.308,53.678,51.192,52.486,52.338,52.172,52.079,50.633,51.058,51.637,53.923],"script":[14.455,13.286,13.918,14.722,13.495,13.806,13.435,13.802,14.265,13.974,13.427,13.544,13.446,13.908,13.897],"paint":[39.069,39.161,38.997,38.183,38.862,38.851,37.428,38.311,37.725,37.617,38.301,36.717,36.357,37.399,39.438]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.102,11.65,15.193,11.863,14.278,11.289,14.438,11.516,11.277,14.807,14.404,14.069,14.198,11.469,14.516],"script":[10.253,10.376,11.303,9.702,10.542,9.592,11.192,10.196,9.641,10.476,10.131,10.183,10.211,10.06,10.529],"paint":[4.608,1.082,3.289,1.752,2.885,1.616,2.572,1.239,1.33,3.452,3.38,2.957,1.5,1.329,2.516]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5705032348632812]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.717648506164551]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.7158098220825195]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0052642822265625]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.63257598876953]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.884765625]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1357421875]}},{"framework":"frei-hooks-v1.1.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.1]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"01_run1k","values":{"total":[69.388,69.744,71.492,68.89,68.387,70.05,70.768,69.297,72.559,71.269,70.155,68.872,70.542,71.825,72.641],"script":[36.038,36.171,37.711,35.468,35.083,36.21,36.821,35.862,37.759,36.935,36.508,35.608,37.069,38.16,38.016],"paint":[33.184,33.399,33.612,33.263,33.142,33.667,33.786,33.257,34.636,34.176,33.486,33.1,33.304,33.395,34.457]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"02_replace1k","values":{"total":[85.328,84.906,84.623,83.937,82.956,84.372,85.456,84.991,84.571,85.672,85.106,85.391,86.544,86.007,84.013],"script":[48.518,48.074,47.873,47.831,46.687,47.545,49.174,48.325,47.55,48.855,48.433,48.703,48.326,48.492,47.92],"paint":[36.613,36.645,36.579,35.918,36.086,36.654,36.106,36.484,36.839,36.628,36.493,36.501,38.036,37.179,35.906]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.093,26.315,21.735,20.783,20.966,21.958,20.351,21.756,21.457,23.678,20.942,20.845,24.072,21.015,20.852],"script":[6.148,7.289,7.342,5.926,6.928,6.819,5.485,7.096,6.834,6.108,5.531,7.028,6.937,7.232,6.914],"paint":[14.829,17.809,14.281,14.732,13.928,14.065,13.944,14.027,14.095,17.041,14.297,13.695,16.722,13.275,13.815]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"04_select1k","values":{"total":[22.221,20.598,22.42,17.732,20.173,20.628,21.53,20.309,20.815,20.769,20.605,18.376,21.711,19.548,20.077,21.522,21.4,17.463,21.547,19.024,20.546,20.278,21.238,21.14,19.868],"script":[16.577,14.461,15.694,15.029,15.161,15.528,16.581,15.316,15.17,15.135,14.723,14.665,15.983,13.3,14.594,15.337,15.906,14.457,15.917,15.296,15.007,15.707,16.147,15.843,14.299],"paint":[3.994,4.031,4.034,2.413,4.499,4.607,3.132,3.875,4.705,3.187,5.187,2.337,3.726,5.34,3.853,4.392,4.086,2.482,3.736,2.476,4.206,3.367,3.509,4.405,5.171]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"05_swap1k","values":{"total":[24.154,28.587,24.085,24.593,25.004,25.321,27.866,23.855,27.009,23.692,29.023,24.023,23.795,24.698,27.288],"script":[6.265,6.931,6.846,6.548,6.851,6.98,6.821,5.988,7.145,6.217,6.955,6.717,6.192,6.141,6.309],"paint":[17.761,20.075,16.751,16.933,17.544,18.199,20.034,17.753,19.239,17.356,20.576,17.127,17.052,17.94,19.198]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[23.799,23.464,25.578,24.054,23.854,23.76,24.083,26.425,24.579,23.629,24.189,26.953,23.55,23.332,24.299],"script":[8.352,8.565,8.787,8.759,8.694,8.584,8.675,8.997,9.186,8.754,8.914,9.694,8.781,8.436,8.849],"paint":[14.376,13.873,15.729,14.567,13.876,14.559,14.656,15.521,14.465,13.971,14.558,16.293,14.056,14.183,14.369]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"07_create10k","values":{"total":[618.507,611.162,618.924,624.309,611.819,620.851,623.602,621.635,610.547,622.381,618.728,605.37,621.117,619.046,608.967],"script":[260.03,258.667,266.322,263.239,261.535,263.323,264.047,262.505,260.13,264.965,259.789,260.652,263.771,259.717,260.871],"paint":[355.751,349.662,349.931,358.225,347.235,354.392,356.695,356.137,347.513,354.488,355.955,341.917,354.43,356.5,345.137]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[81.083,82.013,80.86,81.824,81.167,80.606,80.12,82.413,81.051,83.324,81.52,81.199,82.531,80.444,79.536],"script":[41.982,42.511,41.582,42.65,41.325,41.794,41.166,42.049,42.551,43.129,42.179,42.147,42.093,41.249,40.382],"paint":[38.792,39.192,38.988,38.876,39.543,38.52,38.644,40.084,38.209,39.905,39.07,38.775,40.144,38.905,38.869]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.141,28.092,25.263,26.776,28.687,27.572,26.997,27.654,23.819,22.343,26.401,26.24,27.846,27.684,27.621],"script":[22.881,23.353,23.901,22.637,24.831,23.878,23.942,24.547,20.865,20.688,22.254,22.211,24.476,24.144,23.879],"paint":[2.637,3.724,1.29,3.131,3.306,3.488,2.832,2.183,2.888,1.59,2.706,3,2.388,3.32,3.377]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.218135833740234]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[11.522627830505371]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[11.585281372070312]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.664566993713379]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[61.189045906066895]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[111.869140625]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[28.9296875]}},{"framework":"glimmer-2-v2.0.0-beta.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[149.9]}},{"framework":"goui-v0.1.2-keyed","benchmark":"01_run1k","values":{"total":[44.072,44.433,48.214,44.391,46.909,44.155,45.043,46.821,44.429,44.745,46.562,47.197,44.448,47.241,46.334],"script":[11.165,11.539,12.515,11.408,11.544,11.268,11.763,12.575,11.347,11.458,12.774,12.889,11.648,12.185,12.679],"paint":[32.484,32.483,35.242,32.577,34.947,32.463,32.859,33.839,32.675,32.879,33.365,33.887,32.372,34.649,33.249]}},{"framework":"goui-v0.1.2-keyed","benchmark":"02_replace1k","values":{"total":[58.924,56.569,56.663,59.337,56.423,56.321,56.137,56.793,57.55,55.477,55.135,58.043,55.933,55.166,57.316],"script":[23.206,21.35,21.777,23.723,21.522,21.371,21.617,21.766,22.932,20.792,21.021,23.073,21.399,21.088,22.573],"paint":[35.117,34.79,34.466,35.173,34.464,34.501,34.088,34.544,34.189,34.251,33.675,34.537,34.08,33.664,34.319]}},{"framework":"goui-v0.1.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.567,18.053,18.712,18.232,17.723,18.005,17.042,18.033,18.371,19.844,18.121,17.729,17.279,18.911,18.229],"script":[2.18,3.046,3.159,2.561,2.949,2.701,2.653,3.258,3.184,2.436,2.521,2.503,2.246,3.119,3.166],"paint":[15.201,12.901,14.048,14.967,13.109,14.173,13.376,12.937,13.68,16.037,14.425,13.963,14.029,13.728,14.081]}},{"framework":"goui-v0.1.2-keyed","benchmark":"04_select1k","values":{"total":[3.775,4.012,4.026,4.1,3.777,3.963,4.325,3.668,4.243,4.342,3.977,4.048,3.792,3.9,3.763,3.501,4.085,4.461,3.239,4.464,3.969,3.4,3.758,3.871,5.612],"script":[1.365,1.528,1.428,1.072,0.666,1.279,2.06,1.028,1.83,1.681,1.777,1.77,1.308,1.264,1.841,1.579,1.61,1.747,1.027,1.21,1.323,0.65,1.384,1.454,1.685],"paint":[2.287,1.206,2.147,2.032,2.993,2.565,1.061,2.53,1.781,1.561,1.453,2.156,2.357,2.525,1.797,1.472,2.021,1.86,1.405,1.299,1.745,2.547,2.252,1.736,1.784]}},{"framework":"goui-v0.1.2-keyed","benchmark":"05_swap1k","values":{"total":[19.602,19.909,19.026,19.104,21.903,19.309,19.275,19.57,19.101,19.36,19.342,19.871,20.338,18.851,19.495],"script":[1.823,1.347,1.272,1.189,2.042,1.242,1.195,1.539,2.184,0.654,1.342,2.148,2.079,1.076,1.069],"paint":[16.392,16.997,16.543,16.496,17.22,17.107,16.809,16.716,15.863,17.023,16.408,16.105,16.431,16.425,16.459]}},{"framework":"goui-v0.1.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.686,15.931,15.961,16.189,16.32,15.579,15.411,15.4,15.405,15.545,15.8,15.42,15.423,15.543,15.842],"script":[0.69,0.916,0.691,0.674,0.874,0.728,0.674,0.65,0.653,0.67,0.723,0.683,0.669,0.745,0.676],"paint":[14.489,14.272,14.51,14.732,14.486,13.77,14.011,13.9,13.733,13.819,14.325,14.018,13.696,14.094,14.434]}},{"framework":"goui-v0.1.2-keyed","benchmark":"07_create10k","values":{"total":[488.323,485.741,487.759,483.003,486.491,487.696,500.386,479.855,485.739,485.947,495.399,489.205,482.945,491.127,484.563],"script":[150.058,149.474,147.148,145.831,151.468,153.341,148.598,146.783,150.016,151.115,151.289,145.432,147.6,148.004,149.261],"paint":[330.532,329.581,333.971,330.445,328.246,327.71,345.147,326.376,329.065,328.142,337.467,337.07,328.648,336.395,328.662]}},{"framework":"goui-v0.1.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.449,51.916,54.145,52.395,52.807,51.784,52.727,53.095,52.891,51.236,52.626,51.174,52.318,52.201,51.848],"script":[13.409,13.295,13.168,13.591,13.113,13.419,13.292,12.993,13.158,12.863,13.382,12.905,13.389,13.124,13.214],"paint":[38.176,37.761,40.097,37.973,38.746,37.469,38.529,39.144,38.836,37.502,38.393,37.408,38.026,38.211,37.789]}},{"framework":"goui-v0.1.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.925,17.844,18.065,17.782,17.934,17.241,17.685,17.452,17.448,17.698,17.597,17.714,17.195,17.441,17.508],"script":[15.983,16.46,15.837,16.077,15.932,15.381,15.838,15.588,15.61,15.632,16.152,15.854,15.661,15.912,15.86],"paint":[1.852,0.343,0.475,0.367,1.921,1.753,1.753,1.778,0.875,1.077,0.426,1.607,1.443,1.447,1.555]}},{"framework":"goui-v0.1.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6117849349975586]}},{"framework":"goui-v0.1.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.156764984130859]}},{"framework":"goui-v0.1.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.302860260009766]}},{"framework":"goui-v0.1.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[16.695096969604492]}},{"framework":"goui-v0.1.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.893425941467285]}},{"framework":"goui-v0.1.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.271484375]}},{"framework":"goui-v0.1.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.501953125]}},{"framework":"goui-v0.1.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[149.2]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"01_run1k","values":{"total":[51.385,51.601,51.123,49.967,51.17,51.316,50.883,50.246,51.837,52.358,52.377,52.565,51.062,50,49.243],"script":[17.358,16.311,16.387,16.361,17.305,16.364,16.592,16.883,16.962,16.501,16.471,16.874,16.269,16.745,16.006],"paint":[33.594,34.875,34.285,33.183,33.429,34.55,33.861,32.929,34.45,35.241,35.463,35.236,34.34,32.821,32.815]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"02_replace1k","values":{"total":[58.722,57.703,58.158,58.236,58.444,58.16,57.403,56.766,58.013,57.788,58.44,58.542,57.849,57.727,58.903],"script":[20.976,20.393,20.919,20.316,20.696,20.77,20.212,20.202,20.19,20.356,20.497,20.744,20.621,20.124,21.016],"paint":[37.297,36.836,36.808,37.437,37.278,36.936,36.729,36.083,37.283,36.964,37.47,37.324,36.748,37.111,37.405]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.41,18.973,17.529,18.427,17.382,16.901,17.14,17.591,17.611,17.285,17.591,17.377,17.059,17.785,17.625],"script":[1.642,1.816,1.349,2.359,1.794,1.574,1.124,1.85,1.373,1.287,1.621,1.602,1.665,1.575,1.897],"paint":[14.293,15.402,14.58,14.742,14.293,14.052,14.941,14.139,14.747,14.514,14.489,13.892,14.121,15,14.456]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"04_select1k","values":{"total":[5.296,4.981,4.952,5.423,4.251,4.694,5.087,5.478,5.27,5.192,5.579,5.149,5.361,5.326,4.505,5.411,5.104,4.796,6.378,5.186,4.475,5.298,5.462,5.269,5.001],"script":[2.64,2.411,2.203,2.612,1.975,2.197,2.558,2.057,2.448,2.95,2.556,2.209,2.371,2.58,1.957,3.131,2.655,2.449,3.16,2.837,2.525,2.753,2.151,2.791,2.316],"paint":[2.149,2.451,2.12,2.685,1.16,2.376,2.406,2.54,1.876,2.122,2.892,2.815,1.89,2.617,2.111,2.153,1.839,1.537,3.069,1.877,1.295,0.834,3.182,2.347,2.244]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"05_swap1k","values":{"total":[19.688,19.861,19.512,19.545,20.258,20.338,20.206,20.237,21.143,20.187,19.935,20.038,20.333,20.483,20.324],"script":[1.55,1.169,1.379,0.628,1.434,1.504,1.754,1.757,1.501,2.139,0.726,1.049,1.785,1.824,0.871],"paint":[16.791,17.079,17.025,17.625,17.306,17.159,16.895,16.468,17.79,16.555,17.827,16.984,17.563,17.524,18.469]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.765,15.654,15.704,16.032,16.046,15.81,15.952,15.96,15.808,15.984,15.356,15.846,16.544,15.827,15.775],"script":[0.715,0.788,0.696,0.688,0.709,0.677,0.932,0.705,0.885,0.855,0.672,0.684,0.715,0.822,0.727],"paint":[14.125,13.886,14.321,14.226,14.521,14.413,13.877,14.464,14.198,14.078,13.43,14.437,15.077,14.009,14.057]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"07_create10k","values":{"total":[505.89,527.949,498.982,499.54,496.439,519,502.515,505.091,503.207,493.874,492.483,490.645,488.684,490.086,495.692],"script":[159.128,160.875,158.064,155.855,155.809,157.899,155.613,159.584,157.383,155.213,154.338,153.196,153.826,153.283,150.63],"paint":[339.753,360.069,334.193,336.987,333.928,354.369,340.254,338.602,338.984,331.912,331.389,330.76,328.112,329.792,338.287]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.201,56.266,54.622,55.497,55.009,56.192,56.646,54.305,55.518,57.002,57.045,55.486,56.21,55.778,55.112],"script":[15.078,16.031,15.331,15.086,15.494,16.236,15.417,15.202,15.559,16.201,15.731,15.938,15.721,15.754,15.244],"paint":[39.134,39.305,38.4,39.512,38.626,39.043,40.315,38.218,39.033,39.902,40.394,38.658,39.595,39.032,38.977]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.961,23.052,21.873,22.25,21.314,21.63,22.741,22.382,22.257,21.598,23.106,22.447,22.06,21.201,23.031],"script":[20.066,21.164,20.031,20.01,19.298,20.244,21.113,20.623,20.111,19.658,20.636,20.262,20.573,19.935,20.591],"paint":[1.794,1.239,1.355,2.14,1.162,1.286,0.733,1.268,2.048,1.832,2.372,2.086,0.37,1.16,1.439]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5059423446655273]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.318429946899414]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.456076622009277]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0007925033569336]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.7171745300293]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.05859375]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.44921875]}},{"framework":"gxt-v0.0.37-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.6]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"01_run1k","values":{"total":[50.37,50.369,50.618,50.531,49.456,51.107,51.463,49.842,50.822,51.893,50.338,52.816,51.406,52.276,49.569],"script":[15.084,15.17,16.097,15.162,15.184,15.739,15.562,15.068,16.096,16.504,15.182,16.467,15.631,16.881,14.752],"paint":[34.84,34.758,34.071,34.932,33.831,34.916,35.469,34.338,34.278,34.937,34.718,35.894,35.335,34.937,34.383]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"02_replace1k","values":{"total":[56.832,55.765,55.24,57.958,55.518,56.653,56.583,56.034,56.218,57.327,55.592,57.044,57.308,57.968,56.139],"script":[20.261,19.441,19.413,20.766,19.51,20.242,19.982,19.412,19.481,19.754,19.533,20.271,19.793,20.905,19.881],"paint":[36.092,35.838,35.355,36.751,35.567,35.964,36.15,36.174,36.303,37.057,35.614,36.322,37.063,36.617,35.824]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.99,27.441,26.176,26.162,27.215,25.527,26.294,26.852,26.579,27.34,27.457,26.403,25.066,26.933,27.008],"script":[11.917,10.166,10.475,10.634,11.119,9.632,10.625,10.802,10.738,11.762,10.549,11.111,9.849,10.718,12.264],"paint":[14.706,15.02,14.183,14.019,14.017,14.136,14.191,14.488,14.426,14.254,14.844,13.981,13.69,13.202,13.027]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"04_select1k","values":{"total":[7.622,9.134,9.219,10.066,8.692,8.613,9.411,8.353,8.99,8.869,8.651,9.034,9.059,8.29,10.263,10.398,9.66,9.009,9.157,8.603,9.278,9.72,8.591,8.455,8.936],"script":[5.042,6.544,5.928,6.517,6.473,5.799,6.207,5.631,6.484,6.436,5.574,6.051,6.096,6.174,6.678,6.808,6.606,7.035,6.25,5.277,6.253,6.689,6.169,5.663,6.333],"paint":[1.511,1.844,2.982,2.901,1.745,1.36,2.496,2.158,1.751,1.093,2.42,1.777,2.412,1.209,3.428,3.406,2.9,1.147,1.971,2.729,2.306,2.871,1.343,1.768,1.599]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"05_swap1k","values":{"total":[24.314,24.444,24.896,23.969,25.549,23.728,22.909,23.244,24.104,22.96,22.695,23.828,23.353,24.308,23.581],"script":[4.751,6.05,5.355,4.972,5.929,5.512,4.609,5.567,5.256,5.127,4.897,5.668,4.701,6.291,5.791],"paint":[17.975,17.075,18.562,17.965,18.31,16.323,16.572,16.41,17.732,17.101,16.495,15.936,17.106,16.429,16.388]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.731,20.524,20.483,20.635,20.314,20.477,20.418,20.486,20.412,20.412,20.956,20.467,21.708,20.902,20.598],"script":[5.626,5.748,5.652,5.528,5.641,5.594,5.577,5.713,5.618,5.652,5.751,5.66,5.708,5.704,5.568],"paint":[14.346,14.006,13.743,14.343,13.95,13.921,14.075,14.004,13.997,14.018,14.424,13.847,14.763,14.401,14.263]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"07_create10k","values":{"total":[497.37,512.462,496.758,496.321,495.592,513.739,491.221,510.016,497.125,509.476,496.542,498.347,490.386,510.743,489.753],"script":[150.832,152.864,151.53,151.447,149.516,150.801,150.102,149.232,151.954,149.433,151.189,154.356,149.707,153.043,147.465],"paint":[338.721,352.77,337.74,337.331,339.23,356.073,334.398,353.899,338.25,353.123,338.473,337.108,333.861,350.943,335.572]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.832,58.874,59.629,59.428,59.509,59.626,58.062,59.44,60.628,59.196,59.529,59.04,58.487,59.651,58.536],"script":[18.389,17.785,18.276,18.251,18.249,17.949,17.621,18.135,18.218,18.507,17.763,18.613,18.36,19.119,17.851],"paint":[39.523,40.157,40.427,40.241,40.227,40.752,39.508,40.409,41.435,39.788,40.805,39.534,39.183,39.626,39.795]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[22.125,22.668,22.021,21.435,22.692,21.375,21.8,21.436,21.7,21.675,22.322,22.136,21.124,20.863,21.963],"script":[19.753,20.345,19.961,19.831,20.344,19.342,19.865,20.307,20.579,19.821,20.279,20.197,19.567,18.986,20.281],"paint":[2.282,2.201,1.56,0.704,2.253,1.949,1.821,0.37,0.371,1.765,1.948,0.931,1.466,0.572,1.576]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6217250823974609]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.078069686889648]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.20489501953125]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3353748321533203]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.196702003479004]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.1357421875]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.263671875]}},{"framework":"gyron-v0.0.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[102.2]}},{"framework":"helix-v0.0.10-keyed","benchmark":"01_run1k","values":{"total":[47.294,46.56,45.248,47.639,47.92,45.545,45.367,45.512,47.68,46.051,45.57,46.157,44.827,46.023,46.654],"script":[13.33,12.421,11.899,13.126,13.451,12.193,12.357,12.328,13.274,12.424,12.2,12.458,12.343,12.259,12.85],"paint":[33.537,33.704,32.915,34.096,34.025,32.947,32.582,32.73,34.029,33.206,32.949,33.277,32.068,33.377,33.383]}},{"framework":"helix-v0.0.10-keyed","benchmark":"02_replace1k","values":{"total":[50.051,50.714,50.554,49.59,50.869,50.503,50.477,50.607,50.068,50.222,50.131,51.166,50.585,51.144,52.434],"script":[15.307,15.34,15.243,15.01,16.006,15.726,15.724,15.297,15.488,15.664,15.794,16.068,15.774,15.625,15.846],"paint":[34.3,34.895,34.881,34.127,34.416,34.338,34.299,34.86,34.152,34.096,33.875,34.626,34.377,35.075,36.096]}},{"framework":"helix-v0.0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.48,26.249,24.615,24.597,23.849,23.553,24.131,25.323,24.354,24.244,25.611,25.305,23.696,24.16,23.754],"script":[8.505,8.384,8.429,9.187,7.85,8.394,8.291,9.443,8.146,8.573,8.89,8.77,8.259,7.845,8.307],"paint":[13.052,16.729,14.318,13.421,14.785,13.869,14.22,14.507,14.422,13.592,15.429,14.821,13.891,13.601,13.393]}},{"framework":"helix-v0.0.10-keyed","benchmark":"04_select1k","values":{"total":[7.56,7.49,7.717,7.198,6.995,7.647,8.615,8.208,7.941,8.03,7.692,7.329,7.335,7.736,7.604,7.693,7.193,7.599,7.451,8.302,7.31,7.28,7.73,7.123,7.458],"script":[4.442,4.981,4.518,4.877,4.795,4.951,5.46,4.896,5.243,5.244,5.194,4.518,5.089,4.697,4.48,5.413,4.563,4.922,5.15,5.606,4.595,4.77,5.101,4.167,4.441],"paint":[2.167,2.37,2.588,1.414,1.61,2.547,2.165,2.799,2.175,2.638,2.348,2.663,1.472,2.893,2.022,1.398,2.493,2.543,1.402,1.723,1.88,2.368,1.541,2.437,1.812]}},{"framework":"helix-v0.0.10-keyed","benchmark":"05_swap1k","values":{"total":[162.757,172.362,166.55,170.783,168.207,167.604,170.113,169.121,166.362,167.602,164.862,167.616,168.603,167.264,165.634],"script":[24.131,23.937,24.205,24.962,25.225,24.97,26.508,25.419,24.716,26.891,24.184,23.759,24.303,24.735,23.902],"paint":[136.448,146.083,141.178,143.671,141.054,140.392,142.151,141.501,139.229,139.081,138.772,141.723,142.454,139.759,140.559]}},{"framework":"helix-v0.0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.832,18.067,18.278,17.55,17.797,17.926,17.446,17.942,17.851,18.886,17.862,17.618,17.835,17.982,17.963],"script":[3.136,3.376,3.193,3.069,3.07,3.089,3.067,3.102,3.062,3.307,3.084,2.833,3.084,3.173,3.101],"paint":[13.642,13.986,14.046,13.733,14.001,14.071,13.671,14.097,14.027,14.43,13.721,13.724,14.027,14.087,13.313]}},{"framework":"helix-v0.0.10-keyed","benchmark":"07_create10k","values":{"total":[616.603,608.681,610.467,612.634,619.855,614.392,614.784,611.028,611.676,614.709,608.116,609.331,607.283,616.606,610.216],"script":[266.617,263.821,260.829,264.622,268.615,267.052,265.955,261.069,259.377,263.835,256.964,260.501,260.484,266.143,263.059],"paint":[343.112,338.07,342.832,340.898,344.523,340.495,342.08,343.252,345.258,344.126,344.28,342.093,340.09,343.708,340.413]}},{"framework":"helix-v0.0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.048,53.105,51.779,53.179,53.265,52.36,51.653,52.383,51.62,52.256,52.921,53.415,52.209,52.716,53.553],"script":[12.366,12.715,12.583,13.667,13.452,12.821,12.77,12.642,12.645,12.691,12.883,13.35,12.478,13.64,13.111],"paint":[38.773,39.429,38.29,38.59,38.918,38.626,37.997,38.846,38.102,38.68,39.109,39.123,38.796,38.117,39.482]}},{"framework":"helix-v0.0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.874,16.062,16.393,16.165,16.147,16.868,16.63,16.212,16.423,17.088,16.183,16.931,17.17,16.587,16.006],"script":[15.093,14.732,14.668,13.682,14.477,15.607,14.706,14.36,14.315,15.155,13.833,15.049,15.447,14.312,14.358],"paint":[1.673,0.907,1.636,2.39,0.782,1.085,1.838,1.761,2.016,1.045,2.256,0.573,1.631,1.29,0.738]}},{"framework":"helix-v0.0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.2800016403198242]}},{"framework":"helix-v0.0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.802334785461426]}},{"framework":"helix-v0.0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.361103057861328]}},{"framework":"helix-v0.0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.269955635070801]}},{"framework":"helix-v0.0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.50275802612305]}},{"framework":"helix-v0.0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[257.91796875]}},{"framework":"helix-v0.0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.92578125]}},{"framework":"helix-v0.0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[351.8]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"01_run1k","values":{"total":[56.885,57.755,56.673,57.957,56.877,57.613,57.02,56.919,56.458,56.1,55.717,57.778,57.605,58.747,56.525],"script":[22.069,22.659,21.768,22.654,22.885,22.554,22.906,22.213,21.964,22.741,22.466,22.444,22.74,24.118,21.603],"paint":[34.353,34.631,34.444,34.849,33.507,34.602,33.636,34.235,34.041,32.894,32.78,34.865,34.416,34.164,34.457]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"02_replace1k","values":{"total":[64.265,64.942,63.606,64.473,65.506,64.874,66.059,63.747,63.237,63.984,63.663,64.278,63.14,63.825,64.27],"script":[27.506,28.151,26.764,28.134,27.977,28.614,28.446,26.958,27.726,27.513,27.459,27.897,27.177,27.396,27.697],"paint":[36.292,36.325,36.356,35.89,37.086,35.794,37.165,36.338,35.041,36.025,35.722,35.935,35.501,35.933,36.074]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.558,17.951,17.911,16.991,18.37,17.241,17.707,17.562,17.401,17.333,17.128,17.502,18.21,17.177,17.243],"script":[1.912,2.399,2.267,1.384,2.947,2.179,1.874,1.959,2.378,1.663,1.653,2.328,2.664,1.894,1.971],"paint":[13.939,13.871,14.957,14.556,13.501,13.77,14.378,13.603,13.954,14.576,14.273,13.969,14.405,13.888,13.559]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"04_select1k","values":{"total":[3.798,4.483,4.054,4.051,4.271,4.284,4.181,4.345,5.848,4.599,4.778,3.792,4.279,4.079,4.908,4.349,4.062,5.76,4.163,3.672,4.345,4.906,3.799,4.096,3.824],"script":[1.319,1.565,1.783,2.059,1.778,1.773,1.631,1.988,1.824,1.907,1.803,1.337,1.803,1.651,1.072,1.837,1.521,1.93,1.803,1.341,2.145,2.424,1.412,1.257,1.529],"paint":[1.312,2.796,1.548,1.116,1.611,2.404,1.732,2.248,1.837,1.766,1.952,2.339,1.668,2.317,1.814,1.93,2.426,1.947,1.398,1.484,1.514,2.373,2.282,2.731,1.422]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"05_swap1k","values":{"total":[18.889,18.494,18.058,19.173,18.404,18.044,19.364,20.173,18.709,19.07,19.066,18.847,18.669,18.214,18.535],"script":[0.128,0.594,0.238,0.887,0.606,0.278,0.218,0.126,0.751,0.127,0.987,0.557,0.139,0.582,0.129],"paint":[18.002,16.271,16.385,16.968,15.984,15.364,18.082,18.085,16.691,17.014,16.565,17.047,17.429,16.293,16.809]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.239,15.346,15.516,15.274,15.136,15.425,15.268,15.101,15.015,15.192,15.206,15.116,15.525,15.413,15.156],"script":[0.14,0.393,0.384,0.45,0.122,0.331,0.125,0.282,0.264,0.369,0.124,0.314,0.336,0.127,0.125],"paint":[14.411,14.513,14.348,14.095,14.077,14.142,14.402,13.963,13.796,14.066,14.132,13.899,13.857,14.238,14.257]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"07_create10k","values":{"total":[607.9,608.802,601.576,600.655,602.549,604.44,603.271,605.283,606.348,596.766,599.185,598.518,597.356,598.013,601.927],"script":[240.524,240.68,240.362,240.615,240.407,241.883,236.97,237.722,238.258,234.695,238.042,233.182,234.812,231.937,237.955],"paint":[360.598,361.119,354.293,353.302,355.374,355.734,359.223,360.765,361.228,355.399,354.492,358.762,355.553,359.386,357.294]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.087,68.883,67.722,67.963,68.517,69.382,69.073,68.867,69.073,68.188,69.191,67.267,70.094,68.167,68.426],"script":[27.824,28.454,27.128,28.144,27.656,28.736,28.298,28.922,27.894,27.652,28.773,27.509,29.556,28.489,27.015],"paint":[39.365,39.526,39.677,38.908,39.839,39.724,39.876,39.043,40.271,39.619,39.499,38.834,39.627,38.77,40.493]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.805,14.351,13.77,15.755,14.223,13.835,14.298,14.38,13.422,13.643,13.661,13.875,14.252,13.672,13.603],"script":[12.509,12.457,12.035,13.561,12.348,12.021,12.474,12.65,11.504,11.525,11.931,12.398,11.882,11.56,11.227],"paint":[2.178,1.119,0.858,2.071,1.53,1.151,1.738,1.643,1.679,2.031,1.276,1.387,2.28,2.019,2.293]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.511500358581543]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.000864028930664]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.1734819412231445]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2538127899169922]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.361926078796387]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8046875]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.0556640625]}},{"framework":"hydro-js-v1.5.14-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.3]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"01_run1k","values":{"total":[42.893,46.465,41.165,43.329,51.168,44.184,50.262,48.383,50.161,48.041,49.439,46.121,44.45,48.59,49.6],"script":[8.479,8.887,8.689,9.326,9.304,8.597,9.079,8.682,9.142,9.022,9.758,8.642,8.826,8.313,9.532],"paint":[34.253,32.487,32.316,33.145,33.807,33.365,32.795,33.123,33.962,35.476,32.734,35.25,32.626,33.092,33.216]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"02_replace1k","values":{"total":[53.638,56.583,56.265,57.514,55.493,53.526,58.456,54.541,51.482,52.789,52.366,57.883,56.361,58.056,57.701],"script":[10.677,10.936,10.674,11.748,10.583,11.02,10.776,10.519,10.636,10.618,11.205,11.406,10.719,10.785,11.521],"paint":[36.443,35.303,35.738,37.086,35.512,35.188,36.372,35.82,35.755,34.767,36.797,36.27,35.006,35.672,36.184]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.824,17.173,17.015,16.85,16.758,17.148,32.815,33.108999999999995,16.914,33.178,33.248,19.453,33.022999999999996,33.427,33.905],"script":[3.029,2.696,2.952,3.038,2.306,1.822,2.553,2.948,3.318,2.807,3.24,2.192,2.911,3.442,3.279],"paint":[13.64,13.877,12.455,13.704,12.975,14.523,13.609,14.13,13.104,13.366,13.969,13.771,14.081,13.718,14.918]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"04_select1k","values":{"total":[4.017,4.701,5.099,4.052,3.194,4.428,4.202,6.267,3.873,4.335,3.818,7.776,3.632,4.023,3.656,3.59,4.679,5.198,3.755,4.449,5.126,4,3.767,3.672,3.696],"script":[1.745,1.186,1.437,2.192,1.704,1.809,1.075,0.782,1.307,1.936,1.533,1.711,1.281,0.679,1.238,0.996,1.366,1.513,1.317,1.14,1.123,1.328,1.301,1.557,1.114],"paint":[0.947,2.392,2.882,1.693,1.384,2.482,1.183,2.656,1.154,2.274,2.166,2.595,1.227,2.419,1.881,2.477,2.173,1.497,2.252,2.241,1.72,2.565,2.349,2.012,1.199]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"05_swap1k","values":{"total":[20.461,34.101,34.653,34.562,18.583,18.412,34.568,22.692,18.35,21.244,18.642,33.979,19.237,20.13,18.768],"script":[1.076,1.153,1.773,1.599,1.484,1.561,2.141,1.019,1.823,1.194,1.064,1.38,1.211,1.389,1.3],"paint":[16.573,15.567,17.256,16.924,16.994,16.745,16.388,20.985,16.274,17.382,16.98,16.261,17.541,18.542,16.474]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.767,19.961,20.207,16.135,14.19,19.757,20.516,15.124,15.592,17.281,13.551,14.53,13.804,13.832,19.351],"script":[0.605,0.692,0.713,0.407,0.883,0.686,0.716,0.726,0.713,0.713,0.686,0.522,0.905,0.591,0.716],"paint":[12.744,12.763,12.811,12.464,12.423,12.871,13.159,12.796,12.428,12.721,12.47,13.039,12.775,12.582,12.903]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"07_create10k","values":{"total":[443.092,464.403,449.473,438.575,446.883,445.298,438.95,441.381,447.872,449.661,445.36,451.038,447.031,447.494,464.416],"script":[92.771,98.234,97.475,91.466,91.793,98.809,93.257,97.752,99.388,98.546,94.86,99.402,93.884,93.836,97.014],"paint":[342.862,361.896,343.971,343.252,349.601,342.198,338.875,340.691,346.403,342.768,343.354,343.212,345.682,345.563,361.437]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.541,53.136,55.996,56.419,52.193,52.811,51.643,56.231,58.39,53.399,59.403,54.208,52.667,55.634,56.355],"script":[8.456,8.565,8.482,8.675,8.515,8.945,8.701,8.336,8.569,8.871,9.914,8.373,8.266,9.147,8.371],"paint":[38.23,38.697,38.854,38.1,37.945,37.383,37.226,37.798,38.322,38.755,37.614,38.831,38.783,39.034,38.44]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.567,12.08,11.466,11.879,10.843,12.06,11.823,12.902,13.745,27.709999999999997,11.392,11.675,11.579,12.605,12.041],"script":[10.011,10.303,9.181,10.39,9.687,10.262,9.105,9.396,9.399,10.385,9.503,9.411,9.505,10.919,9.57],"paint":[1.499,1.719,2.231,1.435,1.1,1.735,1.557,1.882,1.548,1.337,1.83,2.2,2.011,1.609,2.415]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4583148956298828]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.901303291320801]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.054821014404297]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6956262588500977]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[24.214308738708496]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.2744140625]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.5517578125]}},{"framework":"hyperapp-v2.0.22-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.9]}},{"framework":"imba-v1.5.2-keyed","benchmark":"01_run1k","values":{"total":[49.617,47.558,43.564,52.042,43.28,45.146,49.059,47.357,51.056,50.973,48.854,42.407,51.895,49.209,49.748],"script":[10.172,10.014,10.209,9.955,9.875,10.247,9.813,9.813,10.047,10.104,9.929,9.86,10.136,10.109,10.213],"paint":[32.308,32.694,32.549,32.528,32.575,33.841,31.539,34.646,32.947,33.499,35.045,32.411,35.013,33.238,33.795]}},{"framework":"imba-v1.5.2-keyed","benchmark":"02_replace1k","values":{"total":[55.774,52.697,51.961,50.437,61.506,56.45,54.081,54.21,51.826,60.821,52.076,57.131,57.246,50.936,54.926],"script":[13.416,13.479,12.783,13.253,13.963,12.938,13.855,13.16,13.049,13.491,13.396,13.386,13.308,12.901,13.069],"paint":[36.512,34.582,36.084,35.736,36.598,34.125,33.892,36.048,34.512,35.5,34.967,34.209,35.641,34.488,34.135]}},{"framework":"imba-v1.5.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.06100000000001,18.332,32.313,31.128,32.277,32.77,15.943,16.894,16.242,17.437,31.731,16.346,16.416,18.172,16.944],"script":[1.642,1.76,1.916,1.343,1.893,1.936,1.5,0.768,2.385,1.291,1.827,1.929,1.869,1.967,1.541],"paint":[14.729,14.94,14.363,13.754,13.23,14.434,13.403,14.682,13.754,14.323,13.182,14.318,13.59,14.173,14.438]}},{"framework":"imba-v1.5.2-keyed","benchmark":"04_select1k","values":{"total":[3.556,4.354,4.057,4.185,3.784,3.533,3.545,3.968,4.194,3.92,4.75,3.46,4.278,4.003,3.876,4.778,3.891,3.602,3.991,4.183,4.279,3.8,3.38,3.976,3.992],"script":[1.254,0.931,1.413,1.698,0.695,1.094,0.949,1.236,0.88,1.238,0.725,1.461,1.755,1.745,1.438,0.303,1.411,1.097,0.77,0.544,1.166,0.869,1.085,1.248,1.23],"paint":[2.172,3.292,0.706,1.567,0.92,1.996,1.7,2.493,3.167,1.569,2.75,1.167,1.824,1.374,1.761,2.599,1.833,1.056,2.276,2.449,2.083,2.062,1.786,1.283,2.266]}},{"framework":"imba-v1.5.2-keyed","benchmark":"05_swap1k","values":{"total":[35.489999999999995,22.628,18.373,34.931,19.384,21.83,19.112,20.156,34.80200000000001,20.78,21.672,21.477,21.336,19.141,19.5],"script":[2.167,1.822,1.741,1.645,0.731,2.104,0.811,1.912,1.004,1.382,1.224,1.288,0.798,1.02,1.318],"paint":[16.554,18.864,16.531,17.395,17.706,16.454,18.2,17.045,16.853,18.476,16.51,17.487,17.685,18.007,16.505]}},{"framework":"imba-v1.5.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.519,17.751,17.241,14.08,17.403,15.653,13.868,14.862,16.035,21.089,18.3,16.723,17.655,18.166,18.595],"script":[0.464,0.734,0.514,0.656,0.341,0.631,0.601,0.32,0.28,0.618,0.464,0.341,0.352,0.633,0.35],"paint":[12.916,13.209,12.869,12.98,13.314,12.697,13.125,13.32,13.216,13.014,12.912,13.282,13.41,12.844,13.208]}},{"framework":"imba-v1.5.2-keyed","benchmark":"07_create10k","values":{"total":[455.39,461.784,466.649,460.341,442.458,462.07,457.879,459.94,457.528,451.73,467.813,465.926,442.589,469.218,465.796],"script":[103.926,105.755,106.887,105.093,105.69,105.57,107.101,105.038,105.846,106.51,106.572,107.678,105.247,108.214,107.56],"paint":[348.03,350.561,350.245,351.689,334.678,348.541,343.065,352.814,349.544,341.196,358.319,352.504,331.526,354.916,356.105]}},{"framework":"imba-v1.5.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[97.128,98.281,102.924,97.374,97.84,102.446,101.979,100.19,98.85,105.31,103.86,99.656,98.639,98.393,103.399],"script":[22.149,21.783,22.012,22.04,21.917,22.34,22.482,21.932,22.204,22.443,22.442,22.335,22.322,22.435,22.205],"paint":[69.212,70.286,70.799,69.723,70.217,71.143,71.358,71.889,69.995,72.825,71.04,70.777,70.354,69.816,70.728]}},{"framework":"imba-v1.5.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.634,13.933,13.384,14.941,14.795,12.406,13.555,29.068000000000005,14.798,12.54,12.906,14.293,13.879,15.225,12.697],"script":[10.931,11.255,12.26,11.376,12.389,10.265,12.251,11.992,11.221,10.711,11.209,10.749,11.721,11.453,11.176],"paint":[1.83,2.615,1.068,1.335,2.343,1.301,1.242,1.078,0.998,0.426,0.881,1.308,2.099,1.385,1.465]}},{"framework":"imba-v1.5.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7603235244750977]}},{"framework":"imba-v1.5.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.596135139465332]}},{"framework":"imba-v1.5.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.667840003967285]}},{"framework":"imba-v1.5.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0240898132324219]}},{"framework":"imba-v1.5.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.482873916625977]}},{"framework":"imba-v1.5.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1181640625]}},{"framework":"imba-v1.5.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.0751953125]}},{"framework":"imba-v1.5.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[102.4]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"01_run1k","values":{"total":[43.801,45.308,45.455,44.808,45.525,45.503,46.047,44.525,44.921,44.559,45.59,45.848,46.339,45.487,45.45],"script":[10.748,10.354,10.547,10.669,10.491,11.496,11.782,10.599,10.438,10.428,10.549,11.526,11.946,11.828,10.474],"paint":[32.602,34.468,34.446,33.692,34.563,33.587,33.832,33.493,34.022,33.65,34.591,33.875,33.971,33.211,34.52]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"02_replace1k","values":{"total":[85.291,83.864,86.178,86.124,87.356,84.51,84.852,87.128,84.03,84.03,85.649,86.83,86.376,84.675,84.419],"script":[51.523,49.905,51.878,50.954,51.891,47.881,50.087,52.302,50.015,49.859,50.686,51.671,51.432,48.254,50.16],"paint":[33.308,33.494,33.841,34.703,35.029,36.115,34.334,34.385,33.544,33.734,34.518,34.669,34.485,35.958,33.794]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.48,25.411,25.982,26.065,25.636,25.195,26.9,26.344,26.404,26.081,25.591,27.155,25.756,25.048,27.439],"script":[10.102,9.975,10.346,10.217,9.853,10.551,10.45,10.171,10.435,10.548,10.24,11.514,10.424,10.405,9.89],"paint":[14.712,13.938,13.678,14.819,13.821,13.625,15.117,15.079,13.644,14.255,13.868,13.767,14.217,13.935,15.693]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"04_select1k","values":{"total":[10.995,12.351,11.443,11.598,11.858,11.308,11.985,11.688,12.94,12.019,11.444,11.971,11.783,11.417,12.007,12.615,11.171,12.036,11.729,12.054,12.252,12.541,11.402,12.38,11.768],"script":[8.423,9.031,8.173,8.77,8.815,8.455,9.145,8.97,9.294,9.067,8.947,9.533,8.144,9.161,8.875,9.323,8.838,9.399,8.923,9.513,9.458,9.182,9.066,9.795,8.901],"paint":[1.58,2.194,2.013,2.66,2.818,2.694,1.868,2.136,1.994,2.78,1.688,1.641,3.491,1.54,2.228,2.386,1.69,1.598,1.491,1.724,2.633,3.196,1.425,1.625,2.063]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"05_swap1k","values":{"total":[168.042,164.256,164.556,172.922,165.399,161.981,162.914,162.015,160.731,161.517,166.612,161.106,162.714,162.832,162.271],"script":[26.957,23.928,23.268,26.221,23.898,22.787,23.632,23.086,23.744,23.575,24.431,23.395,23.5,22.978,24.205],"paint":[138.793,138.136,139.631,144.624,140.069,137.496,137.683,137.085,135.752,136.584,140.239,136.284,137.586,138.484,136.436]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[89.962,86.888,86.493,86.213,88.949,85.057,89.212,88.309,90.227,89.517,90.746,90.329,87.321,87.357,88.033],"script":[16.325,15.488,15.368,15.9,17.113,15.442,17.266,16.249,16.089,15.582,15.847,15.782,15.686,15.558,15.629],"paint":[71.819,70.034,69.751,68.584,70.088,68.488,70.17,70.797,72.298,72.514,72.865,72.975,70.033,70.173,70.833]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"07_create10k","values":{"total":[456.578,462.237,452.158,448.378,457.086,458.531,458.63,449.899,459.866,456.522,454.336,457.866,454.877,463.304,448.634],"script":[113.095,114.245,110.635,110.406,114.578,116.448,114.14,109.785,114.406,112.544,112.634,110.799,110.389,115.794,109.792],"paint":[336.58,341.329,334.816,331.328,335.783,335.446,337.873,333.452,338.837,337.367,334.867,340.446,337.752,340.867,332.098]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.412,51.346,53.222,51.739,50.777,51.23,50.79,51.595,52.853,49.921,50.932,50.824,51.534,50.831,50.025],"script":[12.478,12.277,12.227,12.911,11.845,12.36,12.262,12.546,12.664,12.145,12.051,12.247,12.38,12.196,11.867],"paint":[39.035,38.195,40.189,37.939,38.058,37.992,37.65,38.16,39.302,36.889,37.999,37.532,38.277,37.74,37.283]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.047,14.648,15.131,15.196,14.747,15.076,14.556,14.552,14.223,14.536,13.754,14.83,14.263,14.42,14.352],"script":[12.951,12.777,12.827,13.415,12.799,12.703,12.565,12.665,12.598,12.225,12.396,13.506,12.373,12.714,12.322],"paint":[0.358,1.775,1.783,1.55,1.168,2.275,1.901,1.801,1.331,2.199,1.27,1.237,1.575,0.829,1.424]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.542607307434082]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9967823028564453]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.028087615966797]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9632081985473633]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.716546058654785]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.828125]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.8388671875]}},{"framework":"incremental-dom-v0.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.7]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"01_run1k","values":{"total":[38.495,41.317,39.002,39.145,40.746,39.614,39.219,38.547,40.949,39.13,38.376,40.572,41.002,38.932,39.099],"script":[5.394,5.733,5.578,5.435,5.501,5.826,5.761,5.303,5.48,5.462,5.437,5.571,5.486,5.567,5.814],"paint":[32.682,35.141,33.003,33.28,34.822,33.363,33.042,32.815,35.086,33.241,32.524,34.587,35.082,32.968,32.857]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"02_replace1k","values":{"total":[42.166,42.199,45.657,43.512,41.51,41.911,41.672,44.504,42.916,42.347,41.259,41.506,43.907,43.091,43.273],"script":[7.727,7.883,8.371,8.059,7.823,7.917,8.004,8.068,8.211,8.006,7.788,7.759,7.962,8.122,8.336],"paint":[34.025,33.877,36.853,35.015,33.254,33.562,33.249,36.008,34.224,33.909,33.055,33.326,35.533,34.539,34.492]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.069,17.096,16.992,16.836,16.919,16.619,17.938,16.859,16.306,18.26,16.892,16.652,18.065,16.324,15.92],"script":[1.842,1.045,0.985,1.503,1.783,1.643,1.671,1.729,1.677,1.872,1.581,1.265,1.944,1.638,1.368],"paint":[14.023,15.006,13.688,14.247,14.128,13.417,14.556,13.744,13.305,15.329,13.927,14.359,15.14,13.434,13.272]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"04_select1k","values":{"total":[2.82,3.92,5.094,3.717,3.385,3.08,3.563,3.596,3.967,3.122,3.012,2.847,3.01,3.168,4.375,3.582,3.565,4.07,3.922,3,3.466,3.047,2.736,2.955,4.3],"script":[0.19,1.178,1.052,1.476,0.951,0.912,0.908,1.06,1.126,1.259,0.181,0.555,0.782,1.048,1.116,0.962,0.808,0.9,0.786,1.05,0.847,0.181,0.793,0.803,1.443],"paint":[0.48,1.823,1.415,1.478,2.329,2.051,1.849,1.126,1.905,1.768,2.719,1.17,2.123,1.473,1.337,2.048,2.64,1.372,2.19,0.969,1.653,2.76,1.26,2.05,2.73]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"05_swap1k","values":{"total":[19.627,19.657,19.452,19.202,19.871,19.398,19.497,19.724,20.341,19.692,19.324,19.908,19.177,19,18.963],"script":[1.55,1.845,1.252,1.152,1.359,0.657,1.214,1.087,1.447,0.951,1.433,1.481,1.313,1.084,1.254],"paint":[16.702,16.39,16.947,16.898,17.154,16.638,16.257,16.772,17.235,17.397,16.605,16.818,15.722,17.207,16.673]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.048,15.149,15.361,15.465,15.372,15.376,14.939,15.258,14.912,15.163,15.55,14.935,14.892,15.354,15.305],"script":[0.292,0.561,0.466,0.56,0.572,0.536,0.473,0.58,0.579,0.569,0.519,0.313,0.561,0.516,0.566],"paint":[13.997,13.868,14.15,13.698,13.886,14.022,13.447,13.924,13.622,13.835,13.768,13.612,13.298,14.114,13.922]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"07_create10k","values":{"total":[403.584,404.915,404.814,403.947,395.616,406.919,389.885,397.938,391.766,398.445,404.207,395.022,403.216,395.539,394.972],"script":[57.913,59.765,59.392,57.997,56.596,58.457,55.894,56.992,56.96,57.234,56.019,57.025,56.827,56.218,57.653],"paint":[338.443,337.875,338.733,339.307,332.326,341.691,327.331,334.199,327.616,334.37,341.557,331.288,339.679,332.591,330.603]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.682,44.351,43.329,43.137,42.359,44.748,43.074,41.96,43.691,43.505,42.96,43.194,43.405,42.876,42.898],"script":[5.676,5.871,5.071,5.125,5.161,5.273,5.083,5.164,5.866,5.861,4.972,5.467,5.646,5.474,5.213],"paint":[37.156,37.609,37.385,37.161,36.347,38.631,37.142,35.952,36.963,36.789,37.095,36.862,36.891,36.558,36.819]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.291,12.195,12.387,13.077,12.386,12.496,13.137,12.363,12.266,12.922,13.596,12.35,13.219,12.962,13.113],"script":[10.485,10.985,10.223,10.941,10.486,10.889,10.951,10.742,10.287,10.623,11.894,10.876,10.721,10.761,11.39],"paint":[1.722,0.51,2.078,1.896,1.811,1.521,1.755,1.541,1.889,2.211,1.583,1.255,0.605,2.112,1.635]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.513031005859375]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.685361862182617]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7474746704101562]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7252340316772461]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.238304138183594]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.1552734375]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9375]}},{"framework":"inferno-v8.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[70.3]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"01_run1k","values":{"total":[36.214,36.049,36.281,35.654,36.007,37.866,36.057,35.647,35.892,35.961,37.211,35.865,36.485,37.761,35.467],"script":[2.96,2.984,3.111,2.892,2.955,3.39,3.278,2.897,2.948,2.982,3.027,2.928,2.953,3.113,2.919],"paint":[32.841,32.65,32.764,32.354,32.644,34.087,32.369,32.321,32.538,32.54,33.755,32.506,33.125,34.231,32.143]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"02_replace1k","values":{"total":[41.276,41.246,39.412,39.798,39.749,39.866,41.662,40.42,40.798,40.344,41.7,41.248,40.414,40.295,41.778],"script":[5.598,5.443,5.495,5.385,5.408,5.356,5.85,5.573,5.468,5.653,5.571,5.45,5.49,5.577,5.638],"paint":[35.211,35.33,33.447,33.984,33.907,34.064,35.372,34.41,34.916,34.253,35.687,35.339,34.478,34.278,35.697]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.87,16.167,16.864,16.367,15.611,16.609,16.841,15.865,15.759,16.462,17.22,16.381,16.534,16.395,16.277],"script":[1.341,1.693,2.046,1.506,1.065,1.162,1.184,0.969,1.286,1.495,1.055,1.143,1.497,1.399,0.956],"paint":[13.743,12.667,13.457,13.622,13.248,13.889,14.109,13.413,12.673,13.867,14.508,13.071,12.963,12.695,13.788]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.375,3.219,3.439,2.855,3.448,3.424,3.446,3.678,4.304,3.223,2.889,3.256,3.103,2.704,3.694,6.078,3.469,3.845,3.848,2.606,3.479,3.738,3.177,4.286,4.382],"script":[0.922,0.206,1.495,0.677,0.963,1.138,1.011,1.158,1.232,0.619,0.621,0.999,0.786,0.29,0.959,0.199,1.148,1.094,1.283,0.562,0.98,1.138,0.984,1.264,0.909],"paint":[2.179,2.912,1.38,2.08,2.111,2.172,1.971,2.41,2.948,1.859,1.636,2.154,1.92,2.315,2.621,2.599,2.218,1.842,2.462,1.04,1.891,1.489,2.102,1.56,1.696]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"05_swap1k","values":{"total":[18.928,18.829,18.699,20.773,18.55,18.954,18.773,19.027,19.678,18.715,18.506,18.161,18.582,18.627,19.113],"script":[1.727,0.641,1.053,1.543,1.581,0.953,1.363,0.914,1.261,0.914,0.931,1.21,0.994,1.072,1.616],"paint":[15.924,16.638,16.038,16.844,15.531,17.013,16.299,15.981,17.188,16.214,16.227,15.649,15.793,16.308,15.663]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.286,14.708,14.905,14.742,14.795,14.783,14.867,14.792,14.814,14.781,15.582,14.783,15.167,14.806,14.975],"script":[0.552,0.533,0.554,0.536,0.554,0.54,0.414,0.547,0.478,0.544,0.262,0.495,0.538,0.369,0.365],"paint":[13.987,13.489,13.604,13.164,13.554,13.517,13.174,13.222,13.65,13.538,14.097,13.558,13.899,13.385,13.79]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"07_create10k","values":{"total":[375.92,383.458,378.903,374.362,373.013,375.772,382.215,382.325,382.554,379.7,379.933,390.015,380.796,377.228,381.393],"script":[39.841,38.812,42.493,39.93,38.409,40.575,39.748,39.52,39.967,40.473,40.806,40.635,40.287,41.586,41.158],"paint":[329.223,337.237,329.404,327.444,327.627,328.332,335.48,335.847,335.793,332.347,332.304,342.595,333.676,328.794,332.163]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.973,43.063,44.903,43.833,43.119,43.533,42.717,43.237,42.334,42.983,42.77,43.145,42.456,44.843,43.317],"script":[3.089,3.14,3.269,3.204,3.141,3.142,3.124,3.155,3.196,3.167,3.113,3.178,3.104,3.348,3.123],"paint":[39.034,39.083,40.734,39.774,39.098,39.515,38.7,39.229,38.225,38.932,38.788,39.086,38.484,40.643,39.338]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.09,11.661,11.724,11.761,11.523,11.775,12.235,11.383,11.123,11.719,11.302,11.353,11.846,11.995,11.233],"script":[9.605,10.082,9.923,9.554,9.645,9.71,10.07,9.987,9.943,9.872,9.83,9.863,9.991,10.072,9.562],"paint":[2.069,1.482,1.71,2.127,1.322,1.656,1.522,0.387,1.103,1.308,0.437,1.412,1.775,1.255,0.786]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4949522018432617]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.1086225509643555]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1437110900878906]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6411457061767578]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.309537887573242]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.783203125]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.0849609375]}},{"framework":"ivi-v3.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.5]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"01_run1k","values":{"total":[51.596,49.947,50.143,49.653,50.19,49.797,49.773,49.447,49.633,49.307,49.291,50.998,50.172,50.36,51.572],"script":[16.193,15.339,15.244,16.101,15.511,15.01,15.891,15.426,15.385,14.975,15.108,15.737,15.771,15.829,16.446],"paint":[34.949,34.184,34.453,33.11,34.24,34.353,33.46,33.559,33.766,33.926,33.74,34.813,33.952,34.105,34.666]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"02_replace1k","values":{"total":[58.041,57.981,56.685,56.744,57.613,56.261,57.167,56.823,56.906,56.708,57.601,57.115,56.335,56.105,57.475],"script":[21.798,21.203,21.077,20.997,20.82,20.647,21.069,21.221,21.08,21.05,21.581,21.105,20.826,21.077,22.263],"paint":[35.799,36.34,35.17,35.303,36.344,35.165,35.645,35.187,35.377,35.206,35.582,35.574,35.065,34.568,34.775]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.385,16.026,17.446,16.676,16.586,16.27,16.744,16.83,17.291,18.073,16.008,16.802,17.282,17.051,16.658],"script":[1.299,1.204,1.512,0.969,1.026,1.311,1.251,1.131,1.548,2.035,0.647,1.696,2.053,1.494,0.944],"paint":[13.932,13.107,14.107,14.14,14.677,13.493,14.447,14.387,14.079,14.732,13.236,13.464,13.997,14.838,14.136]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"04_select1k","values":{"total":[3.647,2.425,2.6,3.906,2.937,3.011,5.868,3.003,3.052,3.041,2.547,3.299,4.514,2.873,2.555,2.753,2.78,3.526,2.733,2.6,4.309,3.305,2.487,4.789,2.834],"script":[0.865,0.148,1.081,1.074,0.984,0.714,0.71,0.709,0.142,0.972,0.805,0.968,0.861,0.148,0.151,0.205,0.141,1.281,0.567,0.147,0.636,0.886,0.624,0.142,0.554],"paint":[1.816,1.277,1.417,1.656,1.853,2.191,2.065,2.182,2.809,1.975,1.646,1.45,1.583,2.616,0.464,1.641,1.932,2.14,1.41,2.35,1.945,1.615,1.321,1.583,1.388]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.347,20.541,20.3,21.011,20.088,20.241,21.074,20.093,20.978,19.912,21.478,20.246,20.204,20.269,20.513],"script":[2.534,2.346,2.783,3.189,2.545,2.755,2.991,2.325,2.961,2.144,2.605,3.259,2.181,2.574,2.81],"paint":[16.228,16.82,15.746,16.288,16.328,15.42,16.651,16.38,16.299,15.563,16.476,15.454,16.679,16.623,16.072]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.818,16.108,16.037,15.818,15.977,16.053,16.036,15.919,16.453,15.529,16.078,15.973,15.938,16.534,15.945],"script":[1.242,1.278,1.255,1.251,1.277,1.252,1.283,1.27,1.3,1.29,1.284,1.243,1.22,1.281,1.25],"paint":[14.849,13.814,14.021,13.842,13.966,14.054,14.021,13.647,14.396,13.53,13.791,13.951,13.977,14.451,13.728]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"07_create10k","values":{"total":[545.999,539.812,523.393,534.926,546.063,529.081,548.426,528.748,552.817,530.798,541.877,536.68,532.739,546.106,516.706],"script":[175.36,169.776,177.564,175.594,175.881,174.919,175.281,174.155,174.96,174.948,171.476,178.247,176.938,177.554,174.194],"paint":[363.737,363.258,339.052,352.388,363.481,347.415,366.387,347.879,371.013,349.119,363.521,351.596,349.082,361.724,335.538]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.245,58.538,58.762,60.739,60.501,59.544,58.744,58.573,61.076,59.754,58.988,61.519,60.791,59.6,58.373],"script":[19.175,18.957,19.011,20.244,18.853,19.347,18.523,18.979,19.451,19.866,18.69,21.309,20.455,18.808,18.61],"paint":[39.158,38.662,38.85,39.575,40.72,39.289,39.299,38.629,40.715,38.955,39.379,39.288,39.393,39.873,38.862]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.536,25.783,26.573,24.801,24.207,23.375,25.188,26.089,24.557,26.143,25.551,24.986,25.03,24.437,24.754],"script":[23.433,24.147,24.408,23.443,22.672,21.432,23.288,23.409,23.073,24.336,23.386,22.614,22.962,22.977,23.091],"paint":[1.484,1.529,2.063,0.965,1.439,1.845,1.789,2.575,1.373,0.877,2.043,1.326,1.948,1.354,1.338]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.597412109375]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.536914825439453]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.6124267578125]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.435086250305176]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.897990226745605]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[20.0078125]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3642578125]}},{"framework":"karyon-v2.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.8]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"01_run1k","values":{"total":[73.744,76.903,75.876,76.851,78.324,76.535,80.904,75.669,77.394,76.182,75.728,76.923,74.973,75.982,76.511],"script":[39.147,41.032,40.408,40.806,41.653,41.008,42.223,39.716,40.855,40.253,39.775,41.26,39.63,39.878,40.471],"paint":[34.158,35.391,34.944,35.54,36.196,35.054,38.218,35.48,36.059,35.457,35.478,35.19,34.875,35.633,35.572]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"02_replace1k","values":{"total":[99.071,98.916,100.864,99.008,98.787,100.065,98.445,99.054,99.105,97.79,101.132,97.672,97.237,101.823,99.657],"script":[62.09,62.053,61.802,62.392,61.828,62.476,61.922,62.025,62.228,60.606,64.198,61.057,60.179,64.593,62.395],"paint":[36.504,36.366,38.567,36.134,36.46,37.097,36.013,36.543,36.38,36.667,36.446,36.117,36.561,36.707,36.774]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.256,19.309,17.36,19.06,18.163,17.861,18.276,17.818,18.042,18.273,17.895,18.489,18.376,18.045,18.444],"script":[2.42,1.908,2.263,2.672,1.674,2.13,2.299,2.232,2.126,2.567,1.531,2.59,2.198,1.913,2.765],"paint":[14.485,15.84,13.632,14.647,15.241,13.518,13.285,14.049,14.643,14.735,15.039,14.373,15.075,14.712,14.076]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"04_select1k","values":{"total":[16.501,15.622,17.018,14.688,14.449,14.474,14.115,13.621,13.709,13.36,14.578,13.773,14.426,13.365,14.949,14.202,15.8,14.807,14.525,13.349,15.504,15.571,14.173,14.144,14.15],"script":[12.169,11.806,12.7,11.531,11.179,11.348,10.337,10.304,10.103,9.936,11.304,10.194,11.344,10.268,11.18,10.719,12.179,11.108,11.461,9.887,11.94,12.166,10.808,11.212,10.788],"paint":[3.112,3.637,2.882,2.98,1.894,2.506,3.021,3.147,3.025,2.072,2.547,3.064,2.292,2.914,3.56,3.311,2.079,2.587,1.609,2.895,3.387,3.227,2.76,1.004,3.184]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"05_swap1k","values":{"total":[172.204,172.796,174.059,170.943,173.117,171.89,172.632,174.961,173.654,174.92,172.073,174.295,170.643,170.745,171.763],"script":[24.771,25.325,26.078,25.368,25.962,25.665,25.226,25.99,25.573,27.033,25.78,24.979,25.125,24.546,24.739],"paint":[144.857,145.458,145.402,143.55,145.949,143.903,145.736,147.334,145.458,146.323,144.064,147.053,143.175,144.208,144.476]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.02,17.994,17.556,17.296,17.138,17.205,17.194,16.976,17.202,18.921,18.196,18.354,18.522,17.896,17.98],"script":[1.929,1.897,1.59,1.576,1.453,1.687,1.495,1.318,1.398,1.606,1.93,1.944,1.447,1.844,1.896],"paint":[15.286,14.986,15.13,14.621,14.691,14.465,14.68,14.878,15.057,16.049,15.085,15.227,15.974,15.238,15.287]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"07_create10k","values":{"total":[722.577,717.564,699.524,706.556,705.482,699.469,710.785,701.69,707.812,719.345,710.171,720.534,699.628,723.544,715.466],"script":[338.78,336.336,353.885,357.61,354.274,350.798,356.271,354.133,356.492,339.175,358.254,348.842,351.122,340.926,338.532],"paint":[376.747,374.146,338.702,341.951,344.201,341.765,347.468,340.711,344.448,373.327,344.84,364.701,341.06,375.674,370.096]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[85,84.106,85.59,83.395,83.992,83.899,82.15,83.144,86.303,83.736,83.958,85.344,82.028,82.718,86.216],"script":[42.829,41.876,42.856,41.6,41.809,42.193,39.999,42.31,42.954,42.135,42.245,43.201,41.083,41.159,43.951],"paint":[41.206,41.229,41.76,40.832,41.183,40.724,41.177,39.843,42.194,40.628,40.745,41.163,39.973,40.589,41.309]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[57.034,59.154,67.393,59.346,55.579,57.081,57.814,57.775,55.555,57.447,58.142,55.632,57.454,58.903,67.894],"script":[54.589,56.976,65.229,57.163,53.474,54.909,55.322,55.692,53.295,54.988,56.254,53.642,54.959,56.67,65.706],"paint":[1.35,2.033,1.401,2.048,1.994,1.308,1.096,1.971,1.632,1.939,1.769,1.127,2.358,2.12,2.046]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7630558013916016]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[12.701495170593262]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[12.777185440063477]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3885316848754883]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[75.43037986755371]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[70.4404296875]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.390625]}},{"framework":"knockout-v3.5.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.3]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"01_run1k","values":{"total":[42.539,40.683,41.654,40.543,42.461,40.531,41.489,39.953,40.472,41.022,40.197,40.277,41.089,42.451,41.881],"script":[7.132,7.299,7.537,7.194,7.251,7.168,7.755,7.023,7.16,7.359,7.281,7.015,7.205,7.063,7.252],"paint":[34.971,32.967,33.693,32.898,34.791,32.927,33.323,32.513,32.883,33.233,32.5,32.825,33.475,34.969,34.199]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"02_replace1k","values":{"total":[46.025,45.753,45.253,45.458,45.833,46.26,46.879,46.778,45.774,46.026,45.833,47.565,46.194,48.434,46.184],"script":[11.329,10.994,10.998,10.813,11.082,11.179,11.287,11.402,11.154,10.722,11.043,11.171,11.255,12.3,11.042],"paint":[34.263,34.316,33.827,34.191,34.324,34.637,35.131,34.929,34.171,34.859,34.352,35.944,34.503,35.686,34.705]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.824,18.396,18.126,19.32,18.328,17.55,20.749,17.654,17.343,17.255,17.046,18.096,17.944,18.109,18.204],"script":[2.594,2.619,2.542,2.827,2.907,2.751,3.032,2.765,2.799,1.983,2.039,2.717,3.035,2.753,2.461],"paint":[12.735,14.378,14.275,15.276,13.369,12.735,15.27,13.651,13.269,13.685,13.467,14.119,13.772,13.21,14.569]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"04_select1k","values":{"total":[3.362,2.807,4.079,2.909,3.989,2.96,3.338,3.357,3.714,3.568,3.571,4.982,4.254,4.915,3.543,3.117,3.78,3.36,3.476,3.55,3.033,3.216,3.459,4.314,4.855],"script":[1.048,0.627,1.691,0.583,1.566,1.238,0.984,0.718,0.615,1.191,1.017,1.453,0.967,1.242,0.988,0.921,1.176,0.982,0.733,1.356,0.948,1.126,0.788,0.932,0.989],"paint":[1.641,1.334,2.279,1.337,2.318,1.605,1.811,1.644,2.622,2.271,1.499,2.034,2.34,2.167,2.454,1.329,2.497,1.558,2.645,2.094,1.984,1.635,1.613,1.002,1.608]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"05_swap1k","values":{"total":[18.926,20.549,20.144,20.168,19.614,19.609,19.455,19.745,18.976,19.592,19.257,20.114,20.629,19.785,19.974],"script":[1.755,2.349,2.119,1.753,1.584,1.82,0.944,1.666,1.546,1.544,1.752,1.712,1.236,1.455,1.37],"paint":[15.517,17.089,16.437,17.189,17.038,16.75,16.742,16.806,16.215,16.005,14.82,16.141,18.052,16.875,17.258]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.676,15.389,15.909,15.396,15.743,15.216,15.439,15.376,15.753,16.066,15.372,15.366,15.354,15.559,15.364],"script":[0.637,0.638,0.625,0.612,0.728,0.608,0.612,0.615,0.602,0.599,0.616,0.602,0.602,0.312,0.599],"paint":[14.001,14.024,14.482,14.054,14.283,13.864,14.039,14.018,14.508,14.178,13.762,14.039,14.04,14.529,13.849]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"07_create10k","values":{"total":[406.427,407.831,412.173,417.845,409.184,414.269,404.242,405.324,412.807,406.593,404.058,411.871,403.499,406.621,413.736],"script":[67.841,67.091,66.976,70.974,67.587,67.074,66.156,67.195,71.624,68.048,66.245,71.336,68.634,67.154,66.333],"paint":[331.898,334.08,338.564,340.192,334.976,340.568,331.324,331.473,334.564,331.775,331.234,333.885,328.241,332.805,340.699]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.929,45.957,47.547,45.957,47.445,46.847,45.931,45.44,45.702,47.342,45.851,45.297,45.199,46.939,45.705],"script":[6.758,7.5,7.115,6.836,7.138,7.191,7.152,7.02,7.106,7.825,7.504,7.043,7.08,6.876,6.976],"paint":[37.322,37.569,39.566,38.274,39.439,38.807,37.914,37.573,37.725,38.552,37.493,37.357,37.26,39.188,37.899]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.814,14.3,14.359,14.357,14.047,14.768,14.624,15.401,14.479,14.219,14.932,14.701,14.897,15.171,15.227],"script":[12.639,12.468,12.879,13.028,12.657,12.337,12.808,13.765,12.288,13.011,12.871,12.832,12.882,13.468,13.18],"paint":[2.084,1.742,1.299,0.432,0.359,2.341,0.982,1.258,0.784,1.122,1.969,1.784,1.922,0.779,1.943]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6811017990112305]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.073020935058594]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.185676574707031]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0563316345214844]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.958685874938965]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[74.767578125]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[24.400390625]}},{"framework":"ko-jsx-v0.16.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[118.1]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"01_run1k","values":{"total":[82.36,81.466,81.656,79.522,85.69,81.416,87.645,80.184,82.203,80.667,80.593,79.313,79.191,82.334,80.565],"script":[46.585,45.83,46.472,43.856,49.899,45.974,51.618,43.547,46.174,45.074,45.355,44.112,44.249,46.833,45.252],"paint":[35.346,35.182,34.762,35.228,35.357,35.002,35.591,36.189,35.556,35.155,34.791,34.77,34.506,35.072,34.846]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"02_replace1k","values":{"total":[109.187,112.895,108.907,114.025,108.565,110.758,112.405,106.513,108.595,109.476,108.774,106.838,110.647,109.428,110.831],"script":[77.045,77.902,76.042,82.04,76.634,78.474,80.23,75.276,76.656,77.436,77.282,74.962,78.983,78.033,79.466],"paint":[31.662,34.529,32.392,31.514,31.452,31.824,31.703,30.781,31.457,31.566,31.035,31.407,31.202,30.93,30.882]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.546,24.416,24.123,25.198,24.185,24.814,24.513,23.89,24.236,23.968,23.754,23.551,23.859,23.4,23.344],"script":[8.583,7.96,8.033,8.319,8.298,8.421,8.592,8.22,8.217,7.734,7.777,8.051,8.254,8.286,7.752],"paint":[14.007,14.96,14.566,14.782,14.57,13.783,14.627,14.493,14.329,14.646,14.906,13.943,14.319,13.817,14.13]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"04_select1k","values":{"total":[13.016,11.994,12.115,12.046,12.993,11.92,12.591,11.841,11.473,11.784,12.255,12.711,12.641,11.707,12.721,11.77,11.535,12.432,12.167,12.544,12.032,12.32,12.462,11.771,12.458],"script":[9.869,9.302,9.011,9.278,9.773,9.668,9.113,8.962,8.88,9.428,8.96,9.846,9.381,8.93,9.909,9.639,8.406,9.869,9.149,9.604,9.988,9.381,9.941,9.144,8.973],"paint":[1.964,2.522,2.934,2.09,2.37,1.512,2.353,1.679,1.618,1.158,2.917,2.692,1.983,2.613,1.249,1.967,2.626,1.71,1.825,2.77,1.15,1.832,1.682,2.437,2.734]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"05_swap1k","values":{"total":[171.132,167.604,165.192,160.1,164.3,165.3,162.559,160.362,161.5,170.35,163.448,165.276,165.472,162.14,168.322],"script":[23.955,22.573,23.593,22.48,22.736,22.751,22.606,22.512,22.512,22.93,22.339,23.176,21.898,22.543,23.639],"paint":[145.349,143.047,139.827,136.228,139.929,140.97,137.988,135.667,137.349,146.003,139.539,139.792,140.937,136.838,142.703]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.151,19.203,19.09,18.977,18.88,18.625,18.983,19.003,19.23,18.98,18.862,19.13,18.851,18.992,18.868],"script":[3.812,4.107,3.774,3.733,3.816,3.785,3.802,3.957,3.785,3.717,3.74,3.799,3.727,3.788,3.741],"paint":[14.552,14.035,14.587,14.485,14.194,13.475,14.328,13.977,14.643,14.182,14.398,14.57,14.285,14.151,14.198]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"07_create10k","values":{"total":[686.317,682.107,675.944,679.921,683.667,683.524,682.439,676.515,692.358,679.994,682.878,679.462,679.824,679.876,683.903],"script":[348.553,349.238,343.09,347.234,345.782,346.229,348.597,345.05,353.701,346.603,348.352,343.749,346.853,343.59,346.891],"paint":[330.109,326.163,326.21,325.988,331.2,330.612,327.171,324.754,331.973,326.756,327.705,329.037,326.097,329.649,330.238]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[83.072,82.53,83.506,80.994,80.746,85.971,81.96,82.191,86.007,88.738,80.784,82.109,89.979,82.842,83.955],"script":[42.738,41.453,42.994,40.651,40.714,45.094,41.261,42.01,45.679,46.83,40.817,41.204,48.802,41.946,41.818],"paint":[39.441,40.186,39.623,39.428,39.116,39.964,39.821,39.26,39.435,41.005,39.068,40.007,40.301,40.002,41.228]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[49.283,50.201,51.331,49.324,52.829,50.391,52.01,50.526,50.727,46.909,51.395,53.378,53.352,53.094,50.231],"script":[46.485,47.306,48.96,47.174,49.843,47.992,49.984,48.518,48.675,44.518,49.459,50.851,50.652,51.038,47.886],"paint":[1.798,2.763,2.225,2.027,2.368,2.271,1.129,1.867,1.017,2.279,1.703,2.394,2.074,1.077,1.19]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.2021303176879883]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[15.339032173156738]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.440950393676758]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.438126564025879]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[115.29500198364258]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[720.439453125]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[80.083984375]}},{"framework":"laminar-v16.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[871.3]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"01_run1k","values":{"total":[51.298,49.626,49.739,50.808,53.065,49.418,49.163,49.619,51.034,51.445,52.453,51.665,51.296,51.012,50.584],"script":[17.339,16.524,16.532,16.712,18.573,16.231,16.194,16.457,17.075,17.672,17.99,17.129,17.572,17.399,16.756],"paint":[33.515,32.653,32.761,33.636,34.072,32.753,32.532,32.717,33.504,33.32,34.021,34.069,33.287,33.139,33.311]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"02_replace1k","values":{"total":[57.099,58.032,56.088,55.964,56.036,57.412,56.415,57.155,56.727,56.394,57.522,56.438,55.98,55.87,57.903],"script":[21.159,22.439,21.019,20.97,20.839,21.551,21.283,21.504,21.274,21.574,21.828,21.047,20.85,21.34,21.335],"paint":[35.487,35.144,34.589,34.567,34.719,35.416,34.686,35.159,34.998,34.367,35.232,34.952,34.675,34.07,36.056]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.735,22.678,23.155,22.964,24.217,22.459,22.746,22.842,23.242,22.924,23.621,23.575,22.82,23.243,23.176],"script":[7.754,7.366,7.3,6.954,7.499,7.094,6.912,7.039,7.38,7.303,7.835,6.941,7.109,6.986,7.655],"paint":[14.711,13.409,14.801,13.771,14.963,13.465,13.859,13.472,13.633,14.379,15.042,14.155,14.188,14.367,13.926]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"04_select1k","values":{"total":[4.7,5.034,4.954,4.683,4.577,5.22,5.539,5.323,5.093,5.478,4.933,5.583,5.068,4.699,4.786,5.336,5.252,3.904,5.649,5.401,4.968,6.138,4.165,4.787,4.474],"script":[2.35,2.112,2.571,1.804,2.591,1.913,2.516,2.488,2.434,2.483,2.391,2.856,2.039,2.176,1.749,2.266,2.46,2.13,2.834,2.239,2.433,2.503,1.937,2.246,2.132],"paint":[1.16,1.819,2.26,1.921,1.692,2.771,2.893,2.18,1.47,2.499,1.448,1.977,2.878,1.272,2.898,2.124,1.867,0.823,2.689,3.022,2.399,3.134,1.7,0.874,1.162]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"05_swap1k","values":{"total":[170.669,173.639,178.512,171.671,173.375,172.5,172.456,170.29,174.01,172.747,168.861,169.193,173.077,168.908,170.374],"script":[28.635,29.355,29.642,28.951,29.003,27.91,29.667,29.041,28.302,29.351,26.943,27.059,28.577,26.852,27.182],"paint":[139.806,141.528,146.608,141.847,141.533,141.544,141.271,138.92,144.372,141.29,140.473,139.523,142.353,138.926,140.911]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.199,17.819,17.895,18.085,17.924,17.953,18.509,18.255,17.814,17.813,18.31,18.454,17.88,18.036,18.363],"script":[2.865,2.673,3.025,2.896,2.804,3.319,3.188,3.184,3.009,2.747,3.054,2.615,2.838,3.427,3.055],"paint":[14.232,14.134,13.499,14.214,14.141,13.83,14.278,14.047,14.047,14.335,14.506,14.806,13.842,13.525,14.545]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"07_create10k","values":{"total":[627.143,629.191,622.347,620.76,618.909,624.272,619.199,624.624,623.848,621.774,627.363,618.228,619.033,623.56,622.65],"script":[265.54,267.212,267.461,265.39,267.134,265.292,265.687,269.113,266.68,266.175,266.67,266.625,266.138,266.816,267.563],"paint":[354.805,355.136,348.165,348.694,345.07,352.215,346.817,348.836,350.462,348.904,354.071,344.963,346.166,350.015,348.41]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.837,55.817,56.778,57.029,58.347,54.687,55.108,55.538,54.314,55.431,56.081,55.405,55.512,55.861,56.659],"script":[16.802,16.18,16.776,17.632,18.294,16.098,16.055,16.15,15.983,16.125,16.29,16.331,16.55,16.644,16.974],"paint":[39.135,38.73,38.886,38.477,39.155,37.655,38.136,38.449,37.425,38.391,38.864,38.146,38.043,38.316,38.805]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.948,16.529,16.73,15.992,15.891,16.082,15.654,15.672,16.645,15.904,16.496,16.095,16.899,16.127,15.846],"script":[13.881,14.041,14.536,13.682,14.638,14.456,13.776,14.004,15.18,14.059,14.598,13.848,14.466,14.478,13.919],"paint":[1.397,1.645,1.855,1.931,1.148,0.724,1.086,0.728,1.37,1.754,0.958,1.705,2.335,1.145,1.837]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0399351119995117]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.83453369140625]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.324572563171387]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.666542053222656]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.76746368408203]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1220703125]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.2001953125]}},{"framework":"legend-state-v18.2.0 + 2.1.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[235.3]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"01_run1k","values":{"total":[46.649,47.122,48.309,47.374,46.362,48.326,47.351,45.203,47.491,45.403,44.643,45.824,48.474,47.395,46.913],"script":[12.449,12.514,12.513,12.072,11.913,12.464,11.555,11.411,11.842,12.025,11.673,11.597,11.971,11.785,12.024],"paint":[33.776,34.191,35.362,34.87,34.035,35.434,35.375,33.369,35.224,32.898,32.563,33.809,36.064,35.138,34.457]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"02_replace1k","values":{"total":[52.623,53.968,51.618,52.94,51.967,52.433,51.437,52.202,52.253,51.25,51.612,51.568,53.067,50.959,53.514],"script":[16.243,17.207,15.713,16.651,16.184,16.624,15.906,16.428,16.859,15.911,15.824,16.116,15.939,15.781,16.637],"paint":[35.918,36.3,35.381,35.833,35.304,35.35,35.077,35.314,34.931,34.896,35.326,35.005,36.579,34.719,36.406]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.456,16.819,19.712,17.484,16.668,17.258,17.018,17.152,16.289,16.753,18.048,17.96,17.506,18.083,17.108],"script":[2.488,1.839,2.3,2.665,1.366,1.902,1.828,1.587,2.011,1.916,2.571,1.935,2.665,2.271,1.505],"paint":[12.755,13.379,15.722,13.724,13.707,12.303,13.373,14.179,13.302,13.734,13.356,14.587,12.91,14.218,13.37]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"04_select1k","values":{"total":[2.658,3.253,3.139,3.117,2.663,3.405,2.461,4.638,2.999,3.048,3.753,2.528,4.286,3.496,2.801,3.022,3.065,3.134,3.7,3.339,2.716,4.052,3.403,2.768,3.02],"script":[0.967,1.114,0.87,0.135,0.923,0.977,0.509,1.143,0.508,0.133,1.057,0.145,0.656,1.007,0.151,0.535,0.982,0.143,0.792,0.706,0.621,1.097,1.009,0.595,0.261],"paint":[1.218,1.186,1.919,2.88,1.634,2.331,1.845,1.731,2.395,1.813,1.864,2.283,1.896,2.389,1.495,1.637,1.781,2.807,1.861,1.088,1.559,1.642,1.822,1.585,2.49]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"05_swap1k","values":{"total":[18.401,18.621,18.967,19.25,19.002,18.92,20.543,18.525,18.536,19.572,18.734,18.813,20.001,18.284,18.854],"script":[0.557,0.175,0.65,1.117,0.603,0.917,0.931,0.605,0.178,0.625,0.884,0.816,0.605,0.292,0.605],"paint":[16.565,17.739,17.293,16.989,16.122,16.63,18.029,16.177,16.716,17.347,16.089,16.463,18.355,15.373,16.498]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.394,15.139,15.422,14.85,14.972,14.93,15.318,14.898,14.895,15.114,14.834,15.287,15.428,16.606,15.301],"script":[0.536,0.433,0.529,0.531,0.477,0.535,0.531,0.532,0.526,0.419,0.528,0.558,0.528,0.6,0.532],"paint":[14.77,13.642,13.812,13.594,13.7,13.535,13.889,13.644,13.606,13.973,13.612,13.998,14.134,14.995,13.981]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"07_create10k","values":{"total":[459.92,460.062,456.079,459.349,457.976,456.613,463.447,458.08,457.943,470.409,459.671,463.709,462.925,464.405,455.86],"script":[119.278,120.908,121.684,121.891,121.524,118.431,124.063,121.547,123.075,129.723,121.154,125.209,122.72,123.841,117.736],"paint":[333.759,332.479,327.641,330.668,329.61,331.419,332.41,329.712,327.935,333.927,331.623,331.761,333.282,333.753,331.491]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.268,49.401,49.664,52.155,49.971,48.891,50.456,49.5,49.314,49.24,49.75,52.035,48.79,49.049,49.972],"script":[11.151,10.26,10.128,10.664,10.609,10.203,11.284,10.936,10.295,10.184,10.561,10.594,10.199,10.398,10.333],"paint":[39.216,38.239,38.557,40.596,38.451,37.784,38.279,37.655,38.133,38.129,38.308,40.542,37.714,37.777,38.744]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.751,15.43,15.578,15.347,15.637,15.551,16.137,15.376,15.967,16.072,16.453,16.008,15.753,15.991,15.728],"script":[13.85,13.527,13.902,13.717,14.056,13.849,13.762,13.694,13.977,14.346,14.398,14.232,13.863,14.181,13.619],"paint":[1.064,1.097,0.812,1.344,1.057,1.298,2.277,0.744,1.901,0.807,1.707,1.681,1.799,1.036,2.03]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6563262939453125]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.384317398071289]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.334349632263184]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.4902544021606445]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.50578498840332]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[204.1279296875]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[60.767578125]}},{"framework":"leptos-v0.6.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[338.2]}},{"framework":"lit-v3.0.0-keyed","benchmark":"01_run1k","values":{"total":[40.426,40.602,41.043,40.125,41.645,40.506,40.466,41.277,40.685,40.312,40.294,40.361,40.327,40.617,41.141],"script":[6.725,6.852,6.927,6.887,7.621,6.925,6.911,6.971,6.891,6.81,6.889,7.019,6.86,7.002,7.03],"paint":[33.288,33.322,33.683,32.835,33.623,33.15,33.094,33.89,33.369,33.079,32.993,32.946,33.036,33.197,33.725]}},{"framework":"lit-v3.0.0-keyed","benchmark":"02_replace1k","values":{"total":[46.28,47.499,45.453,44.779,44.758,44.777,44.306,46.566,46.482,44.4,44.455,46.119,46.121,45.153,45.754],"script":[10.252,11.23,10.348,10.104,10.223,10.046,10.082,10.796,10.773,10.116,10.168,10.221,10.451,10.035,10.366],"paint":[35.595,35.832,34.648,34.227,34.071,34.302,33.79,35.359,35.297,33.841,33.85,35.453,35.204,34.682,34.923]}},{"framework":"lit-v3.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.735,17.284,17.111,17.552,19.4,17.414,17.802,17.276,19.405,18.979,18.823,18.863,18.317,17.747,18.3],"script":[3.089,2.205,2.255,2.377,3.283,1.566,2.471,2.02,3.744,3.373,3.097,2.836,3.335,2.475,2.44],"paint":[14.075,13.787,12.702,13.814,14.73,13.221,13.97,13.852,14.643,14.309,14.096,13.991,13.528,13.629,14.292]}},{"framework":"lit-v3.0.0-keyed","benchmark":"04_select1k","values":{"total":[5.442,5.41,5.255,4.77,4.514,5.273,5.178,6.255,4.456,4.965,4.27,5.73,5.009,4.713,5.267,4.011,4.833,5.416,4.683,5.839,5.376,4.944,5.075,4.769,5.347],"script":[2.6,2.435,2.391,1.819,2.294,2.426,2.016,2.299,2.453,1.991,1.764,2.976,2.391,2.265,2.115,1.979,2.211,2.802,2.177,3.147,2.406,2.209,2.369,1.862,2.748],"paint":[1.777,0.908,1.861,1.778,2.081,1.666,2.141,2.006,1.864,2.345,1.911,2.482,1.786,1.62,2.139,1.16,2.089,1.981,1.887,1.522,1.842,2.603,2.559,2.789,2.086]}},{"framework":"lit-v3.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.992,21.418,21.179,21.346,20.677,20.852,20.895,21.442,22.053,22.151,20.66,21.191,20.764,20.378,21.553],"script":[2.265,2.469,2.873,2.522,2.567,1.698,2.413,2.453,3.41,1.949,2.138,2.302,2.28,2.048,2.392],"paint":[16.876,17.835,17.138,17.329,16.715,17.873,17.258,17.704,16.094,17.899,17.822,17.332,17.171,17.039,18.788]}},{"framework":"lit-v3.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.44,16.111,16.153,16.558,16.533,16.784,16.306,16.418,16.663,16.597,16.394,16.539,16.718,17.039,17.193],"script":[1.243,1.167,1.055,1.135,1.194,1.35,1.275,0.978,1.232,1.538,1.164,1.216,1.372,1.636,1.672],"paint":[14.437,13.898,14.338,14.671,14.306,14.372,14.196,14.609,14.179,14.305,14.492,14.097,14.297,14.573,14.73]}},{"framework":"lit-v3.0.0-keyed","benchmark":"07_create10k","values":{"total":[432.286,432.183,431.25,435.282,430.033,429.228,433.269,433.112,433.28,433.158,433.071,441.215,435.112,425.945,432.154],"script":[84.573,83.194,82.789,84.134,81.147,83.665,83.126,82.726,83.841,82.747,84.584,85.02,84.102,81.582,83.804],"paint":[340.889,342.212,341.74,344.404,342.155,338.852,343.442,343.637,342.776,343.657,341.832,349.096,344.228,337.743,341.734]}},{"framework":"lit-v3.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.208,46.798,45.434,45.681,44.595,45.43,46.08,45.731,45.738,46.666,45.916,47.019,45.717,46.235,44.986],"script":[6.66,6.607,6.28,6.271,6.186,6.267,6.61,6.193,6.332,6.684,6.352,6.411,6.297,6.332,6.389],"paint":[39.642,39.314,38.277,38.53,37.525,38.283,38.617,38.62,38.532,39.056,38.613,39.726,38.541,39.023,37.743]}},{"framework":"lit-v3.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.869,15.692,14.808,14.865,16.434,15.932,15.589,16.261,15.047,15.176,16.425,15.726,15.969,15.908,14.525],"script":[13.753,13.962,13.139,13.472,14.54,13.771,13.398,14.343,13.047,13.288,14.322,14.23,13.67,14.058,12.908],"paint":[1.533,1.047,1.575,0.931,1.685,2.076,2.097,1.825,1.516,1.126,2.022,1.406,2.212,1.764,1.522]}},{"framework":"lit-v3.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5730094909667969]}},{"framework":"lit-v3.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7417068481445312]}},{"framework":"lit-v3.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.764331817626953]}},{"framework":"lit-v3.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7276058197021484]}},{"framework":"lit-v3.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.420924186706543]}},{"framework":"lit-v3.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.115234375]}},{"framework":"lit-v3.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.30859375]}},{"framework":"lit-v3.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"01_run1k","values":{"total":[40.946,39.144,39.072,40.569,40.387,40.408,39.541,38.819,39.634,40.173,39.871,40.181,40.318,39.132,39.363],"script":[6.724,5.878,5.877,6.78,5.964,6.602,6.446,6.025,5.923,5.905,6.665,6.193,6.497,5.856,5.87],"paint":[33.792,32.839,32.785,33.361,34.02,33.393,32.685,32.343,33.28,33.832,32.792,33.561,33.359,32.859,33.093]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"02_replace1k","values":{"total":[43.466,42.916,42.954,43.482,43.753,43.805,44.675,43.692,43.602,43.848,43.767,44.16,45.227,43.83,43.933],"script":[8.817,9.138,8.831,8.738,8.917,9.101,9.172,9.047,9.017,8.865,9.102,9.067,9.254,9.011,9.07],"paint":[34.215,33.32,33.682,34.304,34.387,34.251,35.047,34.177,34.158,34.521,34.239,34.641,35.517,34.394,34.406]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.542,16.76,17.635,17.709,16.179,17.06,18.284,16.341,17.398,16.907,16.997,16.837,17.59,16.799,16.172],"script":[1.488,1.334,2.04,2.382,1.656,1.889,1.628,1.562,1.913,1.759,1.973,1.38,1.139,1.787,0.94],"paint":[14.98,13.96,13.731,13.759,13.115,13.412,14.909,12.725,13.958,13.273,13.72,13.565,14.997,13.243,14.113]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"04_select1k","values":{"total":[4.557,6.102,4.243,4.739,4.282,4.048,5.44,4.165,4.699,4.087,4.48,4.191,4.177,4.38,4.208,4.753,3.649,4.247,3.608,3.95,4.606,5.312,4.632,3.991,4.987],"script":[1.968,1.533,1.363,2.141,1.373,0.689,1.238,1.22,1.014,1.527,1.072,1.032,1.768,1.616,1.641,1.653,1.451,1.706,1.056,1.347,1.533,1.482,1.479,1.425,1.963],"paint":[1.768,2.628,2.178,1.979,2.793,3.236,3.005,2.834,2.981,2.433,3.252,3.041,2.294,2.656,2.435,2.972,1.282,1.638,1.281,2.478,2.555,1.846,3.023,1.536,2.827]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"05_swap1k","values":{"total":[20.562,19.201,20.878,19.385,20.508,19.934,20.164,20.247,20.26,20.5,20.12,19.445,20.223,21.386,20.489],"script":[1.924,1.441,1.034,1.283,2,1.572,2.003,1.393,1.845,1.322,1.166,1.339,0.949,1.815,1.251],"paint":[17.17,16.757,18.701,16.519,17.184,17.013,17.114,16.636,17.165,17.91,17.645,16.677,17.924,17.521,16.934]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.066,16.121,15.972,16.011,16.149,15.439,15.755,15.987,16.151,15.916,16.315,16.054,16.257,15.628,16.106],"script":[0.829,1.095,0.744,1.093,0.716,0.668,0.705,0.771,0.813,0.754,0.716,0.928,1.03,0.703,1.08],"paint":[14.472,14.289,13.844,14.063,14.62,13.747,14.215,14.464,14.351,14.129,14.8,14.336,14.489,14.177,14.042]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"07_create10k","values":{"total":[421.437,415.176,415.755,414.066,417.634,411.999,417.421,420.012,414.991,414.529,416.312,413.125,416.722,412.828,418.009],"script":[71.815,69.39,72.156,69.145,72.33,72.974,73.64,71.969,72.095,68.572,70.723,69.921,70.657,72.091,72.646],"paint":[342.894,338.485,336.581,337.844,338.506,331.94,336.794,340.665,336.141,339.184,338.755,335.936,338.913,333.963,338.59]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.809,44.974,44.325,44.68,43.305,45.578,43.655,45.152,43.027,43.14,43.878,42.632,44.324,43.185,43.478],"script":[5.331,5.533,5.511,5.376,5.351,5.576,5.389,6.365,5.257,5.3,5.325,5.189,5.334,5.326,5.374],"paint":[37.605,38.573,37.926,38.42,37.067,39.132,37.275,37.893,36.91,36.971,37.556,36.572,38.007,37.004,37.222]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.66,15.153,15.517,15.817,15.68,15.634,14.809,16.322,16.008,15.544,15.853,15.602,15.336,15.192,15.94],"script":[14.314,13.496,13.606,14.024,13.252,14.168,13.269,14.049,14.243,13.496,13.751,13.609,13.021,13.264,14.11],"paint":[1.255,1.564,1.568,1.574,2.183,1.39,1.42,2.187,1.679,1.349,1.819,1.113,1.291,1.627,1.739]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5190582275390625]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.5169973373413086]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.563631057739258]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.696533203125]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.710187911987305]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.1044921875]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.51171875]}},{"framework":"lit-html-v3.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.4]}},{"framework":"lui-v1.2.3-keyed","benchmark":"01_run1k","values":{"total":[42.341,43.739,41.957,42.405,42.789,41.46,41.697,41.506,42.638,43.896,42.365,42.409,43.923,42.382,42.342],"script":[7.909,8.653,8.354,8.271,8.393,7.909,8.248,7.965,7.99,8.844,8.169,8.397,8.886,8.005,7.879],"paint":[34,34.664,33.171,33.716,33.969,33.128,33.025,33.131,34.209,34.648,33.774,33.578,34.6,33.926,34.006]}},{"framework":"lui-v1.2.3-keyed","benchmark":"02_replace1k","values":{"total":[48.108,48.06,46.738,46.762,47.535,49.354,46.81,47.583,46.572,48.57,47.356,47.486,46.516,46.562,47.833],"script":[11.937,11.376,11.183,11.397,11.498,12.073,11.325,11.869,11.363,11.25,11.648,11.464,11.385,11.37,11.453],"paint":[35.72,36.248,35.115,34.895,35.571,36.798,34.998,35.25,34.732,36.763,35.217,35.579,34.658,34.728,35.927]}},{"framework":"lui-v1.2.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.151,17.797,20.393,18.817,17.87,18.403,18.485,18.579,18.102,18.097,17.938,17.933,17.95,18.031,18.147],"script":[2.679,2.812,2.924,2.568,2.606,2.441,2.707,2.419,2.28,2.475,1.991,2.439,2.141,2.648,2.682],"paint":[14.179,13.377,14.337,15.013,13.278,14.614,13.977,15.232,14.387,14.548,14.096,14.38,14.198,14.645,14.184]}},{"framework":"lui-v1.2.3-keyed","benchmark":"04_select1k","values":{"total":[8.048,8.306,8.651,6.945,7.649,7.712,7.605,8.117,7.338,6.478,7.654,7.052,8.264,7.252,6.45,7.591,7.325,7.476,7.818,7.519,7.239,7.661,8.078,6.882,7.578],"script":[4.817,4.83,5.875,4.457,5.443,4.68,4.706,5.839,4.696,3.984,5.085,4.516,4.758,4.795,4.436,4.569,4.519,4.192,4.813,4.745,4.449,4.929,5.4,4.172,4.997],"paint":[2.254,2.485,2.294,1.177,1.248,2.881,2.331,1.499,2.493,2.349,2.413,1.533,2.586,1.67,1.144,2.857,2.657,2.261,1.846,1.743,2.639,2.584,1.872,2.238,1.485]}},{"framework":"lui-v1.2.3-keyed","benchmark":"05_swap1k","values":{"total":[158.242,157.697,156.528,158.795,156.417,155.387,156.829,162.074,156.872,154.857,157.59,160.2,156.057,159.897,157.13],"script":[14.46,15.174,14.113,15.122,15.283,14.26,15.976,15.422,14.432,14.542,13.825,14.711,14.498,15.069,14.406],"paint":[142.08,140.505,140.915,141.152,140.007,139.265,139.007,144.803,140.021,139.162,142.423,143.493,140.173,142.817,141.423]}},{"framework":"lui-v1.2.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.402,15.168,15.584,15.415,15.117,15.822,15.408,15.384,15.383,14.981,15.411,15.271,15.45,15.24,15.451],"script":[0.504,0.518,0.354,0.519,0.418,0.543,0.532,0.2,0.529,0.22,0.513,0.549,0.513,0.518,0.519],"paint":[14.134,13.944,14.349,13.844,13.967,14.508,14.137,14.497,13.84,13.991,13.835,14.008,14.154,13.974,13.907]}},{"framework":"lui-v1.2.3-keyed","benchmark":"07_create10k","values":{"total":[438.917,441.604,438.623,435.952,435.733,441.033,431.794,440.437,441.648,438.138,439.669,440.794,439.596,432.275,436.538],"script":[99.564,100.547,100.608,95.583,98.762,100.537,95.996,101.425,96.756,100.588,100.306,101.153,99.361,96.352,98.945],"paint":[332.639,333.972,331.347,333.689,330.248,333.877,329.187,332.224,338.244,330.874,332.541,332.981,333.259,329.26,330.928]}},{"framework":"lui-v1.2.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.409,48.752,48.46,48.516,48.087,47.911,49.539,47.931,47.679,49.085,48.474,48.043,49.277,48.896,48.011],"script":[8.103,7.86,7.995,7.902,7.675,7.942,8.175,7.871,7.934,7.988,7.866,7.849,7.949,8.241,7.892],"paint":[40.407,40.027,39.583,39.742,39.526,39.067,40.432,39.11,38.878,40.188,39.72,39.302,40.44,39.761,39.172]}},{"framework":"lui-v1.2.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.294,15.116,14.925,16.18,14.673,14.306,15.062,14.795,14.66,14.128,14.734,14.947,14.774,15.334,14.537],"script":[12.691,13.1,13.405,13.266,12.93,12.771,13.356,12.905,12.567,12.475,12.645,13.447,13.364,13.114,12.63],"paint":[1.507,1.208,1.425,2.091,1.635,1.446,0.757,1.207,1.993,1.566,1.167,1.413,1.322,1.722,1.598]}},{"framework":"lui-v1.2.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5030393600463867]}},{"framework":"lui-v1.2.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.951007843017578]}},{"framework":"lui-v1.2.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.965277671813965]}},{"framework":"lui-v1.2.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7747592926025391]}},{"framework":"lui-v1.2.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.99680233001709]}},{"framework":"lui-v1.2.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.8994140625]}},{"framework":"lui-v1.2.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.484375]}},{"framework":"lui-v1.2.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"01_run1k","values":{"total":[44.673,42.959,44.338,43.497,43.491,43.474,44.173,42.676,43.065,42.595,42.475,42.835,44.724,44.641,43.851],"script":[9.702,9.187,9.876,9.356,9.052,9.046,9.808,8.887,9.388,8.863,8.964,8.862,9.975,10.102,9.711],"paint":[34.515,33.319,34.044,33.717,33.993,33.997,33.948,33.358,33.216,33.319,33.081,33.546,34.297,34.113,33.721]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"02_replace1k","values":{"total":[52.182,50.046,50.209,49.642,50.932,51.695,50.063,50.782,50.108,50.85,50.842,50.284,50.521,50.891,50.983],"script":[15.003,13.533,13.644,13.504,13.946,15.155,13.589,13.761,13.801,13.899,13.942,13.443,13.445,13.926,14.57],"paint":[36.716,36.064,36.089,35.674,36.508,36.095,36.008,36.528,35.835,36.473,36.418,36.363,36.608,36.492,35.947]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.079,26.36,25.488,26.269,28.239,26.276,27.436,27.076,29.471,25.451,27.12,25.404,26.624,27.267,26.148],"script":[10.026,9.881,10.095,10.972,11.2,10.284,11.456,10.747,11.746,9.18,10.73,10.032,10.014,11.017,10.32],"paint":[16.573,14.989,13.635,13.889,15.487,14.104,14.367,14.461,16.354,14.316,15.274,13.731,15.625,14.683,14.351]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"04_select1k","values":{"total":[12.613,12.2,12.241,11.632,13.265,11.59,12.112,12.136,11.011,12.074,11.992,12.909,13.935,11.698,11.966,13.408,12.004,12.157,12.037,11.913,11.577,12.866,11.557,12.942,11.82],"script":[9.365,8.973,9.636,9.127,10.111,8.187,8.996,9.284,7.847,9.292,9.156,9.407,10.948,8.746,9.421,10.262,9.241,9.064,9.146,8.865,8.533,9.183,8.993,10.311,8.673],"paint":[2.144,3.056,1.507,2.334,1.896,1.131,2.952,2.527,2.476,2.625,2.667,3.33,2.147,2.362,1.724,2.37,1.699,1.687,2.58,2.222,2.535,3.513,1.541,0.564,2.49]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"05_swap1k","values":{"total":[28.407,28.925,28.896,27.928,30.742,28.379,28.173,29.033,29.846,28.31,27.895,27.17,28.037,27.241,28.434],"script":[9.152,9.763,9.655,8.913,10.031,8.062,9.255,9.729,9.62,9.647,9.423,8.425,8.975,8.813,9.473],"paint":[17.864,17.806,17.142,17.889,19.176,19.328,17.36,17.657,18.912,17.09,17.727,16.972,17.315,15.906,17.665]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.005,20.622,20.868,20.918,20.983,20.531,20.337,20.707,22.029,20.361,20.886,20.933,20.808,21.666,21.587],"script":[5.106,5.174,5.492,5.564,5.476,5.246,5.067,5.618,5.766,5.081,5.609,5.532,5.317,5.361,5.476],"paint":[14.836,14.651,14.559,14.005,14.722,14.522,14.192,14.023,15.069,14.222,14.546,14.637,14.521,15.093,14.876]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"07_create10k","values":{"total":[448.959,447.94,454.884,449.932,451.404,451.75,452.088,452.722,444.942,452.816,441.04,452.136,446.274,450.719,451.483],"script":[100.131,100.487,101.815,101.581,100.426,103.625,98.771,103.418,98.215,102.152,95.715,101.905,98.634,101.689,101.623],"paint":[342.132,340.756,346.459,341.586,344.343,341.519,346.55,342.67,339.901,344,338.298,343.615,340.881,342.422,343.1]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.152,57.099,53.502,55.287,54.625,55.543,53.736,53.476,54.642,53.621,53.659,54.337,55.022,54.449,56.395],"script":[14.244,14.432,13.53,13.863,13.162,13.857,13.879,13.838,13.833,13.482,13.605,13.766,14.133,13.454,14.167],"paint":[38.983,41.763,39.093,40.487,40.579,40.755,38.956,38.757,39.926,39.24,39.154,39.67,39.97,40.092,41.286]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.146,16.987,15.692,16.663,15.336,16.211,15.643,16.31,15.727,15.87,16.559,15.425,15.06,16.461,15.723],"script":[13.037,14.64,13.404,14.994,13.186,14.508,13.526,14.26,13.927,14.093,14.949,13.74,12.946,14.05,13.632],"paint":[2.012,1.881,1.991,0.919,2.054,1.585,1.372,1.028,0.839,1.669,1.516,1.6,2.032,1.524,1.421]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7222814559936523]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6365346908569336]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6771488189697266]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3440933227539062]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.156203269958496]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[52.6787109375]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.970703125]}},{"framework":"lwc-v3.0.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[94.5]}},{"framework":"malina-v0.7.3-keyed","benchmark":"01_run1k","values":{"total":[37.208,35.816,35.974,36.815,35.802,36.31,35.915,36.104,35.993,36.779,36.04,36.694,36.743,36.546,36.435],"script":[3.425,3.415,3.407,3.477,3.345,3.428,3.445,3.476,3.347,3.466,3.374,3.638,3.509,3.383,3.414],"paint":[33.314,31.977,32.145,32.913,32.017,32.458,32.039,32.202,32.225,32.909,32.23,32.637,32.808,32.737,32.586]}},{"framework":"malina-v0.7.3-keyed","benchmark":"02_replace1k","values":{"total":[42.754,40.032,40.078,41.104,41.542,42.877,39.983,41.036,39.686,39.926,41.609,40.023,40.002,40.19,40.113],"script":[5.651,5.542,5.708,5.662,5.893,5.688,5.598,5.647,5.673,5.523,6.057,5.672,5.912,5.648,5.625],"paint":[36.679,34.048,33.936,35.007,35.191,36.74,33.947,34.934,33.561,33.947,35.134,33.921,33.685,34.113,34.034]}},{"framework":"malina-v0.7.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.539,16.579,16.752,16.957,17.099,16.613,16.387,16.362,19.025,16.177,16.535,16.368,16.644,17.797,16.914],"script":[1.801,1.512,1.442,1.679,1.039,0.627,1.486,1.766,1.548,1.362,1.528,1.132,1.703,1.472,1.648],"paint":[14.406,13.735,13.579,14.224,14.349,14.655,13.916,13.009,15.94,13.459,13.592,13.613,13.686,15.027,14.225]}},{"framework":"malina-v0.7.3-keyed","benchmark":"04_select1k","values":{"total":[3.249,3.364,4.626,3.32,2.745,3.589,3.163,2.485,3.352,2.891,4.106,3.018,2.801,3.619,3.401,5.159,3.516,3.392,3.657,2.361,2.888,3.019,3.617,3.682,3.159],"script":[0.184,1.179,0.919,0.97,0.632,0.894,0.926,0.657,0.848,0.893,0.743,0.916,1.083,1.117,0.671,0.822,0.901,1.211,1.118,0.819,0.614,1.364,1.475,1.212,0.451],"paint":[1.947,1.446,1.782,2.244,1.425,2.228,1.37,1.728,1.628,1.897,1.645,1.999,1.616,1.46,2.151,1.734,2.514,1.378,2.429,1.433,1.422,1.125,1.606,2.37,1.548]}},{"framework":"malina-v0.7.3-keyed","benchmark":"05_swap1k","values":{"total":[18.984,19.211,20.306,21.333,19.832,19.958,18.704,19.116,19.137,19.685,19.105,19.877,19.659,19.858,19.108],"script":[1.153,1.47,1.875,1.581,1.17,1.183,0.658,0.986,1.251,1.241,1.051,1.215,1.507,1.725,1.411],"paint":[16.605,15.999,16.828,17.97,17.075,17.42,16.22,16.786,16.384,16.788,16.721,17.02,16.632,16.346,16.326]}},{"framework":"malina-v0.7.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.441,16.23,15.495,15.753,15.405,15.93,15.108,15.445,15.19,15.97,15.435,15.423,15.374,15.393,15.327],"script":[0.697,0.982,0.71,0.73,0.707,0.698,0.697,0.699,0.711,0.879,0.681,0.715,0.708,0.689,0.672],"paint":[13.722,14.444,13.923,14.083,13.99,14.471,13.731,13.957,13.742,14.371,14.236,13.99,14.226,13.559,13.917]}},{"framework":"malina-v0.7.3-keyed","benchmark":"07_create10k","values":{"total":[380.314,383.702,380.705,384.314,385.745,383.111,384.08,385.802,388.834,382.438,387.084,385.158,383.91,386.216,385.926],"script":[42.498,43.379,43.228,43.59,44.011,43.777,43.302,44.01,43.77,41.567,43.573,43.833,43.586,44.254,44.513],"paint":[331.144,333.564,330.752,333.793,335.044,332.34,334.122,335.116,338.403,334.225,336.807,334.696,333.701,335.349,334.501]}},{"framework":"malina-v0.7.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.868,43.574,44.189,45.484,43.533,45.044,45.48,43.691,44.962,45.445,43.735,44.183,45.32,43.924,45.23],"script":[4.463,4.494,4.338,4.871,4.621,4.879,4.594,4.416,4.51,4.986,4.367,4.489,4.925,4.277,4.933],"paint":[38.537,38.174,39.072,39.632,38.053,39.289,40.015,38.403,39.547,39.521,38.494,38.814,39.545,38.775,39.354]}},{"framework":"malina-v0.7.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.699,11.979,12.186,11.846,11.96,11.638,11.72,11.852,11.967,11.711,12.396,11.315,11.995,11.169,12.578],"script":[10.193,10.221,10.429,10.223,10.189,10.203,10.065,9.767,9.817,10.124,10.43,10.155,10.285,10.1,10.641],"paint":[1.006,1.672,1.662,1.543,1.682,0.449,1.57,1.991,1.482,1.503,1.235,0.441,1.63,0.349,1.822]}},{"framework":"malina-v0.7.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46031665802001953]}},{"framework":"malina-v0.7.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.469243049621582]}},{"framework":"malina-v0.7.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.606635093688965]}},{"framework":"malina-v0.7.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.717900276184082]}},{"framework":"malina-v0.7.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.93618869781494]}},{"framework":"malina-v0.7.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[7.3349609375]}},{"framework":"malina-v0.7.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.9990234375]}},{"framework":"malina-v0.7.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.7]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[43.522,41.952,41.62,42.289,42.302,42.701,41.587,41.392,42.487,43.365,42.588,41.781,43.125,41.673,41.625],"script":[9.21,9.147,9.11,8.936,9.274,9.48,8.496,8.638,8.822,9.147,8.939,9.17,9.06,8.88,9.125],"paint":[33.863,32.379,32.083,32.914,32.572,32.796,32.676,32.318,33.248,33.799,33.241,32.192,33.666,32.354,32.068]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[48.977,48.315,48.856,50.043,48.929,47.343,49.164,48.007,48.089,48.24,48.333,48.386,47.901,48.244,47.86],"script":[13.183,13.189,13.398,13.03,13.794,12.816,13.214,13.219,13.3,13.2,13.275,13.252,12.766,12.986,12.888],"paint":[35.326,34.651,34.998,36.561,34.645,34.077,35.499,34.336,34.331,34.592,34.558,34.678,34.699,34.813,34.533]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.663,22.374,22.299,23.194,22.046,22.167,22.074,21.821,21.877,22.327,22.352,21.746,22.128,22.294,24.013],"script":[6.93,6.285,6.755,7.695,6.561,6.201,6.362,6.697,6.536,6.731,6.756,6.635,6.47,6.898,7.148],"paint":[14.392,13.977,13.734,13.45,14.23,14.202,14.689,13.831,13.979,14.329,14.637,12.387,14.171,13.935,15.864]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[3.257,5.674,3.253,3.555,3.419,2.95,2.934,2.931,3.298,2.749,3.45,2.82,3.739,3.174,3.393,3.068,3.312,3.543,5.005,3.228,3.371,3.357,3.355,4.396,3.226],"script":[1.057,0.944,0.954,1.278,1.199,0.249,1.328,0.777,1.461,0.235,1.55,0.654,1.221,1.17,0.904,0.289,0.914,1.229,0.85,1.249,1.137,1.177,0.608,1.07,0.244],"paint":[2.078,2.753,1.544,1.796,1.561,2.408,1.512,1.411,1.081,2.134,1.804,2.068,1.132,1.434,2.387,2.673,1.957,2.222,1.885,1.117,2.105,0.969,2.646,1.094,2.896]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[19.088,18.772,19.449,18.517,19.204,18.577,19.963,19.5,19.044,19.135,20.416,19.049,18.982,19.71,18.367],"script":[1.392,0.798,0.945,0.905,0.175,0.182,0.671,1.035,0.182,0.185,0.628,0.59,0.18,0.671,0.522],"paint":[16.112,16.682,17.054,16.348,17.818,17.053,17.633,17.303,17.603,17.382,17.854,17.215,17.192,16.96,16.414]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.446,15.49,15.34,16.16,15.936,14.765,15.912,16.086,15.129,14.894,16.094,15.891,15.221,15.524,15.864],"script":[0.413,0.574,0.559,0.361,0.56,0.515,0.54,0.572,0.533,0.546,0.416,0.466,0.499,0.274,0.553],"paint":[13.979,14.152,14.02,15.028,14.288,13.569,14.299,14.563,13.891,13.595,14.937,14.686,13.992,14.518,14.609]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[423.194,419.269,417.379,422.508,420.058,417.11,420.223,425.167,426.573,416.336,417.862,413.313,420.024,423.132,424.473],"script":[76.589,76.62,75.066,76.896,78.468,76.879,77.11,77.79,78.73,76.985,75.852,74.185,77.692,78.58,78.764],"paint":[339.953,335.784,335.608,338.803,334.135,333.456,336.08,340.43,340.979,332.695,334.994,332.466,335.467,337.856,339.005]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.322,46.381,45.477,47.051,47.552,48.45,46.514,46.43,47.473,47.303,47.074,47.838,45.623,47.329,46.884],"script":[7.651,7.699,7.523,8.16,7.96,7.893,7.681,7.941,8.299,8.546,8.115,8.591,7.547,7.761,7.798],"paint":[36.827,37.568,37.017,37.913,38.711,39.637,37.933,37.597,38.064,37.837,38.087,38.254,37.095,38.699,38.074]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.434,18.446,18.72,19.214,18.559,19.135,19.557,18.892,18.109,18.443,18.5,18.364,18.511,18.524,19.322],"script":[17.455,16.528,16.461,17.367,16.865,17.153,17.592,16.906,16.601,16.848,16.953,16.517,16.39,16.443,16.944],"paint":[1.285,1.81,1.844,1.575,1.587,1.871,1.839,1.686,1.407,0.998,0.938,1.009,1.253,1.982,2.28]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6997709274291992]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.760957717895508]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9598140716552734]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1118240356445312]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.958622932434082]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[66.451171875]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[18.2177734375]}},{"framework":"marionette-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.8]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"01_run1k","values":{"total":[53.964,51.296,51.347,52.273,49.94,51.37,52.909,51.653,51.776,49.82,51.441,51.179,51.08,51.846,51.038],"script":[17.593,16.336,16.766,17.6,15.928,16.815,16.343,17.079,17.126,15.901,16.393,17.306,16.183,16.738,16.516],"paint":[35.948,34.529,34.153,34.254,33.583,34.149,36.136,34.149,34.226,33.495,34.638,33.431,34.483,34.678,34.117]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"02_replace1k","values":{"total":[57.682,57.444,57.877,57.177,58.381,57.396,57.457,57.448,57,57.384,55.683,57.496,58.312,56.351,58.501],"script":[20.984,20.737,20.772,20.555,21.697,20.467,20.714,20.805,20.485,20.314,19.687,21.235,20.769,20.013,20.716],"paint":[36.248,36.281,36.658,36.166,36.227,36.48,36.304,36.207,36.089,36.61,35.547,35.825,37.069,35.906,37.294]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.73,17.816,17.54,18.184,17.318,17.475,18.572,18.6,18.555,18.052,18.326,17.431,18.426,17.539,17.851],"script":[2.488,2.25,2.423,2.692,2.408,1.627,1.799,2.164,2.401,2.523,1.978,1.958,2.216,2.248,2.349],"paint":[13.364,13.614,12.761,14.366,13.419,14.718,14.998,15.391,13.838,13.627,14.634,13.272,14.618,13.489,14.181]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"04_select1k","values":{"total":[2.475,3.378,3.956,2.767,2.971,2.692,2.234,2.872,4.662,5.789,2.744,4.248,2.551,2.981,4.032,2.961,2.869,2.654,2.883,4.128,4.788,4.007,2.841,4.166,4.766],"script":[0.555,1.091,1.119,0.815,0.896,0.84,0.568,0.907,1.13,1.159,0.863,1.233,0.167,0.503,0.678,0.156,0.914,0.962,0.511,1.092,0.189,1.123,0.713,0.81,1.306],"paint":[1.814,2.191,1.79,1.062,1.978,1.404,0.993,1.136,1.615,1.379,1.051,2.532,2.284,2.371,2.018,2.71,1.119,1.181,2.278,1.666,2.672,1.605,2.03,1.086,2.115]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"05_swap1k","values":{"total":[19.118,19.599,19.056,18.779,19.101,20.837,18.798,18.673,19.413,19.119,18.86,19.175,18.364,18.372,18.499],"script":[0.91,1.181,0.632,0.195,0.549,1.634,0.76,0.753,0.197,0.688,0.914,0.945,0.839,0.973,0.756],"paint":[16.273,16.302,16.853,17.615,17.512,17.294,16.825,16.585,16.753,17.09,15.478,16.166,16.366,16.113,16.509]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.423,15.062,15.263,14.906,15.68,15.726,14.901,14.948,14.957,15.361,15.211,15.654,14.853,14.865,15.065],"script":[0.594,0.392,0.593,0.506,0.61,0.619,0.478,0.296,0.621,0.578,0.599,0.589,0.591,0.427,0.595],"paint":[14.073,13.963,14.224,13.699,14.338,14.414,13.686,13.884,13.587,14.111,13.944,14.38,13.514,13.676,13.712]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"07_create10k","values":{"total":[499.817,503.092,496.739,510.27,515.096,498.016,499.398,499.051,497.17,507.326,498.851,501.774,492.648,506.119,495.918],"script":[166.3,168.878,164.961,166.01,167.528,167.154,167.006,167.416,165.313,166.438,165.46,166.192,160.527,167.675,164.388],"paint":[326.581,327.577,325.146,337.639,340.979,324.274,325.479,324.821,325.075,334.095,326.804,328.958,325.558,331.889,324.879]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.367,58.011,59.645,59.337,58.772,59.713,58.505,58.728,58.332,59.158,61.214,59.597,58.115,57.601,58.269],"script":[17.434,17.092,17.766,17.45,16.759,18.037,17.163,17.656,16.813,17.533,17.38,18.12,17.338,16.748,16.976],"paint":[40.032,40.021,40.978,40.979,41.121,40.768,40.443,40.146,40.619,40.724,42.906,40.572,39.869,39.964,40.393]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.126,18.665,18.533,18.748,18.06,20.426,20.224,18.984,21.696,18.32,19.573,19.548,20.622,19.804,19.82],"script":[18.15,16.395,16.637,16.647,16.931,18.491,17.549,16.751,19.286,16.613,17.64,17.903,18.509,17.886,18.094],"paint":[1.198,2.155,1.731,2.005,0.397,1.146,2.395,1.631,1.313,0.761,1.806,0.877,1.986,1.228,1.057]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7765426635742188]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.075503349304199]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2363929748535156]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3459358215332031]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.13265895843506]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.9931640625]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.3720703125]}},{"framework":"marionette-backbone-v5.0.0-alpha.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[128]}},{"framework":"marko-v5.31.12-keyed","benchmark":"01_run1k","values":{"total":[54.978,52.97,52.077,51.057,50.911,51.275,51.107,52.058,52.73,52.22,52.431,53.855,52.433,52.11,52.684],"script":[21.048,18.573,18.555,17.415,18.504,18.616,17.803,18.658,18.349,18.466,18.774,20.463,18.277,18.52,18.487],"paint":[33.716,34.188,33.327,33.453,32.203,32.468,33.109,33.175,34.186,33.546,33.457,33.188,33.954,33.389,33.979]}},{"framework":"marko-v5.31.12-keyed","benchmark":"02_replace1k","values":{"total":[59.335,61.283,60.34,61.414,61.417,60.83,59.343,61.84,59.192,60.324,62.42,61.91,61.853,63.216,60.122],"script":[24.687,27.01,26.126,26.006,26.074,25.623,24.568,26.302,23.904,25.157,27.768,25.687,26.386,27.824,24.533],"paint":[34.455,34.08,33.99,35.193,35.145,34.983,34.559,35.334,35.08,34.93,34.425,36.029,35.259,35.191,35.394]}},{"framework":"marko-v5.31.12-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.286,26.507,68.445,25.891,26.429,23.317,22.679,22.357,23.583,26.518,23.693,69.561,23.452,70.955,69.464],"script":[8.524,9.685,7.72,9.543,9.541,9.654,8.489,8.693,8.084,9.452,7.891,9.026,8.954,9.344,9],"paint":[14.63,16.205,16.777,15.857,15.428,13.531,12.874,13.53,15.36,16.783,14.512,16.2,14.358,17.881,17.015]}},{"framework":"marko-v5.31.12-keyed","benchmark":"04_select1k","values":{"total":[17.18,9.181,13.651,9.23,11.279,18.649,17.006,8.514,9.427,9.302,8.391,12.396,8.588,8.981,14.737,8.975,9.328,14.198,11.461,15.593,10.996,13.036,14.348,9.014,17.2],"script":[7.126,6.412,7.291,6.315,6.545,6.658,7.115,5.649,6.541,6.278,6.12,6.33,6.27,5.612,6.015,5.706,5.88,6.469,5.995,7.945,6.107,7.743,7.884,5.735,8.328],"paint":[3.889,2.592,2.689,2.74,2.706,4.529,2.852,1.302,1.757,2.854,1.701,4.006,1.395,2.868,2.348,2.429,2.251,1.664,4.724,5.073,3.034,4.349,3.838,3.102,4.801]}},{"framework":"marko-v5.31.12-keyed","benchmark":"05_swap1k","values":{"total":[159.159,156.615,157.554,160.659,157.62,160.498,160.706,158.134,164.549,158.495,160.211,162.147,161.794,164.512,158.011],"script":[22.57,20.976,20.38,21.541,21.577,22.331,20.814,21.052,22.126,21.555,22.274,21.242,21.694,22.157,20.226],"paint":[136.396,135.472,136.997,137.986,135.867,136.814,139.349,134.743,141.446,136.783,136.665,140.253,139.683,141.724,136.177]}},{"framework":"marko-v5.31.12-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.496,18.591,18.176,17.988,18.299,18.41,19.628,17.804,17.973,19.158,18.377,18.026,18.511,18.088,18.358],"script":[3.027,2.867,2.692,3.164,3.322,3.377,3.089,2.752,3.066,2.922,3.47,2.819,3.009,2.808,2.999],"paint":[14.388,14.19,14.199,14.087,14.437,14.414,15.38,14.078,14.06,14.955,14.171,13.83,14.227,13.774,14.377]}},{"framework":"marko-v5.31.12-keyed","benchmark":"07_create10k","values":{"total":[541.333,531.776,549.158,541.614,527.64,542.021,545.453,537.61,533.453,532.231,528.234,531.433,541.304,544.723,548.657],"script":[177.299,179.988,173.445,174.026,179.882,176.758,177.389,174.054,182.8,184.012,178.865,181.936,176.764,182.193,185.051],"paint":[361.739,349.548,373.533,365.309,345.516,363.035,365.843,361.238,348.472,345.896,347.084,347.339,362.334,360.256,361.38]}},{"framework":"marko-v5.31.12-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.89,62.663,60.774,63.871,62.04,61.315,60.452,62.501,60.068,61.881,60.906,60.628,60.522,59.579,62.856],"script":[21.773,23.304,21.678,23.36,22.289,21.973,21.99,23.295,21.856,23.054,22.087,21.723,21.363,21.013,21.92],"paint":[38.779,39.029,38.773,40.179,39.447,39.027,38.173,38.902,37.862,38.508,38.511,38.6,38.815,38.26,40.605]}},{"framework":"marko-v5.31.12-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.966,21.38,26.267,25.69,27.474,22.481,26.884,27.982,26.5,26.344,26.429,23.39,25.431,26.597,21.048],"script":[22.35,19.4,21.946,22.062,22.234,20.089,22.757,23.899,23.204,22.203,22.607,21.705,23.203,21.471,19.708],"paint":[2.634,1.181,2.526,3.049,3.537,2.307,3.847,3.127,2.947,3.272,2.227,1.604,2.114,3.096,1.248]}},{"framework":"marko-v5.31.12-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6847267150878906]}},{"framework":"marko-v5.31.12-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.302304267883301]}},{"framework":"marko-v5.31.12-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.446647644042969]}},{"framework":"marko-v5.31.12-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.2719316482543945]}},{"framework":"marko-v5.31.12-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.430649757385254]}},{"framework":"marko-v5.31.12-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[46.4521484375]}},{"framework":"marko-v5.31.12-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[16.1103515625]}},{"framework":"marko-v5.31.12-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.2]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"01_run1k","values":{"total":[37.572,36.638,37.187,37.798,36.746,36.984,38.805,37.4,36.879,37.162,36.083,37.12,39.424,37.235,37.13],"script":[4.01,3.8,3.795,4.184,3.706,3.854,4.08,3.971,3.884,3.846,3.83,3.889,4.125,3.828,4.071],"paint":[33.158,32.424,32.921,33.222,32.622,32.723,34.297,33.018,32.599,32.905,31.822,32.791,34.884,33.007,32.646]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"02_replace1k","values":{"total":[41.939,41.53,41.026,42.058,41.545,42.438,40.857,41.041,41.546,43.279,42.432,42.865,42.277,42.224,41.735],"script":[7.122,6.746,6.889,6.835,6.827,7.461,6.846,6.843,7.002,7.405,6.989,6.99,7.619,7.583,7.034],"paint":[34.368,34.35,33.719,34.778,34.287,34.557,33.576,33.759,34.081,35.428,35.007,35.425,34.241,34.212,34.255]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.758,15.949,16.214,16.919,17.062,16.388,16.481,16.069,16.17,17.336,16.506,16.846,16.79,16.155,16.267],"script":[1.152,0.985,0.6,1.944,1.753,1.034,1.441,1.231,0.974,0.941,1.896,1.2,1.224,1.227,1.063],"paint":[14.494,13.863,14.078,13.694,14.606,13.102,14.05,13.066,14.099,14.545,12.812,14.215,14.033,13.344,13.212]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"04_select1k","values":{"total":[3.69,3.004,2.872,2.367,4.098,2.76,4.455,3.918,2.303,3.504,2.692,3.332,2.808,3.125,2.847,3.01,3.604,5.664,3.777,2.429,2.829,2.815,3.087,3.072,2.306],"script":[0.123,0.122,0.119,0.122,0.691,0.534,0.13,0.113,0.115,1.062,0.118,0.805,0.969,0.948,0.116,0.122,0.134,0.53,0.916,0.484,0.113,0.113,1.212,0.121,0.772],"paint":[2.998,2.188,2.059,1.223,2.206,1.372,2.677,1.8,1.112,1.099,2.156,2.423,1.738,2.076,2.627,2.76,2.481,1.73,1.111,1.151,1.604,1.728,1.775,1.725,1.439]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"05_swap1k","values":{"total":[19.43,19.986,19.741,19.768,19.655,19.984,19.573,20.155,19.705,19.861,21.05,20.816,19.994,20.911,20.349],"script":[1.722,1.753,1.841,1.592,1.724,1.598,1.752,1.709,1.901,2.391,1.989,1.992,1.368,1.577,1.597],"paint":[16.219,17.21,16.152,16.266,16.759,16.728,16.751,16.051,16.464,15.944,16.965,17.534,17.657,17.613,17.675]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.71,16.251,16.199,16.132,15.449,15.463,15.529,15.639,15.337,15.581,15.501,15.899,15.508,15.383,16.015],"script":[0.863,0.846,0.748,0.743,0.732,0.718,0.727,0.905,0.858,0.744,0.693,0.961,0.745,0.91,0.995],"paint":[14.135,14.512,14.33,14.918,14.018,13.998,13.783,13.858,13.727,13.95,14.073,14.192,13.737,13.733,14.344]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"07_create10k","values":{"total":[396.044,389.436,395.271,393.472,385.941,391.688,391.031,388.545,388.714,385.251,393.556,388.65,383.507,386.134,391.567],"script":[47.697,45.448,48.228,47.932,47.248,48.572,48.67,47.618,46.926,47.07,49.365,47.414,47.08,48.385,48.975],"paint":[341.7,336.843,340.375,338.771,331.978,336.488,335.703,333.61,335.132,331.461,337.528,334.488,329.031,331.182,335.927]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.586,42.305,41.212,41.219,41.678,42.136,42.15,43.316,42.525,42.453,41.421,42.667,41.672,41.361,41.956],"script":[3.646,3.354,3.425,3.403,3.382,3.681,3.803,3.554,3.788,3.835,3.401,3.629,3.497,3.493,3.444],"paint":[39.038,38.037,36.938,36.929,37.396,37.559,37.485,38.848,37.881,37.752,37.143,38.154,37.27,37.001,37.585]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.015,13.47,14.245,12.898,13.624,14.024,13.222,13.197,13.161,13.627,13.316,13.574,13.416,13.596,13.377],"script":[11.977,11.51,11.481,11.787,12.356,11.821,11.657,10.852,11.783,11.55,11.647,11.97,11.943,11.679,11.741],"paint":[1.543,1.174,2.656,0.364,0.579,2.106,1.483,2.253,1.291,1.977,1.319,0.825,1.389,1.821,1.545]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.47789478302001953]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.379179000854492]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.428013801574707]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6549797058105469]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.719630241394043]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.873046875]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.736328125]}},{"framework":"maverick-v0.23.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.8]}},{"framework":"metron-v0.0.2-keyed","benchmark":"01_run1k","values":{"total":[40.911,43.729,42.435,43.06,43.683,43.154,42.543,44.254,43.853,44.136,43.264,42.679,42.739,43.467,42.541],"script":[7.887,8.57,8.312,8.091,8.366,8.471,7.968,8.751,8.147,8.249,8.251,8.122,8.225,8.565,8.458],"paint":[32.59,34.704,33.684,34.529,34.875,34.243,34.112,35.068,35.265,35.42,34.586,34.113,34.066,34.491,33.657]}},{"framework":"metron-v0.0.2-keyed","benchmark":"02_replace1k","values":{"total":[46.572,46.062,46.999,47.498,46.672,46.485,46.408,46.275,46.026,45.523,46.492,46.354,47.321,47.008,46.901],"script":[10.656,10.08,10.423,10.144,10.262,10.004,9.859,9.693,9.982,9.643,9.842,10.13,10.09,10.241,10.029],"paint":[35.418,35.519,36.124,36.894,35.939,35.998,36.106,36.143,35.576,35.404,36.166,35.742,36.734,36.261,36.35]}},{"framework":"metron-v0.0.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.291,16.846,16.344,16.377,16.973,16.661,16.556,16.622,16.497,16.21,16.427,16.144,16.005,16.499,18.155],"script":[0.938,1.561,1.003,1.027,0.979,1.203,1.07,0.579,0.585,0.554,0.84,0.221,0.92,1.183,0.723],"paint":[13.78,13.391,13.853,13.762,13.904,13.843,14.137,14.485,14.308,14.292,14.132,14.741,12.562,13.923,15.867]}},{"framework":"metron-v0.0.2-keyed","benchmark":"04_select1k","values":{"total":[2.838,1.812,2.829,2.776,3.444,3.466,2.368,4.821,2.732,1.956,2.229,2.779,2.343,2.353,2.239,2.221,2.698,3.292,2.875,2.604,3.045,2.71,2.758,5.091,2.211],"script":[0.411,0.115,0.072,0.073,0.937,0.071,0.068,0.705,0.066,0.063,0.066,0.798,0.065,0.064,0.068,0.065,0.069,0.589,0.314,0.067,0.627,0.755,0.068,0.086,0.694],"paint":[2.324,1.607,1.669,1.753,1.753,1.466,2.166,1.796,2.437,1.793,2.07,1.885,1.401,2.192,1.918,2.058,2.055,2.596,2.043,2.441,2.32,1.856,2.59,2.767,1.425]}},{"framework":"metron-v0.0.2-keyed","benchmark":"05_swap1k","values":{"total":[19.062,19.072,19.567,20.082,19.48,19.361,19.077,18.907,18.942,19.111,19.222,18.201,19.021,19.769,19.002],"script":[0.107,0.685,0.687,0.788,0.597,0.105,0.114,0.112,0.299,0.107,0.436,0.101,0.103,1.042,0.103],"paint":[17.227,16.842,17.38,17.795,17.954,18.097,17.628,17.036,17.947,17.998,17.401,17.108,17.557,17.629,17.23]}},{"framework":"metron-v0.0.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.316,15.356,14.983,15.175,15.172,15.31,15.228,15.297,14.888,14.915,14.886,14.936,15.274,15.045,14.982],"script":[0.121,0.092,0.104,0.095,0.098,0.119,0.327,0.245,0.102,0.087,0.092,0.092,0.4,0.092,0.155],"paint":[14.412,14.488,13.83,14.411,14.342,14.465,13.891,14.129,13.725,13.817,13.904,13.79,13.856,13.868,13.791]}},{"framework":"metron-v0.0.2-keyed","benchmark":"07_create10k","values":{"total":[444.73,444.322,441.561,442.193,443.18,441.038,443.241,441.172,443.518,442.873,443.317,440.007,443.162,441.605,442.974],"script":[95.272,95.143,94.272,97.66,95.707,95.121,96.251,95.377,94.686,96.816,96.203,94.047,94.012,94.951,94.835],"paint":[342.521,342.375,340.447,337.288,340.604,338.888,340.194,338.428,341.911,339.066,340.096,339.153,342.355,339.555,341.38]}},{"framework":"metron-v0.0.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.677,46.984,46.914,47.544,46.42,46.058,47.524,46.337,46.08,48.139,46.854,47.473,47.447,47.636,46.298],"script":[7.615,6.623,6.709,6.645,6.687,6.671,7.019,6.804,6.656,6.965,6.892,6.67,6.747,6.533,7.191],"paint":[40.15,39.467,39.302,40.014,38.773,38.455,39.527,38.587,38.553,40.186,39.059,39.901,39.798,40.075,38.16]}},{"framework":"metron-v0.0.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.529,12.407,12.61,12.276,12.801,12.555,12.62,12.408,13.533,12.784,12.275,12.923,12.736,12.669,11.821],"script":[10.796,10.522,10.736,10.478,10.658,10.4,10.667,10.258,10.42,10.2,10.106,10.853,10.625,11.039,10.731],"paint":[1.645,0.95,1.702,1.713,1.918,2.064,1.852,2.041,2.97,2.156,2.083,1.24,1.243,1.535,0.364]}},{"framework":"metron-v0.0.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5316371917724609]}},{"framework":"metron-v0.0.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3683433532714844]}},{"framework":"metron-v0.0.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.407984733581543]}},{"framework":"metron-v0.0.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7325992584228516]}},{"framework":"metron-v0.0.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.033967971801758]}},{"framework":"metron-v0.0.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.8974609375]}},{"framework":"metron-v0.0.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.0048828125]}},{"framework":"metron-v0.0.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.3]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"01_run1k","values":{"total":[46.354,44.132,43.162,44.982,43.796,44.038,44.225,45.126,44.798,44.769,44.946,44.623,44.124,45.046,45.068],"script":[10.945,10.434,10.969,10.643,10.767,11.207,10.396,10.544,10.918,10.554,10.96,10.568,10.609,10.425,11.154],"paint":[34.919,33.249,31.807,33.902,32.6,32.388,33.409,34.152,33.486,33.79,33.558,33.613,33.085,34.167,33.511]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"02_replace1k","values":{"total":[49.706,48.644,49.281,48.391,49.022,49.256,49.137,49.137,48.999,49.688,49.408,48.037,49.019,49.001,48.735],"script":[13.299,13.114,13.013,13.027,13.38,13.188,12.976,13.026,13.208,13.397,13.125,12.74,13.012,12.954,13.781],"paint":[35.954,35.067,35.837,34.89,35.167,35.594,35.701,35.672,35.308,35.844,35.83,34.853,35.533,35.568,34.498]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.885,22.164,19.971,19.875,19.053,20.35,19.694,20.549,19.686,20.487,19.613,20.1,20.043,19.331,19.694],"script":[4.535,5.474,4.423,5.139,4.865,4.647,4.491,4.962,4.574,4.91,4.562,5.04,4.449,4.581,4.602],"paint":[13.888,14.849,14.006,13.745,12.682,14.761,13.598,14.63,12.102,14.336,13.547,14.002,14.638,13.3,13.329]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"04_select1k","values":{"total":[3.462,3.529,3.684,3.075,2.645,2.925,4.683,5.553,3.645,3.456,3.938,3.682,2.866,2.351,2.798,3.344,3.174,4.028,2.91,3.659,4.756,3.772,6.079,3.102,3.697],"script":[1.186,1.224,1.213,0.508,0.18,0.651,0.902,0.774,1.105,1.412,0.193,0.599,0.664,0.904,0.855,1.086,1.156,0.177,0.892,0.899,0.186,0.664,1.229,0.182,1.371],"paint":[1.773,2.205,2.287,2.458,1.679,2.184,2.461,1.716,2.438,1.122,0.812,2.211,0.832,0.803,1.837,0.597,1.924,1.987,1.914,2.65,2.284,1.661,1.457,2.179,2.234]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"05_swap1k","values":{"total":[18.491,18.61,19.146,18.99,18.749,19.209,18.68,18.97,18.904,19.502,19.606,18.934,18.273,17.79,19.056],"script":[0.486,0.837,1.103,0.796,0.169,0.547,0.519,0.164,0.272,0.181,1.044,0.926,0.508,0.537,0.836],"paint":[15.976,16.535,16.671,16.594,17.576,17.354,17.137,16.53,17.35,16.85,16.564,16.781,16.355,16.211,16.906]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.059,15.129,14.96,14.789,15.118,14.788,14.758,15.104,14.79,15.075,15.199,14.77,14.781,15.06,15.037],"script":[0.124,0.387,0.293,0.114,0.394,0.117,0.429,0.282,0.401,0.332,0.434,0.116,0.119,0.448,0.435],"paint":[14.077,13.999,13.778,13.911,14.012,13.961,13.532,13.879,13.622,14.087,14.034,13.928,13.647,13.841,13.881]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"07_create10k","values":{"total":[454.454,467.835,465.684,463.675,467.361,464.367,457.578,470.891,460.802,458.241,464.458,463.409,464.801,467.91,465.916],"script":[118.966,127.665,128.393,120.148,126.037,122.401,120.351,127.537,124.489,122.846,127.159,122.901,123.798,125.964,125.639],"paint":[328.623,333.243,330.413,336.646,334.545,335.241,330.553,336.173,329.585,328.815,330.454,333.701,334.289,335.154,333.433]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.479,53.188,51.908,50.654,51.106,50.573,50.868,50.291,52.746,52.801,53.187,52.764,51.036,52.042,52.298],"script":[10.745,11.141,11.736,11.113,11.72,11.029,10.951,10.837,11.126,11.512,11.214,11.132,11.254,11.633,11.007],"paint":[38.837,41.08,39.211,38.522,38.472,38.604,39.014,38.505,40.709,40.321,41.004,40.712,38.885,39.522,40.407]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.249,12.113,13.146,13,12.703,12.143,12.802,12.209,12.059,11.938,12.28,13.033,12.116,12.033,13.079],"script":[10.332,10.584,11.889,11.079,10.49,10.434,10.921,10.355,10.636,10.421,10.603,11.296,10.362,10.599,10.689],"paint":[1.189,1.446,1.169,1.828,2.127,1.62,1.059,1.772,0.351,1.433,1.586,1.234,1.664,0.382,2.305]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5808467864990234]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.434617042541504]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.565178871154785]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9432525634765625]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.779791831970215]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[44.4755859375]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.43359375]}},{"framework":"michijs-v1.1.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.3]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"01_run1k","values":{"total":[47.003,48.349,46.688,46.459,46.794,46.024,46.443,46.173,48.173,48.81,48.24,47.584,46.271,47.992,47.364],"script":[13.14,14.12,13.572,13.229,13.136,12.927,13.178,13.241,14.999,14.585,14.417,13.983,14.047,13.968,14.018],"paint":[33.447,33.805,32.703,32.797,33.236,32.679,32.843,32.519,32.746,33.789,33.391,33.193,31.833,33.605,32.915]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"02_replace1k","values":{"total":[70.581,69.625,69.702,71.745,70.975,68.918,68.155,70.128,69.507,69.452,67.901,70.387,68.533,67.628,68.077],"script":[33.452,33.272,32.928,33.146,33.889,32.445,31.418,33.279,32.589,32.576,31.365,33.193,31.91,31.34,31.751],"paint":[36.652,35.876,36.336,38.124,36.62,36.018,36.267,36.381,36.367,36.411,36.071,36.725,36.153,35.824,35.856]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[54.516,54.568,52.543,51.333,53.611,53.936,51.544,52.312,52.103,55.792,55.307,56.667,50.772,54.114,52.926],"script":[38.237,38.275,36.762,35.719,37.763,37.501,35.397,35.723,35.716,39.224,39.192,39.638,35.043,37.935,36.649],"paint":[14.74,14.91,13.728,13.744,14.305,15.134,14.018,15.527,14.215,15.239,14.168,15.689,14.177,13.77,13.137]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"04_select1k","values":{"total":[37.576,36.516,40.204,39.94,38.852,38.448,35.812,36.427,38.334,37.938,38.368,38.83,39.739,36.562,36.22,39.688,38.217,37.883,38.068,38.859,37.748,38.139,39.675,40.595,36.892],"script":[33.986,33.064,36.555,37.205,36.058,35.018,32.675,33.064,35.238,34.659,34.809,35.36,36.205,33.836,33.297,36.219,35.507,34.716,34.819,35.261,34.553,34.476,36.238,36.627,33.404],"paint":[3.39,3.016,2.941,1.978,1.875,2.59,2.232,2.808,2.312,2.071,3.174,2.908,2.798,2.524,2.739,3.275,1.671,1.936,1.675,2.465,1.836,2.148,2.816,2.038,2.431]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"05_swap1k","values":{"total":[56.475,54.136,56.717,55.976,53.922,54.951,54.843,52.302,54.07,53.69,55.244,54.273,53.171,56.405,55.238],"script":[36.618,35.422,37.186,37.302,35.129,35.935,35.725,32.617,34.208,34.425,35.702,35.249,34.278,36.632,35.836],"paint":[17.674,16.615,17.955,16.317,17.732,17.925,17.984,18.399,18.286,17.789,18.081,18.146,17.546,17.923,17.641]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[124.79,123.307,125.272,124.653,125.76,125.995,125.221,124.692,123.229,123.621,125.082,125.13,125.979,126.593,126.712],"script":[54.689,52.241,52.779,53.832,54.003,55.236,54.691,53.736,52.986,51.673,54.354,53.287,55.682,55.414,55.394],"paint":[68.385,70.152,71.289,69.598,70.833,69.655,69.347,69.733,69.252,71.053,69.554,70.309,69.046,69.974,70.063]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"07_create10k","values":{"total":[471.614,474.382,475.991,475.727,478.731,471.266,471.87,471.778,477.49,475.059,471.092,475.076,475.796,477.172,472.4],"script":[136.539,136.478,136.869,137.186,137.147,135.731,132.86,135.92,137.34,136.121,135.564,137.634,137.598,136.677,135.773],"paint":[328.407,331.042,332.255,331.798,334.567,328.93,332.346,329.123,333.405,332.234,328.778,330.504,331.396,333.588,329.885]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.36,67.043,65.565,64.932,66.385,65.864,66.914,65.934,66.01,67.355,67.017,67.186,65.781,65.748,67.326],"script":[25.962,27.04,26.187,25.633,26.368,26.248,26.813,26.275,26.336,26.417,26.677,26.426,25.98,26.163,26.925],"paint":[39.499,39.105,38.511,38.46,39.141,38.733,39.232,38.811,38.806,40.036,39.46,39.93,38.91,38.719,39.479]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.912,11.99,12.362,12.206,12.325,11.925,12.268,12.186,12.639,11.987,11.956,12.523,11.978,12.262,12.64],"script":[10.372,10.076,10.554,10.049,10.437,9.884,10.386,10.344,11.02,10.46,10.217,10.387,10.554,10.351,10.672],"paint":[0.975,1.832,1.011,1.02,1.788,1.959,1.13,1.761,1.5,1.438,1.663,2.049,1.341,1.755,0.988]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.584132194519043]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.791830062866211]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0349607467651367]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9466943740844727]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.814523696899414]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.16796875]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.20703125]}},{"framework":"michijs-map-v1.1.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.4]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"01_run1k","values":{"total":[35.67,34.781,35.05,35.709,35.635,34.533,35.184,35.439,35.804,34.921,37.138,34.659,35.241,34.959,35.932],"script":[2.556,2.486,2.433,2.615,2.445,2.543,2.483,2.451,2.529,2.696,2.609,2.576,2.479,2.472,2.676],"paint":[32.731,31.903,32.204,32.688,32.753,31.591,32.279,32.59,32.874,31.819,34.098,31.684,32.355,32.08,32.847]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"02_replace1k","values":{"total":[38.926,39.383,39.164,39.063,39.085,40.247,38.449,38.958,40.061,38.798,38.477,40.234,38.713,38.194,38.238],"script":[4.76,4.947,4.785,4.743,4.917,4.853,4.493,4.868,4.829,4.809,4.761,4.828,4.79,5.058,4.691],"paint":[33.717,34.007,33.956,33.87,33.74,34.938,33.553,33.665,34.651,33.561,33.29,34.968,33.501,32.719,33.109]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.155,15.952,16.13,15.264,16.551,15.654,16.378,15.736,14.974,15.09,15.083,15.846,16.249,15.265,15.572],"script":[0.796,0.308,0.134,0.116,0.916,0.555,0.146,0.137,0.49,0.125,0.766,0.559,0.14,0.515,0.125],"paint":[12.835,14.642,14.525,13.804,13.807,12.826,14.374,13.655,13.512,13.918,12.968,12.968,14.396,13.24,14.531]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"04_select1k","values":{"total":[2.736,2.85,1.889,2.322,7.115,4.899,2.626,3.301,3.15,2.347,2.579,3.624,2.153,2.469,3.978,1.944,5.012,2.734,2.47,3.171,2.343,3.421,2.687,2.546,2.738],"script":[0.425,0.078,0.403,0.08,0.422,0.318,0.19,1.036,0.084,0.383,0.079,0.083,0.322,0.082,0.807,0.077,0.791,0.756,0.283,0.076,0.084,0.077,0.766,0.819,0.657],"paint":[2.208,2.684,1.384,2.145,1.935,2.207,1.706,2.17,1.959,1.862,1.048,1.551,1.728,1.631,1.122,1.104,1.523,1.877,2.079,1.959,2.159,2.227,1.827,1.052,1.58]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"05_swap1k","values":{"total":[19.42,18.691,18.913,18.847,18.328,19,18.585,19.67,18.468,18.944,18.38,18.286,19.293,19.941,18.726],"script":[0.19,0.859,0.683,0.176,0.171,0.17,0.159,0.848,0.156,0.884,0.659,0.492,0.872,0.172,0.799],"paint":[17.535,16.349,16.505,16.438,16.64,17.343,16.889,17.329,16.808,16.759,16.183,16.269,16.111,17.37,16.086]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.719,14.828,14.876,15.287,14.664,15.365,15.192,15.931,14.758,14.707,14.563,14.468,14.736,14.884,15.153],"script":[0.267,0.173,0.085,0.089,0.089,0.235,0.401,0.349,0.089,0.217,0.082,0.183,0.224,0.086,0.392],"paint":[13.716,13.916,14.055,14.423,13.821,14.025,14.431,14.844,13.937,13.69,13.552,13.52,13.566,14.03,14.079]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"07_create10k","values":{"total":[372.039,366.412,367.586,369.581,369.26,367.406,367.475,368.191,367.924,368.807,366.032,370.235,370.334,367.983,368.598],"script":[29.199,27.981,28.107,28.7,29.66,29.719,28.098,28.143,28.779,29.283,28.573,29.201,30.826,27.647,29.254],"paint":[335.917,331.802,332.866,334.252,332.945,331.062,332.753,333.013,332.549,332.934,330.831,334.403,332.955,333.747,332.733]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.15,39.608,40.899,40.1,39.698,39.9,40.201,39.692,39.955,39.848,40.843,39.786,40.845,39.919,41.096],"script":[2.467,2.45,2.469,2.43,2.476,2.372,2.446,2.441,2.434,2.432,2.469,2.534,2.429,2.403,2.51],"paint":[36.829,36.325,37.5,36.841,36.393,36.689,36.862,36.431,36.698,36.46,37.528,36.412,37.565,36.676,37.769]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.496,13.816,12.026,11.468,12.786,12.117,11.828,12.129,12.481,12.243,12.224,12.29,11.747,12.549,11.483],"script":[10.302,11.387,10.106,10.172,10.902,10.457,9.858,9.696,10.958,10.569,10.374,10.085,9.888,10.428,9.576],"paint":[2.089,1.846,1.238,0.86,0.929,1.569,1.878,2.008,1.43,1.594,1.774,1.219,1.766,1.393,1.821]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5085182189941406]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8374452590942383]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8739261627197266]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6622495651245117]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.405378341674805]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.8828125]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.685546875]}},{"framework":"mikado-v0.8.327-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"01_run1k","values":{"total":[36.118,36.934,37.727,36.894,36.651,36.153,36.699,37.467,37.996,38.1,37.509,37.448,36.743,37.959,36.795],"script":[3.734,3.774,3.745,3.785,3.715,3.678,3.815,4.266,3.746,4.303,3.686,3.763,3.731,4.269,3.748],"paint":[31.998,32.718,33.582,32.723,32.534,32.048,32.49,32.797,33.861,33.371,33.438,33.288,32.612,33.289,32.655]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"02_replace1k","values":{"total":[41.446,42.633,40.788,40.107,40.747,41.272,41.065,40.63,41.027,41.406,41.438,40.319,41.545,41.985,40.864],"script":[6.359,6.153,6.163,6.004,6.285,6.373,6.222,6.121,6.252,6.094,6.415,6.131,6.34,6.338,6.305],"paint":[34.656,36.031,34.208,33.697,34.055,34.482,34.423,34.055,34.331,34.879,34.604,33.767,34.763,35.156,34.128]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.732,15.866,16.397,15.85,16.098,16.333,15.856,16.27,15.607,15.874,15.635,16.521,16.317,15.548,15.889],"script":[0.977,0.894,0.872,0.727,0.202,0.936,1.101,0.804,1.131,0.8,0.805,1.368,1.283,0.17,0.656],"paint":[15.016,13.961,14.555,13.689,15.161,14.309,12.912,14.439,13.286,14.06,13.001,13.592,13.724,13.826,14.551]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"04_select1k","values":{"total":[2.056,3.07,4.274,2.564,3.121,2.516,2.211,2.192,3.316,2.083,6.611,3.259,2.973,2.782,4.107,2.352,2.475,2.486,3.052,1.937,2.983,2.847,2.387,5.51,5.274],"script":[0.066,0.072,0.68,0.072,0.916,0.07,0.346,0.079,0.954,0.277,0.07,1.008,0.871,0.073,0.07,0.071,0.07,0.068,0.066,0.39,0.072,0.069,0.07,0.165,0.075],"paint":[1.895,2.891,1.271,2.391,1.518,1.664,1.369,1.437,1.81,1.341,1.656,2.163,2.01,1.929,1.635,2.168,2.309,1.86,1.966,1.455,2.814,2.124,1.124,1.673,2.248]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"05_swap1k","values":{"total":[18.136,18.164,18.394,19.19,17.952,18.854,18.444,17.374,18.325,18.604,18.816,18.461,18.461,19.404,18.137],"script":[0.13,0.476,0.556,0.84,0.589,0.799,0.511,0.124,0.14,0.911,0.65,0.134,0.491,0.146,0.754],"paint":[17.001,15.627,16.241,16.82,14.648,16.909,16.75,15.964,17.035,16.435,16.464,17.094,16.576,16.486,15.672]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.796,14.888,15.237,15.066,14.735,14.781,14.702,14.954,14.901,15.408,15.644,14.762,14.824,14.818,14.95],"script":[0.123,0.268,0.125,0.442,0.13,0.128,0.125,0.242,0.253,0.441,0.343,0.128,0.125,0.277,0.123],"paint":[13.951,13.744,14.393,13.947,13.908,13.936,13.36,13.915,13.928,14.109,14.138,13.892,13.916,13.84,13.763]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"07_create10k","values":{"total":[371.181,372.486,378.193,372.077,369.998,373.661,375.218,371.542,372.412,377.629,373.702,374.663,369.794,373.219,377.291],"script":[42.435,42.848,42.074,43.905,43.521,43.434,44.055,43.789,43.473,45.089,43.538,44.923,44.074,43.385,43.599],"paint":[321.922,323.086,329.43,321.592,319.932,323.677,324.556,321.028,322.166,326.061,323.613,323.204,319.214,323.292,327.142]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.432,44.608,45.38,41.795,44.532,44.676,44.715,44.457,44.514,42.832,41.405,43.348,44.562,44.145,42.854],"script":[4.43,4.214,4.284,4.185,4.372,4.394,4.323,4.324,4.367,4.453,4.316,4.488,4.314,4.24,4.402],"paint":[39.107,39.528,40.007,36.765,39.315,39.429,39.549,39.29,39.304,37.553,36.259,38.002,39.409,39.08,37.618]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.338,12.451,12.102,11.937,12.172,12.521,12.567,11.631,12.194,12.15,12.685,12.036,11.857,12.762,12.4],"script":[10.737,10.172,10.629,10.525,10.623,10.903,10.361,10.512,10.45,9.966,11.076,10.02,10.413,10.447,10.813],"paint":[0.374,1.798,1.381,1.319,1.467,1.538,2.113,1.03,1.663,2.098,1.523,1.931,1.352,2.232,1.507]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5209808349609375]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2961721420288086]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.429020881652832]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8481531143188477]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.78713607788086]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.8486328125]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.53125]}},{"framework":"mikado-proxy-v0.8.327-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49.6]}},{"framework":"million-v2.3.3-keyed","benchmark":"01_run1k","values":{"total":[35.247,35.739,35.392,35.315,36.188,37.364,34.841,35.629,35.043,35.719,36.45,35.542,35.426,35.008,35.374],"script":[2.668,2.685,2.657,3.079,2.968,3.046,2.669,3.071,2.629,2.634,3.009,2.726,2.691,2.649,2.706],"paint":[32.175,32.651,32.323,31.823,32.795,33.887,31.782,32.14,32.003,32.685,32.951,32.379,32.31,31.955,32.266]}},{"framework":"million-v2.3.3-keyed","benchmark":"02_replace1k","values":{"total":[39.71,38.355,38.369,38.5,38.304,38.585,38.386,40.835,38.649,38.677,38.388,40.732,38.478,38.305,40.151],"script":[4.932,4.728,4.74,4.726,4.7,4.745,4.732,4.727,4.744,4.707,4.7,4.79,4.74,4.76,5.04],"paint":[34.322,33.194,33.189,33.358,33.188,33.42,33.212,35.652,33.486,33.519,33.257,35.53,33.321,33.077,34.677]}},{"framework":"million-v2.3.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.227,15.49,16.928,17.153,17.436,16.158,16.158,15.959,16.255,16.833,16.995,15.915,16.465,16.051,16.341],"script":[1.227,0.937,0.943,1.547,2.102,1.039,1.487,0.952,1.469,1.739,1.832,1.022,1.709,0.973,0.994],"paint":[13.858,13.286,14.053,14.471,13.975,13.97,13.601,14.037,13.011,13.897,14.189,13.621,12.699,13.493,14.365]}},{"framework":"million-v2.3.3-keyed","benchmark":"04_select1k","values":{"total":[3.544,2.852,3.565,3.147,2.771,3.079,3.252,3.092,3.401,3.845,3.501,3.24,5.545,3.619,6.476,3.102,3.251,3.313,4.258,4.145,3.467,4.701,3.125,2.863,2.83],"script":[0.779,0.184,1.115,0.674,0.53,0.844,0.954,0.963,0.621,1.004,1.3,0.9,0.865,1.44,1.032,1.466,0.667,0.924,0.846,0.895,0.64,0.574,1.038,1.193,1.328],"paint":[2.665,1.835,1.208,2.375,1.274,2.113,1.563,2.027,2.682,1.393,1.504,1.633,1.566,1.529,1.82,1.135,2.481,2.279,2.363,1.564,2.487,2.114,1.71,1.576,1.4]}},{"framework":"million-v2.3.3-keyed","benchmark":"05_swap1k","values":{"total":[19.321,18.647,18.848,18.705,19.219,18.814,18.7,18.752,18.599,18.845,21.353,18.784,18.259,18.784,18.643],"script":[1.059,0.581,1.469,1.11,0.941,1.019,0.947,1.228,1.197,1.558,1.099,1.018,1.006,0.931,1.163],"paint":[16.863,16.706,15.877,16.383,16.809,16.342,15.566,15.961,15.523,16.087,18.658,16.749,15.993,16.384,16.041]}},{"framework":"million-v2.3.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.757,14.722,14.768,14.682,14.322,14.543,14.682,14.56,14.826,14.757,14.738,15.429,15.195,14.812,14.551],"script":[0.092,0.096,0.246,0.083,0.087,0.085,0.088,0.308,0.094,0.093,0.255,0.092,0.091,0.196,0.097],"paint":[13.866,14.247,13.792,13.916,13.503,13.759,13.876,13.297,14.064,13.764,13.669,14.532,13.897,13.853,13.723]}},{"framework":"million-v2.3.3-keyed","benchmark":"07_create10k","values":{"total":[371.995,372.1,372.603,374.705,370.985,371.725,375.615,374.355,373.375,376.547,368.815,369.424,371.809,374.999,373.424],"script":[32.487,32.932,33.461,34.632,33.507,33.75,34.057,34.036,32.703,33.133,32.938,32.539,32.407,32.65,33.036],"paint":[332.822,332.554,332.54,333.478,330.81,331.368,334.928,333.626,334.064,336.811,329.172,330.02,332.682,335.688,333.618]}},{"framework":"million-v2.3.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.74,41.863,41.594,40.185,39.911,40.352,48.817,41.818,40.226,41.574,40.458,41.425,40.144,41.671,41.321],"script":[3.096,3.109,3.155,3.052,3.061,3.048,3.141,3.069,3.041,3.118,3.067,3.256,3.046,3.221,3.052],"paint":[37.752,37.779,37.592,36.292,36.021,36.483,44.607,37.897,36.358,37.635,36.561,37.349,36.244,37.592,37.413]}},{"framework":"million-v2.3.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.198,11.205,11.95,11.935,12.216,11.676,11.353,11.897,11.594,12.004,11.27,12.111,11.695,12.021,11.223],"script":[9.752,9.737,10.03,9.478,11.118,10.24,9.301,10.174,9.424,10.146,10.025,10.472,9.976,9.963,10.084],"paint":[1.367,1.382,1.029,1.577,0.377,1.355,1.969,1.253,2.077,1.775,1.173,1.555,1.003,1.974,1.044]}},{"framework":"million-v2.3.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46856021881103516]}},{"framework":"million-v2.3.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0948219299316406]}},{"framework":"million-v2.3.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1259965896606445]}},{"framework":"million-v2.3.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7822771072387695]}},{"framework":"million-v2.3.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.446820259094238]}},{"framework":"million-v2.3.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.466796875]}},{"framework":"million-v2.3.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.517578125]}},{"framework":"million-v2.3.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.5]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"01_run1k","values":{"total":[47.396,46.52,47.375,48.386,46.839,47.365,46.671,48.447,48.549,47.563,47.796,48.754,49.303,47.293,47.877],"script":[13.322,13.176,13.863,13.638,12.893,13.302,13.407,13.311,14.799,14.452,13.424,14.407,14.536,13.673,13.71],"paint":[33.64,32.927,33.099,34.345,33.53,33.661,32.847,34.715,33.314,32.709,33.952,33.937,34.357,33.206,33.755]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"02_replace1k","values":{"total":[50.146,49.82,49.911,49.883,49.894,49.467,49.744,49.769,48.274,49.495,50.968,49.885,50.257,50.391,51.206],"script":[14.557,14.273,14.08,14.357,14.333,13.853,14.234,14.251,13.77,13.706,14.172,14.228,14.296,14.165,15.19],"paint":[35.16,35.123,35.37,35.1,35.16,35.178,35.072,35.068,34.09,35.357,36.329,35.216,35.519,35.804,35.573]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.988,15.075,15.314,16.276,15.878,15.899,16.538,15.807,15.937,15.673,15.733,15.88,15.818,15.506,16.6],"script":[1,0.577,0.95,1.252,0.891,0.937,1.158,0.606,1.045,0.882,0.881,0.611,1.028,0.921,1.218],"paint":[13.116,12.989,12.829,13.265,13.374,13.254,13.564,13.86,13.549,13.078,13.873,13.549,12.942,12.89,14.128]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"04_select1k","values":{"total":[2.897,2.548,3.522,2.629,3.192,3.208,3.868,2.95,2.768,3.078,2.448,3.429,2.836,3.148,2.592,3.377,2.586,2.837,2.978,2.759,3.553,2.573,2.91,2.853,2.831],"script":[0.131,0.541,1.061,1.066,0.129,0.131,0.993,0.977,0.814,1.102,0.547,1.094,0.136,1.013,0.135,0.965,1.059,0.852,0.122,0.586,0.132,0.676,0.981,0.498,0.841],"paint":[1.92,1.89,1.428,1.47,2.965,1.699,1.433,1.875,1.853,1.871,1.796,2.22,2.598,1.648,2.354,1.528,1.432,1.886,1.919,2.071,2.743,1.786,1.83,2.242,1.892]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"05_swap1k","values":{"total":[18.56,18.766,18.218,18.128,18.317,18.083,18.613,18.453,18.434,18.551,17.775,19.4,18.66,18.393,18.362],"script":[0.177,0.169,0.691,0.608,0.295,0.31,0.664,0.934,0.652,0.656,0.158,0.699,0.323,0.85,0.167],"paint":[17.246,15.869,16.208,16.691,16.354,16.583,15.948,15.942,16.152,16.136,16.103,17.555,17.276,16.461,16.027]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.369,14.761,15.317,15.179,14.892,14.986,14.873,15.165,16.091,14.825,15.199,15.762,15.451,15.624,14.766],"script":[0.491,0.437,0.412,0.175,0.167,0.348,0.176,0.467,0.509,0.414,0.172,0.507,0.375,0.343,0.311],"paint":[13.872,13.274,14.138,14.257,13.738,13.91,13.682,13.37,14.313,13.704,14.291,14.364,14.376,14.541,13.491]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"07_create10k","values":{"total":[461.65,470.811,459.528,456.729,464.181,461.631,470.9,461.449,461.824,460.591,455.476,457.901,457.18,472.519,457.465],"script":[121.602,122.196,120.94,119.709,122.08,119.963,121.076,119.846,121.348,120.798,119.409,120.179,118.309,119.201,118.396],"paint":[333.059,341.699,331.922,330.056,335.314,334.935,343.043,334.889,333.294,332.99,329.333,331.216,332.105,346.464,332.374]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.905,53.554,51.112,51.162,50.23,51.766,50.212,51.452,51.29,53.201,50.681,50.997,51.412,51.211,50.896],"script":[11.601,12.746,11.412,11.406,11.058,11.708,11.63,11.819,11.589,12.739,11.387,11.665,11.514,11.525,11.666],"paint":[38.417,39.899,38.795,38.864,38.278,39.128,37.675,38.727,38.826,39.549,38.415,38.422,39.008,38.79,38.366]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.983,12.971,13.254,13.126,13.532,13.254,13.156,13.222,13.202,13.191,13.706,14.002,12.924,13.012,13.568],"script":[11.525,11.554,10.821,10.929,11.343,11.58,11.813,11.48,11.716,11.32,11.342,12.058,11.622,11.535,11.285],"paint":[0.373,0.411,2.336,2.099,1.861,1.585,1.261,1.065,1.389,1.69,1.818,1.419,1.209,1.389,2.186]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6542510986328125]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.931391716003418]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9631032943725586]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0493955612182617]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.372708320617676]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[51.07421875]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.107421875]}},{"framework":"mimbl-v0.10.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.1]}},{"framework":"miso-v1.4.0-keyed","benchmark":"01_run1k","values":{"total":[60.727,60.496,60.732,58.257,58.723,60.996,59.611,60.586,59.803,59.199,60.265,58.79,60.11,58.644,60.041],"script":[25.861,27.164,26.194,25.161,25.711,26.751,26.116,26.374,25.825,25.476,26.565,24.83,25.862,24.893,26.535],"paint":[34.669,33.152,34.353,32.916,32.833,34.059,33.326,34.03,33.807,33.551,33.507,33.781,34.072,33.568,33.332]}},{"framework":"miso-v1.4.0-keyed","benchmark":"02_replace1k","values":{"total":[76.678,77.029,77.154,76.673,76.613,76.742,75.7,75.522,77.831,77.272,78.161,77.715,77.431,78.052,76.759],"script":[41.627,42.357,41.464,42.178,41.263,41.471,40.68,40.931,42.95,42.371,42.443,42.027,41.825,42.455,41.548],"paint":[34.856,34.492,35.376,34.321,35.164,35.093,34.841,34.419,34.7,34.732,35.532,35.517,35.433,35.43,35.028]}},{"framework":"miso-v1.4.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[63.858,63.193,61.614,61.177,65.872,66.522,63.802,60.953,61.668,65.894,63.518,60.137,59.972,62.174,63.036],"script":[48.085,45.077,47.099,45.876,49.504,49.028,45.874,45.161,46.954,48.431,45.994,45.496,45.172,44.993,45.156],"paint":[15.629,15.893,13.979,14.857,14.827,15.553,17.117,14.505,13.682,16.662,15.905,13.625,14.021,14.459,16.312]}},{"framework":"miso-v1.4.0-keyed","benchmark":"04_select1k","values":{"total":[43.453,47.531,47.738,46.274,45.996,45.063,46.707,48.365,47.119,46.76,42.49,47.122,45.237,42.925,50.622,46.048,47.375,47.017,42.525,48.298,43.84,46.438,50.683,46.913,46.983],"script":[38.293,41.547,42.026,41.507,39.891,39.087,40.837,41.836,41.232,39.139,38.083,40.937,39.688,38.095,44.551,38.428,40.659,40.344,38.801,41.004,39.805,40.177,43.614,40.972,40.097],"paint":[2.817,4.707,3.916,4.183,3.577,4.005,4.596,4.198,4.427,4.864,2.681,3.815,3.476,3.345,4.324,3.834,4.235,3.76,2.752,3.716,3.369,3.246,4.327,5.486,4.09]}},{"framework":"miso-v1.4.0-keyed","benchmark":"05_swap1k","values":{"total":[55.703,56.203,58.285,60.525,62.657,56.819,57.005,55.397,55.575,57.459,58.663,56.758,57.637,55.362,57.447],"script":[37.536,38.086,39.896,41.776,42.801,36.938,39.111,36.68,37.538,38.875,39.885,38.291,38.927,37.599,38.297],"paint":[18.011,17.311,18.225,18.604,17.984,18.815,17.741,17.61,17.893,17.235,18.359,17.706,17.037,16.786,18.124]}},{"framework":"miso-v1.4.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[41.365,38.067,44.201,39.451,39.288,38.412,39.087,40.286,46.707,44.251,45.728,42.717,40.168,46.591,44.524],"script":[20.635,19.545,21.308,19.326,20.271,19.405,19.343,20.167,19.527,20.588,19.954,18.646,19.844,19.876,19.951],"paint":[15.44,15.257,16.887,15.347,16.301,14.993,15.427,15.654,15.499,17.061,15.491,15.406,15.799,15.961,17.511]}},{"framework":"miso-v1.4.0-keyed","benchmark":"07_create10k","values":{"total":[589.277,590.097,595.569,588.995,577.96,580.51,588.502,586.132,577.708,584.089,588.103,598.691,590.694,593.457,588.102],"script":[242.427,245.91,239.217,244.431,235.097,240.376,242.532,240.893,237.269,238.796,243.144,242.237,241.804,240.768,243.141],"paint":[344.688,342.08,354.264,342.441,340.681,338.041,343.836,343.038,338.304,343.176,342.833,354.369,346.755,350.531,342.831]}},{"framework":"miso-v1.4.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.816,76.168,75.694,76.258,76.257,77.192,76.783,75.535,77.598,76.928,76.285,76.945,75.447,76.976,74.564],"script":[34.534,35.457,34.883,36.175,35.134,37.348,35.459,35.292,36.755,35.947,35.418,36.214,35.191,35.491,34.344],"paint":[40.989,39.919,40.524,39.789,40.472,39.545,41.033,39.943,40.557,40.388,40.315,40.435,39.778,41.173,39.926]}},{"framework":"miso-v1.4.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.346,57.186,56.6,31.28,34.436,55.475,58.177,30.185,34.836,30.811,57.602,30.158,33.936,35.907,29.183],"script":[29.468,29.299,27.887,29.292,29.85,27.664,28.557,28.618,32.987,28.448,30.388,28.996,28.073,30.94,27.478],"paint":[1.455,3.507,2.836,1.879,3.128,3.269,3.258,1.466,1.369,1.625,2.732,1.08,2.355,3.565,1.628]}},{"framework":"miso-v1.4.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.749173164367676]}},{"framework":"miso-v1.4.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.448274612426758]}},{"framework":"miso-v1.4.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.792001724243164]}},{"framework":"miso-v1.4.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.573907852172852]}},{"framework":"miso-v1.4.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.43765068054199]}},{"framework":"miso-v1.4.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.8408203125]}},{"framework":"miso-v1.4.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.6025390625]}},{"framework":"miso-v1.4.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[661.5]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"01_run1k","values":{"total":[40.356,40.762,40.366,40.593,41.136,40.595,40.749,40.999,41.75,40.955,40.107,41.85,40.625,42.04,40.762],"script":[7.622,8.144,7.413,7.709,7.701,7.426,7.639,7.525,8.178,7.842,7.41,8.191,7.658,8.469,7.981],"paint":[32.339,32.221,32.545,32.467,32.831,32.765,32.696,33.086,33.164,32.7,32.284,33.227,32.529,33.167,32.374]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"02_replace1k","values":{"total":[50.359,48.134,48.348,48.64,48.713,48.473,48.999,49.036,48.15,49.666,47.907,48.361,47.758,48.847,48.865],"script":[15.179,14.34,14.209,14.639,14.608,14.502,14.203,14.324,14.162,14.881,14.217,14.44,14.2,14.84,15.163],"paint":[34.753,33.367,33.723,33.582,33.683,33.556,34.37,34.247,33.564,34.349,33.266,33.448,33.143,33.604,33.3]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[31.602,31.979,31.318,30.696,29.653,31.971,30.409,30.735,31.75,29.743,30.404,31.497,29.142,29.633,31.192],"script":[11.404,10.079,10.407,10.196,9.75,10.228,10.633,10.889,10.471,10.258,10.059,10.781,10.13,9.579,10.535],"paint":[18.896,20.014,19.182,18.628,18.244,19.539,18.096,18.742,19.361,17.447,18.674,19.002,17.695,18.884,19.351]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"04_select1k","values":{"total":[13.354,13.593,13.945,14.225,14.101,13.768,13.998,13.059,14.064,13.475,13.91,13.985,14.199,13.314,13.812,13.537,14.214,13.792,13.5,14.199,13.256,14.216,13.331,13.537,13.543],"script":[6.691,7.235,7.206,7.653,7.7,7.465,7.481,7.154,7.166,7.887,7.331,7.206,7.742,6.855,7.437,7.192,7.964,7.542,7.595,7.625,6.926,8.055,6.721,7.066,7.613],"paint":[5.43,6.22,6.561,6.426,5.53,5.812,5.613,5.273,5.904,5.433,5.927,6.198,6.136,6.295,5.301,6.178,6.1,5.955,5.256,5.379,5.235,4.829,5.39,6.302,5.769]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"05_swap1k","values":{"total":[26.59,27.26,25.492,25.857,25.496,25.397,26.999,26.145,25.711,28.81,25.23,25.287,26.376,31.134,25.107],"script":[7.78,7.066,7.376,7.447,6.77,6.778,7.277,7.391,7.348,7.457,6.585,6.824,6.838,7.136,6.771],"paint":[17.311,17.655,16.157,16.616,16.09,16.975,18.445,17.03,16.48,19.301,17.215,16.822,17.975,20.777,16.744]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.205,20.213,20.705,19.984,19.613,19.485,19.024,20.279,21.021,19.535,19.261,19.327,19.421,21.341,19.239],"script":[3.87,4.319,4.372,4.291,4.053,4.252,4.14,4.277,4.909,4.265,4.156,3.991,4.095,5.038,3.921],"paint":[13.889,15.101,15.575,14.901,14.667,14.304,14.14,14.47,15.021,14.53,14.362,14.444,14.401,15.247,14.571]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"07_create10k","values":{"total":[423.978,419.91,424.656,422.502,421.267,422.318,426.637,425.252,424.03,420.921,422.956,423.784,421.014,422.288,427.104],"script":[86.951,80.231,91.282,81.255,81.299,81.052,91.577,82.266,82.279,82.552,81.092,81.919,81.125,80.415,93.892],"paint":[330.484,333.177,326.824,334.686,333.641,334.828,328.525,336.14,334.862,331.773,335.311,334.506,333.406,335.281,326.679]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.916,51.148,49.369,50.618,49.664,50.163,50.447,51.287,50.904,51.248,52.611,50.411,50.864,51.084,51.008],"script":[11.15,11.291,11.029,11.436,10.991,11.253,11.019,11.546,11.405,11.561,11.525,11.26,11.257,11.497,11.239],"paint":[38.866,38.979,37.48,38.307,37.806,38.025,38.552,38.861,38.64,38.836,40.18,38.258,38.756,38.738,38.909]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.525,19.032,18.711,18.332,18.089,18.612,19.737,19.067,17.694,19.222,17.672,18.483,18.941,18.486,19.29],"script":[16.844,16.863,17.569,16.782,16.198,17.249,17.751,17.391,15.547,17.324,15.33,17.522,16.753,16.997,17.362],"paint":[1.583,1.717,1.055,0.331,1.795,1.282,1.902,1.587,1.15,1.059,2.143,0.339,2.098,1.396,1.841]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4845848083496094]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.2996416091918945]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3216657638549805]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7298898696899414]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.54134178161621]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[23.736328125]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.32421875]}},{"framework":"misojs-v1.1.0.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[74.2]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"01_run1k","values":{"total":[47.634,42.793,45.824,47.971,42.647,48.969,42.282,41.431,51.063,46.072,46.854,48.095,49.33,43.545,49.489],"script":[9.17,8.409,8.602,8.57,9.247,8.58,9.031,8.464,9.065,9.236,8.566,8.348,8.356,8.539,8.576],"paint":[34.788,34.253,32.58,32.436,33.264,32.936,33.117,32.734,34.363,33.875,32.432,32.452,32.658,32.302,32.756]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"02_replace1k","values":{"total":[50.988,54.014,54.043,49.114,52.177,53.897,46.431,52.378,52.205,51.091,52.617,53.378,48.334,52.338,55.097],"script":[12.027,12.013,12.062,11.945,11.954,12.238,11.819,12.353,11.786,11.843,12.248,12.151,11.641,11.675,12.093],"paint":[34.199,34.61,34.769,34.612,34.297,35.076,34.472,34.974,34.094,34.73,33.836,36.306,34.687,36.524,35.591]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.675,43.446,26.941,42.516000000000005,43.613,43.268,42.719,43.983000000000004,28.69,29.229,44.485,43.984,28.535,42.56,43.03999999999999],"script":[12.134,12.87,10.265,12.213,13.282,12.182,12.045,12.661,11.977,12.12,13.732,13.415,12.435,12.558,12.84],"paint":[14.437,14.537,15.428,14.259,13.969,15.017,13.891,16.011,15.337,15.663,14.778,13.341,15.055,13.96,14.159]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"04_select1k","values":{"total":[15.891,13.581,13.979,14.656,14.528,16.255,17.546,13.023,13.025,14.043,12.692,16.567,15.036,15.826,16.072,14.808,13.113,13.682,13.786,12.907,13.21,13.861,12.959,16.417,12.888],"script":[10.052,10.448,11.177,10.488,9.998,10.915,11.118,10.977,9.818,10.752,9.651,10.435,11.385,10.346,10.973,11.852,10.503,10.569,11.215,9.449,10.176,9.825,9.809,11.45,10.089],"paint":[2.409,2.47,2.656,2.356,2.583,2.339,2.922,1.193,3.052,2.722,2.271,1.797,3.464,2.981,1.469,2.07,1.583,2.974,2.42,2.641,2.286,2.265,2.628,3.436,2.657]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"05_swap1k","values":{"total":[45.558,44.036,42.81699999999999,29.004,29.118,29.809,30.74,44.342,29.882,45.339,31.113,27.334,27.824,28.669,44.434],"script":[10.905,10.709,10.015,11.134,12.427,10.439,11.548,11.335,11.74,11.709,11.175,9.096,9.87,10.384,10.812],"paint":[18.245,17.278,17.314,17.763,16.574,17.852,18.311,16.962,18.027,17.584,17.722,17.05,17.134,17.122,17.583]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.233,21.681,26.031,19.07,21.642,23.232,25.366,19.805,19.036,26.455,20.33,24.023,24.503,24.845,19.044],"script":[5.796,5.516,5.482,5.663,5.697,5.499,5.66,6.098,5.218,5.749,5.901,5.784,5.595,5.157,5.637],"paint":[12.886,12.936,13.278,13.279,12.993,13.297,12.99,13.57,13.235,13.017,13.173,13.754,13.961,12.912,13.277]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"07_create10k","values":{"total":[432.078,435.419,452.887,439.009,435.599,432.803,432.592,429.483,435.698,430.839,436.861,437.713,436.278,431.583,431.954],"script":[100.779,103.427,102.123,101.944,100.451,101.361,100.521,100.936,103.083,101.381,101.273,103.204,101.014,101.214,100.73],"paint":[327.329,329.709,344.253,329.164,327.159,329.433,326.012,326.378,325.945,326.208,327.574,330.496,328.94,326.7,323.637]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.035,56.442,56.897,59.482,55.894,56.624,56.518,56.307,56.575,59.263,56.638,55.774,56.557,59.893,62.223],"script":[12.013,12.186,12.404,12.134,11.988,12.531,11.844,11.751,12.081,12.149,11.897,12.341,12.058,12.406,12.439],"paint":[38.209,37.755,37.9,37.825,37.901,37.614,38.157,37.763,37.591,37.645,38.208,37.488,37.988,38.27,38.263]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.747,16.083,16.167,17.676,31.147000000000002,15.715,32.686,16.462,32.021,16.908,32.338,18.603,16.441,32.605999999999995,14.417],"script":[14.969,14.403,14.605,15.404,13.463,14.73,14.921,14.197,15.03,14.489,14.782,14.103,14.238,15.308,13.002],"paint":[0.724,1.626,1.506,1.148,1.701,0.932,1.229,2.206,1.751,1.447,1.564,1.836,1.521,0.836,1.029]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5743188858032227]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.0134172439575195]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.446412086486816]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9963178634643555]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.59645462036133]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[37.951171875]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.7041015625]}},{"framework":"mithril-v2.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.9]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"01_run1k","values":{"total":[41.781,40.526,40.669,40.635,40.956,40.936,40.73,40.652,39.911,41.695,41.421,40.347,40.658,41.447,41.034],"script":[7.947,7.795,8.071,7.835,8.09,7.805,7.984,7.973,7.718,8.078,7.972,7.694,7.923,8.379,7.955],"paint":[33.413,32.323,32.175,32.383,32.455,32.695,32.333,32.272,31.78,33.207,33.001,32.245,32.312,32.643,32.648]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"02_replace1k","values":{"total":[44.977,45.078,44.613,45.252,44.253,44.975,44.205,44.248,44.025,44.212,44.231,45.449,44.665,44.125,44.603],"script":[10.169,10.378,9.99,10.636,9.866,10.061,9.911,9.692,9.656,9.677,9.807,10.647,9.848,9.703,9.899],"paint":[34.341,34.256,34.206,34.18,33.944,34.474,33.86,34.126,33.936,34.125,34.007,34.383,34.38,33.998,34.277]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.332,17.344,17.372,17.651,17.442,16.712,16.929,17.457,16.979,16.856,17.433,17.755,18.157,17.199,17.067],"script":[2.271,2.193,2.704,2.433,1.841,1.687,1.732,1.899,2.127,2.145,2.387,1.985,2.579,1.588,2.394],"paint":[13.793,13.241,13.364,14.213,13.784,13.18,13.311,13.719,13.624,13.97,13.821,14.165,14.449,14.862,13.398]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"04_select1k","values":{"total":[3.399,2.809,3.476,2.995,3.472,3.294,3.455,3.014,3.784,2.947,4.931,3.264,3.633,2.95,3.145,3.029,3.071,3.179,2.37,2.925,3.447,3.467,3.447,5.336,3.067],"script":[0.885,0.917,0.926,0.625,1.136,0.933,1.121,0.546,1.135,0.898,1.274,0.574,0.892,0.317,0.92,0.925,0.936,0.928,0.669,0.187,1.114,0.902,0.729,0.63,0.193],"paint":[2.416,1.381,2.275,1.379,2.24,0.904,1.318,1.565,1.35,1.259,1.623,2.583,2.622,2.358,1.426,1.359,1.464,1.599,1.16,2.245,2.236,2.467,1.566,1.778,2.771]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"05_swap1k","values":{"total":[19.674,20.095,19.752,19.587,20.293,19.548,20.23,20.044,19.684,19.252,20.746,18.988,19.664,19.282,19.55],"script":[1.846,2.084,2.441,1.437,2.162,1.822,2.549,1.967,2.259,1.832,2.015,2.107,2.112,1.632,1.937],"paint":[16.489,17.209,16.268,17.219,15.991,16.356,16.982,15.984,16.398,16.028,16.977,15.378,16.294,16.683,16.286]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.642,16.293,15.969,15.334,15.439,15.883,16.568,15.477,15.709,15.37,15.876,15.704,15.345,15.964,15.962],"script":[0.901,0.776,0.761,0.761,0.751,0.973,0.951,0.728,0.727,0.749,0.719,0.948,0.758,0.946,0.952],"paint":[13.801,14.284,14.258,13.885,13.945,14.482,14.841,14.076,14.207,13.911,14.419,13.926,13.883,14.163,14.101]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"07_create10k","values":{"total":[429.274,422.082,420.231,420.667,424.566,425.84,416.727,425.105,421.407,421.376,419.273,424.472,422.037,424.011,424.615],"script":[84.903,86.23,84.974,86.618,89.437,88.889,86.244,88.764,86.049,84.259,85.824,89.865,87.42,85.846,85.466],"paint":[337.66,329.161,327.951,327.372,328.272,330.287,323.779,329.707,328.685,330.313,326.796,327.618,327.929,331.424,331.422]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.341,44.593,45.721,44.748,46.425,44.113,44.356,44.593,44.741,44.427,44.065,46.167,44.931,45.363,46.201],"script":[6.503,6.55,6.829,6.349,6.517,6.341,6.38,6.459,6.5,6.311,6.403,6.587,6.611,6.78,6.733],"paint":[38.958,37.185,38.045,37.532,39.032,36.925,37.114,37.274,37.387,37.25,36.767,38.702,37.463,37.732,38.583]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.052,14.193,13.658,14.623,13.791,14.641,14.515,14.231,15.269,14.549,14.443,13.628,14.608,14.391,14.272],"script":[11.855,12.193,12.261,12.525,12.36,12.559,12.407,12.698,13.355,12.378,12.218,12.327,12.501,12.653,12.29],"paint":[1.833,1.913,1.012,2.006,1.334,1.18,2.007,1.209,0.935,1.061,1.595,0.862,2.014,1.236,0.992]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.859283447265625]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.890012741088867]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9146556854248047]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2735843658447266]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.740550994873047]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[56.2529296875]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.5126953125]}},{"framework":"mobx-jsx-v0.14.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[101.7]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"01_run1k","values":{"total":[39.757,39.711,40.704,38.908,38.719,37.903,40.648,38.572,41.552,38.377,40.011,39.619,39.907,40.462,40.198],"script":[6.752,6.711,6.918,6.501,6.59,6.279,7.017,6.417,7.028,6.634,6.818,6.732,6.761,6.784,6.813],"paint":[32.578,32.562,33.352,31.956,31.698,31.229,33.176,31.765,34.044,31.317,32.746,32.48,32.705,33.241,32.969]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"02_replace1k","values":{"total":[44.82,45.92,44.843,45.375,45.015,44.995,44.998,46.028,46.783,45.068,45.851,44.794,44.449,44.936,44.688],"script":[9.858,10.243,9.995,9.915,9.916,9.82,9.854,10.092,10.804,9.7,9.814,9.879,9.746,9.846,9.878],"paint":[34.503,35.16,34.404,35.002,34.636,34.733,34.706,35.401,35.527,34.948,35.596,34.448,34.272,34.571,34.352]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.365,16.526,16.316,17.132,17.117,16.414,16.818,16.795,16.69,16.485,16.775,16.928,17.094,16.663,16.862],"script":[1.693,1.166,1.434,1.736,1.244,1.302,1.767,0.956,1.471,1.704,1.739,1.408,1.549,1.286,1.165],"paint":[14.531,13.639,13.542,14.68,15.217,13.482,13.591,13.665,14.217,13.243,13.523,14.81,14.155,14.114,14.65]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"04_select1k","values":{"total":[3.489,3.28,3.895,3.045,3.404,4.274,3.72,2.739,2.973,2.831,3.395,2.924,2.698,3.397,3.182,3.698,2.973,3.705,2.619,3.521,3.833,3.202,3.447,4.396,3.031],"script":[1.267,0.986,0.859,0.204,1.072,1.12,1.026,0.903,0.909,0.881,1.14,0.909,0.188,0.962,0.748,1.143,1.002,1.175,0.729,1.01,1.314,1.022,1.174,0.938,1.089],"paint":[1.217,1.654,2.522,1.708,2.226,1.986,1.384,1.101,1.942,0.998,2.149,1.245,1.967,2.318,2.319,1.489,1.274,2.425,1.776,2.399,1.885,1.714,2.165,2.045,1.83]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"05_swap1k","values":{"total":[20.321,19.614,19.865,21.536,19.272,21.63,19.754,19.848,19.068,19.646,21.014,19.216,19.884,20.889,19.55],"script":[1.796,1.203,1.542,2.094,1.584,2.073,1.526,1.699,1.413,1.74,2.179,1.285,1.321,2.07,1.488],"paint":[17.073,17.696,16.852,17.87,16.506,18.213,16.832,16.563,16.518,16.616,16.963,16.921,17.567,17.334,16.724]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.454,15.989,15.977,15.4,15.396,15.504,15.474,15.784,15.565,15.438,15.732,15.509,15.909,15.506,15.525],"script":[0.649,0.663,0.663,0.665,0.637,0.651,0.665,0.63,0.743,0.648,0.654,0.64,0.696,0.677,0.683],"paint":[14.086,14.544,14.56,13.737,13.745,13.69,14.079,14.439,13.928,14.065,14.291,13.516,14.463,13.758,14.077]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"07_create10k","values":{"total":[629.517,632.227,627.527,626.01,635.503,628.09,635.251,634.821,625.692,624.382,631.961,630.308,634.001,626.205,635.905],"script":[270.279,274.632,267.984,269.686,273.419,269.467,276.058,273.57,269.88,267.729,271.987,271.074,273.879,267.905,278.842],"paint":[352.39,350.844,352.79,349.734,355.392,351.854,352.517,354.634,349.066,350.002,352.569,352.56,353.422,351.424,350.252]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[76.132,76.444,76.303,76.152,75.927,76.369,75.188,76.161,75.685,76.405,76.661,77.001,76.258,76.668,75.814],"script":[35.825,35.972,34.574,35.467,35.232,35.625,34.845,35.059,35.326,35.242,35.98,36.328,35.781,36.01,35.332],"paint":[39.404,39.548,40.73,39.78,39.785,39.835,39.458,40.21,39.456,40.232,39.755,39.76,39.569,39.724,39.584]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.676,18.254,18.286,20.208,19.72,18.805,18.268,18.534,19.002,17.961,18.304,19.843,19.728,18.443,18.309],"script":[17.444,16.4,16.298,18.351,17.319,17.335,16.449,16.576,17.249,16.767,16.52,18.284,17.767,16.606,16.45],"paint":[2.091,1.044,1.9,1.217,0.805,1.38,0.936,0.821,1.468,1.103,1.173,1.461,1.055,1.737,1.037]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.71176815032959]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.673126220703125]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.806138038635254]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.340605735778809]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.76816654205322]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[232.2216796875]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[66.2548828125]}},{"framework":"mogwai-v0.6.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[388.4]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"01_run1k","values":{"total":[41.101,41.141,42.142,41.837,42.352,40.339,42.669,40.93,40.205,41.725,42.536,40.469,42.982,43.87,42.144],"script":[8.107,8.134,9.045,8.467,9.01,8.011,8.346,8.129,8.211,9.018,9.027,8.113,9.366,8.028,8.243],"paint":[32.836,32.859,32.92,33.107,33.174,32.186,33.118,32.663,31.818,32.547,33.329,32.185,33.389,35.071,33.113]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"02_replace1k","values":{"total":[48.72,48.198,48.053,50.956,48.738,49.906,50.178,50.907,50.802,50.374,50.842,50.383,50.043,50.219,49.452],"script":[23.083,22.758,22.617,24.08,22.801,23.667,23.225,24.209,23.661,23.964,24.177,24.015,23.469,24.171,22.715],"paint":[34.246,34.001,33.946,35.728,34.515,34.918,35.907,35.657,35.722,35.115,35.412,34.983,35.412,34.759,35.368]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.121,47.105,51.014,50.38,49.647,48.265,51.668,47.634,47.621,47.443,51.459,47.843,46.076,49.506,47.224],"script":[33.194,32.825,33.685,33.141,31.54,33.511,34.047,32.769,33.067,32.444,33.814,32.966,32.217,32.569,33.443],"paint":[13.815,14.142,16.921,15.324,15.213,14.09,15.344,13.943,13.63,14.13,15.851,14.764,13.085,16.691,13.646]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"04_select1k","values":{"total":[39.183,38.866,40.401,38.63,38.796,39.49,38.197,39.796,39.84,37.434,38.898,38.133,40.08,38.611,39.367,38.689,37.549,38.878,38.29,39.229,39.914,37.807,37.853,38.782,39.275],"script":[33.437,32.683,34.324,32.862,33.32,33.504,32.074,33.189,34.062,33.043,32.829,33.233,34.71,32.958,33.354,32.29,33.073,33.538,31.834,33.459,33.636,33.095,31.816,32.055,33.008],"paint":[4.722,3.746,5.286,4.262,4.583,3.987,4.144,3.871,3.029,4.026,4.915,3.825,3.891,4.066,4.169,3.519,3.634,3.41,3.657,3.297,4.199,3.291,4.766,3.952,2.223]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"05_swap1k","values":{"total":[191.292,191.484,192.055,194.206,186.438,194.622,189.431,189.675,192.24,189.986,188.285,188.373,190.49,186.634,189.543],"script":[48.451,48.548,49.233,51.111,46.335,51.715,49.132,48.745,49.279,49.362,49.184,50.769,47.671,47.714,50.439],"paint":[142.485,142.753,141.088,142.789,139.55,142.567,140.101,139.257,141.567,140.442,138.816,136.264,142.267,137.97,136.848]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[94.448,96.298,93.666,96.538,95.909,91.565,97.817,98.343,95.563,97.997,98.182,93.447,96.212,101.017,95.938],"script":[23.817,24.636,23.412,24.822,24.082,23.292,25.615,27.004,23.921,24.329,25.476,23.657,24.218,26.093,24.398],"paint":[69.133,69.555,68.983,70.68,70.255,66.765,69.985,69.505,69.839,71.595,71.067,68.743,70.005,72.756,70.667]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"07_create10k","values":{"total":[424.513,426.149,423.182,432.811,424.994,420.893,424.223,424.927,423.534,420.898,424.695,420.711,418.578,421.645,427.26],"script":[92.793,90.017,90.108,89.559,88.528,87.634,90.587,91.685,89.07,89.432,89.916,89.303,89.429,90.005,90.333],"paint":[329.473,333.89,330.893,340.88,334.385,331.118,331.485,331.136,332.272,329.395,332.543,329.216,326.948,329.494,334.729]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.757,56.155,54.772,55.243,55.303,55.669,54.204,55.266,56.451,55.365,55.578,55.926,54.172,55.007,54.538],"script":[17.105,16.924,16.359,17.051,16.897,17.317,16.658,17.052,17.467,16.681,17.606,17.128,16.563,17.231,16.526],"paint":[38.394,38.948,38.147,37.93,38.138,38.07,37.281,37.95,38.704,38.406,37.701,38.526,37.332,37.511,37.728]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.113,26.127,24.629,23.811,26.226,24.889,25.742,25.095,25.503,24.979,25.604,24.485,25.809,26.184,22.022],"script":[21.947,22.322,21.738,20.093,22.421,21.735,21.326,21.258,21.675,19.992,20.952,20.976,22.286,22.482,20.824],"paint":[3.143,2.527,1.715,1.655,2.857,2.926,3.271,1.631,2.916,2.724,2.785,3.283,1.735,2.363,1.119]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.442418098449707]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.975330352783203]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.029790878295898]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.923105239868164]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.360066413879395]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.857421875]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.6611328125]}},{"framework":"openui5-v1.120.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[154.4]}},{"framework":"owl-v2.2.6-keyed","benchmark":"01_run1k","values":{"total":[39.647,40.684,39.481,42.935,44.136,46.562,40.784,41.624,40.958,40.596,39.736,44.6,40.982,44.424,40.194],"script":[6.442,6.957,6.145,7.195,6.348,6.522,6.874,7.233,6.961,6.787,6.276,7.307,6.842,7.518,6.396],"paint":[32.693,33.252,33.171,33.028,33.029,33.619,33.447,33.495,33.835,33.64,32.771,33.682,33.67,33.172,32.567]}},{"framework":"owl-v2.2.6-keyed","benchmark":"02_replace1k","values":{"total":[46.83,52.53,46.413,53.81,45.191,52.641,43.733,48.574,44.309,50.798,45.793,49.148,44.661,47.13,55.508],"script":[9.349,9.493,9.731,9.296,9.862,9.2,9.233,9.114,9.296,9.297,9.629,8.982,9.774,10.501,10.229],"paint":[35.186,35.668,34.828,35.441,34.858,35.411,34.342,33.762,34.509,33.916,34.304,34.108,34.725,34.919,36.255]}},{"framework":"owl-v2.2.6-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.464,24.802,25.462,25.21,25.052,26.482,23.724,24.407,25.243,24.228,24.36,23.794,24.711,24.717,25.677],"script":[10.491,9.824,10.459,10.262,10.67,10.574,8.818,9.236,10.694,9.99,9.127,10.116,10.618,9.838,10.644],"paint":[14.855,14.866,14.248,13.174,13.513,15.675,14.795,14.674,14.423,14.118,14.508,13.573,11.605,13.977,14.901]}},{"framework":"owl-v2.2.6-keyed","benchmark":"04_select1k","values":{"total":[10.218,9.622,9.845,10.07,10.398,10.006,11.618,10.441,9.912,9.9,9.497,12.746,10.261,12.039,10.551,10.276,9.929,10.53,10.558,10.097,9.737,10.464,9.902,12.462,10.214],"script":[7.588,7.446,7.676,7.271,7.415,7.791,8.946,7.096,6.791,6.918,6.741,10.46,6.623,9.443,8.002,7.66,8.019,7.608,8.735,7.575,6.965,7.626,7.39,9.88,7.687],"paint":[1.614,2.025,2.025,1.428,2.523,2.071,1.776,2.261,2.979,1.692,1.651,1.973,1.966,1.516,2,1.667,1.771,1.605,1.676,1.936,1.755,2.578,1.72,1.753,2.381]}},{"framework":"owl-v2.2.6-keyed","benchmark":"05_swap1k","values":{"total":[25.597,24.646,24.42,26.05,27.41,23.221,28.956,27.444,26.018,25.218,25.315,25.426,25.258,26.577,24.434],"script":[8.007,7.01,7.327,6.764,9.635,6.756,9.55,8.765,7.754,5.986,7.278,7.409,6.755,8.93,6.841],"paint":[16.549,16.867,15.443,17.048,17.629,15.772,18.537,17.73,17.49,17.639,17.45,17.25,17.882,17.07,17.469]}},{"framework":"owl-v2.2.6-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.551,19.357,19.829,19.553,20.211,19.678,20.191,19.561,20.231,19.657,20.346,20.89,19.72,20.279,20.708],"script":[7.096,5.779,6.462,6.081,6.829,6.501,6.72,6.551,6.667,6.573,6.337,6.334,6.654,6.706,6.978],"paint":[12.976,13.13,13.214,13.341,13.226,13.039,13.283,12.602,12.776,12.908,13.469,13.443,12.631,12.933,12.976]}},{"framework":"owl-v2.2.6-keyed","benchmark":"07_create10k","values":{"total":[422.867,418.818,421.809,432.591,421.112,423.697,420.132,423.238,427.39,420.707,420.001,419.902,423.803,424.012,420.003],"script":[81.229,75.482,77.423,80.647,76.692,80.215,76.248,79.121,80.485,77.105,75.759,77.052,77.31,80.652,74.504],"paint":[339.466,341.213,342.262,349.857,342.334,341.385,341.814,341.979,344.732,341.467,342.099,340.739,344.399,341.279,343.407]}},{"framework":"owl-v2.2.6-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.332,56.205,48.888,55.006,49.28,48.247,49.479,48.237,55.112,55.596,55.932,54.494,49.682,54.202,54.296],"script":[10.213,10.189,10.25,10.057,10.347,10.019,9.762,9.981,10.268,10.545,10.606,9.894,11.168,10.065,9.832],"paint":[38.314,39.07,38.327,38.759,38.634,37.898,39.396,37.985,38.824,39.126,38.749,38.348,38.247,38.139,38.273]}},{"framework":"owl-v2.2.6-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.376,13.866,13.942,13.473,13.571,14.042,13.626,12.991,13.255,13.797,14.461,13.977,12.952,13.507,13.696],"script":[11.906,11.961,12.304,11.843,10.837,11.927,11.716,10.668,11.461,12.286,12.136,11.885,12.141,12.133,12.128],"paint":[1.41,1.846,1.576,1.572,2.677,1.962,1.845,1.342,1.731,1.434,1.925,1.302,0.409,1.313,1.516]}},{"framework":"owl-v2.2.6-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8110694885253906]}},{"framework":"owl-v2.2.6-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.388789176940918]}},{"framework":"owl-v2.2.6-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.335638999938965]}},{"framework":"owl-v2.2.6-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3706750869750977]}},{"framework":"owl-v2.2.6-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.904423713684082]}},{"framework":"owl-v2.2.6-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[78.703125]}},{"framework":"owl-v2.2.6-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.3466796875]}},{"framework":"owl-v2.2.6-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[124.1]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"01_run1k","values":{"total":[40.211,41.824,40.25,44.073,41.28,40.92,40.933,40.181,40.813,41.827,40.532,40.224,40.809,42.731,41.495],"script":[7.092,7.87,7.165,7.746,7.259,7.32,7.856,7.144,7.83,7.923,7.845,7.377,7.809,7.921,7.942],"paint":[32.679,33.524,32.655,35.861,33.576,33.157,32.63,32.581,32.552,33.463,32.256,32.404,32.567,34.381,33.105]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"02_replace1k","values":{"total":[44.976,44.881,44.127,47.815,47.009,44.46,45.121,46.061,44.975,45.905,45.517,46.195,44.381,44.819,46.682],"script":[10.153,10.064,10.032,10.354,11.496,10.024,10.31,11.236,10.203,10.286,11.253,10.687,10.206,10.313,11.285],"paint":[34.367,34.366,33.653,36.995,35.083,33.972,34.351,34.378,34.319,35.195,33.823,35.072,33.702,34.069,34.942]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.64,19.178,19.507,21.133,21.046,19.77,19.857,19.693,19.447,21.473,20.308,20.203,20.983,19.318,19.513],"script":[1.623,1.345,1.923,2.856,2.157,2.34,1.478,1.913,1.981,2.447,1.86,1.583,1.632,2.093,1.993],"paint":[16.175,16.37,13.997,17.085,17.387,16.443,17.396,15.57,16.45,17.134,16.825,15.938,17.556,16.005,14.834]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"04_select1k","values":{"total":[2.634,3.686,3.408,3.127,6.188,3.378,3.352,3.059,4.044,3.162,3.499,3.415,3.228,2.692,5.929,2.887,4.55,3.606,3.353,3.33,4.818,2.846,3.735,3.983,3.848],"script":[0.245,1.231,0.912,1.092,0.955,1.183,1.168,0.711,1.195,0.945,1.12,1.177,1.243,0.997,0.977,1.05,1.102,0.9,0.942,0.613,1.296,0.807,1.125,0.934,0.228],"paint":[2.29,1.785,1.592,1.775,1.572,1.093,0.712,2.244,1.545,0.606,1.505,2.139,1.138,1.012,1.61,1.746,1.386,2.609,2.316,1.833,2.537,1.942,0.868,2.79,2.497]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"05_swap1k","values":{"total":[19.318,20.182,19.654,19.906,20.322,19.205,19.311,21.201,19.756,20.178,19.065,20.145,19.909,19.374,20.314],"script":[1.784,2.007,1.781,1.757,1.443,1.066,1.52,2.241,1.539,1.725,1.047,1.541,1.25,1.561,0.899],"paint":[16.259,16.792,16.268,16.545,17.497,16.301,16.59,17.642,17.201,17.79,16.432,17.616,15.672,16.42,18.095]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.376,15.336,15.047,15.5,15.317,15.328,15.658,15.88,14.874,14.976,15.825,14.897,15.213,14.798,15.264],"script":[0.448,0.459,0.295,0.21,0.342,0.3,0.522,0.477,0.164,0.274,0.479,0.162,0.162,0.352,0.376],"paint":[13.985,13.901,13.924,14.71,14.249,14.41,14.46,14.732,13.995,14.016,14.912,14.048,14.303,13.766,14.189]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"07_create10k","values":{"total":[433.926,429.587,424.964,425.369,426.959,426.123,423.77,432.145,422.794,417.981,427.002,424.52,420.645,426.585,424.653],"script":[89.854,86.775,84.601,84.444,85.801,83.361,84.671,90.492,83.599,82.708,85.983,85.102,82.176,88.018,87.624],"paint":[337.405,336.2,333.77,334.291,334.539,336.051,332.47,334.923,332.527,328.846,334.456,332.775,331.908,331.942,330.364]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.913,45.221,46.875,46.37,46.037,46.168,46.596,45.251,45.322,46.736,45.305,46.813,45.721,45.808,45.109],"script":[6.986,7.034,6.905,7.614,7.639,7.899,7.661,7.038,6.989,7.679,7.176,7.593,7.067,7.183,7.175],"paint":[37,37.302,39.072,37.795,37.503,37.343,38.005,37.291,37.413,38.175,37.2,38.265,37.691,37.685,37.081]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.562,13.189,13.927,13.285,13.777,13.453,13.168,13.661,14.134,13.509,13.555,13.498,13.963,13.553,13.495],"script":[11.148,11.682,11.525,11.876,11.602,10.968,11.366,11.914,12.163,11.921,11.611,11.704,11.306,11.667,11.879],"paint":[2.335,1.422,2.32,1.328,2.095,2.142,1.723,1.665,1.452,1.502,1.85,1.708,2.556,0.618,1.529]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5135564804077148]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0155887603759766]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.196892738342285]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9635915756225586]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.527645111083984]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.2890625]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.1806640625]}},{"framework":"plaited-v5.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[53.2]}},{"framework":"pota-v0.9.98-keyed","benchmark":"01_run1k","values":{"total":[48.465,49.053,50.127,50.224,49.549,48.442,49.6,48.408,49.253,47.754,49.58,48.284,48.04,49.03,49.564],"script":[14.492,14.664,15.3,15.791,14.864,14.966,14.949,14.864,15.164,14.588,15.535,15.085,14.913,14.684,15.28],"paint":[33.525,33.943,34.347,33.97,34.222,33.026,34.187,33.091,33.652,32.695,33.6,32.741,32.674,33.878,33.813]}},{"framework":"pota-v0.9.98-keyed","benchmark":"02_replace1k","values":{"total":[56.872,56.89,57.154,57.744,58.099,58.021,57.24,57.17,58.937,57.805,57.576,57.16,57.251,57.298,57.528],"script":[20.456,20.787,21.302,21.251,21.611,21.207,21.267,20.984,20.938,21.478,21.121,21.294,21.289,21.318,21.454],"paint":[35.94,35.649,35.408,36.044,36.019,36.37,35.512,35.705,37.533,35.864,35.991,35.376,35.509,35.504,35.628]}},{"framework":"pota-v0.9.98-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.456,16.515,18.746,17.815,17.619,17.827,17.958,17.272,19.29,18.189,18.093,17.847,17.608,17.427,17.524],"script":[1.68,1.046,2.324,1.216,0.983,1.002,1.662,1.134,1.865,1.746,1.49,1.779,1.354,1.455,1.488],"paint":[14.39,14.412,14.974,14.528,14.92,14.862,15.153,14.238,16.701,14.53,15.271,14.633,14.855,15.627,14.709]}},{"framework":"pota-v0.9.98-keyed","benchmark":"04_select1k","values":{"total":[3.649,2.655,2.672,3.037,3.199,2.526,6.833,2.463,2.56,3.017,2.693,2.783,3.196,4.426,5.723,4.476,3.423,4.233,2.867,2.583,4.072,3.739,2.552,2.597,2.888],"script":[0.892,0.083,0.077,0.614,0.078,0.087,1.04,0.079,0.077,0.536,0.085,0.082,0.871,0.08,0.076,0.086,0.081,0.08,0.983,0.077,1.01,0.082,0.087,0.075,0.078],"paint":[2.657,1.512,1.652,2.327,1.885,2.005,1.435,1.567,2.381,1.832,2.511,2.595,1.738,1.836,2.522,1.866,1.582,1.052,1.781,1.644,1.746,2.561,2.362,2.428,2.712]}},{"framework":"pota-v0.9.98-keyed","benchmark":"05_swap1k","values":{"total":[20.224,20.885,21.201,20.442,21.035,20.043,21.994,19.944,19.834,20.131,21.071,20.831,20.459,20.197,20.38],"script":[1.789,2.26,2.441,1.998,1.993,2.2,2.134,2.018,1.856,2.106,2.116,1.819,1.937,1.861,2.439],"paint":[16.823,16.476,16.958,17.799,17.944,16.816,18.312,16.598,16.573,16.65,16.728,17.558,16.81,16.728,16.797]}},{"framework":"pota-v0.9.98-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.056,15.881,16.084,16.181,16.348,16.916,15.528,16.542,16.017,16.011,16.126,15.967,15.766,16.002,16.558],"script":[1.121,0.902,1.037,0.809,0.939,1.15,0.737,0.764,0.734,1.073,0.706,0.717,1.001,0.948,0.762],"paint":[14.17,14.235,14.483,14.337,14.507,14.68,14.039,14.507,14.246,13.884,14.734,14.241,14.015,14.291,15.03]}},{"framework":"pota-v0.9.98-keyed","benchmark":"07_create10k","values":{"total":[519.414,494.642,515.05,492.072,495.498,512.528,496.678,517.028,519.672,505.789,500.699,509.33,494.992,512.088,492.745],"script":[153.468,151.828,153.822,151.311,153.557,155.666,154.222,154.653,156.398,150.041,153.866,150.399,155.183,153.338,153.556],"paint":[358.178,336.015,354.275,333.711,335.197,349.966,335.359,355.452,356.619,348.944,340.078,352.146,333.084,351.992,332.489]}},{"framework":"pota-v0.9.98-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.479,55.832,56.838,56.374,54.504,51.731,55.946,55.192,54.47,54.725,55.164,56.141,56.69,55.62,55.616],"script":[15.837,15.552,16.424,15.314,15.015,14.564,15.539,15.384,15.762,14.975,15.297,15.075,16.797,15.641,16.382],"paint":[39.65,39.328,39.471,40.053,38.532,36.296,39.451,38.915,37.765,38.863,38.959,40.109,38.985,39.077,38.342]}},{"framework":"pota-v0.9.98-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.329,24.84,26.123,26.691,25.538,26.407,27.476,26.052,27.055,25.869,25.567,24.357,25.552,26.335,27.211],"script":[23.745,23.545,24.117,25.287,24.298,24.532,25.581,23.101,25.955,23.715,24.175,22.652,24.063,24.811,25.213],"paint":[2.476,1.2,1.749,1.291,0.494,1.175,1.054,2.849,0.353,1.531,1.289,1.009,1.385,1.131,1.886]}},{"framework":"pota-v0.9.98-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5481672286987305]}},{"framework":"pota-v0.9.98-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.824146270751953]}},{"framework":"pota-v0.9.98-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9619321823120117]}},{"framework":"pota-v0.9.98-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9521722793579102]}},{"framework":"pota-v0.9.98-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.003286361694336]}},{"framework":"pota-v0.9.98-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.58203125]}},{"framework":"pota-v0.9.98-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.81640625]}},{"framework":"pota-v0.9.98-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.6]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"01_run1k","values":{"total":[47.723,46.716,46.759,46.083,45.881,46.439,47.304,43.954,47.211,46.056,46.231,46.35,45.697,46.144,45.612],"script":[11.928,11.162,11.303,10.848,10.801,11.027,11.643,10.573,11.824,10.575,10.804,11.1,10.63,11.1,10.431],"paint":[35.332,35.099,35.013,34.787,34.624,34.965,35.208,32.947,34.955,35.027,34.989,34.778,34.62,34.623,34.723]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"02_replace1k","values":{"total":[52.606,53.306,53.344,53.49,53.53,53.755,53.301,53.479,53.633,52.533,53.305,52.944,52.797,53.393,53.09],"script":[15.461,15.451,15.702,15.934,16.095,15.848,15.979,15.821,15.875,15.682,15.834,15.675,15.79,15.735,15.595],"paint":[36.663,37.37,37.175,37.097,37.005,37.433,36.896,37.183,37.305,36.378,37.038,36.856,36.553,37.228,37.028]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.337,19.799,20.081,19.147,19.395,22.454,20.213,19.508,20.109,20.067,19.306,19.952,19.484,19.678,19.629],"script":[3.586,3.607,3.435,3.217,3.569,3.351,2.79,2.903,3.264,3.203,3.261,3.436,3.467,3.235,2.623],"paint":[15.221,14.245,15.337,14.671,14.158,17.55,16.183,14.93,15.813,14.69,15.015,14.277,14.795,15.008,15.716]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"04_select1k","values":{"total":[5.092,4.641,5.044,4.287,5.022,4.782,4.991,4.665,6.108,5.194,4.5,5.888,5.368,4.931,4.558,4.497,5.252,6.453,5.457,5.352,4.676,4.563,5.314,5.464,4.844],"script":[2.597,2.197,2.262,1.71,2.74,2.195,1.713,2.011,1.454,1.864,1.885,1.747,3.046,1.621,1.617,1.958,2.232,2.781,2.124,2.484,2.642,2.351,1.739,2.348,2.491],"paint":[1.17,1.821,2.539,2.427,1.059,1.592,2.159,2.158,1.702,3.19,1.514,3.171,0.963,3.172,2.791,1.704,1.822,3.054,3.178,2.625,1.171,2.059,3.442,1.559,2.206]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"05_swap1k","values":{"total":[159.786,163.215,160.967,166.84,158.757,163.545,162.271,160.635,163.791,161.777,160.895,159.6,163.443,161.331,157.581],"script":[17.385,15.322,16.82,17.525,16.642,18.529,17.233,16.526,17.134,16.564,15.701,16.235,17.377,15.996,16.283],"paint":[139.835,145.832,143.025,147.097,140.25,143.613,143.638,142.162,144.562,143.313,143.027,141.407,144.69,143.861,139.883]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.226,16.214,16.187,16.825,16.185,16.759,16.843,16.125,17.692,16.395,16.572,16.666,16.376,16.803,16.714],"script":[1.197,1.071,1.117,1.125,1.086,1.235,1.256,1.08,1.163,1.017,1.048,1.246,0.967,1.246,1.233],"paint":[14.034,14.393,14.258,14.842,14.266,14.751,15.007,14.285,15.722,14.683,14.283,14.393,14.315,14.563,14.772]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"07_create10k","values":{"total":[458.303,454.318,451.333,455.584,454.383,455.596,454.839,457.269,453.851,449.742,459.386,454.806,457.388,455.432,455.417],"script":[110.28,110.978,109.775,114.533,111.873,110.187,111.712,111.289,112.551,112.035,110.808,110.556,110.278,114.262,111.194],"paint":[341.291,336.641,334.534,334.264,335.739,338.69,336.393,339.254,334.424,330.609,341.771,337.589,340.417,334.216,337.565]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.682,51.637,51.883,51.04,51.529,51.424,51.71,51.567,51.881,51.104,50.568,50.259,50.978,50.711,50.342],"script":[12.363,11.71,11.486,11.386,11.478,11.342,11.68,11.718,11.347,11.717,11.546,11.503,10.939,11.563,11.094],"paint":[39.46,39.043,39.49,38.768,39.184,39.192,39.166,38.99,39.608,38.536,38.171,37.885,39.134,38.284,38.365]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.856,17.19,16.255,17.816,18.431,19.702,16.934,16.305,17.044,16.056,17.412,16.949,17.436,16.387,17.273],"script":[13.999,15.318,14.097,15.656,16.107,17.405,15.724,14.037,15.526,14.555,15.309,15.023,15.263,14.065,15.485],"paint":[1.746,1.78,2.05,2.069,1.938,2.207,1.127,2.008,1.433,1.413,1.998,1.096,1.826,1.797,0.956]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5350208282470703]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.213216781616211]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.252847671508789]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8135986328125]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.28910827636719]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.880859375]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.8271484375]}},{"framework":"preact-classes-v10.19.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[72.1]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"01_run1k","values":{"total":[45.404,44.913,44.078,45.517,45.265,45.774,45.163,45.602,45.935,44.919,45.679,45.055,44.37,44.536,45.654],"script":[10.525,10.455,10.297,10.331,10.218,11.509,10.361,10.378,10.513,10.268,10.25,11.184,10.622,10.49,10.525],"paint":[34.45,34.02,33.365,34.724,34.619,33.835,34.385,34.759,34.99,34.215,34.986,33.446,33.329,33.636,34.742]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"02_replace1k","values":{"total":[53.507,53.549,54.256,53.638,52.871,52.695,52.077,53.746,52.977,53.434,52.75,53.063,52.643,52.721,53.432],"script":[17.023,17.118,17.097,16.907,16.681,17.183,16.764,17.274,16.928,17.194,16.879,16.92,16.631,16.854,16.905],"paint":[36.036,35.994,36.679,36.301,35.745,35.073,34.892,36.036,35.605,35.792,35.438,35.72,35.545,35.435,36.072]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.086,30.925,31.482,31.749,31.159,32.67,30.131,31.993,30.233,32.5,30.054,32.286,31.689,31.576,30.034],"script":[14.754,15.288,14.876,16.586,15.339,16.113,14.519,14.086,15.036,15.074,14.445,15.182,15.508,15.316,14.149],"paint":[13.555,14.142,14.406,13.632,14.383,15.237,14.501,15.518,13.238,16.208,14.399,15.469,14.625,14.731,14.261]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"04_select1k","values":{"total":[16.527,16.059,16.723,16.871,17.53,16.656,15.784,15.235,16.795,15.844,16.562,16.228,15.559,15.676,15.317,16.568,16.118,17.408,15.85,16.358,15.583,15.732,15.367,15.61,15.965],"script":[12.515,12.945,13.495,13.185,13.901,13.357,12.356,12.129,14.315,13.064,13.101,13.428,12.764,13.137,12.469,13.417,12.387,13.822,12.966,12.981,12.67,13.133,12.981,13.035,12.975],"paint":[2.898,2.824,3.02,3.489,2.392,3.131,3.219,2.152,1.499,1.638,2.8,1.838,1.572,1.698,2.164,2.983,2.618,2.601,2.537,2.771,2.717,1.491,2.22,1.917,2.362]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"05_swap1k","values":{"total":[32.223,31.359,29.986,31.116,31.266,31.017,31.558,31.259,33.914,31.989,32.276,31.737,33.275,31.551,31.917],"script":[12.464,12.52,11.772,12.218,11.988,11.594,13.466,12.244,13.25,13.653,14.07,12.78,13.511,12.884,13.159],"paint":[18.545,17.838,16.969,17.552,16.93,17.631,17.016,17.21,19.159,17.263,15.758,17.327,18.684,17.702,17.45]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.883,22.246,21.827,22.127,22.253,22.321,21.677,21.865,22.242,22.199,21.721,22.168,22.419,23.245,21.62],"script":[6.531,6.914,6.675,6.843,7.022,6.751,6.796,6.859,6.86,6.876,6.399,6.874,6.778,6.781,6.667],"paint":[14.373,14.207,14.36,14.484,14.181,14.648,14.162,14.209,14.295,14.175,14.038,14.506,14.686,15.692,13.938]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"07_create10k","values":{"total":[451.102,452.318,452.721,452.232,456.505,456.017,455.549,464.031,449.544,448.051,450.151,451.345,452.541,450.992,452.288],"script":[113.711,113.149,112.984,116.289,117.526,116.338,113.36,111.18,113.842,110.736,109.565,107.972,114.057,114.296,111.724],"paint":[330.602,331.971,332.918,329.3,332.311,332.967,335.277,346.16,329.009,330.583,333.878,336.43,331.744,330.031,333.739]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.657,53.807,54.486,54.433,53.607,54.491,54.767,53.173,54.365,54.523,54.37,54.202,55.463,53.874,54.722],"script":[13.864,13.834,13.953,13.608,13.836,13.776,14.246,13.731,14.111,13.765,13.986,13.975,13.763,13.848,13.917],"paint":[39.896,39.093,39.631,39.914,38.896,39.809,39.635,38.536,39.359,39.849,39.469,39.345,40.801,39.105,39.904]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.419,15.478,14.42,20.181,16.154,15.88,14.898,15.565,15.583,17.695,15.876,15.977,15.991,15.743,14.819],"script":[13.839,12.932,13.007,18.382,14.275,13.99,13.24,13.294,14.269,15.862,14.458,14.182,13.46,14.043,12.781],"paint":[1.106,1.735,1.312,1.683,1.058,1.32,1.565,2.118,1.226,1.742,1.332,1.685,2.44,0.777,1.162]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5328912734985352]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.859455108642578]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.8814401626586914]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7076320648193359]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.82853031158447]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.18359375]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.5458984375]}},{"framework":"preact-hooks-v10.19.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[55.7]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"01_run1k","values":{"total":[48.925,49.257,49.022,47.185,48.954,47.693,49.371,47.743,47.96,45.931,48.504,47.884,48.711,47.452,48.346],"script":[13.982,14.135,13.899,13.175,13.628,12.958,13.691,13.468,13.52,13.173,13.497,13.74,13.645,13.496,13.713],"paint":[34.488,34.693,34.688,33.586,34.9,34.304,35.26,33.846,34.007,32.326,34.581,33.692,34.637,33.536,34.222]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"02_replace1k","values":{"total":[53.661,53.339,54.167,54.26,53.693,54.609,55.156,53.347,53.158,55.802,54.143,53.932,54.834,54.802,54.516],"script":[18.122,17.797,18.279,17.937,18.027,18.115,18.21,17.516,17.734,18.249,18.008,17.744,18.269,17.899,17.302],"paint":[35.065,35.094,35.433,35.804,35.204,36.058,36.497,35.393,34.909,37.009,35.632,35.751,36.068,36.46,36.76]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.252,16.765,18.555,17.124,17.902,17.235,16.355,16.916,17.588,18.575,17.657,17.809,16.694,16.798,17.985],"script":[1.177,1.4,0.909,1.548,0.967,1.434,1.188,1.377,1.535,1.259,1.347,1.535,1.322,1.225,1.217],"paint":[13.13,12.791,16.023,14.133,15.13,14.342,13.824,14.155,14.012,15.774,14.756,14.885,14.181,14.52,15.425]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"04_select1k","values":{"total":[18.104,17.976,18.412,17.522,17.039,19.116,17.306,18.389,17.597,18.05,17.158,16.815,18.291,16.72,17.416,18.611,17.376,18.033,18.299,17.299,18.343,17.197,19.193,18.244,18.348],"script":[15.233,14.61,14.785,15.278,13.975,15.567,14.188,15.587,14.476,15.211,14.436,14.379,15.052,14.157,14.741,15.246,14.263,15.529,14.869,14.645,15.492,14.321,16.281,14.534,14.845],"paint":[2.042,2.291,3.003,2.066,2.094,2.854,2.275,1.858,2.539,1.865,2.114,1.952,2.559,1.918,1.605,2.71,2.403,2.336,3.262,0.946,1.961,2.706,1.519,3.106,2.585]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"05_swap1k","values":{"total":[33.431,35.081,33.956,33.984,35.431,34.822,32.978,34.286,35.561,34.051,35.658,34.117,33.578,34.954,33.691],"script":[14.814,15.996,15.235,13.735,16.548,14.618,13.734,14.649,15.258,15.372,15.004,15.416,14.847,14.24,14.681],"paint":[16.966,18.032,17.471,19.112,16.983,18.494,16.918,18.572,18.584,16.898,18.186,17.526,17.34,19.377,17.575]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.79,22.691,22.761,23.563,23.676,22.336,23.066,22.91,23.783,22.845,22.916,22.761,22.828,23.55,23.384],"script":[7.537,7.504,7.505,7.975,7.426,7.34,7.619,7.627,8.384,7.632,7.972,7.871,7.925,8.311,8.12],"paint":[14.373,14.14,14.515,14.751,15.274,14.226,14.377,14.509,14.363,14.171,14.194,13.788,14.15,14.488,13.874]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"07_create10k","values":{"total":[460.981,463.876,465.758,465.257,462.054,463.861,457.033,472.274,456.111,457.466,470.102,462.214,468.384,469.298,462.381],"script":[121.851,121.018,121.092,119.246,115.76,118.882,117.343,121.529,115.239,112.955,121.032,119.662,121.795,121.132,119.404],"paint":[332.357,335.995,337.96,339.251,339.494,338.134,333.222,343.827,334.036,337.751,342.082,335.887,339.818,341.442,336.29]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.853,57.399,56.918,56.614,57.596,57.586,60.585,57.17,57.533,57.388,57.912,58.311,56.919,56.639,57.313],"script":[16.476,16.874,16.174,16.495,16.614,16.382,17.44,16.484,16.533,16.738,16.688,17.209,16.775,16.776,16.615],"paint":[39.455,39.668,39.814,39.23,40.048,40.319,42.22,39.763,40.029,39.768,40.295,40.174,39.216,38.975,39.788]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.476,19.541,19.286,18.629,18.906,19.261,19.27,20.761,19.426,19.956,20.816,18.097,19.263,16.453,20.202],"script":[17.688,17.769,17.723,17.131,17.101,17.79,17.375,18.97,17.455,17.544,18.499,15.379,17.519,14.843,18.446],"paint":[1.685,1.403,1.47,0.388,1.501,1.377,1.44,1.689,1.818,1.376,1.582,1.851,0.803,1.498,1.645]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5656442642211914]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.119643211364746]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.25888729095459]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7759189605712891]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.85250282287598]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.9599609375]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.2998046875]}},{"framework":"preact-signals-v10.19.3 + 1.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.4]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"01_run1k","values":{"total":[54.126,55.105,53.53,53.486,54.297,53.29,54.117,56.473,53.959,53.288,56.068,55.236,54.067,56.113,56.991],"script":[20.24,20.85,19.555,19.702,19.557,18.949,20.179,21.991,19.613,19.296,20.724,20.724,19.973,20.981,21.046],"paint":[33.722,34.112,33.818,33.634,34.6,34.198,33.791,34.326,34.203,33.837,35.194,34.352,33.952,34.983,35.797]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[64.47,64.787,64.038,64.68,64.8,65.709,65.199,64.947,64.258,65.291,65.315,65.573,64.425,64.384,64.224],"script":[28.078,28.833,27.798,28.224,28.495,29.453,28.898,28.502,28.18,29.03,28.625,29.386,28.321,27.669,28.11],"paint":[36.217,35.781,36.057,36.285,36.127,36.076,36.128,36.268,35.9,36.093,36.512,36.006,35.943,36.542,35.934]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.435,17.486,18.062,21.279,20.987,18.244,21.601,55.904,54.161,17.57,18.459,17.929,51.263,17.567,51.534],"script":[4.121,3.296,4.416,4.704,4.364,4.037,3.818,4.665,3.628,4.043,2.805,4.083,4.251,3.922,2.912],"paint":[13.2,13.622,12.862,14.112,16.129,13.782,16.229,14.547,14.427,13.42,12.237,13.735,12.902,13.291,14.786]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"04_select1k","values":{"total":[8.985,16.221,7.256,4.192,3.546,13.345,12.971,9.995,8.778,10.553,5.897,5.616,8.74,7.003,10.112,11.003,9.014,8.624,12.655,5.657,3.823,9.712,5.32,9.25,10.421],"script":[2.369,2.652,2.393,1.19,1.591,3.208,2.758,2.11,1.82,2.992,1.821,1.425,2.431,2.815,3.212,3.362,2.274,1.761,1.374,1.311,1.66,2.592,2.242,2.707,3.129],"paint":[4.029,3.221,4.07,1.573,1.217,5.514,3.684,4.04,3.936,3.75,3.313,3.306,3.66,4.476,3.852,2.946,3.077,2.952,3.809,2.403,2.038,2.332,3.68,4.297,4.368]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[24.638,24.628,24.093,24.564,23.794,24.673,24.866,24.956,62.682,24.182,26.175,23.425,61.51,24.209,23.715],"script":[7.84,7.164,6.689,8.065,7.447,7.448,7.763,7.614,7.524,7.81,8.851,7.406,7.232,7.727,7.583],"paint":[16.687,17.331,17.286,16.034,15.106,16.262,16.988,16.584,18.653,14.892,17.199,15.9,18.591,16.37,16.024]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.543,19.421,19.182,18.508,20.305,21.543,19.583,21.8,19.675,19.602,20.141,19.18,19.139,19.157,19.506],"script":[4.231,4.384,4.401,4.39,4.654,4.565,4.316,4.572,4.384,4.377,4.291,4.287,4.374,4.354,4.62],"paint":[13.477,13.983,13.397,13.415,13.9,15.248,13.476,14.749,13.803,13.548,14.087,14.037,13.336,13.068,13.984]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"07_create10k","values":{"total":[545.781,543.271,540.742,545.971,543.863,553.363,544.012,546.329,548.303,552.98,540.37,543.265,538.398,538.832,540.701],"script":[201.097,200.339,198.444,200.78,201.422,209.709,203.14,201.44,205.009,205.11,199.066,199.903,196.461,198.087,199.438],"paint":[340.566,338.901,338.2,340.997,338.475,339.563,336.87,340.914,339.175,343.763,337.317,339.228,337.793,336.503,337.212]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[65.581,65.593,65.12,65.8,65.957,65.26,65.984,65.746,66.623,65.772,66.986,66.342,64.752,66.722,67.117],"script":[25.135,24.886,24.744,24.779,25.03,24.659,25.373,24.915,25.62,24.893,25.745,25.825,24.492,25.651,25.54],"paint":[39.546,39.777,39.446,40.049,39.963,39.646,39.655,39.918,39.994,39.899,40.259,39.62,39.347,40.115,40.596]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.296,25.694,21.846,22.742,26.59,29.463,25.804,25.708,24.324,25.249,22.155,21.813,27.834,22.277,24.404],"script":[19.674,22.184,19.838,20.267,22.561,20.87,22.226,22.228,19.932,21.021,20.311,20.105,21.448,20.15,21.051],"paint":[4.917,2.891,1.456,1.953,3.156,8.357,2.307,3.265,3.17,2.933,1.259,1.636,5.039,2.052,2.743]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44002628326416016]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.420008659362793]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.594295501708984]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[7.347883224487305]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[71.96929550170898]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[59.6630859375]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1943359375]}},{"framework":"qwik-v1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.3]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"01_run1k","values":{"total":[58.978,58.936,60.319,60.083,60.615,59.725,59.657,61.131,59.151,58.85,58.856,59.691,59.917,60.248,61.216],"script":[25.362,25.864,26.682,26.959,25.203,25.655,26.19,25.681,26.263,24.701,25.118,26.396,26.17,26.083,25.792],"paint":[33.161,32.624,33.195,32.697,34.972,33.6,32.992,35,32.445,33.693,33.26,32.868,33.315,33.7,34.967]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"02_replace1k","values":{"total":[66.544,68.277,67.37,67.381,67.187,65.525,67.196,66.744,68.744,67.782,70.039,69.479,66.663,65.736,66.637],"script":[30.54,32.125,31.499,31.745,31.542,29.902,31.589,31.245,32.565,32.083,34.798,33.436,31.051,31.087,31.308],"paint":[35.565,35.653,35.418,35.194,35.201,35.184,35.111,35.046,35.718,35.265,34.809,35.59,35.173,34.202,34.873]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.668,19.23,18.74,18.902,19.82,20.468,18.793,18.711,19.243,18.577,20.633,19.582,19.608,19.231,19.711],"script":[3.842,3.644,3.572,3.397,4.183,3.896,4.026,3.655,3.713,3.114,3.69,3.778,3.723,3.644,4.035],"paint":[14.159,14.356,13.603,14.247,14.515,14.75,13.416,12.971,14.122,13.949,15.391,13.855,13.829,13.68,14.397]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"04_select1k","values":{"total":[7.651,7.437,8.22,7.888,9.255,9.411,7.679,8.334,7.594,8.656,8.54,7.567,8.064,8.413,8.472,8.225,8.283,9.098,7.583,8.792,7.488,7.585,8.427,7.412,8.33],"script":[5.031,4.823,5.202,5.447,6.443,6.111,5.497,5.805,5.568,5.83,3.237,4.834,5.356,5.257,5.765,5.446,6.231,6.553,4.579,6.29,5.617,4.782,5.366,5.427,5.471],"paint":[1.56,1.681,2.887,2.292,1.515,3.128,1.513,1.594,1.16,1.976,1.629,2.39,2.353,2.491,2.036,1.763,1.191,1.598,2.87,1.539,1.58,1.907,2.919,1.121,2.256]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"05_swap1k","values":{"total":[171.921,169.967,167.308,168.244,174.572,169.061,170.1,166.866,172.292,169.862,168.351,169.12,168.904,171.58,166.42],"script":[27.711,24.919,24.2,27.16,27.065,27.793,28.134,27.309,28.145,24.343,28.387,23.651,27.952,27.802,26.574],"paint":[141.673,144.327,141.939,139.187,144.724,140.045,140.508,138.409,142.449,143.429,137.623,144.113,138.915,141.861,137.798]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.348,20.835,20.225,21.099,20.554,21.791,21.21,21.313,20.3,20.346,21.141,20.141,20.324,20.405,20.235],"script":[5.395,5.117,5.023,5.747,5.276,5.812,5.616,5.192,5.272,5.032,5.724,5.015,5,5.513,4.79],"paint":[13.937,14.923,14.482,14.242,14.285,15.132,14.759,14.726,14.337,14.327,14.045,14.382,14.59,14.119,14.428]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"07_create10k","values":{"total":[578.607,577.073,574.463,578.774,571.09,583.845,583.652,580.956,573.049,575.737,578.013,578.859,578.294,578.056,575.202],"script":[221.353,219.958,220.385,219.581,220.135,223.233,221.507,222.042,220.726,220.623,221.079,218.239,223.094,222.334,222.097],"paint":[350.504,350.579,347.393,352.218,344.358,353.887,355.583,352.104,345.507,348.364,350.126,353.777,348.448,349.006,346.492]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.239,62.439,62.662,61.014,60.819,63.171,62.53,62.85,63.309,63.66,62.687,62.746,63.074,61.794,62.497],"script":[23.133,22.656,22.698,22.112,21.547,22.905,22.549,22.147,23.453,24.098,22.964,23.059,22.673,22.28,22.903],"paint":[39.228,38.893,39.103,37.998,38.38,39.374,39.152,39.809,38.965,38.684,38.818,38.77,39.484,38.628,38.712]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.476,29.51,30.173,31.142,30.788,29.532,30.687,30.152,32.726,29.793,30.774,31.998,31.085,31.238,30.697],"script":[29.487,27.931,28.889,28.683,28.923,27.656,28.958,28.276,30.151,28.082,29.099,29.903,28.354,28.896,28.191],"paint":[1.877,1.243,0.537,2.338,1.758,1.772,1.627,1.367,2.078,1.616,1.576,1.93,1.218,1.503,2.396]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1126575469970703]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.731622695922852]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.912185668945312]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5127601623535156]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[73.05740547180176]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[224.140625]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.7353515625]}},{"framework":"ractive-v1.3.6-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[314.4]}},{"framework":"rax-v0.6.7-keyed","benchmark":"01_run1k","values":{"total":[45.039,46.402,45.923,45.957,46.431,47.556,47.148,46.746,48.295,47.449,46.633,47.621,46.904,47.763,48.692],"script":[12.371,13.004,12.515,12.139,12.529,13.505,13.38,12.685,13.964,13.449,12.862,13.338,13.292,13.469,14],"paint":[32.26,32.977,32.998,33.405,33.484,33.637,33.333,33.639,33.891,33.595,33.348,33.852,33.191,33.912,34.26]}},{"framework":"rax-v0.6.7-keyed","benchmark":"02_replace1k","values":{"total":[54.732,56.387,54.409,55.581,54.892,55.174,55.022,55.207,55.549,55.261,54.985,55.191,55.964,54.034,54.218],"script":[18.02,18.911,17.905,18.093,18.126,18.388,18.216,18.234,18.624,18.384,18.336,18.21,18.61,18.28,17.752],"paint":[36.243,37.023,36.027,37.004,36.3,36.325,36.318,36.522,36.458,36.409,36.184,36.51,36.86,35.286,35.961]}},{"framework":"rax-v0.6.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.708,26.629,26.052,25.601,26.275,25.607,25.109,26.378,26.914,26.306,25.659,26.03,25.403,25.372,25.951],"script":[9.745,10.268,10.038,9.642,10.011,9.355,9.112,10.7,9.887,10.102,9.377,9.963,10.06,9.577,9.596],"paint":[14.884,14.777,14.59,13.774,15.027,14.422,13.856,14.01,15.11,14.301,14.62,14.088,13.941,13.986,14.711]}},{"framework":"rax-v0.6.7-keyed","benchmark":"04_select1k","values":{"total":[8.551,8.488,8.925,8.679,8.921,9.724,8.265,8.775,8.908,8.728,9.094,9.037,8.946,8.322,9.565,8.954,8.652,8.648,8.579,9.35,9.041,9.966,9.307,9.189,8.555],"script":[5.909,6.06,5.833,5.891,6.443,6.28,6.018,5.736,6.16,6.357,5.815,6.775,6.299,5.464,6.086,6.419,6.456,5.694,5.775,6.63,6.418,6.439,6.658,6.104,5.563],"paint":[1.429,2.067,2.394,1.673,1.988,2.299,1.042,2.544,1.825,1.231,2.198,1.475,2.476,1.792,3.296,1.691,2.045,1.861,2.298,1.977,1.641,2.551,1.651,2.924,1.872]}},{"framework":"rax-v0.6.7-keyed","benchmark":"05_swap1k","values":{"total":[166.442,165.955,162.086,159.779,165.459,160.11,158.41,156.561,158.107,156.789,160.214,160.826,154.68,160.56,161.377],"script":[20.959,20.057,20.399,19.959,19.245,19.626,20.728,18.987,20.185,20.021,19.621,21.145,19.257,20.528,19.858],"paint":[142.922,143.664,138.987,137.75,144.352,138.596,135.299,136.018,135.927,134.9,138.169,138.526,133.975,138.097,139.741]}},{"framework":"rax-v0.6.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.652,18.36,17.817,17.441,17.929,17.846,17.455,18.244,18.458,17.871,17.853,17.852,17.604,17.776,17.874],"script":[3.086,3.172,2.981,2.956,2.959,3.056,2.776,3.086,3.089,3.083,2.871,3.049,2.877,3.029,2.914],"paint":[14.727,14.26,13.507,13.682,14.099,13.728,14.013,13.511,14.436,13.992,14.244,13.753,13.808,13.731,14.228]}},{"framework":"rax-v0.6.7-keyed","benchmark":"07_create10k","values":{"total":[508.3,505.225,513.663,506.268,501.621,503.468,503.519,503.367,499.826,499.998,506.732,506.709,505.595,506.695,507.947],"script":[169.851,164.867,166.872,167.263,165.385,168.594,166.802,165.717,167.324,164.658,170.912,171.053,172.825,174.619,172.112],"paint":[330.876,333.563,340.059,332.267,329.422,328.055,329.827,330.97,325.748,328.74,329.09,329.006,326.046,325.227,328.931]}},{"framework":"rax-v0.6.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.287,53.783,53.817,52.988,53.671,53.435,53.564,54.781,53.651,52.521,53.453,53.429,52.579,53.426,54.274],"script":[14.258,14.525,14.091,14.485,14.566,14.048,14.803,14.212,14.929,13.667,13.851,14.28,14.584,14.419,14.154],"paint":[39.043,38.371,38.835,37.605,38.179,38.494,37.881,39.654,37.839,37.924,38.729,38.198,37.091,37.938,39.229]}},{"framework":"rax-v0.6.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.83,23.607,23.472,25.036,23.77,23.2,24.947,23.487,23.987,23.392,24.073,24.037,23.122,24.172,24.2],"script":[21.519,21.416,21.733,23.079,21.242,21.482,23.236,21.282,22.223,21.827,21.775,22.072,20.941,22.529,22.193],"paint":[2.194,2.082,1.64,0.975,1.309,1.628,0.779,2.112,0.805,0.816,1.349,1.851,1.896,1.544,1.901]}},{"framework":"rax-v0.6.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6979312896728516]}},{"framework":"rax-v0.6.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.464216232299805]}},{"framework":"rax-v0.6.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.588055610656738]}},{"framework":"rax-v0.6.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.092071533203125]}},{"framework":"rax-v0.6.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.9394474029541]}},{"framework":"rax-v0.6.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.025390625]}},{"framework":"rax-v0.6.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.8125]}},{"framework":"rax-v0.6.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[109.7]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"01_run1k","values":{"total":[47.25,46.207,46.217,45.077,48.708,46.865,46.504,45.904,46.155,46.962,45.434,46.149,46.97,46.107,46.189],"script":[12.53,12.486,12.922,12.664,14.381,12.619,12.119,12.292,13.309,13.467,12.344,12.561,12.797,12.999,12.674],"paint":[34.292,33.22,32.88,31.978,33.904,33.822,33.896,33.153,32.423,33.053,32.69,33.173,33.747,32.722,33.122]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"02_replace1k","values":{"total":[52.138,50.227,50.807,51.631,50.754,51.603,51.301,51.559,50.409,50.672,50.766,51.861,52.298,50.75,50.863],"script":[15.657,15.654,15.755,16.458,15.354,15.252,15.638,16.67,15.109,15.403,14.778,15.195,16.534,15.988,15.515],"paint":[36.031,34.11,34.611,34.736,34.959,35.9,35.215,34.464,34.872,34.825,35.508,36.201,35.337,34.313,34.915]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.274,21.298,20.488,21.778,22.04,22.426,21.42,21.419,21.249,21.748,21.627,21.356,21.613,20.719,21.743],"script":[4.902,5.386,5.36,5.402,5.997,5.597,5.348,4.929,5.447,5.922,5.473,5.109,5.402,4.553,5.18],"paint":[15.054,14.247,13.56,15.356,14.657,14.947,14.647,13.985,13.818,14.364,14.714,13.551,14.893,14.846,14.062]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"04_select1k","values":{"total":[5.472,5.338,5.02,4.529,5.303,5.462,5.503,5.325,5.058,5.15,4.993,5.168,4.393,5.539,4.397,4.647,4.941,4.688,5.114,4.143,5.368,4.602,4.995,5.224,5.746],"script":[1.756,1.792,2.46,2.021,1.859,2.278,2.256,2.233,2.51,2.228,2.427,2.205,2.118,2.847,1.62,2.389,1.947,2.195,2.48,1.645,2.508,2.108,2.489,2.375,2.772],"paint":[3.543,3.402,2.404,1.868,3.286,2.91,2.598,2.946,1.573,2.764,1.986,1.794,2.041,1.506,2.677,1.689,2.891,2.38,1.625,1.97,1.966,2.349,1.731,1.687,2.07]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"05_swap1k","values":{"total":[163.517,166.54,163.678,162.34,176.203,164.046,166.196,168.874,166.948,158.221,163.882,164.892,162.742,170.941,164.726],"script":[22.74,23.512,21.867,22.183,26.205,23.374,22.802,24.155,22.946,21.474,21.895,22.344,22.203,21.805,24.001],"paint":[138.43,141.847,140.143,137.678,147.701,138.92,141,142.497,141.86,134.619,140.239,140.729,138.018,148.155,138.479]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.478,16.613,16.631,16.937,16.321,16.671,17.511,16.709,16.994,16.6,16.647,16.608,16.465,16.6,16.721],"script":[1.411,1.864,1.396,1.704,1.568,1.47,1.439,2.097,2.074,1.344,1.595,1.857,1.35,1.581,1.614],"paint":[14.132,13.84,14.465,14.11,14.197,14.079,14.694,13.512,13.538,14.513,14.149,13.665,14.435,14.257,14.147]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"07_create10k","values":{"total":[604.174,602.282,608.651,612.663,606.132,591.195,611.422,613.726,609.165,607.946,607.124,612.31,611.294,608.015,601.239],"script":[252.625,249.246,254.533,255.338,254.292,252.086,253.44,249.549,253.012,255.092,251.355,255.93,255.877,249.15,249.095],"paint":[344.842,346.361,347.441,350.599,345.114,332.394,351.264,357.482,349.363,346.215,349.064,349.643,348.763,352.175,345.379]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.876,50.563,50.124,51.154,49.819,50.819,50.549,52.545,52.708,51.667,52.618,52.241,51.046,50.918,51.095],"script":[12.64,12.824,12.42,12.954,12.422,12.96,12.324,13.354,12.833,13.135,12.875,12.4,12.684,12.35,13.328],"paint":[37.321,36.872,36.782,37.305,36.526,36.999,37.346,38.265,38.985,37.653,38.857,38.94,37.47,37.7,36.905]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.938,16.065,16.64,16.942,15.792,16.147,16.172,16.635,15.729,16.037,15.492,16.47,16.567,16.454,15.426],"script":[14.273,14.388,14.485,15.039,13.767,14.221,14.376,14.84,14.191,14.407,13.345,14.583,14.924,14.624,13.484],"paint":[1.566,0.765,2.06,1.813,1.023,1.836,1.706,1.701,0.794,1.481,1.42,1.801,1.549,1.742,1.075]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9828319549560547]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.446006774902344]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.002538681030273]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9137592315673828]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.24549961090088]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.765625]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.30859375]}},{"framework":"react-classes-v18.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[211.4]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"01_run1k","values":{"total":[50.522,50.898,49.066,50.526,49.779,49.853,50.434,50.122,50.275,50.684,49.121,49.155,49.687,49.022,49.517],"script":[16.316,16.254,15.466,15.381,15.925,15.834,15.836,15.947,16.028,16.107,15.655,15.705,15.695,15.495,15.794],"paint":[33.771,34.18,33.166,34.699,33.412,33.581,34.163,33.715,33.789,34.118,33.032,32.999,33.563,33.055,33.263]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"02_replace1k","values":{"total":[57.889,59.459,57.793,58.894,57.915,58.617,57.701,57.281,58.563,58.168,58.038,58.262,57.717,58.543,57.466],"script":[21.818,21.63,21.354,21.884,21.713,22.335,21.707,21.409,22.183,21.867,21.788,21.751,21.348,22.12,21.868],"paint":[35.618,37.369,35.761,36.531,35.763,35.818,35.332,35.397,35.921,35.712,35.791,36.069,35.914,35.722,34.918]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.433,21.46,21.816,22.641,21.748,22.464,21.998,21.58,21.635,23.987,22.309,22.276,22.288,21.669,21.412],"script":[6.882,6.071,5.873,6.222,6.041,6.783,6.255,6.194,5.876,7.166,6.473,6.375,6.129,6.193,6.469],"paint":[15.005,14.082,13.779,14.842,13.739,14.4,14.429,13.953,14.133,15.23,14.078,14.389,14.931,13.815,13.389]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"04_select1k","values":{"total":[6.357,7.052,6.764,6.232,7.309,6.931,7.368,6.128,5.773,6.545,6.886,5.891,7.159,6.307,5.928,6.044,5.969,5.726,6.615,6.767,6.537,6.655,6.246,5.918,6.965],"script":[3.253,3.224,3.738,3.446,4.121,3.692,3.725,3.111,2.945,3.938,3.939,3.349,4.061,4.017,3.029,3.73,3.665,3.592,3.716,3.478,4.141,3.108,3.926,3.507,3.81],"paint":[2.251,2.995,2.878,1.933,3.018,2.117,3.299,2.868,2.685,1.667,2.69,1.958,2.325,1.384,2.788,1.724,1.299,1.273,2.354,3.137,1.533,3.395,1.428,2.302,3.002]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"05_swap1k","values":{"total":[168.22,164.143,166.527,162.349,165.415,167.007,166.226,170.328,167.3,162.733,164.057,162.113,163.236,168.31,161.927],"script":[25.602,24.143,24.55,24.399,23.02,25.715,25.24,27.353,24.092,21.87,24.879,22.595,21.931,25.218,23.453],"paint":[141.195,138.036,140.223,135.624,139.689,139.339,138.455,140.272,141.251,139.368,137.448,137.636,139.673,140.093,137.037]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.664,17.238,16.76,16.661,16.697,17.097,18.358,16.96,17.102,16.701,17.144,17.286,17.166,17.227,16.842],"script":[2.229,2.172,2.028,2.181,2.228,2.305,2.146,1.949,1.83,1.981,2.035,1.916,1.873,1.903,1.934],"paint":[13.896,14.066,13.649,13.399,13.679,13.973,15.159,14.163,14.57,13.715,14.471,14.282,14.534,14.496,13.839]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"07_create10k","values":{"total":[639.42,639.716,638.98,641.245,640.537,640.707,640.793,646.569,641.548,643.455,634.619,639.904,643.276,636.022,643.448],"script":[283.096,282.277,282.736,281.815,283.631,283.662,285.61,285.186,284.168,283.933,281.941,283.715,284.119,282.12,283.065],"paint":[349.467,350.711,349.066,352.673,350.221,350.383,348.326,354.639,350.686,352.411,345.896,349.506,352.442,347.277,353.648]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.166,55.546,55.729,55.89,55.658,55.697,55.216,54.611,55.693,55.872,57.147,55.795,55.775,58.173,55.636],"script":[16.654,16.392,15.925,16.059,15.88,15.872,16.377,16.021,16.563,16.207,16.387,16.69,16.624,17.31,15.962],"paint":[39.68,38.115,38.884,38.973,38.713,38.98,37.763,37.707,37.987,38.611,39.523,37.987,38.06,39.717,38.8]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.331,33.158,30.544,33.524,27.693,31.995,32.195,32.146,31.58,34.317,35.213,29.888,34.342,34.12,30.676],"script":[28.889,31.911,28.768,31.625,25.955,29.988,29.788,29.974,29.631,32.206,32.722,27.944,32.429,32.34,28.184],"paint":[2.3,1.146,1.666,1.791,0.867,1.897,1.977,2.05,1.841,1.925,2.324,1.844,1.798,0.868,2.371]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0933589935302734]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.80912971496582]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.349949836730957]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.055185317993164]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[54.09977436065674]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[168.4365234375]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.5029296875]}},{"framework":"react-diagon-v18.2.0 + 0.14.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[247.4]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"01_run1k","values":{"total":[50.5,50.52,49.18,51.307,51.023,49.807,51.645,49.266,50.696,50.734,52.236,49.454,50.965,51.037,51.314],"script":[16.521,16.626,16.172,16.817,16.306,16.617,17.055,15.874,16.525,16.754,16.981,15.728,15.839,16.962,16.408],"paint":[33.556,33.475,32.589,34.044,34.295,32.771,33.911,32.968,33.749,33.551,34.811,33.289,34.709,33.664,34.478]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"02_replace1k","values":{"total":[61.428,61.591,63.377,60.082,62.53,61.205,61.809,62.505,60.579,60.404,61.197,59.927,60.512,61.689,60.274],"script":[25.788,26.016,25.78,24.809,25.381,24.909,24.96,25.122,24.765,25.24,25.125,24.111,24.293,24.88,25.459],"paint":[35.115,34.876,37.105,34.827,36.705,35.863,36.39,36.925,35.365,34.728,35.618,35.368,35.765,36.35,34.38]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[64.972,66.767,65.63,66.453,65.861,66.235,68.088,65.619,68.403,66.125,65.192,66.388,65.867,67.652,65.877],"script":[48.319,50.465,48.931,49.836,48.546,49.562,51.955,49.442,52.217,49.46,48.993,49.628,50.12,51.762,50.118],"paint":[15.173,15.17,14.049,14.983,15.131,15.142,14.692,14.952,14.356,14.541,14.856,14.806,12.823,14.07,14.394]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"04_select1k","values":{"total":[5.851,4.687,5.589,4.948,4.618,5.468,5.073,5.356,5.169,5.825,5.393,6.067,4.071,4.674,4.318,3.968,4.716,4.379,4.953,4.41,5.103,4.514,5.244,4.775,4.692],"script":[3.051,1.884,2.196,2.376,1.982,2.384,2.206,2.418,2.111,3.029,2.802,3.234,1.617,1.832,1.973,1.472,1.897,1.838,1.74,1.526,2.149,1.912,2.889,2.222,2.159],"paint":[1.933,1.683,2.328,0.626,1.596,2.555,1.941,2.559,2.906,1.786,2.456,1.914,2.35,1.976,2.231,2.387,2.711,1.513,2.66,1.804,1.868,2.449,1.49,1.999,1.205]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"05_swap1k","values":{"total":[211.8,211.795,208.655,211.716,210.396,213.441,208.921,212.622,209.872,210.29,215.435,213.266,210.209,215.069,217.925],"script":[69.812,73.056,67.444,69.56,70.154,71.59,68.449,71.597,69.135,69.676,71.378,73.281,69.373,71.273,71.953],"paint":[138.518,136.812,139.465,140.029,138.13,140.262,139.324,139.239,138.886,139.343,142.407,138.045,139.088,141.451,143.805]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.451,37.477,37.843,37.667,41.279,39.413,39.56,38.896,40.652,39.449,39.718,40.382,39.482,40.653,40.03],"script":[22.455,22.338,22.211,22.449,24.563,23.849,23.096,23.631,24.764,24.032,24.19,23.807,23.642,25.076,24.644],"paint":[15.182,14.314,14.783,14.345,15.421,14.743,15.693,14.468,14.837,14.623,14.699,15.331,15.053,14.72,14.271]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"07_create10k","values":{"total":[625.412,623.897,623.279,625.589,623.224,627.404,619.959,624.683,621.949,630.092,624.015,620.807,619.524,624.388,620.127],"script":[267.14,268.667,268.17,267.762,263.714,267.393,264.441,269.614,268.415,270.427,266.527,266.927,267.013,267.561,266.46],"paint":[351.029,348.433,348.377,351.051,352.78,353.167,348.848,348.413,346.85,352.904,350.707,347.275,345.763,350.091,346.873]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.961,68.197,67.991,66.917,69.055,67.567,67.275,68.817,68.052,67.518,69.231,67.16,67.692,69.046,67.983],"script":[27.592,27.184,27.313,26.926,27.117,27.036,26.85,27.861,27.519,27.04,26.943,26.86,26.497,27.679,27.256],"paint":[40.453,40.127,39.772,39.114,41.048,39.653,39.537,40.062,39.631,39.572,41.347,39.37,40.299,40.459,39.833]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[31.324,32.245,30.79,31.839,30.551,31.947,31.693,31.086,30.528,30.966,31.42,32.767,30.729,31.343,31.838],"script":[29.742,30.081,29,29.741,28.346,29.513,29.699,28.762,28.606,29.661,29.401,30.632,28.572,29.032,29.692],"paint":[1.034,2.037,0.89,1.794,1.722,2.317,1.888,2.219,1.433,0.846,1.224,1.568,2.026,2.182,1.505]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0809307098388672]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.885591506958008]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.649999618530273]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9976491928100586]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.36443901062012]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[175.203125]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[48.84375]}},{"framework":"react-focal-v18.2.0 + 0.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[261.3]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"01_run1k","values":{"total":[46.367,45.57,46.277,45.856,45.767,45.767,45.195,44.58,45.812,46.745,46.716,45.72,45.936,45.569,46.525],"script":[12.601,11.905,12.073,12.396,11.519,11.831,11.974,11.785,11.804,12.756,12.622,12.621,12.344,11.832,12.531],"paint":[33.349,33.249,33.782,33.038,33.826,33.513,32.821,32.391,33.611,33.565,33.596,32.668,33.191,33.308,33.582]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"02_replace1k","values":{"total":[53.647,54.943,54.523,54.845,54.012,54.159,55.132,54.819,55.4,54.462,54.58,55.157,55.502,54.169,55.631],"script":[17.945,18.421,18.035,17.851,18.251,17.914,19.012,18.692,18.788,18.985,18.632,18.695,19.499,18.603,19.167],"paint":[35.243,36.062,36.044,36.531,35.301,35.755,35.642,35.642,36.161,35.027,35.473,36.018,35.545,35.119,35.973]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.752,20.765,21.132,21.401,20.417,21.359,22.119,20.284,20.429,20.62,21.88,20.47,20.36,21.294,21.297],"script":[4.181,4.755,4.738,5.741,4.884,4.462,5.14,4.48,5.062,4.243,5.116,4.859,4.77,4.983,4.927],"paint":[14.803,14.73,13.858,14.038,14.231,15.734,15.272,14.125,14.085,14.506,15.295,14.626,14.996,14.313,14.643]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"04_select1k","values":{"total":[4.864,6.09,5.53,5.393,4.923,5.476,5.672,5.417,4.82,5.037,5.644,4.86,4.823,5.117,4.515,5.473,5.875,5.342,5.491,4.876,5.049,4.404,5.119,5.071,5.106],"script":[1.936,2.972,2.107,2.88,2.109,2.794,2.731,2.141,2.48,2.389,2.104,2.429,2.721,2.132,2.017,2.785,2.4,2.723,2.768,1.977,2.427,1.499,2.377,2.47,2.166],"paint":[1.999,2.152,2.623,2.014,2.698,2.528,1.787,2.615,1.532,1.794,3.193,1.627,1.971,2.637,2.027,1.83,3.297,1.45,1.9,2.751,2.511,2.805,2.08,1.713,1.79]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"05_swap1k","values":{"total":[167.54,167.294,166.966,164.893,162.554,161.005,167.174,167.78,166.262,164.217,169.335,162.507,166.682,164.297,164.987],"script":[24.594,23.619,24.43,25.255,24.27,22.68,24.237,23.439,23.173,23.657,23.232,23.066,24.277,24.504,24.104],"paint":[139.874,141.862,139.899,137.67,135.891,136.004,140.974,141.985,141.419,138.653,144.07,137.104,141.131,137.896,138.799]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.646,17.025,16.892,17.863,16.659,17.112,17.846,16.733,16.725,17.586,17.229,16.78,17.159,16.968,16.796],"script":[1.757,1.627,1.548,2.062,1.422,1.994,1.815,1.76,1.453,1.577,1.767,1.593,1.783,1.678,1.787],"paint":[14.166,14.473,14.504,15.024,14.195,14.582,15.277,13.617,13.947,15.238,14.403,13.971,14.621,14.035,14.236]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"07_create10k","values":{"total":[599.892,606.806,609.48,599.32,599.805,611.254,610.531,592.18,602.657,608.289,608.219,608.499,598.481,610.171,594.276],"script":[248.958,252.754,249.371,249.448,244.406,255.755,250.966,247.461,248.589,251.099,251.695,255.119,242.969,253.991,248.53],"paint":[343.974,347.178,353.394,343.195,348.689,348.805,352.909,338.018,347.397,350.506,349.833,346.668,348.722,349.391,339.065]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.7,49.711,52.289,49.863,51.624,51.451,50.731,48.716,48.652,48.113,52.211,48.742,49.265,51.33,51.598],"script":[11.831,10.921,12.554,11.617,12.657,13.155,12.806,11.544,11.487,11.439,11.879,11.748,11.748,11.775,12.172],"paint":[37.908,37.919,38.829,37.317,38.052,37.454,37.003,36.282,36.293,35.784,39.376,36.112,36.637,38.651,38.52]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.725,24.528,24.268,25.399,25.415,26.236,24.996,25.622,24.855,25.815,24.63,24.535,26.409,24.262,26.346],"script":[24.842,22.316,22.027,23.399,23.753,23.834,23.377,23.343,23.03,23.954,22.536,22.487,24.224,22.618,24.073],"paint":[2.179,2.089,1.847,1.689,1.562,2.294,1.502,2.171,0.976,1.767,1.999,0.952,2.083,1.548,1.335]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9816980361938477]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.423439025878906]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.998004913330078]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8923816680908203]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.33227252960205]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.2705078125]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.0517578125]}},{"framework":"react-hooks-v18.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[215.6]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"01_run1k","values":{"total":[53.835,52.743,45.735,52.638,52.911,53.62,46.491,53.372,52.668,45.485,46.746,53.185,49.413,53.114,47.028],"script":[13.165,12.699,12.522,12.486,12.799,12.53,12.659,13.033,12.879,12.511,12.465,12.532,12.592,12.556,13.213],"paint":[33.968,34.2,32.855,33.883,34.124,35.001,33.439,34.312,33.939,32.611,33.92,34.483,35.961,34.214,32.99]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"02_replace1k","values":{"total":[53.084,53.687,53.838,57.998,54.126,59.571,56.032,54.691,57.196,58.514,58.605,54.206,58.954,57.339,53.605],"script":[17.651,17.466,17.513,20.767,17.47,20.014,17.412,17.881,20.151,20.799,19.629,17.731,21.37,20.98,17.244],"paint":[34.946,35.679,35.778,36.551,36.181,38.099,37.285,36.182,36.395,36.314,37.535,36.138,36.963,35.729,35.851]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46.439,24.133,20.897,46.336,24.48,21.268,26.135,23.642,20.324,21.674,22.623,24.916,19.93,23.972,21.14],"script":[6.684,6.112,6.085,6.127,6.507,6.46,6.485,5.971,5.746,6.489,7.6,5.438,5.429,5.715,6.712],"paint":[17.012,17.538,14.575,16.676,16.82,14.681,15.798,16.682,14.448,14.757,14.7,16.992,13.165,16.614,14.151]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"04_select1k","values":{"total":[12.482,9.071,8.901,7.987,8.143,14.469,13.982,13.76,15.095,11.194,9.364,14.571,14.98,10.038,10.405,15.019,14.039,10.024,8.497,13.765,12.93,14.776,15.109,11.049,10.862],"script":[4.408,3.551,3.681,3.097,2.664,5.267,5.204,3.574,3.544,5.387,4.531,3.81,3.278,4.256,3.448,5.462,4.726,4.616,4.134,3.829,3.011,2.733,3.5,5.068,3.631],"paint":[4.122,3.561,3.339,3.913,3.468,4.008,4.57,3.291,3.52,3.837,3.09,3.73,3.868,4.207,3.659,4.054,3.307,3.63,3.902,3.701,3.739,4.482,4.342,4.63,2.374]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"05_swap1k","values":{"total":[171.38,168.035,169.54,166.465,165.707,172.018,165.902,165.447,169.929,167.917,169.872,165.185,161.863,170.475,167.634],"script":[27.521,24.871,26.044,24.41,22.981,26.854,24.167,25.252,23.788,24.15,24.422,24.61,25.04,27.593,25.784],"paint":[142.647,142.022,141.424,141.85,142.487,144.592,138.636,140.025,144.596,142.11,144.522,139.32,135.898,141.99,141.142]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.153,17.756,17.283,17.228,17.165,18.095,17.206,19.15,17.102,19.015,17.115,17.408,16.841,20.386,17.361],"script":[2.297,2.009,2.223,1.57,1.558,1.946,2.219,2.136,2.153,2.213,1.872,2.087,1.584,2.359,1.855],"paint":[15.016,14.458,13.78,14.194,14.114,14.186,14.303,14.963,13.922,15.294,13.996,14.39,14.013,15.769,13.92]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"07_create10k","values":{"total":[590.128,587.339,588.028,587.635,593.031,596.426,582.688,584.272,569.299,596.812,584.76,578.254,600.121,575.324,594.629],"script":[231.9,233.771,232.088,233.137,232.682,237.941,233.565,229.068,231.636,234.225,235.037,235.193,236.35,232.491,236.471],"paint":[349.068,345.396,343.986,346.94,349.362,349.246,341.581,344.067,327.901,352.749,341.374,335.808,355.517,332.178,353.586]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.318,53.304,73.606,72.088,72.12,69.916,70.547,71.922,70.769,52.351,54.887,52.931,54.651,54.032,69.332],"script":[13.833,13.208,13.908,13.9,13.943,12.9,12.853,13.134,13.156,12.869,13.672,13,12.987,13.266,13.109],"paint":[40.998,39.494,40.449,40.057,38.579,39.494,39.263,40.083,39.571,39.062,39.703,39.389,40.341,39.441,38.26]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.603,19.558,20.086,20.209,21.451,19.887,15.966,20.602,19.159,16.666,20.141,20.348,19.893,20.47,19.314],"script":[15.571,15.462,15.778,15.71,17.38,15.788,13.511,15.973,15.101,15.014,15.234,15.795,15.399,16.388,15.545],"paint":[3.84,3.509,3.107,3.083,3.066,3.115,2.352,3.822,3.47,1.506,2.693,3.38,4.195,2.971,2.943]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9850492477416992]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.462224006652832]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.05589485168457]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8766345977783203]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.37122058868408]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[142.45703125]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.14453125]}},{"framework":"react-hooks-use-transition-v18.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[216.2]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"01_run1k","values":{"total":[50.922,51.109,49.404,48.901,50.01,49.79,48.088,50.04,50.391,47.142,50.202,46.711,51.242,49.03,49.426],"script":[15.695,16.472,15.405,15.204,15.552,15.42,15.008,16.1,16.19,14.992,15.71,15.041,15.86,15.562,15.33],"paint":[34.695,34.214,33.554,33.282,34.037,33.936,32.661,33.468,33.751,31.732,34.04,31.252,34.928,33.057,33.654]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"02_replace1k","values":{"total":[54.37,53.993,53.625,55.466,53.168,54.131,53.626,53.484,53.162,53.659,53.736,53.665,54.182,53.813,53.993],"script":[17.87,17.857,18.124,18.17,18.1,18.158,18.095,17.366,17.956,18.232,18.144,18.227,18.544,18.227,17.572],"paint":[36.066,35.666,35.051,36.828,34.604,35.542,35.055,35.672,34.762,34.983,35.157,34.978,35.204,35.141,35.952]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.355,20.777,20.412,21.798,20.294,20.582,21.914,20.223,20.728,20.75,20.549,20.519,21.415,21.944,20.669],"script":[5.366,4.505,4.768,4.464,4.613,5.075,6.236,4.68,4.772,4.454,5.074,4.585,5.211,5.657,5.28],"paint":[14.107,14.854,14.303,14.286,13.87,14.516,14.135,13.801,14.311,14.551,13.631,14.943,15.19,15.515,14.269]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"04_select1k","values":{"total":[4.392,3.589,4.024,3.693,3.038,3.505,3.191,3.786,3.678,3.714,3.714,4.04,4.041,3.87,4.612,4.371,3.708,3.638,3.728,4.007,3.645,4.127,3.13,3.352,3.531],"script":[2.476,1.316,0.987,0.914,0.284,1.269,1,1.03,1.434,1.617,1.171,0.929,0.975,1.321,1.264,1.737,0.986,1.076,1.006,1.071,1.278,1.264,0.624,0.937,1.581],"paint":[1.743,2.158,2.327,2.436,2.648,1.497,2.092,2.221,1.377,1.97,1.734,2.978,2.332,2.428,2.811,1.128,2.581,1.547,2.582,2.245,1.765,2.729,1.398,2.28,1.822]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"05_swap1k","values":{"total":[165.245,167.414,166.726,166.905,165.511,165.944,168.182,167.645,168.206,166.092,166.969,164.883,165.159,165.129,171.679],"script":[23.298,23.788,22.941,23.138,22.235,22.944,24.05,22.521,24,23.512,23.277,22.856,22.562,23.698,22.413],"paint":[139.798,141.859,141.274,142.292,141.064,141.386,141.385,142.992,142.559,140.278,141.529,139.962,140.599,140.128,147.298]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.526,16.09,16.1,16.435,16.534,15.942,16.699,15.974,16.49,16.542,16.03,16.062,15.987,16.01,16.362],"script":[1.249,1.201,1.065,1.233,1.239,1.235,1.115,1.578,1.257,1.281,0.972,0.958,1.245,1.423,1.06],"paint":[14.545,14.115,14.126,14.114,14.556,13.929,13.91,13.638,14.442,14.05,13.743,14.369,13.716,13.839,14.551]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"07_create10k","values":{"total":[625.35,622.833,625.373,625.399,623.277,619.822,622.253,618.209,622.634,621.71,621.25,614.925,618.32,616.969,618.238],"script":[269.154,267,269.909,269.03,266.453,268.009,268.41,265.286,268.077,266.877,263.541,263.049,265.604,264.648,268.119],"paint":[349.312,349.113,348.701,349.611,350.129,344.989,347.113,346.155,347.837,348.056,350.509,345.182,345.99,345.656,343.474]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.224,56.241,55.986,55.916,56.345,56.519,55.969,56.304,56.349,56.913,55.009,57.56,56.752,58.161,55.307],"script":[15.564,16.054,15.879,15.986,16.117,16.483,15.862,16.499,15.952,16.045,15.659,16.406,16.013,16.302,15.363],"paint":[41.625,39.312,39.187,39.006,39.321,39.156,39.041,38.916,39.476,39.97,38.452,40.238,39.856,40.79,39.046]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.102,15.956,15.728,15.311,15.2,15.102,15.633,16.977,15.819,16.252,16.687,15.486,16.155,14.824,15.486],"script":[14.195,14.252,13.748,13.88,13.401,13.527,13.457,14.836,13.127,14.132,14.708,13.55,14.059,12.92,13.34],"paint":[2.772,1.318,1.157,0.376,1.109,1.457,2.067,2.049,1.805,2.021,1.731,1.595,2,1.539,1.159]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9822511672973633]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.212015151977539]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.593527793884277]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0958242416381836]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.55936145782471]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[136.7998046875]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[39.5966796875]}},{"framework":"react-jotai-v17.0.1 + 1.7.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[212.4]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"01_run1k","values":{"total":[48.901,50.024,48.603,49.308,49.496,48.518,48.109,48.834,49.358,50.388,50.553,50.047,48.171,50.421,48.218],"script":[15.032,15.719,14.915,15.625,16.075,15.322,14.636,14.8,15.206,16.027,16.086,15.705,14.694,15.316,14.451],"paint":[33.43,33.877,33.24,33.266,32.983,32.751,33.056,33.625,33.731,33.938,34.003,33.914,33.05,34.682,33.349]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"02_replace1k","values":{"total":[56.906,55.659,55.978,55.276,56.005,55.89,55.608,55.022,55.105,56.572,57.938,56.323,56.34,56.267,55.988],"script":[19.407,20.196,19.998,19.326,20.209,20.044,19.717,20.087,19.422,20.219,21.555,19.197,19.831,20.298,19.591],"paint":[36.353,35.013,35.37,35.313,35.335,35.373,35.22,34.273,34.994,35.918,35.909,36.597,35.911,35.516,35.714]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.239,21.734,20.62,22.21,21.202,22.365,22.234,21.09,22.066,21.445,22.197,20.842,21.037,21.007,20.765],"script":[6.163,4.91,5.017,5.298,5.267,5.485,5.551,5.155,5.342,5.132,5.761,4.623,5.567,5.09,5.283],"paint":[14.141,14.824,14.275,15.33,14.669,13.98,15.004,14.482,14.59,15.577,14.758,15.438,13.365,14.59,13.977]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"04_select1k","values":{"total":[5.657,6.54,6.055,6.822,5.837,5.785,5.263,5.517,6.057,5.873,6.808,6.439,6.114,6.479,5.752,6.161,6.255,6.447,5.766,5.601,6.046,5.937,6.451,5.937,5.948],"script":[3.107,3.294,3.743,3.444,3.408,2.658,3.026,2.84,3.481,2.788,3.868,3.325,3.082,3.349,3.851,3.02,2.962,3.387,3.512,3.368,3.026,3.4,3.73,2.877,3.191],"paint":[2.408,2.118,2.176,2.725,2.119,2.99,1.943,2.546,2.147,2.949,1.152,2.862,2.165,3,1.184,3.003,2.692,1.777,0.885,2.112,1.933,2.406,1.692,2.92,2.361]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"05_swap1k","values":{"total":[165.545,165.171,163.975,167.725,164.902,166.848,162.889,167.714,162.56,163.859,164.266,167.081,166.483,165.839,169.024],"script":[25.922,24.173,24.466,23.182,24.237,22.126,23.425,24.269,23.649,23.663,23,24.098,23.256,25.41,23.419],"paint":[138.346,139.906,137.89,142.721,138.777,143.235,138.099,141.514,137.646,138.271,138.594,140.725,140.982,138.007,143.698]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.653,17.335,16.592,17.25,17.158,16.686,17.809,16.214,16.662,16.912,16.526,17.433,16.52,16.686,16.712],"script":[1.709,1.73,1.358,1.418,1.305,1.371,1.46,1.644,1.679,1.423,1.395,1.36,1.576,1.6,1.327],"paint":[14.042,14.622,14.444,15.036,15.098,14.531,15.281,14.149,13.864,14.117,14.069,15.066,14.157,14.299,14.656]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"07_create10k","values":{"total":[643.511,641.384,633.691,636.722,639.314,644.369,634.959,638.916,641.522,633.377,631.02,635.496,633.727,631.572,632.747],"script":[283.546,285.892,281.612,281.475,281.268,286.621,282.365,285.637,285.735,281.9,278.807,281.662,281.008,279.018,279.972],"paint":[353.09,348.549,345.297,348.541,351.122,351.044,345.822,346.478,349.034,344.692,345.484,347.115,346.027,345.91,346.062]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.3,53.988,54.181,54.374,54.627,55.095,55.241,54.164,55.767,56.561,54.61,54.349,55.459,56.059,53.736],"script":[15.16,15.427,15.48,14.916,15.404,15.637,16.013,15.098,15.822,16.224,14.847,15.243,15.441,15.624,14.542],"paint":[37.709,37.267,37.818,38.587,38.353,38.242,38.347,37.868,38.813,38.967,38.86,38.063,39.113,39.517,37.8]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.319,16.851,17.236,16.418,18.088,14.948,15.792,16.385,16.566,16.645,15.101,14.99,16.43,16.868,15.988],"script":[15.391,15.159,14.669,15.149,15.323,13.007,14.129,14.201,14.657,14.252,12.354,12.968,13.867,14.933,13.608],"paint":[1.838,0.79,2.468,1.173,1.721,1.144,0.776,2.074,1.813,1.373,1.724,1.506,1.815,1.188,1.04]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.328953742980957]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.123894691467285]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.707677841186523]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.6571340560913086]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[55.36130619049072]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[213.1044921875]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[49.2158203125]}},{"framework":"react-mlyn-v0.5.16-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[290.4]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"01_run1k","values":{"total":[51.687,51.189,51.409,52.048,51.018,50.266,51.265,50.94,52.201,51.051,50.738,50.008,51.754,51.462,50.968],"script":[17.113,16.874,17.203,17.894,17.079,17.221,16.96,17.422,17.7,17.058,17.233,16.108,17.624,17.271,17.182],"paint":[34.127,33.892,33.781,33.719,33.507,32.62,33.879,33.078,34.045,33.569,33.076,33.474,33.682,33.759,33.367]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"02_replace1k","values":{"total":[60.494,60.409,59.246,59.32,59.173,59.351,60.088,59.446,58.402,60.516,59.729,59.325,58.861,59.586,58.834],"script":[23.52,23.641,23.041,23.888,22.75,23.396,23.254,23.818,23.051,23.323,23.809,23.536,22.984,23.469,23.309],"paint":[36.471,36.311,35.76,35.001,35.949,35.498,36.37,35.192,34.921,36.747,35.483,35.355,35.439,35.679,35.103]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.977,21.213,21.966,22.029,22.277,22.113,21.722,21.89,21.072,21.478,21.9,23.275,22.05,22.615,21.623],"script":[6.419,5.718,6.172,6.483,6.79,5.91,6.061,5.47,5.632,5.999,6.185,6.367,6.182,5.722,5.386],"paint":[14.858,13.467,14.631,13.931,14.482,15.161,14.22,14.935,13.255,14.013,13.853,15.271,14.682,15.639,14.678]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"04_select1k","values":{"total":[5.233,6.293,6.32,6.735,5.857,5.522,5.775,6.361,6.855,5.312,6.336,6.209,5.678,5.921,5.178,5.698,5.181,6.524,6.198,5.901,5.355,5.325,5.427,6.02,5.705],"script":[3.049,3.369,3.329,3.873,3.43,2.871,3.13,2.855,3.103,2.247,3.527,3.046,3.217,3.423,2.763,2.752,2.736,3.411,3.445,3.343,2.812,2.527,2.901,2.847,2.901],"paint":[2.045,2.006,2.054,2.713,2.301,1.415,1.699,3.363,3.097,2.926,1.885,2.19,1.722,2.361,1.953,2.805,2.333,2.969,2.219,1.579,2.402,2.697,1.98,3.025,2.658]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"05_swap1k","values":{"total":[180.229,177.321,164.569,159.079,169.072,168.891,170.035,165.631,167.295,169.772,175.207,171.686,164.532,166.542,169.981],"script":[27.544,26.881,22.247,21.582,22.944,23.053,23.421,24.386,24.29,27.916,27.869,26.189,23.087,23.781,23.552],"paint":[149.79,147.782,140.48,135.893,144.262,144.491,145.506,138.874,141.14,139.377,145.762,143.939,139.788,141.25,144.551]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.236,16.7,17.203,17.744,16.888,17.077,17.047,17.133,16.782,17.16,16.377,16.612,16.741,16.774,16.913],"script":[1.944,1.511,1.878,1.876,1.669,1.435,1.791,1.622,1.802,1.44,1.689,2.008,1.452,1.838,1.647],"paint":[14.522,14.144,14.281,15.04,14.213,14.923,14.521,14.639,14.215,14.915,13.831,13.861,14.212,14.091,14.506]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"07_create10k","values":{"total":[634.563,623.98,622.099,627.395,627.647,620.256,623.681,622.961,622.637,622.063,626.068,625.345,627.944,628.97,627.212],"script":[273.665,269.771,270.235,275.557,275.478,267.986,271.96,271.337,270.35,271.168,273.86,273.291,274.151,272.094,269.473],"paint":[354.134,347.397,345.243,344.822,345.475,345.58,345.057,344.96,345.584,344.205,345.413,345.315,346.791,350.139,351.005]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.092,57.61,55.036,56.369,56.522,56.356,56.492,56.278,56.19,57.515,56.728,55.972,56.228,56.483,55.529],"script":[16.602,16.024,15.99,16.272,16.93,16.143,15.776,16.107,15.864,16.31,16.311,15.741,16.022,16.126,15.726],"paint":[38.547,40.768,38.196,39.19,38.722,39.336,39.843,39.288,39.375,40.33,39.543,39.342,39.308,39.479,38.926]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[30.127,29.484,28.279,28.659,26.965,29.682,28.461,28.296,28.866,30.007,29.481,29.776,29.252,29.459,29.292],"script":[28.242,27.554,25.819,26.825,24.123,27.26,26.591,26.059,26.992,27.632,27.558,27.619,27.593,27.471,27.769],"paint":[1.793,1.807,2.361,1.737,2.705,2.329,1.072,1.539,1.776,1.747,0.475,1.526,0.791,1.136,1.426]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4197187423706055]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.1031389236450195]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.66383171081543]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.9176483154296875]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.684475898742676]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[197.009765625]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[53.451171875]}},{"framework":"react-mobX-v18.2.0 + 6.9.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[287.7]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"01_run1k","values":{"total":[45.633,45.255,46.835,46.62,45.151,46.665,46.662,46.462,45.043,44.74,46.191,46.291,45.332,47.263,47.108],"script":[12.099,11.978,13.002,12.329,11.692,12.762,12.979,12.674,12.367,12.353,13.305,11.791,12.223,13.073,13.766],"paint":[33.124,32.852,33.395,33.836,33.048,33.477,33.253,33.355,32.261,31.978,32.471,34.069,32.667,33.764,32.892]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"02_replace1k","values":{"total":[55.254,55.758,55.982,55.811,55.576,54.295,56.066,54.498,55.229,56.573,56.428,55.793,56.204,55.459,55.58],"script":[18.502,19.699,19.231,19.354,19.341,18.636,19.556,18.231,18.467,19.728,20.213,20.008,19.686,19.549,18.686],"paint":[36.26,35.595,36.289,35.994,35.765,35.197,36.027,35.79,36.256,36.384,35.741,35.332,36.05,35.445,36.407]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.842,21.711,21.651,19.993,20.155,22.677,20.919,21.363,21.043,21.686,20.699,21.755,21.145,20.811,20.886],"script":[5.553,5.673,5.643,4.776,4.549,5.919,4.605,5.583,5.63,5.449,5.237,5.763,5.698,5.4,5.093],"paint":[14.266,14.954,14.111,13.994,13.734,15.273,15.285,14.446,14.082,15.279,13.417,14.61,14.114,14.411,14.533]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"04_select1k","values":{"total":[5.054,5.178,5.909,5.656,5.66,6.166,5.468,5.412,5.525,5.378,5.512,4.762,5.698,6.106,6.031,5.026,5.072,6.002,5.345,5.741,6.206,5.347,5.456,4.959,5.69],"script":[2.198,2.721,2.207,3.015,2.328,2.572,2.611,2.608,2.289,2.517,2.93,2.255,2.798,1.998,2.93,2.44,2.477,2.587,2.041,2.826,3.145,2.733,2.968,1.875,3.097],"paint":[2.26,2.333,3.549,2.46,3.171,3.434,1.812,2.152,2.691,2.39,2.441,2.378,2.761,3.958,2.464,2.3,2.448,2.859,1.98,2.079,2.073,1.583,1.716,2.675,2.445]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"05_swap1k","values":{"total":[168.593,169.833,169.605,167.169,166.327,163.745,170.774,163.367,169.382,165.238,163.85,166.001,169.524,167.817,166.613],"script":[26.272,26.787,26.241,24.962,22.881,24.96,23.935,24.198,25.045,23.139,25.76,23.832,24.022,24.884,24.649],"paint":[140.481,141.567,141.764,140.203,141.875,136.237,145.747,137.307,142.602,140.202,136.213,140.007,142.153,141.389,140.468]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.915,16.776,17.995,16.961,17.899,17.313,18.267,16.837,17.171,16.521,16.754,17.846,17.332,16.684,16.782],"script":[1.534,1.789,1.727,1.59,1.72,1.57,2.178,1.593,1.962,1.642,1.456,1.865,1.826,1.856,1.612],"paint":[14.278,14.023,14.826,14.556,15.399,14.671,15.244,14.238,13.807,13.98,14.32,15.188,14.687,13.794,14.353]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"07_create10k","values":{"total":[617.014,620.078,613.467,613.463,611.213,612.417,609.519,608.153,614.835,613.089,616.616,614.319,614.456,610.425,611.39],"script":[255.727,253.61,254.273,253.654,256.052,252.536,253.155,252.813,254.568,254.618,254.401,254.863,254.654,252.215,253.079],"paint":[353.789,359.702,352.352,353.101,348.507,353.201,349.644,348.632,353.523,351.609,355.519,352.79,352.962,351.412,351.634]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.866,50.436,52.064,50.483,51.948,50.098,51.563,49.877,51.773,51.372,50.112,49.375,50.413,51.506,50.648],"script":[12.912,12.086,12.396,11.957,12.912,11.976,13.387,11.756,13.167,12.637,11.822,11.811,12.194,12.57,12.551],"paint":[38.046,37.476,38.771,37.649,38.106,37.237,37.329,37.217,37.679,37.858,37.405,36.647,37.366,38.101,37.236]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.034,27.649,26.865,25.206,27.023,24.628,25.996,25.837,25.895,26.915,26.109,25.796,25.935,24.708,26.178],"script":[25.057,25.864,24.504,23.02,25.433,22.771,24.063,23.649,24.058,24.322,23.807,23.607,24,23.269,23.769],"paint":[1.851,0.818,1.277,2.081,1.473,1.752,1.817,2.046,1.74,2.145,2.201,1.384,1.842,0.404,1.853]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4298133850097656]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.27639102935791]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.879349708557129]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4657669067382812]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.46569538116455]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[218.060546875]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.6748046875]}},{"framework":"react-recoil-v18.2.0 + 0.7.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[325.7]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"01_run1k","values":{"total":[53.373,51.516,51.298,51.17,52.168,52.093,53.875,52.458,53.547,52.319,52.043,52.765,51.851,52.303,53.387],"script":[18.531,18.093,18.041,17.975,18.06,18.242,19.242,18.721,18.914,18.047,17.872,18.533,17.852,18.595,19.072],"paint":[34.399,32.959,32.831,32.762,33.661,33.395,34.187,33.293,34.103,33.814,33.714,33.78,33.543,33.257,33.863]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"02_replace1k","values":{"total":[62.394,63.826,64.596,62.195,61.451,63.423,64.242,62.563,62.694,62.146,61.727,62.763,61.998,61.647,62.779],"script":[26.147,27.47,26.826,26.433,25.442,27.025,27.511,26.581,26.574,26.092,25.878,26.509,26.147,25.742,26.541],"paint":[35.804,35.753,37.273,35.293,35.572,35.933,36.231,35.529,35.535,35.596,35.396,35.774,35.393,35.308,35.787]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.158,24.073,26.107,25.337,27.333,26.792,25.493,25.963,26.104,28.255,26.775,27.154,26.604,25.129,26.428],"script":[10.688,8.463,9.549,9.285,9.849,10.418,10.187,10.088,9.574,10.052,10.972,10.207,9.311,8.615,11.004],"paint":[13.278,14.593,14.267,14.267,15.433,14.454,14.19,14.338,15.298,14.851,14.41,16.014,15.185,15.78,13.731]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"04_select1k","values":{"total":[6.337,5.859,6.436,7.442,6.94,7.138,6.211,6.241,5.929,6.551,6.238,6.891,6.944,6.378,6.133,6.293,5.709,7.398,7.07,6.619,5.876,6.35,5.989,6.294,6.554],"script":[3.192,3.434,3.426,4.362,3.541,3.717,3.099,3.654,3.441,3.733,3.468,4.211,3.47,3.08,3.623,3.617,3.457,4.568,4.024,3.788,3.413,3.312,3.359,3.769,3.75],"paint":[2.991,1.282,1.898,2.921,2.498,2.162,2.961,1.491,1.65,1.792,2.159,1.82,2.507,2.796,2.359,1.746,1.466,2.034,2.08,1.959,1.657,2.387,2.041,1.436,2.661]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"05_swap1k","values":{"total":[167.374,171.391,168.578,164.259,165.703,165.278,169.221,167.357,171.471,167.586,166.068,168.138,167.639,168.566,169.568],"script":[28.038,25.398,26.004,26.404,25.457,26.315,25.466,26.861,28.324,27.198,25.228,26.934,26.712,26.293,28.324],"paint":[137.394,143.883,140.766,135.589,138.377,137.309,142.022,138.995,140.98,139.104,138.902,139.06,138.832,140.353,139.113]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[31.267,33.305,32.157,31.754,31.054,32.601,30.829,30.669,30.438,30.799,31.042,31.243,31.01,30.368,30.856],"script":[14.952,16.162,16.227,15.447,15.36,16.193,13.83,14.666,14.712,14.111,14.195,15.413,15.189,13.853,15.002],"paint":[15.378,15.553,14.806,15.411,14.444,15.365,15.709,15.076,14.929,15.699,15.991,15.012,15.04,15.395,15.037]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"07_create10k","values":{"total":[671.626,667.349,670.534,676.974,664.048,678.74,667.806,669.764,673.589,667.366,669.909,674.006,671.697,670.795,668.632],"script":[312.228,312.851,313.787,314.279,311.419,313.851,310.376,313.42,312.313,313.382,312.38,315.676,316.119,314.368,313.602],"paint":[352.512,347.58,350.095,355.867,345.836,358.32,350.465,349.159,354.521,347.193,350.742,351.574,348.892,349.711,348.185]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.74,58.144,57.21,57.435,57.114,60.661,58.813,57.477,57.189,57.174,57.243,56.829,59.744,57.07,57.448],"script":[17.876,17.824,17.509,17.629,17.145,18.278,17.712,17.584,17.01,17.202,17.518,17.089,18.854,16.924,17.394],"paint":[38.957,39.424,38.825,38.92,39.073,41.459,40.034,38.965,39.285,39.078,38.837,38.875,40.003,39.25,39.184]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[33.456,33.728,29.36,30.702,30.837,33.606,33.048,31.939,31.957,29.931,33.246,33.43,30.053,33.082,33.801],"script":[31.365,32.152,27.702,28.329,28.835,30.779,31.32,29.705,29.8,28.004,31.362,31.29,27.751,30.66,31.808],"paint":[1.964,1.263,1.539,2.264,1.132,2.075,1.269,1.591,1.519,1.213,1.396,1.738,1.522,1.39,1.887]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.123021125793457]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.370290756225586]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.093189239501953]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0304813385009766]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.41138362884521]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[158.1181640625]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.3681640625]}},{"framework":"react-redux-v18.2.0 + 8.0.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[235.6]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"01_run1k","values":{"total":[47.482,48.553,47.178,48.467,47.482,48.151,46.56,49.135,48.48,48.838,48.443,48.083,48.31,47.544,48.406],"script":[13.502,14.59,13.617,14.433,13.626,14.23,13.553,14.735,14.547,14.491,13.8,14.021,14.462,13.672,14.461],"paint":[33.537,33.48,33.103,33.603,33.425,33.476,32.564,33.966,33.498,33.917,34.166,33.618,33.402,33.431,33.512]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"02_replace1k","values":{"total":[57.09,55.877,56.857,56.632,55.777,56.575,56.122,56.723,56.061,56.003,57.109,56.177,57.016,56.788,56.368],"script":[20.36,20.188,20.445,20.299,20.371,20.61,20.402,21.03,20.544,20.012,20.954,20.272,20.617,21.02,20.188],"paint":[36.293,35.242,35.838,35.277,34.859,35.52,35.141,35.15,34.985,35.415,35.71,35.337,35.947,35.107,35.326]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.854,22.853,24.394,22.158,22.458,23.331,22.398,23.86,22.838,22.489,22.547,21.142,21.396,21.691,25.204],"script":[6.138,7.039,7.014,5.964,6.681,6.779,6.773,7.023,6.711,6.534,6.334,4.861,5.934,6.384,8.22],"paint":[13.692,14.646,15.549,15.013,15.064,15.081,14.312,15.256,15.12,14.402,13.801,15.408,13.91,13.732,15.864]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"04_select1k","values":{"total":[6.292,5.615,6.067,5.885,5.835,5.318,7.065,5.019,5.411,5.936,5.133,6.251,6.027,6.542,5.502,5.801,6.06,6.237,5.357,5.706,6.54,5.266,7.146,5.123,6.022],"script":[3.033,2.826,3.08,2.884,3.51,2.695,3.423,2.303,2.709,2.885,2.418,3.503,3.163,3.339,2.406,3.023,3.31,3.364,2.824,2.718,2.933,2.994,3.642,2.293,2.749],"paint":[2.027,2.159,2.839,2.371,2.215,2.478,3.019,2.603,2.105,2.535,2.601,2.105,2.102,2.071,2.937,2.221,1.89,2.053,2.425,1.799,3.456,1.78,2.362,1.461,2.063]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"05_swap1k","values":{"total":[164.73,162.191,169.126,163.316,163.98,165.752,170.11,165.045,166.428,165.994,165.738,167.231,163.81,167.066,166.283],"script":[24.891,23.533,21.734,24.326,23.462,24.674,23.98,23.181,25.135,23.019,24.343,24.481,24.042,23.478,21.887],"paint":[138.418,136.957,145.334,137.177,138.577,139.127,144.183,140.731,138.75,140.835,138.358,140.611,137.824,140.149,141.801]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.609,16.931,16.941,17.251,17.189,17.244,17.047,16.672,16.796,16.966,17.116,17.221,17.35,17.079,17.37],"script":[2.171,1.642,1.693,1.753,1.891,2.026,1.912,1.761,1.909,1.905,1.902,1.507,1.96,1.495,1.917],"paint":[13.671,14.536,14.466,14.33,14.566,14.272,14.549,14.17,13.808,14.303,14.512,14.639,13.702,14.589,14.543]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"07_create10k","values":{"total":[625.736,617.172,615.288,617.622,614.787,618.329,618.061,619.436,621.562,618.329,618.191,629.328,619.034,618.225,618.067],"script":[263.822,258.198,260.047,257.688,258.738,260.687,260.356,261.449,262.174,257.75,259.182,261.84,259.806,261.454,259.997],"paint":[355.013,352.262,348.559,353.182,349.327,350.933,350.99,351.273,352.551,353.858,352.073,360.49,352.408,350,351.432]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.02,53.667,54.341,54.943,53.226,54.517,53.988,52.977,55.312,53.643,53.45,54.842,54.456,53.182,53.394],"script":[14.586,13.988,15.124,14.516,13.787,14.295,14.199,14.159,14.628,13.852,14.403,14.527,14.601,13.797,14.233],"paint":[39.494,38.753,38.361,39.427,38.525,39.135,38.872,37.907,39.786,38.903,38.153,39.409,38.967,38.459,38.241]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.933,24.526,25.05,25.429,26.637,25.575,25.632,26.106,25.426,24.873,26.089,25.308,25.674,25.521,25.05],"script":[23.114,23.149,23.176,23.411,24.708,23.908,23.268,23.659,23.542,23.321,23.937,23.22,23.233,23.228,23.229],"paint":[1.72,1.286,1.77,1.925,1.832,1.565,2.271,2.331,1.784,0.985,2.061,1.979,2.301,1.766,1.729]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.040593147277832]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.5970563888549805]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.123587608337402]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9319686889648438]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.528398513793945]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[149.681640625]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.822265625]}},{"framework":"react-redux-hooks-v18.2.0 + 8.0.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[220.7]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"01_run1k","values":{"total":[51.146,48.749,48.844,49.688,49.472,49.256,49.289,48.764,49.633,49.472,51.061,49.694,49.72,49.24,49.831],"script":[16.425,15.322,15.389,15.889,15.54,15.378,15.477,15.697,16.203,15.673,17.032,15.485,15.702,15.446,15.469],"paint":[34.276,33.034,33.042,33.386,33.521,33.46,33.401,32.642,33,33.384,33.605,33.776,33.6,33.378,33.922]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"02_replace1k","values":{"total":[58.426,59.243,58.113,57.667,56.952,57.215,57.335,57.226,57.113,57.336,56.867,57.565,58.039,56.849,57.278],"script":[21.232,21.553,21.745,21.799,21.078,21.784,21.975,21.671,21.324,21.715,21.798,21.672,21.833,21.067,21.794],"paint":[36.758,36.966,35.865,35.307,35.405,34.991,34.785,35.103,35.186,35.078,34.521,35.135,35.751,35.171,34.19]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.692,25.368,24.399,25.574,25.684,25.331,25.343,26.158,25.235,26.395,25.363,25.14,25.704,25.134,24.283],"script":[9.59,9.187,8.468,8.969,8.933,8.767,9.271,9.808,9.407,8.948,8.926,8.659,9.573,9.411,8.26],"paint":[14.153,14.355,14.829,14.729,15.115,14.644,14.164,15.313,14.79,16.363,15.439,15.307,15.033,13.911,14.55]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"04_select1k","values":{"total":[5.913,5.953,5.388,6.316,6.149,6.348,5.935,6.047,6.563,6.224,5.982,5.821,6.604,6.553,5.901,5.535,5.925,5.604,6.217,5.589,5.251,5.275,5.926,6.435,6.183],"script":[2.807,2.753,3.013,3.281,3.418,2.755,2.709,3.529,3.401,2.92,3.057,3.073,3.289,3.654,3.301,2.401,2.22,3.284,3.602,2.547,2.752,2.294,3.11,2.695,3.44],"paint":[2.932,2.812,1.436,2.124,2.117,3.44,2.511,2.363,3.005,3.188,2.792,1.487,3.158,2.668,1.735,2.302,3.208,0.691,1.524,2.434,2.383,1.787,2.327,3.581,2.606]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"05_swap1k","values":{"total":[167.332,173.388,171.543,163.09,166.28,164.333,163.926,162.569,165.507,162.852,168.458,164.157,164.156,167.929,166.506],"script":[25.817,26.905,25.557,24.144,24.107,24.132,24.305,24.163,25.222,23.445,26,24.797,25.686,25.841,24.556],"paint":[139.351,143.78,143.912,136.635,140.74,138.319,137.259,136.229,137.217,137.734,140.861,138.155,137.106,139.183,140.104]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.778,17.972,18.108,17.916,17.876,17.927,17.987,17.93,18.291,18.003,17.727,17.913,17.782,17.553,17.941],"script":[3.033,2.733,2.995,2.792,2.677,2.717,3.351,2.824,2.804,2.754,2.665,2.72,2.836,2.675,2.912],"paint":[14.889,13.829,13.756,14.152,14.426,14.284,13.824,14.173,14.287,14.484,14.089,14.107,14.238,14.118,14.305]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"07_create10k","values":{"total":[632.895,626.829,625.976,631.832,627.178,632.558,628.595,626.103,624.669,632.052,633.075,625.13,629.12,625.813,623.226],"script":[270.24,272.838,265.72,271.671,268.596,268.845,269.397,267.107,268.202,270.193,275.233,266.713,272.182,269.905,266.676],"paint":[355.814,347.289,353.421,353.448,351.904,356.98,352.506,352.347,349.798,355.176,351.129,351.766,350.303,349.127,349.714]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.912,58.377,61.033,58.432,57.136,56.968,57.802,56.597,57.444,56.466,56.614,57.291,56.783,59.064,56.665],"script":[17.305,17.306,17.85,17.417,16.904,17.051,17.339,16.736,17.439,16.806,16.218,17.067,16.42,17.563,16.419],"paint":[39.718,40.02,42.053,40.102,39.335,39.038,39.597,38.992,39.112,38.755,39.528,39.316,39.483,40.593,39.35]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.811,26.257,26.729,27.764,28.033,25.784,26.421,25.731,26.685,27.357,25.952,27.465,25.496,29.01,26.121],"script":[24.474,23.979,24.423,25.356,25.808,24.214,24.008,24.146,24.213,24.798,24.362,25.597,23.888,26.988,23.496],"paint":[1.642,1.38,2.2,2.295,1.569,1.474,1.907,1.48,2.369,2.442,1.475,1.195,0.922,1.728,1.915]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.215799331665039]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.044154167175293]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.615869522094727]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4200658798217773]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[44.59421730041504]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[210.0068359375]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[55.9921875]}},{"framework":"react-redux-hooks-immutable-v18.2.0 + 8.0.5-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[320.1]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"01_run1k","values":{"total":[52.169,52.426,53.316,52.939,52.328,52.836,52.02,53.711,53.951,51.829,52.399,51.267,51.189,52.348,51.209],"script":[18.502,18.124,19.198,18.672,18.078,19.181,18.029,18.53,19.02,18.32,17.96,17.957,17.83,18.349,17.827],"paint":[33.184,33.848,33.664,33.812,33.796,33.2,33.544,34.726,34.467,33.064,33.977,32.872,32.941,33.541,32.949]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"02_replace1k","values":{"total":[61.614,61.436,61.5,63.902,61.519,63.426,62.335,62.421,63.217,62.482,62.618,63.837,62.457,62.189,62.802],"script":[26.059,25.807,25.946,26.678,25.699,26.108,26.151,26.263,26.096,26.537,26.37,26.22,26.772,26.087,26.52],"paint":[35.094,35.061,35.017,36.77,35.262,36.861,35.735,35.707,36.476,35.342,35.669,37.132,35.096,35.566,35.792]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.713,26.22,27,26.221,25.381,26.262,26.006,26.46,25.399,26.933,25.742,25.871,26.313,26.132,27.936],"script":[9.419,10.201,10.213,10.402,9.617,10.011,9.953,10.688,9.002,10.283,9.912,9.416,10.143,9.631,9.497],"paint":[14.066,14.422,15.618,14.669,14.391,14.153,14.406,14.776,14.755,14.983,14.453,14.103,14.611,15.008,16.899]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"04_select1k","values":{"total":[6.919,6.155,6.664,6.115,6.069,6.311,6.213,6.268,6.576,6.75,6.703,6.303,6.316,5.457,6.822,6.297,5.931,6.33,6.589,6.529,6.649,6.629,5.912,6.907,6.408],"script":[4.001,3.264,3.31,3.524,3.737,3.811,3.706,2.876,3.469,4.469,3.454,3.776,3.783,2.898,3.738,3.912,3.736,3.934,3.816,3.386,3.098,3.778,3.576,3.606,3.828],"paint":[2.324,2.11,2.807,1.439,1.5,2.35,1.511,3.24,2.262,1.431,3.087,1.644,1.913,1.62,2.52,2.258,2.031,1.095,2.2,2.782,2.957,1.867,1.697,2.189,1.619]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"05_swap1k","values":{"total":[170.519,172.045,168.593,173.591,170.081,169.088,170.87,168.254,165.489,170.035,165.32,171.212,166.343,168.846,167.034],"script":[26.972,28.928,27.03,27.874,27.086,27.884,27.973,26.64,25.357,27.645,24.703,27.653,26.543,28.073,26.339],"paint":[141.886,141.343,139.997,143.972,140.954,139.699,141.44,139.601,137.331,140.207,139.249,141.433,137.435,138.82,137.261]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[31.615,32.162,30.189,31.032,30.873,31.12,32.151,30.595,30.812,30.814,30.858,31.32,31.2,31.571,30.541],"script":[15.611,15.538,14.1,15.097,14.516,14.207,16.257,14.581,15.176,14.88,15.099,15.456,15.573,15.986,14.922],"paint":[15.004,15.626,15.184,14.937,15.251,16.091,14.754,15.2,14.528,14.903,14.647,15.106,14.508,14.695,14.735]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"07_create10k","values":{"total":[669.872,668.858,668.332,669.513,665.175,667.559,663.866,663.147,663.271,666.417,663.692,659.019,662.177,662.537,661.936],"script":[311.285,310.153,313.159,313.238,311.74,310.734,311.6,308.614,309.058,312.274,311.158,306.164,309.009,310.77,309.023],"paint":[351.774,351.899,348.348,349.444,346.675,350.1,345.548,347.451,347.506,347.416,345.867,346.139,346.456,345.026,346.209]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.518,57.296,59.109,57.865,57.554,56.829,56.712,57.427,58.108,57.755,57.743,57.426,56.088,57.617,56.217],"script":[18.063,17.26,17.823,18.017,17.517,17.243,17.377,17.736,17.447,17.137,17.682,17.182,17.147,17.637,17.121],"paint":[39.528,39.096,40.079,38.957,39.156,38.705,38.455,38.804,39.76,39.722,39.168,39.37,38.053,39.049,38.203]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[32.574,31.756,29.375,33.29,29.685,31.757,34.871,31.724,32.521,34.155,27.539,32.946,33.662,29.499,33.632],"script":[31.165,29.656,27.144,31.869,27.226,29.5,32.104,30.094,30.904,31.479,25.629,30.883,31.65,27.172,31.545],"paint":[1.284,1.968,1.61,1.315,0.924,2.142,2.619,1.386,0.943,2.559,1.057,1.556,1.893,1.423,1.566]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1622428894042969]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.348502159118652]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.164243698120117]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.0858001708984375]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[68.09882640838623]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[165.7568359375]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.119140625]}},{"framework":"react-redux-rematch-v18.2.0 + 8.0.5 + 2.2.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[247.2]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"01_run1k","values":{"total":[46.186,45.278,46.006,46.078,45.357,44.895,46.998,45.375,45.662,46.056,45.094,45.434,46.212,46.464,47.643],"script":[12.067,12.19,12.571,12.554,11.894,11.931,12.501,12.045,12.802,12.259,12.166,11.892,12.426,12.038,12.787],"paint":[33.693,32.663,33.022,33.115,33.026,32.537,34.051,32.906,32.439,33.34,32.496,33.102,33.359,34.021,34.381]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"02_replace1k","values":{"total":[53.92,54.165,55.31,54.852,53.61,53.065,53.602,53.794,54.641,55.472,53.824,55.174,53.761,54.374,55.096],"script":[17.506,17.685,18.782,18.395,17.539,17.28,17.871,18.133,18.426,19.016,17.586,18.478,17.897,18.002,18.419],"paint":[35.983,36.041,36.098,35.992,35.623,35.343,35.279,35.217,35.765,36.016,35.79,36.269,35.394,35.916,36.197]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.908,20.46,20.608,21.148,21.09,21.162,22.274,21.952,21.454,20.49,20.275,20.646,20.783,21.749,22.563],"script":[4.96,4.452,4.928,5.488,5.34,4.813,5.367,4.882,5.386,4.725,5.055,4.984,4.993,5.438,5.935],"paint":[15.104,14.034,14.245,14.251,14.391,14.998,14.962,15.653,14.53,14.444,13.415,13.753,14.224,15.027,14.842]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"04_select1k","values":{"total":[4.983,5.013,4.948,4.522,5.504,4.988,5.639,5.038,4.876,4.496,5.067,4.931,5.637,4.692,5.024,4.546,5.158,4.445,6.473,4.775,4.984,5.487,5.571,6.717,5],"script":[2.48,3.109,2.477,2.385,2.783,2.027,2.032,2.499,2.68,2.25,2.363,2.119,2.298,2.175,2.467,1.524,3.084,2.208,2.813,2.214,2.477,2.71,2.727,3.034,2.551],"paint":[1.683,1.136,1.953,2.032,2.592,1.455,3.462,1.606,1.874,1.339,1.991,1.686,2.459,2.398,1.658,2.917,1.193,1.369,3.475,2.43,2.4,2.129,2.472,2.956,2.343]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"05_swap1k","values":{"total":[166.271,175.977,163.971,169.319,168.999,163.049,168.194,166.549,168.713,163.818,168.704,168.276,165.09,167.167,167.339],"script":[23.425,25.296,20.839,22.68,21.606,21.54,23.846,21.6,23.541,21.49,23.93,22.559,21.767,22.91,23.258],"paint":[140.827,148.354,141.524,144.966,145.965,139.88,142.291,142.334,142.201,140.408,142.682,143.983,141.412,142.417,142.041]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.526,16.587,16.535,16.882,16.625,16.514,16.572,16.133,16.247,16.142,16.752,16.615,16.667,16.418,16.523],"script":[1.347,1.31,1.343,1.324,1.643,1.332,1.276,0.949,1.323,1.555,1.369,1.301,1.241,1.283,1.294],"paint":[14.24,14.498,14.243,14.283,14.23,14.121,14.584,14.522,14.187,13.746,14.374,14.524,14.694,14.401,14.476]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"07_create10k","values":{"total":[603.282,603.25,597.446,597.87,604.35,604.458,599.554,601.441,593.882,599.177,593.379,601.771,593.97,587.015,579.2],"script":[248.956,251.239,241.896,244.992,250.311,252.755,249.163,249.873,244.179,247.881,241.315,249.631,242.2,249.828,242.686],"paint":[347.324,345.253,348.776,346.163,347.194,344.955,343.515,344.902,343.007,344.545,345.399,345.422,345.106,330.426,329.822]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.055,54.295,50.209,50.016,49.801,50.883,51.261,51.712,52.13,51.619,49.452,52.998,49.609,49.228,54.003],"script":[12.556,13.401,12.189,12.279,12.477,12.873,12.809,13.4,13.234,12.406,12.517,12.973,12.428,12.349,13.301],"paint":[39.441,39.913,37.202,36.877,36.428,37.098,37.443,37.394,38,38.275,36.035,39.086,36.253,35.938,39.776]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.177,25.319,26.076,25.652,26.713,25.951,24.869,24.882,25.276,24.242,25.434,24.874,26.23,25.488,26.943],"script":[23.899,23.666,24.112,23.552,24.157,24.106,23.197,22.986,22.89,22.544,23.802,22.679,24.038,23.605,24.264],"paint":[2.161,0.72,1.841,1.576,1.863,1.406,0.802,1.804,2.009,1.6,1.541,2.094,2.095,1.787,1.694]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0685653686523438]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.328461647033691]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.780000686645508]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8977985382080078]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.45377826690674]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[156.5859375]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[43.7705078125]}},{"framework":"react-rxjs-v18.2.0 + 0.10.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[238.5]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"01_run1k","values":{"total":[43.293,44.841,41.021,44.414,43.518,45.096,41.018,45.219,44.839,44.732,41.767,44.519,44.331,44.807,43.085],"script":[12.699,12.994,10.184,13.331,12.796,13.698,10.301,14.422,13.217,13.17,10.282,13.084,12.562,13.223,12.949],"paint":[30.173,31.444,30.445,30.677,30.302,31.008,30.309,30.405,31.221,31.137,30.96,31.035,31.348,31.188,29.736]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[52.679,57.598,57.103,57.557,57.643,52.103,57.473,57.038,56.178,51.668,56.961,52.629,56.694,51.574,56.475],"script":[23.811,23.451,23.527,23.968,24.058,23.2,23.938,23.455,22.97,22.872,23.524,23.87,23.238,22.764,23.03],"paint":[28.453,33.648,33.141,33.007,33.157,28.477,33.095,33.142,32.775,28.382,33.015,28.327,33.027,28.399,33.02]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.164,19.494,18.849,19.975,20.485,19.385,20.638,21.108,19.882,19.33,20.034,22.766,20.454,20.628,20.455],"script":[3.705,3.794,3.386,3.888,3.255,3.288,4.255,4.358,3.551,3.622,3.683,5.152,3.558,4.572,3.883],"paint":[14.142,14.659,14.25,14.687,15.591,14.8,15.33,15.653,14.857,14.547,15.023,15.718,15.757,14.473,14.361]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"04_select1k","values":{"total":[4.417,4.625,4.433,4.887,3.739,3.994,4.603,4.265,3.478,4.37,4.452,4.243,4.911,4.616,4.282,4.462,4.7,4.954,5.067,3.488,4.407,4.267,5.23,4.603,3.587],"script":[1.097,2.121,1.33,1.784,1.579,1.463,1.903,1.495,1.509,1.929,1.335,1.363,1.606,1.836,1.978,1.715,2.117,1.418,1.88,1.78,1.725,1.107,1.554,1.775,1.578],"paint":[2.605,2.263,1.402,2.006,2.053,2.428,2.58,2.625,1.852,2.286,2.515,2.763,3.102,1.864,2.192,1.816,2.041,3.405,2.589,0.815,1.716,3.019,3.482,1.943,1.901]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[152.462,151.599,152.196,150.74,150.925,151.675,152.693,157.48,152.616,151.75,152.451,154.08,152.912,153.908,150.167],"script":[32.676,32.449,32.764,32.3,33.646,32.705,33.409,33.924,32.851,32.443,33.401,33.737,32.556,35.246,33.339],"paint":[118.675,117.043,117.241,116.622,115.912,117.475,117.64,121.091,116.467,117.738,117.968,118.749,118.06,116.408,115.249]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.359,21.462,21.548,21.414,21.915,20.936,21.644,21.51,21.646,21.92,21.39,21.1,21.517,21.555,21.406],"script":[5.952,6.083,6.011,6.128,6.148,5.758,6.134,6.438,6.559,6.214,5.899,5.749,6.088,6.177,6.199],"paint":[14.659,14.571,14.424,14.511,14.621,13.852,14.573,14.601,14.317,14.743,14.249,14.294,14.658,14.556,14.195]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"07_create10k","values":{"total":[610.929,619.897,620.102,587.583,608.767,612.443,599.207,607.326,614.612,611.306,615.18,607.392,599.441,611.043,616.508],"script":[265.204,268.421,270.426,254.722,258.398,261.644,261.382,254.009,257.865,263.369,267.86,261.267,262.97,264.212,269.132],"paint":[338.859,344.906,343.009,326.051,343.804,344.124,331.025,345.9,350.098,341.264,340.657,339.477,329.794,340.203,340.649]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.354,47.829,46.537,46.768,46.693,48.038,46.782,46.036,47.331,46.756,47.767,48.252,46.943,47.115,46.588],"script":[14.768,13.228,12.911,13.245,13.102,14.445,13.213,12.984,13.506,13.224,13.2,14.475,13.48,13.138,13.115],"paint":[32.716,33.75,32.747,32.717,32.746,32.731,32.72,32.167,32.948,32.681,33.74,32.932,32.665,33.11,32.608]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.947,27.061,29.183,29.134,27.999,27.445,27.105,27.741,28.34,29.456,27.873,29.665,29.333,28.389,26.89],"script":[25.441,24.894,27.583,27.553,26.07,25.743,25.48,25.968,26.604,27.043,26.065,27.567,27.884,26.04,25.196],"paint":[1.451,0.757,1.503,1.459,1.828,1.61,1.181,1.135,1.64,2.316,1.19,1.977,1.365,1.502,0.806]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0580854415893555]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.3572540283203125]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.226499557495117]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.273317337036133]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[58.28588676452637]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[146.181640625]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.4326171875]}},{"framework":"react-signalis-v18.2.0 + 0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[221.2]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"01_run1k","values":{"total":[53.788,54.532,55.085,55.093,55.382,54.07,53.455,54.602,55.601,54.318,55.648,55.122,54.415,54.913,54.04],"script":[19.817,20.22,20.57,20.295,20.579,20.052,20.327,20.237,21.206,20.126,21.425,20.624,20.34,20.492,19.983],"paint":[33.534,33.895,34.086,34.338,34.32,33.585,32.505,33.911,33.921,33.763,33.762,34.063,33.663,33.985,33.61]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[63.026,65.89,62.734,63.782,61.433,62.099,62.303,62.53,64.196,65.268,63.575,65.092,62.62,64.972,64.699],"script":[26.486,27.877,27.32,27.513,26.232,26.339,27.337,26.567,27.737,27.733,27.19,28.312,27.185,27.87,27.218],"paint":[36.033,37.547,34.926,35.823,34.771,35.299,34.527,35.521,36.041,37.073,35.936,36.289,35.006,36.638,37.024]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[52.542,53.514,53.104,55.27,52.889,56.36,53.689,53.93,53.65,52.795,53.821,55.057,55.466,52.291,53.207],"script":[36.312,36.831,36.755,38.89,35.998,39.27,37.509,37.285,37.21,35.717,37.677,37.522,38.196,35.759,37.51],"paint":[14.91,15.626,13.555,15.09,15.159,15.772,14.302,14.881,14.664,15.596,14.438,14.936,16.244,15.384,14.215]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"04_select1k","values":{"total":[39.57,39.789,40.015,37.409,38.976,39.739,39.421,40.906,38.03,38.454,40.019,40.606,38.488,38.309,39.266,39.397,37.158,38.395,40.266,38.745,38.01,38.396,39.245,40.02,40.013],"script":[36.896,35.795,36.047,34.978,34.817,36.268,35.208,37.55,35.205,35.242,36.204,36.955,35.229,34.901,36.137,36.262,34.285,35.03,36.259,35.641,35.465,34.763,35.637,36.677,36.795],"paint":[1.544,3.099,3.041,1.2,3.229,2.752,2.777,3.136,1.967,3.037,3.155,2.978,2.219,2.36,2.316,2.957,1.86,2.429,2.787,2.188,1.903,2.944,2.178,2.732,2.572]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[197.586,197.727,199.064,205.679,199.938,204.094,196.708,197.518,201.821,197.174,200.566,198.862,201.481,203.836,199.317],"script":[57.574,58.755,57.226,60.229,59.593,56.952,58.084,58.643,59.158,58.435,59.614,58.513,59.358,61.924,58.679],"paint":[138.12,137.335,139.934,143.613,138.47,145.516,137.083,137.624,139.946,136.592,138.756,138.422,138.982,139.964,138.56]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.72,33.101,36.033,33.674,33.11,33.974,34.54,34.685,33.77,33.873,34.168,33.302,34.538,35.051,33.74],"script":[17.888,17.791,19.558,17.455,17.975,18.025,18.121,18.371,18.395,18.157,18.528,18.014,18.567,19.532,18.279],"paint":[14.412,14.525,15.53,14.678,14.339,15.102,15.625,15.534,14.482,14.951,14.515,14.244,14.749,14.66,14.369]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"07_create10k","values":{"total":[681.199,673.583,676.022,668.814,664.398,663.331,679.926,665.192,670.18,672.014,688.438,662.412,682.195,650.436,665.469],"script":[315.221,312.944,325.646,316.014,314.918,309.01,327.042,313.576,309.679,312.072,320.116,312.803,315.81,300.835,312.223],"paint":[358.66,353.879,343.435,346.133,342.441,347.353,346.176,344.921,353.71,352.671,361.35,342.994,359.189,342.827,346.205]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[67.124,66.534,67.689,66.583,68.787,67.589,67.792,68.342,67.79,67.748,68.858,68.014,66.409,67.251,69.049],"script":[27.2,27.451,27.477,26.699,26.866,27.409,28.013,27.577,28.022,27.136,27.844,28.363,26.939,27.318,27.609],"paint":[38.976,38.2,39.275,38.929,40.85,39.213,38.888,39.797,38.912,39.713,40.1,38.704,38.521,39.008,40.495]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[30.984,29.684,29.915,29.487,28.279,30.323,30.099,30.62,30.462,30.148,28.836,28.039,33.916,28.834,29.072],"script":[28.062,27.929,28,27.063,26.642,28.139,27.033,28.408,28.419,27.962,26.441,26.878,31.153,26.66,26.512],"paint":[2.272,1.663,1.23,1.923,1.544,0.926,2.511,2.116,1.274,2.065,1.253,0.432,2.49,2.07,2.462]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5592403411865234]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.662574768066406]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.980984687805176]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.8895692825317383]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.381916999816895]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[225.8232421875]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[61.8857421875]}},{"framework":"react-starbeam-v18.2.0 + 0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[334.9]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"01_run1k","values":{"total":[46.24,46.432,45.694,45.245,45.687,46.212,46.642,46.65,46.117,45.876,46.086,45.729,46.305,46.644,47.134],"script":[12.597,12.788,12.811,12.413,12.231,12.869,12.457,13.318,12.433,12.814,13.021,12.689,13.094,13.368,13.356],"paint":[33.213,33.217,32.45,32.42,33.023,32.894,33.75,32.906,33.256,32.653,32.635,32.644,32.788,32.86,33.355]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"02_replace1k","values":{"total":[56.695,57.13,57.415,58.591,57.173,56.442,57.211,56.762,58.332,57.602,56.971,57.384,57.117,57.254,57.184],"script":[19.818,19.513,20.093,21.139,20.343,19.315,20.92,20.256,21.244,20.438,20.503,20.04,19.964,20.371,20.261],"paint":[36.392,37.141,36.87,37.01,36.357,36.671,35.837,36.042,36.623,36.723,35.999,36.88,36.689,36.405,36.458]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.032,22.006,21.417,21.845,21.133,20.483,21.757,22.568,21.191,22.019,21.831,21.085,21.624,21.321,21.11],"script":[5.33,5.588,4.721,5.336,5.068,5.265,5.427,6.378,4.501,5.705,5.535,5.732,5.26,5.309,6.142],"paint":[13.69,13.949,14.79,15.172,15.011,13.258,14.885,14.411,14.215,14.904,15.188,14.171,15.271,14.719,13.904]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"04_select1k","values":{"total":[5.701,5.206,4.227,4.222,4.951,4.365,4.849,4.872,4.964,4.911,5.3,5.408,4.856,5.609,5.059,5.233,5.541,4.643,5.248,5.356,5.265,4.599,4.984,4.851,5.668],"script":[2.945,2.01,1.484,1.671,2.3,2.084,1.93,2.557,2.073,1.524,2.427,2.531,1.484,2.574,1.76,2.428,2.55,2.398,2.118,2.5,2.586,2.5,2.24,2.316,2.357],"paint":[2.615,3.042,2.623,1.995,2.113,1.139,2.7,1.386,2.008,3.23,2.541,2.145,3.256,2.876,2.25,2.684,2.863,1.623,2.978,2.705,1.36,1.22,1.981,2.334,3.005]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"05_swap1k","values":{"total":[165.893,163,166.505,166.371,161.948,164.715,163.236,163.943,160.654,164.208,168.298,160.262,165.404,162.279,164.036],"script":[23.428,21.631,23.155,23.477,23.738,22.58,21.458,22.727,21.875,22.221,23.706,21.699,23.977,22.285,21.493],"paint":[139.029,139.377,141.144,141.109,137.095,140.062,140.641,138.905,137.049,140.18,142.975,137.138,139.3,138.318,140.581]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.175,16.055,16.348,16.42,16.622,16.813,16.896,15.976,16.371,16.572,16.272,16.359,16.427,16.394,16.403],"script":[1.379,1.269,1.151,1.269,1.586,1.66,1.433,0.955,1.283,0.94,1.298,1.106,1.326,1.486,1.309],"paint":[13.842,13.932,14.292,14.422,13.95,14.327,14.7,14.256,14.06,14.896,14.097,14.469,14.366,13.98,14.391]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"07_create10k","values":{"total":[617.427,608.99,620.023,617.074,619.568,615.393,615.589,616.808,613.92,619.684,610.991,612.512,615.418,614.035,617.399],"script":[255.618,253.613,257.387,256.435,259.301,255.447,255.822,256.72,257.047,258.286,253.49,255.954,257.926,255.973,256.442],"paint":[354.932,348.759,355.708,353.998,353.438,353.193,353.114,353.432,350.169,354.741,350.844,349.748,350.667,351.34,353.641]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.49,55.49,53.468,52.357,53.97,55.247,53.964,53.06,52.666,52.837,53.898,52.325,55.911,54.704,53.768],"script":[14.554,14.313,13.594,13.628,14.154,14.032,13.9,13.829,13.588,13.573,14.927,13.984,14.354,14.042,14.014],"paint":[39.95,40.296,38.907,37.771,38.866,40.275,39.17,38.303,38.198,38.356,38.055,37.436,40.616,39.716,38.831]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.634,26.499,24.466,26.526,26.605,24.901,27.146,26.913,24.837,27.232,25.205,26.914,26.542,25.745,25.929],"script":[23.674,24.671,22.582,24.35,24.937,23.523,25.011,24.575,22.481,25.618,23.322,25.044,25.175,23.427,23.747],"paint":[1.09,1.725,0.604,2.071,1.208,0.367,1.617,2.237,2.259,1.368,1.78,1.767,0.387,2.19,1.576]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9934473037719727]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.961178779602051]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.538423538208008]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8704748153686523]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[37.20715141296387]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[141.8896484375]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.0517578125]}},{"framework":"react-tagged-state-v18.2.0 + 1.23.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.7]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"01_run1k","values":{"total":[47.804,46.571,47.156,48.348,47.803,49.858,47.777,47.735,48.694,47.293,47.987,47.888,49.416,48.539,48.725],"script":[14.085,13.897,13.824,14.803,14.347,15.306,14.176,14.526,15.477,14.062,14.309,14.191,15.474,15.032,14.707],"paint":[33.267,32.257,32.923,33.109,33.006,34.109,33.159,32.777,32.781,32.788,33.243,33.247,33.469,33.054,33.573]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"02_replace1k","values":{"total":[56.83,58.556,56.664,57.483,58.047,57.209,57.522,57.568,56.669,58.042,56.987,56.298,56.841,57.267,57.123],"script":[20.459,22.285,20.381,20.962,21.525,21.07,22.183,22.018,21.473,21.551,21.098,20.409,20.375,20.859,21.304],"paint":[35.884,35.785,35.85,36.011,36.079,35.677,34.821,35.134,34.668,36.055,35.352,35.348,36.022,35.954,35.388]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.36,27.043,25.268,25.076,25.088,24.854,24.65,24.898,25.037,24.777,24.363,25.691,24.636,25.598,24.946],"script":[9.463,10.513,9.442,9.543,9.286,9.14,8.486,9.533,9.088,9.761,8.397,9.991,9.136,9.963,9.491],"paint":[14.465,14.964,14.496,14.208,14.29,13.94,14.384,14.379,14.642,13.774,14.6,13.607,14.202,14.34,13.946]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"04_select1k","values":{"total":[8.85,8.878,8.379,9.191,8.72,8.513,7.754,8.642,9.043,8.393,8.342,7.841,8.832,8.913,8.452,8.417,8.378,8.267,8.457,9.188,8.438,8.439,9.102,9.215,7.854],"script":[6.019,6.146,6.331,5.988,5.914,5.848,5.215,5.382,6.118,5.73,5.864,5.01,6.058,5.977,6.108,5.094,5.296,5.498,5.85,6.47,5.384,5.628,6.204,6.121,5.767],"paint":[2.111,1.941,1.896,2.135,2.686,2.361,2.028,3.118,2.004,1.649,2.336,2.259,2.414,2.778,1.416,3.208,2.967,2.633,1.158,2.179,1.957,2.67,2.756,2.946,1.949]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"05_swap1k","values":{"total":[177.527,172.496,173.054,171.373,172.254,171.891,168.153,172.455,169.916,170.753,170.894,173.142,170.797,169.07,170.966],"script":[30.795,27.726,30.102,26.852,30.158,26.484,26.641,27.799,28.705,29.007,27.899,28.492,29.977,27.15,28.844],"paint":[144.881,142.819,141.379,142.845,140.469,143.347,139.283,143.489,139.203,140.593,139.82,142.357,138.195,139.359,140.289]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.528,18.449,18.34,19.158,18.453,18.483,18.406,18.573,18.608,18.474,18.591,18.485,18.359,18.453,18.529],"script":[3.627,3.337,3.203,3.375,3.227,3.413,3.513,3.308,3.257,3.133,3.305,3.504,3.735,2.854,3.45],"paint":[14.065,14.384,14.443,14.764,14.177,14.261,14.113,14.123,14.59,14.611,14.513,14.004,13.788,14.868,13.934]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"07_create10k","values":{"total":[620.953,618.999,619.636,624.306,614.423,621.216,622.466,614.454,625.953,621.265,625.381,619.696,618.624,621.735,619.433],"script":[270.687,268.106,265.323,269.624,263.579,270.225,269.876,258.628,268.933,269.879,267.581,268.107,267.23,268.993,267.808],"paint":[343.435,344.236,347.63,347.937,344.073,344.338,345.848,349.152,349.346,344.669,351.024,344.776,344.7,345.839,344.912]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.557,53.973,54.813,54.493,54.084,58.673,58.323,58.241,58.525,58.167,58.392,57.568,55.897,56.619,57.668],"script":[17.257,16.324,16.165,16.207,16.066,17.1,16.988,17.872,18.018,17.812,17.142,18.657,16.848,17.186,17.888],"paint":[40.384,36.766,37.741,37.334,37.119,40.615,40.355,39.477,39.608,39.474,40.346,38.011,38.237,38.538,38.853]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.064,24.664,25.78,24.859,24.619,23.968,24.695,25.366,24.329,24.59,25.545,24.9,24.516,24.746,24.963],"script":[23.051,22.389,23.578,22.932,22.675,22.681,22.829,22.706,22.517,22.658,24.12,22.682,22.998,22.437,22.939],"paint":[1.299,2.18,2.1,1.83,1.837,1.193,1.762,2.556,1.709,1.826,1.307,2.113,1.369,1.798,1.579]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0842256546020508]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.940828323364258]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.558403015136719]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2211170196533203]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[36.2567777633667]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[145.8505859375]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.4306640625]}},{"framework":"react-tracked-v18.2.0 + 1.7.11-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[219.2]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"01_run1k","values":{"total":[49.451,50.174,48.767,49.889,49.578,49.883,48.896,49.086,50.045,50.324,48.824,48.613,48.757,49.045,49.757],"script":[15.247,16.271,15.192,16.073,15.838,15.783,15.131,15.403,15.73,15.664,15.291,15.23,15.373,15.499,15.329],"paint":[33.771,33.432,33.15,33.359,33.296,33.659,33.332,33.239,33.852,34.224,33.114,32.96,32.946,33.124,33.974]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"02_replace1k","values":{"total":[58.63,58.083,57.792,59.064,58.579,59.991,59.313,59.522,58.507,59.745,58.867,58.988,59.246,58.644,59.498],"script":[21.682,21.783,21.732,22.293,22.236,22.826,22.884,22.492,22.026,22.601,22.419,21.733,22.532,22.073,22.528],"paint":[36.398,35.852,35.593,36.319,35.872,36.703,35.983,36.566,35.981,36.663,35.977,36.783,36.239,36.117,36.51]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.459,23.822,22.843,22.905,24.024,22.785,22.509,24.798,22.626,22.492,23.176,24.66,22.482,22.058,23.337],"script":[7.006,7.797,6.577,6.971,7.248,7.308,6.82,7.169,6.896,6.718,7.693,6.881,7.429,6.109,6.912],"paint":[14.554,14.519,14.911,14.126,15.377,13.669,13.572,16.312,14.214,14.015,13.339,16.413,13.668,14.351,15.053]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"04_select1k","values":{"total":[5.892,6.06,6.152,6.58,5.583,5.678,5.14,5.118,6.411,6.082,5.959,5.791,5.895,6.76,6.196,6.158,5.824,5.651,5.887,5.454,5.922,5.821,5.151,5.551,7.197],"script":[3.06,3.508,3.294,3.683,2.878,2.669,2.817,2.532,3.43,3.151,2.889,3.103,3.079,3.692,3.537,3.041,3.017,2.665,2.522,2.659,2.823,2.768,2.881,2.857,3.137],"paint":[2.279,0.55,2.009,1.549,1.856,2.86,1.172,2.019,2.305,2.308,2.926,1.668,2.687,2.048,2.126,1.779,1.609,2.312,3.223,1.698,2.322,2.923,2.121,1.967,3.816]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"05_swap1k","values":{"total":[166.7,164.671,169.161,169.33,165.844,167.203,173.577,166.503,169.201,167.2,171.472,169.028,171.199,172.521,168.036],"script":[24.987,25.1,27.489,26.817,26.664,26.164,27.06,25.011,27.127,27.29,25.253,26.784,25.89,27.106,25.975],"paint":[140.149,137.738,139.518,140.462,137.03,138.54,144.578,139.825,140.224,138.304,144.395,139.958,143.914,143.319,139.301]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.432,17.885,17.423,17.457,17.624,17.933,18.143,17.876,17.818,18.688,17.827,18.479,18.079,17.61,17.399],"script":[2.102,2.416,2.309,2.36,2.242,2.533,2.511,2.451,2.383,2.182,2.424,2.423,2.184,2.16,2.006],"paint":[14.538,14.306,14.028,13.741,14.645,14.624,14.591,14.624,14.653,15.188,14.595,15.252,15.118,14.698,14.651]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"07_create10k","values":{"total":[645.368,642.11,637.23,639.001,643.329,640.694,634.293,641.431,640.63,646.752,638.122,636.564,646.172,635.49,651.424],"script":[284.495,285.352,281.866,282.279,280.741,284.972,280.267,281.653,284.665,286.394,282.75,285.138,283.846,281.139,282.858],"paint":[353.886,350.058,348.357,349.961,355.383,348.95,347.336,353.074,349.254,353.743,348.708,344.143,355.621,347.677,361.832]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.797,55.506,55.083,56.706,56.199,56.217,55.81,54.926,55.793,55.97,55.683,54.758,55.545,54.485,53.845],"script":[17.306,16.21,15.436,16.816,17.255,17.182,15.98,15.837,16.694,16.544,16.134,16.416,16.228,15.594,15.198],"paint":[38.55,38.137,38.837,39.007,38.071,38.152,38.313,38.211,37.708,38.536,38.657,37.474,38.215,37.868,37.463]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"09_clear1k_x8","values":{"total":[29.457,31.622,28.236,29.371,28.981,28.922,31.605,29.194,32.56,29.513,28.607,27.171,26.975,29.61,27.375],"script":[27.854,29.296,25.811,27.737,26.626,27.009,29.67,27.126,29.869,27.334,26.738,25.012,24.917,27.517,24.767],"paint":[1.485,2.222,1.889,1.21,1.223,1.804,1.192,1.961,2.121,2.075,1.782,1.185,1.077,1.958,2.14]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.019474983215332]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.378084182739258]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.000672340393066]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.896714210510254]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[60.610809326171875]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[144.8798828125]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.8134765625]}},{"framework":"react-zustand-v18.2.0 + 4.3.6-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[227.8]}},{"framework":"reagent-v0.10-keyed","benchmark":"01_run1k","values":{"total":[60.856,59.165,59.269,57.741,66.424,63.01,65.168,59.017,58.607,63.105,62.903,64.12,59.806,64.734,63.683],"script":[26.622,25.239,25.042,25.194,26.204,26.066,24.737,25.168,25.137,24.823,25.726,26.437,26.247,25.479,25],"paint":[34.085,33.775,33.677,32.395,34.195,33.726,34.86,33.688,33.319,33.776,33.392,33.855,33.406,33.103,32.264]}},{"framework":"reagent-v0.10-keyed","benchmark":"02_replace1k","values":{"total":[75.696,76.076,68.166,76.079,75.625,77.807,74.094,77.345,77.278,72.1,69.281,67.27,76.568,67.186,69.887],"script":[30.463,30.877,29.177,30.991,29.935,30.409,30.353,30.051,30.203,29.646,29.94,29.526,29.684,29.711,30.061],"paint":[36.873,36.284,36.438,36.967,36.327,36.856,36.319,37.83,36.712,36.092,36.809,35.796,37.104,36.91,36.917]}},{"framework":"reagent-v0.10-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.038,29.542,31.784,30.598,30.692,28.966,28.859,28.603,30.059,29.525,27.75,29.703,31.08,45.771,29.698],"script":[15.684,13.929,14.058,13.881,13.595,14.59,13.732,14.604,13.702,14.499,12.179,13.819,14.272,15.339,13.486],"paint":[15.316,15.427,15.022,14.414,15.378,14.264,15.003,13.873,15.594,14.067,14.57,15.764,14.41,14.526,13.756]}},{"framework":"reagent-v0.10-keyed","benchmark":"04_select1k","values":{"total":[9.029,7.647,7.601,8.433,8.418,8.497,10.261,10.904,9.78,7.793,10.36,10.077,9.981,10.533,7.482,7.633,10.51,9.42,7.705,8.264,9.039,12.323,6.759,9.863,8.273],"script":[5.497,4.138,4.316,4.981,5.379,4.193,5.621,3.697,5.099,4.28,3.902,3.973,4.57,3.719,4.822,4.419,4.318,5.368,4.775,5.18,4.303,5.24,3.812,3.555,4.865],"paint":[2.632,2.961,2.797,1.719,2.86,2.575,2.672,3.37,3.233,2.39,1.739,2.929,2.385,2.894,1.614,2.034,2.859,1.987,2.041,2.911,3.007,3.085,2.199,2.981,2.352]}},{"framework":"reagent-v0.10-keyed","benchmark":"05_swap1k","values":{"total":[170.023,189.427,166.979,172.92,189.78,174.123,175.765,163.31,171.025,172.966,168.492,165.376,166.426,180.827,165.994],"script":[26.573,29.453,30.288,29.297,29.372,29.128,27.733,27.035,28.539,30.397,26.519,26.408,27.131,27.212,25.765],"paint":[142.348,143.207,136.111,142.302,143.555,144.184,146.21,135.764,139.061,140.586,141.818,137.793,139.157,137.554,139.772]}},{"framework":"reagent-v0.10-keyed","benchmark":"06_remove-one-1k","values":{"total":[25.615,22.564,24.429,32.528,28.071,27.783,28.778,22.973,32.315,26.539,33.781,24.131,26.117,33.476,35.884],"script":[4.892,4.98,5.127,5.271,5.035,5.41,5.011,5.554,5.069,5.536,5.533,4.8,5.099,5.587,5.376],"paint":[15.243,15.87,16.099,15.638,15.021,15.636,14.851,14.978,15.017,14.966,15.24,15.618,15.939,15.92,15.306]}},{"framework":"reagent-v0.10-keyed","benchmark":"07_create10k","values":{"total":[689.256,674.975,673.989,668.319,670.745,671.484,679.414,672.627,671.149,670.27,686.132,676.058,689.071,671.69,665.629],"script":[324.867,324.595,324.01,322.665,324.646,325.158,332.461,321.773,324.771,325.892,329.032,326.443,325.532,326.008,320.323],"paint":[362.121,348.272,346.517,343.474,343.533,344.165,344.851,348.641,343.782,342.265,354.953,347.057,359.612,343.319,343.14]}},{"framework":"reagent-v0.10-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.501,71.67,69.882,68.705,68.329,64.055,70.471,72.454,72.577,73.356,69.88,68.635,69.621,72.664,69.568],"script":[24.639,23.854,23.761,23.64,23.678,23.932,24.067,23.56,23.507,24.166,23.759,23.889,23.826,24.268,23.758],"paint":[37.715,39.12,39.665,39.189,38.497,38.856,38.301,39.459,39.128,39.337,39.38,38.882,38.437,39.634,39.198]}},{"framework":"reagent-v0.10-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.649,30.095,30.453,30.115,29.534,29.848,30.567,33.218,29.327,29.317,29.763,27.983,28.289,30.809,29.999],"script":[26.932,28.383,29.147,27.922,27.078,27.989,26.732,28.063,27.723,26.729,26.679,26.66,26.529,28.983,27.072],"paint":[1.651,1.654,1.244,1.484,2.393,1.797,1.602,2.152,1.542,1.834,2.184,0.979,1.057,1.732,1.983]}},{"framework":"reagent-v0.10-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.4371309280395508]}},{"framework":"reagent-v0.10-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.484687805175781]}},{"framework":"reagent-v0.10-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.168415069580078]}},{"framework":"reagent-v0.10-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.26486873626709]}},{"framework":"reagent-v0.10-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.45787334442139]}},{"framework":"reagent-v0.10-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[274.7626953125]}},{"framework":"reagent-v0.10-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[64.447265625]}},{"framework":"reagent-v0.10-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[394.9]}},{"framework":"redom-v3.29.0-keyed","benchmark":"01_run1k","values":{"total":[44.383,41.859,43.45,44.904,43.081,43.961,44.191,44.354,43.876,44.355,46.302,43.598,44.7,43.7,43.817],"script":[9.969,8.603,9.883,10.438,9.997,10.173,10.248,9.861,10.135,10.005,10.784,9.766,10.139,9.95,9.99],"paint":[33.962,32.81,33.13,34.003,32.641,33.368,33.497,34.03,33.289,33.916,35.077,33.416,34.15,33.334,33.376]}},{"framework":"redom-v3.29.0-keyed","benchmark":"02_replace1k","values":{"total":[48.957,49.802,49.515,48.417,49.784,49.512,48.704,49.175,48.947,49.56,50.334,48.651,49.671,49.612,49.262],"script":[13.088,13.046,13.153,13.08,13.585,13.278,12.801,12.882,12.984,13.902,13.237,13.055,12.802,13.642,13.705],"paint":[35.38,36.291,35.874,34.904,35.753,35.673,35.419,35.818,35.503,35.172,36.649,35.131,36.42,35.525,35.109]}},{"framework":"redom-v3.29.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.056,17.517,17.774,17.762,17.293,18.297,18.007,18.294,17.744,17.017,17.575,17.945,18.173,17.515,17.241],"script":[2.415,2.721,2.092,2.118,1.301,1.534,1.83,2.386,1.678,1.813,1.792,1.623,2.352,2.259,1.714],"paint":[14.01,13.789,13.425,14.174,14.616,15.77,14.925,14.467,15.015,13.841,14.663,15.248,13.785,13.601,14.205]}},{"framework":"redom-v3.29.0-keyed","benchmark":"04_select1k","values":{"total":[2.858,4.064,3.277,3.131,3.739,3.303,4.016,3.267,2.622,3.324,3.198,3.077,4.231,2.987,3.008,2.875,3.9,4.149,4.652,2.978,3.428,3.698,3.652,2.917,2.913],"script":[0.666,0.911,1.146,0.989,1.458,1.25,1.233,0.857,1.192,0.917,0.955,0.933,1.056,0.952,0.996,0.552,1.627,1.494,1.792,0.222,0.613,0.571,1.679,0.965,0.957],"paint":[2.074,1.944,2.007,1.622,2.176,1.925,2.674,2.304,1.326,2.297,1.409,1.48,3.028,1.178,1.18,1.198,2.166,1.903,1.782,1.63,1.904,2.753,1.137,1.843,1.847]}},{"framework":"redom-v3.29.0-keyed","benchmark":"05_swap1k","values":{"total":[19.273,19.206,19.898,19.027,19.595,18.576,19.586,20.036,19.414,20.377,19.234,19.731,19.984,19.185,19.929],"script":[0.959,0.98,1.701,1.176,0.905,1.26,1.45,1.787,1.674,1.703,1.256,1.544,1.744,1.373,1.284],"paint":[16.006,17.017,16.117,17.179,17.113,16.106,17.121,17.072,16.468,17.311,16.376,17.026,16.59,15.877,17.452]}},{"framework":"redom-v3.29.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.936,15.411,15.112,15.465,15.258,15.394,15.659,15.302,15.99,15.831,15.601,15.869,15.438,15.333,15.361],"script":[0.616,0.569,0.359,0.615,0.558,0.6,0.333,0.563,0.578,0.617,0.46,0.59,0.592,0.474,0.582],"paint":[14.557,14.07,13.712,13.751,13.971,14.063,14.614,14.016,14.466,14.52,14.499,14.622,14.076,13.962,14.024]}},{"framework":"redom-v3.29.0-keyed","benchmark":"07_create10k","values":{"total":[444.131,443.914,447.325,446.295,447.12,443.803,447.184,447.089,448.775,441.912,446.731,442.252,447.202,444.183,443.31],"script":[100.427,100.488,100.968,102.138,100.258,100.316,99.984,100.534,101.502,100.587,100.967,100.399,101.783,102.479,101.608],"paint":[337.084,336.869,339.73,337.514,340.237,336.959,340.716,339.968,340.628,334.793,339.299,335.392,338.887,335.13,335.129]}},{"framework":"redom-v3.29.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.65,50.04,48.653,48.043,48.276,48.816,49.101,48.564,48.023,50.066,48.368,49.907,49.685,49.868,49.945],"script":[10.759,10.602,10.29,10.192,10.177,10.261,10.529,10.535,10.506,10.531,10.157,10.813,10.849,10.717,10.978],"paint":[37.991,38.481,37.45,36.964,37.207,37.658,37.654,37.14,36.63,38.638,37.32,38.196,37.905,38.178,38.11]}},{"framework":"redom-v3.29.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.759,14.679,14.016,14.224,13.98,13.648,13.902,13.499,14.539,14.026,15.331,15.611,14.166,14.115,14.764],"script":[11.935,12.73,12.404,12.379,12.081,11.954,12.009,12.145,12.793,11.795,13.117,13.894,12.381,12.689,12.967],"paint":[1.723,1.188,0.989,1.415,1.167,0.758,1.801,0.756,1.655,1.345,2.115,1.632,1.504,1.339,0.957]}},{"framework":"redom-v3.29.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4922351837158203]}},{"framework":"redom-v3.29.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.4475574493408203]}},{"framework":"redom-v3.29.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5744876861572266]}},{"framework":"redom-v3.29.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.5122880935668945]}},{"framework":"redom-v3.29.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.28907585144043]}},{"framework":"redom-v3.29.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4873046875]}},{"framework":"redom-v3.29.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.24609375]}},{"framework":"redom-v3.29.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.1]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"01_run1k","values":{"total":[40.248,40.232,41.059,40.35,40.323,40.231,39.827,40.6,39.837,39.488,41.094,39.352,40.873,40.676,40.862],"script":[6.415,6.464,7.554,6.718,6.727,6.939,7.368,6.885,6.527,6.424,7.445,6.575,6.493,7.135,7.474],"paint":[33.41,33.339,33.086,33.221,33.165,32.875,32.04,33.304,32.903,32.654,33.232,32.36,33.97,33.15,32.991]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"02_replace1k","values":{"total":[50.394,49.771,48.098,49.699,47.556,50.53,50.029,49.354,48.728,50.364,48.116,48.309,50.06,49.727,49.984],"script":[14.785,14.499,13.295,14.378,13.21,15.068,14.824,13.901,13.461,15.03,13.512,13.645,15.057,14.338,14.434],"paint":[35.205,34.85,34.368,34.879,33.877,35.028,34.788,35.019,34.808,34.882,34.174,34.23,34.587,34.892,35.125]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.776,18.822,19.101,19.563,18.253,18.335,18.105,19.726,17.963,17.586,17.846,17.423,19.106,19.043,19.232],"script":[3.374,2.968,2.829,2.884,3.07,2.969,2.44,3.255,2.806,2.532,2.739,2.701,3.315,2.719,4.062],"paint":[14.184,13.881,14.483,14.569,13.688,14.669,14.523,13.935,13.775,13.751,14.033,12.839,14.785,15.218,14.075]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"04_select1k","values":{"total":[4.645,4.996,5.688,4.858,4.327,3.59,3.965,4.962,6.677,3.805,4.45,3.834,4.034,4.524,4.232,4.032,4.335,4.392,4.586,4.071,4.609,5.148,4.287,4.876,4.43],"script":[1.787,2.55,2.238,1.915,1.682,1.436,1.25,2.456,1.914,1.301,1.857,1.964,1.894,2.33,1.801,1.596,1.894,1.265,2.164,1.071,2.169,1.409,1.656,2.691,2.075],"paint":[1.565,1.779,2.108,2.846,2.536,2.05,2.606,1.996,2.786,1.469,1.727,1.098,2.038,2.075,2.094,1.957,1.679,2.988,1.706,2.902,1.737,1.955,1.463,1.578,1.433]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"05_swap1k","values":{"total":[19.899,19.811,19.604,20.677,20.197,20.217,20.371,20.072,19.971,19.664,21.096,20.635,19.919,21.511,19.6],"script":[1.321,1.674,1.55,1.811,2.324,2.635,2.139,2.231,1.846,1.069,2.402,2.487,1.044,2.171,1.846],"paint":[16.741,16.962,16.695,17.147,16.576,15.783,17.013,16.381,16.03,17.619,17.139,17.129,17.593,17.968,16.17]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.539,16.012,16.258,16.418,15.6,16.015,15.929,16.754,16.223,16.389,15.962,15.957,16.288,15.465,16.059],"script":[1.101,1.113,0.915,1.115,0.818,0.893,1.062,1.137,0.946,1.095,0.981,0.799,0.924,0.735,1.041],"paint":[14.685,14.19,14.205,14.602,14.025,14.253,14.13,14.67,14.515,14.531,13.977,14.382,14.546,13.667,14.231]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"07_create10k","values":{"total":[427.945,429.824,434.655,424.365,423.191,427.619,427.693,427.289,426.877,424.83,422.058,423.016,423.032,422.141,423.532],"script":[81.713,83.487,83.315,82.053,81.917,82.561,84.905,84.674,83.438,82.125,82.523,80.727,83.321,83.069,83.164],"paint":[339.501,339.146,344.643,335.697,334.053,338.295,336.095,335.912,336.774,335.855,332.881,335.619,333.075,332.366,333.033]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.41,45.623,46.113,45.945,47.554,46.381,45.941,47.501,46.22,47.364,47.384,47.504,47.331,47.289,48.551],"script":[6.702,7.006,6.674,7.078,7.992,7.055,6.761,7.508,7.333,7.301,7.3,7.657,6.797,7.657,6.975],"paint":[37.854,37.702,38.508,37.935,38.655,38.411,38.28,39.096,37.977,39.123,39.186,38.961,39.626,38.759,40.65]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.893,12.892,13.786,12.704,13.278,13.089,12.578,13.252,12.903,13.296,13.023,12.872,12.509,13.436,13.206],"script":[10.844,10.677,11.098,11.05,11.5,10.79,11.463,10.991,11.702,11.35,10.51,10.661,11.293,11.106,11.143],"paint":[1.952,2.121,1.707,1.568,1.688,2.2,0.365,2.178,1.111,1.854,2.416,2.115,0.356,2.241,1.976]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46042633056640625]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.863656997680664]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8788061141967773]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8888835906982422]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.874950408935547]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.8408203125]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.359375]}},{"framework":"rendrjs-v0.2.50-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.1]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"01_run1k","values":{"total":[40.161,40.232,42.116,41.465,41.212,41.601,41.514,41.077,42.948,41.163,39.805,41.086,40.148,41.756,41.668],"script":[7.017,6.915,7.818,6.999,7.229,7.038,7.871,7.834,7.548,7.331,7.538,7.605,7.533,6.922,7.683],"paint":[32.71,32.891,33.877,34.053,33.561,34.156,33.238,32.826,34.987,33.413,31.856,33.078,32.204,34.398,33.502]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"02_replace1k","values":{"total":[51.569,51.823,50.629,50.389,49.922,50.996,52.366,52.206,52.142,52.274,50.493,51.909,53.26,52.011,52.654],"script":[15.03,16.429,15.251,14.993,14.837,15.377,15.935,16.46,15.018,15.658,14.809,15.144,16.339,16.001,16.509],"paint":[36.061,34.921,34.944,34.936,34.625,35.141,35.979,35.294,36.698,36.158,35.231,36.327,36.458,35.555,35.683]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.036,18.641,18.108,17.464,18.051,17.256,19.022,17.971,18.039,18.056,18.594,17.857,17.674,18.64,17.815],"script":[2.377,2.618,2.338,2.376,2.697,2.449,2.417,3.202,2.131,2.744,2.553,1.982,2.487,1.916,2.072],"paint":[14.547,14.042,14.337,13.529,13.919,13.831,15.531,12.774,14.34,14.031,14.106,14.848,13.878,15.146,14.975]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"04_select1k","values":{"total":[2.457,3.701,3.247,3.803,3.09,2.986,3.819,3.101,3.329,3.433,2.641,2.854,3.076,3.534,2.204,3.311,3.058,3.068,3.246,3.893,2.913,2.733,3.38,3.132,4.405],"script":[0.305,1.376,0.598,1.132,0.573,0.196,1.204,0.923,0.821,1.39,0.175,0.752,0.701,0.939,0.608,0.551,0.171,1.046,0.893,0.605,0.903,0.199,1.224,0.57,0.868],"paint":[1.398,2.213,1.7,1.718,2.407,2.688,1.754,1.705,1.325,1.937,2.371,0.773,2.268,1.243,1.065,1.596,2.662,0.691,1.544,2.584,1.918,2.008,1.559,1.558,2.37]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"05_swap1k","values":{"total":[19.976,18.722,19.446,19.25,20.104,19.279,19.328,19.084,18.893,19.254,19.354,19.29,18.989,18.714,18.821],"script":[1.045,0.655,0.961,1.157,1.142,1.143,1.462,0.638,1.502,0.642,1.331,1.227,0.92,0.278,1.263],"paint":[16.926,16.777,17.182,15.978,17.372,16.811,15.422,17.151,15.128,16.635,17.062,16.765,16.082,17.289,15.948]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.568,15.578,15.391,16.156,15.679,16.008,15.323,15.99,15.859,15.372,16.577,15.387,15.877,15.588,15.39],"script":[0.656,0.635,0.668,0.675,0.657,0.649,0.664,0.672,0.669,0.661,0.937,0.656,0.978,0.816,0.691],"paint":[14.975,14.254,13.705,14.704,14.313,14.633,13.944,14.644,14.555,13.917,14.414,13.718,14.2,13.879,13.672]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"07_create10k","values":{"total":[436.333,432.919,429.139,443.031,425.14,431.482,426.089,428.823,425.917,432.4,435.635,437.894,426.507,423.009,440.089],"script":[90.6,87.251,87.016,86.553,86.236,87.658,84.863,85.986,85.236,86.334,85.596,87.074,85.82,84.966,87.468],"paint":[339.03,338.347,335.382,349.785,332.178,337.093,334.47,336.112,333.987,339.371,343.338,344.166,334.018,331.406,345.839]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.544,45.534,44.747,48.402,46.61,46.065,46.877,45.893,45.043,46.336,45.013,47.822,46.013,46.223,46.542],"script":[6.925,6.742,6.851,7.07,7.583,7.24,7.443,7.355,6.915,7.508,6.759,7.043,6.953,7.545,7.212],"paint":[37.661,37.957,37.054,40.442,38.133,37.985,38.528,37.673,37.217,37.954,37.396,39.719,38.094,37.851,38.469]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.59,13.422,13.259,12.994,13.264,13.67,13.352,12.801,13.486,13.538,12.632,13.28,13.06,13.986,13.226],"script":[12.468,11.081,11.742,11.897,11.58,11.562,11.371,11.132,11.75,11.731,11.244,11.335,10.657,11.925,11.473],"paint":[1.377,1.84,1.142,0.358,0.791,2.017,1.889,1.207,1.646,1.712,1.296,1.854,2.31,1.57,1.663]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5491237640380859]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.190570831298828]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3019609451293945]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7474231719970703]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.047858238220215]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.419921875]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.591796875]}},{"framework":"rendrjs-atoms-v0.2.50-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.2]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"01_run1k","values":{"total":[47.087,45.784,46.231,46.215,45.376,45.6,46.184,45.128,46.38,45.895,45.211,45.41,46.329,45.915,46.697],"script":[12.405,12.218,12.824,12.233,12.657,11.966,12.44,11.659,12.49,12.441,12.104,12.441,12.402,12.543,12.143],"paint":[34.231,33.112,32.957,33.524,32.28,33.198,33.302,33.036,33.442,32.993,32.642,32.522,33.48,32.94,34.118]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"02_replace1k","values":{"total":[50.479,49.22,48.352,47.997,49.732,47.933,48.469,49.134,49.359,48.298,49.406,49.074,49.382,49.406,50.05],"script":[15.293,13.877,13.4,13.506,14.998,13.647,14.195,14.274,14.738,14.245,14.421,13.789,14.323,15.031,14.844],"paint":[34.695,34.854,34.509,34.022,34.263,33.815,33.819,34.41,34.149,33.61,34.515,34.838,34.602,33.93,34.761]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[28.874,30.03,29.95,30.815,30.751,30.795,31.076,30.191,29.296,30.914,29.206,30.473,28.918,29.69,31.33],"script":[12.314,13.392,14.264,15.423,14.399,15.628,14.936,13.968,13.872,14.897,13.398,14.821,12.871,13.607,14.516],"paint":[15.282,15.11,13.249,13.76,14.571,13.855,14.776,14.821,13.956,14.67,13.894,13.911,15,14.291,14.491]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"04_select1k","values":{"total":[14.645,14.116,15.086,14.269,12.588,15.274,15.057,15.122,13.454,13.512,12.897,13.72,14.247,14.081,13.873,13.892,13.94,14.546,14.329,13.595,14.471,12.951,13.523,12.858,12.906],"script":[11.327,11.18,11.641,11.162,10.05,12.502,11.174,11.501,10.999,10.422,10.384,10.907,10.832,10.826,11.144,11.277,11.112,11.579,10.929,10.513,11.997,10.005,11.217,9.604,10.692],"paint":[3.052,2.767,3.258,2.944,1.657,2.602,3.711,2.563,2.301,2.001,1.377,2.046,2.823,2.507,2.575,1.781,2.282,2.787,3.151,1.193,2.314,1.849,1.39,2.538,1.659]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"05_swap1k","values":{"total":[179.393,184.557,177.551,178.741,180.404,177.604,172.276,177.582,178.857,177.858,182.262,182.858,169.699,168.22,177.849],"script":[33.476,34.313,33.832,33.399,36.814,34.962,32.763,33.854,35.58,31.825,34.536,34.79,33.011,32.433,34.338],"paint":[143.786,149.152,141.29,143.284,140.976,141.064,136.871,141.776,141.875,143.979,145.778,147.245,134.793,132.638,141.474]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.217,21.625,21.642,21.329,21.478,22.21,21.072,21.936,21.058,21.572,21.414,22.247,22.175,21.321,21.588],"script":[6.347,6.345,6.378,5.959,6.273,6.472,6.21,6.672,5.732,6.571,6.218,6.511,6.269,6.306,6.595],"paint":[14.121,14.099,14.457,14.254,14.239,14.585,14.099,14.501,14.4,14.117,14.446,14.899,14.837,14.11,14.254]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"07_create10k","values":{"total":[602.031,602.151,586.662,585.34,599.954,599.22,581.238,604.086,601.731,596.436,582.557,603.076,605.274,600.914,590.26],"script":[250.19,249.918,250.466,246.668,249.845,248.703,241.723,247.48,249.396,246.656,245.795,250.817,252.066,250.494,246.727],"paint":[344.937,345.51,329.496,331.974,343.393,343.655,332.747,349.897,345.626,342.947,330.103,345.5,346.4,343.744,336.732]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.826,54.821,54.726,54.603,55.725,54.123,54.544,55.2,54.996,54.629,53.953,54.541,55.664,55.669,54.175],"script":[14.968,15.273,14.669,15.222,15.46,14.977,15.111,15.102,14.906,15.197,14.785,15.257,15.214,15.915,14.967],"paint":[39.941,38.654,39.158,38.463,39.347,38.243,38.522,39.194,39.178,38.517,38.29,38.368,39.408,38.837,38.295]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.962,14.843,14.059,14.914,15.509,14.467,15.891,15.676,15.218,15.269,15.302,15.808,15.193,15.93,15.182],"script":[13.796,12.819,12.232,12.767,13.881,13.291,14.302,13.556,12.957,13.75,13.773,13.973,13.115,14.171,13.431],"paint":[1.588,1.514,1.71,1.049,1.537,0.445,1.323,1.624,2.171,1.426,0.935,1.087,1.993,0.892,0.739]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.938786506652832]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.346417427062988]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.482413291931152]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.702164649963379]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.168522834777832]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[132.6806640625]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[37.9970703125]}},{"framework":"rescript-react-v0.10.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[199.2]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"01_run1k","values":{"total":[44.476,44.546,43.955,43.295,44.181,43.472,43.523,45.077,44.061,45.378,48.105,45.005,43.879,43.369,44.574],"script":[10.421,10.503,9.811,10.032,10.606,10.306,10.065,10.941,10.542,10.515,10.861,10.835,10.133,10.288,10.62],"paint":[33.585,33.625,33.713,32.842,33.169,32.752,33.056,33.7,33.075,34.438,36.801,33.755,33.314,32.649,33.523]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"02_replace1k","values":{"total":[48.548,49.468,49.616,49.74,48.819,49.658,49.18,48.987,49.49,49.073,49.694,49.473,49.223,47.617,48.079],"script":[12.952,12.981,13.877,14.044,12.612,13.665,13.031,13.014,13.126,13.717,14.17,13.803,13.556,12.831,12.898],"paint":[35.144,36.042,35.323,35.251,35.788,35.553,35.7,35.532,35.901,34.921,35.098,35.243,35.24,34.34,34.747]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.96,18.304,17.137,17.86,17.736,17.639,17.536,17.197,17.605,17.582,18.178,18.034,16.549,17.013,17.554],"script":[2.362,2.522,2.336,1.987,2.359,2.669,2.177,2.568,2.257,2.31,2.17,2.611,1.963,2.105,1.582],"paint":[12.466,14.485,13.622,13.776,13.416,12.891,13.787,13.404,13.568,14.005,14.393,14.262,13.29,13.933,12.977]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"04_select1k","values":{"total":[4.589,2.986,3.334,3.679,3.846,4.108,4.841,4.585,6.75,3.799,3.346,3.794,3.502,3.412,4.243,3.403,3.73,3.719,3.292,3.64,3.675,4.007,4.052,3.532,2.978],"script":[0.965,0.965,0.806,1.657,0.61,1.454,2.088,0.661,0.976,1.275,1.416,1.018,0.921,0.67,1.787,1.024,1.208,1.326,1.114,1.035,0.941,1.626,1.033,0.906,0.967],"paint":[2.485,1.916,2.431,1.916,2.725,1.673,2.133,2.956,2.351,1.74,0.962,2.212,2.478,2.33,1.609,1.698,0.563,2.279,2.073,2.49,1.809,2.28,2.375,1.611,1.205]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"05_swap1k","values":{"total":[21.065,22.163,22.068,21.94,22.306,20.705,21.272,22.766,20.908,21.006,20.889,21.446,21.017,22.069,21.289],"script":[2.897,2.453,2.819,2.896,2.434,2.327,2.706,2.595,2.576,2.609,2.632,2.817,2.162,2.463,2.265],"paint":[16.274,17.902,18.089,17.742,18.339,16.748,16.683,18.291,16.729,17.207,17.113,16.637,16.612,18.156,17.095]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.598,18.452,16.975,16.554,16.488,16.347,16.157,16.989,16.575,16.943,16.11,16.403,16.595,16.656,16.77],"script":[1.235,1.247,1.539,1.383,1.185,0.939,1.28,1.526,1.314,1.22,1.233,1.286,1.237,1.307,1.244],"paint":[14.573,16.77,14.738,14.486,14.547,14.382,14.16,14.726,14.518,14.96,14.102,14.061,14.361,14.569,14.563]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"07_create10k","values":{"total":[447.449,441.406,445.813,447.378,450.458,440.688,442.608,443.961,443.837,445.995,439.001,441.247,439.376,440.09,449.456],"script":[103.695,102.965,105.921,103.992,105.337,103.408,105.704,105.907,106.169,104.161,101.424,101.839,101.844,101.035,101.393],"paint":[337.132,331.748,333.231,336.773,338.464,330.606,330.185,331.061,331.009,335.146,330.938,332.839,330.91,332.416,340.869]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.416,50.021,49.517,48.67,48.322,49.065,50.261,49.892,48.943,51.558,48.103,50.35,50.716,48.429,49.117],"script":[11.456,11.173,11.312,10.237,10.215,10.702,10.114,11.036,10.366,11.254,9.91,11.309,10.451,10.181,9.618],"paint":[40.055,37.941,37.297,37.521,37.203,37.464,39.251,37.968,37.686,39.388,37.309,38.144,39.408,37.329,38.629]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.366,11.442,12.675,12.128,11.567,12.842,12.112,11.724,12.801,11.169,12.099,12.519,11.133,12.182,13.175],"script":[9.806,9.308,10.303,10.292,9.931,10.639,10.161,10.544,10.291,9.705,10.093,10.732,9.714,10.367,11.923],"paint":[1.076,1.384,1.335,1.74,0.735,1.119,1.121,0.826,1.761,0.93,1.482,1.255,1.331,1.719,1.162]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49127864837646484]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.846734046936035]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.912019729614258]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8518886566162109]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.443537712097168]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.6435546875]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.11328125]}},{"framework":"rezact-v1.0.15-beta.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.9]}},{"framework":"riot-v9.1.4-keyed","benchmark":"01_run1k","values":{"total":[45.973,45.977,48.17,46.689,47.162,46.787,46.716,45.924,49.183,45.988,45.532,47.233,45.83,45.546,47.575],"script":[11.932,12.715,11.986,12.018,12.258,12.882,12.198,12.054,13.029,12.09,11.882,12.935,12.156,11.932,11.801],"paint":[33.588,32.825,35.707,34.192,34.255,33.421,34.07,33.426,35.662,33.465,33.22,33.782,33.231,33.176,35.306]}},{"framework":"riot-v9.1.4-keyed","benchmark":"02_replace1k","values":{"total":[54.886,53.067,54.171,53.502,52.676,53.755,53.374,53.941,53.088,52.831,53.041,52.466,53.379,53.738,51.899],"script":[18.048,17.393,17.72,17.738,16.912,17.298,17.529,17.75,17.558,17.565,17.357,17.118,18.629,18.15,17.024],"paint":[36.364,35.214,36.007,35.315,35.315,35.996,35.404,35.741,35.094,34.836,35.227,34.907,34.315,35.144,34.414]}},{"framework":"riot-v9.1.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.293,22.531,22.189,24.447,21.382,22.231,21.992,23.685,23,22.989,20.626,21.819,21.726,22.322,23.681],"script":[5.993,6.639,5.596,6.182,6.128,6.248,6.21,7.54,6.923,6.701,5.303,5.532,6.508,6.868,6.336],"paint":[15.294,14.551,15.644,16.04,14.247,14.946,13.967,14.1,14.8,14.733,13.756,13.967,13.922,14.728,15.466]}},{"framework":"riot-v9.1.4-keyed","benchmark":"04_select1k","values":{"total":[7.603,8.056,8.279,8.029,8.053,9.198,7.817,7.54,8.3,8.226,8.905,8.127,7.806,7.744,7.736,7.849,7.697,8.13,7.826,8.549,8.871,8.896,7.705,8.672,8.121],"script":[5.065,5.276,5.144,5.78,4.976,6.083,5.57,5.488,5.548,5.423,6.38,5.774,5.286,5.778,5.281,5.105,5.564,5.294,5.585,5.538,5.647,5.716,5.93,5.789,5.833],"paint":[2.421,2.109,2.985,1.359,2.778,2.18,1.665,1.123,1.856,2.655,2.345,1.274,2.049,1.024,2.3,1.591,2.012,2.613,2.1,1.177,2.711,1.899,1.659,2.131,1.464]}},{"framework":"riot-v9.1.4-keyed","benchmark":"05_swap1k","values":{"total":[24.356,24.096,25.116,25.348,24.867,23.8,24.98,24.671,24.564,24.116,23.351,23.489,23.937,23.902,24.32],"script":[5.251,5.934,5.813,6.001,5.894,5.359,5.373,5.612,5.827,5.884,5.191,5.036,5.098,5.772,5.298],"paint":[17.582,16.727,17.454,18.106,17.612,17.31,18.397,18.392,17.668,16.753,16.632,17.482,17.501,17.045,18.059]}},{"framework":"riot-v9.1.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.772,18.36,18.67,18.906,19.403,18.962,18.395,18.69,18.385,18.882,18.351,18.989,18.589,19.011,19.614],"script":[2.744,2.992,2.634,3.034,3.09,2.9,2.952,3.333,2.882,2.858,2.857,3.073,3.129,3.349,2.904],"paint":[14.91,14.596,15.232,15.06,15.533,15.236,14.502,14.607,14.388,15.226,14.757,14.843,14.48,14.546,15.8]}},{"framework":"riot-v9.1.4-keyed","benchmark":"07_create10k","values":{"total":[473.615,475.594,473.446,477.434,477.054,473.013,470.772,470.266,476.546,477.124,474.334,478.009,474.122,476.224,479.803],"script":[129.263,128.641,127.232,127.794,128.6,127.409,124.233,127.668,127.056,128.698,129.568,129.679,129.032,130.614,131.484],"paint":[337.502,340.143,339.447,342.501,341.619,338.864,339.601,335.801,342.559,341.666,337.946,341.584,338.318,338.87,341.557]}},{"framework":"riot-v9.1.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[55.233,52.883,52.248,53.357,53.679,54.233,54.794,54.046,54.318,54.348,53.038,53.137,55.791,53.041,52.814],"script":[14.001,12.863,12.674,13.015,13.194,14.038,13.892,13.509,13.266,13.833,13.301,13.266,14.137,13.055,13.004],"paint":[40.269,39.123,38.66,39.441,39.561,39.303,40.005,39.582,40.111,39.609,38.802,38.98,40.769,39.1,38.946]}},{"framework":"riot-v9.1.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[23.752,23.516,22.666,22.572,23.742,22.237,21.782,23.13,21.443,23.985,23.027,23.171,23.67,23.782,23.111],"script":[21.993,21.522,20.391,21.237,21.232,20.513,19.636,21.578,19.615,21.748,21.076,22.06,21.278,21.941,21.518],"paint":[1.218,1.9,1.878,0.914,2.367,0.769,1.483,1.449,1.588,1.204,0.416,0.376,2.259,0.911,0.857]}},{"framework":"riot-v9.1.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5333786010742188]}},{"framework":"riot-v9.1.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.640810012817383]}},{"framework":"riot-v9.1.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6518640518188477]}},{"framework":"riot-v9.1.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9071483612060547]}},{"framework":"riot-v9.1.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.68080711364746]}},{"framework":"riot-v9.1.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.205078125]}},{"framework":"riot-v9.1.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3544921875]}},{"framework":"riot-v9.1.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81]}},{"framework":"s2-v1.0.17-keyed","benchmark":"01_run1k","values":{"total":[45.477,45.214,44.033,46.444,44.531,44.204,44.821,44.212,44.246,46.007,44.046,45.046,47.01,45.617,44.818],"script":[10.584,10.007,9.911,10.916,10.019,9.982,10.569,10.405,10.631,10.378,9.718,10.25,10.151,10.848,10.154],"paint":[34.424,34.761,33.686,35.102,34.074,33.784,33.809,33.293,33.204,35.21,33.903,34.365,36.4,34.344,34.239]}},{"framework":"s2-v1.0.17-keyed","benchmark":"02_replace1k","values":{"total":[51.624,51.431,52.968,51.847,51.073,50.809,51.258,50.73,53.349,52.008,53.474,53.32,51.237,51.599,52.536],"script":[14.449,14.279,14.903,14.221,14.155,14.15,14.26,14.352,14.867,14.323,15.349,14.827,14.346,14.924,14.868],"paint":[36.681,36.69,37.554,37.161,36.465,36.201,36.554,35.923,37.971,37.186,37.62,38.034,36.411,36.167,37.196]}},{"framework":"s2-v1.0.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.399,17.086,17.571,17.167,18.288,18.357,18.228,16.646,18.144,18.075,16.902,18.022,16.986,17.85,17.59],"script":[1.876,1.068,1.721,1.533,0.981,1.796,0.977,1.402,1.943,1.79,1.619,1.28,1.478,1.78,1.301],"paint":[14.524,14.693,14.631,14.12,15.956,15.294,15.686,14.089,14.451,15.043,14.349,14.571,14.303,14.487,14.743]}},{"framework":"s2-v1.0.17-keyed","benchmark":"04_select1k","values":{"total":[4.375,3.013,3.483,2.961,3.012,3.774,2.248,4.181,3.366,2.522,2.991,2.73,2.546,3.073,2.192,3.337,2.677,2.098,3.815,2.34,2.626,2.597,2.542,2.942,2.221],"script":[0.365,0.878,0.053,0.054,0.053,0.049,0.049,0.045,0.76,0.632,0.046,0.053,0.051,0.535,0.435,0.048,0.771,0.056,0.049,0.05,0.048,0.256,0.05,0.047,0.05],"paint":[1.848,2.028,2.283,2.583,2.515,1.89,1.764,1.998,2.504,1.417,2.838,2.577,2.389,1.884,1.653,3.163,1.184,1.075,2.542,2.17,2.214,2.235,1.52,2.788,2.066]}},{"framework":"s2-v1.0.17-keyed","benchmark":"05_swap1k","values":{"total":[18.345,20.001,19.52,18.784,19.682,18.793,18.148,18.256,19.336,19.023,19.389,18.855,20.196,19.244,19.437],"script":[0.132,0.86,0.826,0.609,0.901,0.13,0.659,0.127,0.738,0.12,0.857,0.554,0.818,0.117,0.773],"paint":[16.163,16.967,17.373,15.37,17.444,17.114,15.909,17.131,17.645,17.045,17.119,16.332,17.667,17.299,17.108]}},{"framework":"s2-v1.0.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.373,15.204,15.683,15.504,15.087,14.979,15.74,15.583,15.329,15.415,15.13,15.429,15.13,15.372,15.542],"script":[0.092,0.09,0.202,0.139,0.086,0.091,0.414,0.144,0.092,0.099,0.089,0.09,0.099,0.27,0.108],"paint":[14.203,14.466,14.662,14.669,13.954,14.195,14.626,14.718,14.543,14.631,14.003,13.951,13.888,14.372,15.016]}},{"framework":"s2-v1.0.17-keyed","benchmark":"07_create10k","values":{"total":[471.947,463.481,458.039,465.923,462.669,459.852,469.884,462.428,460.2,464.226,462.055,458.815,462.389,461.73,465.206],"script":[116.092,114.611,111.221,118.098,114.062,112.312,115.651,112.153,111.855,112.87,111.843,113.005,112.847,116.422,116.464],"paint":[348.814,341.855,339.821,340.962,341.814,340.785,347.46,343.512,341.584,344.455,343.384,339.049,342.767,338.396,342.01]}},{"framework":"s2-v1.0.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.394,50.81,52.322,51.86,50.108,51.352,52.617,51.77,51.804,51.817,51.58,52.736,51.575,52.897,51.913],"script":[12.088,10.835,10.987,11.224,10.702,10.967,11.99,10.895,11.961,11.859,10.79,11.932,11.992,11.794,11.793],"paint":[39.329,39.116,40.423,39.701,38.495,39.453,39.717,39.913,38.967,39.049,39.881,39.846,38.674,40.17,39.209]}},{"framework":"s2-v1.0.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.621,18.456,17.828,20.185,18.341,18.857,18.454,18.964,18.069,18.728,17.66,18.897,17.191,17.111,19.026],"script":[15.498,16.384,15.626,17.732,16.718,17.034,16.479,17.049,16.366,16.254,16.118,16.27,15.762,15.685,16.835],"paint":[1.515,1.977,1.2,2.354,0.982,1.681,1.716,1.054,0.795,1.465,1.436,1.85,1.339,1.311,2.096]}},{"framework":"s2-v1.0.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5664300918579102]}},{"framework":"s2-v1.0.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3038434982299805]}},{"framework":"s2-v1.0.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.323984146118164]}},{"framework":"s2-v1.0.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0907831192016602]}},{"framework":"s2-v1.0.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[25.861918449401855]}},{"framework":"s2-v1.0.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[73.3544921875]}},{"framework":"s2-v1.0.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.75]}},{"framework":"s2-v1.0.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[129.9]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"01_run1k","values":{"total":[45.992,44.58,44.705,45.858,46.518,44.746,45.573,44.816,46.17,44.998,44.244,45.373,45.878,45.049,45.926],"script":[11.931,10.656,10.781,11.281,11.824,10.893,11.902,11.14,11.399,11.253,10.689,11.583,11.831,11.263,11.639],"paint":[33.625,33.473,33.471,34.185,34.272,33.406,33.242,33.262,34.333,33.309,33.112,33.382,33.638,33.346,33.824]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"02_replace1k","values":{"total":[54.372,52.743,53.096,52.358,52.05,53.07,52.074,51.637,52.402,51.728,51.527,51.434,52.751,52.114,52.311],"script":[16.931,16.508,17.22,16.837,16.463,17.057,16.403,16.101,16.931,16.294,16.259,16.129,17.029,16.649,16.383],"paint":[36.929,35.77,35.403,35.066,35.125,35.536,35.239,35.087,35.001,34.984,34.793,34.844,35.237,35.012,35.493]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.183,18.814,20.82,19.228,21.259,19.043,19.429,19.754,18.988,19.728,19.646,20.231,20.186,19.646,18.728],"script":[3.42,3.549,3.922,3.385,4.048,3.114,3.578,3.36,2.918,3.685,3.432,3.316,3.862,3.918,3.675],"paint":[13.983,13.561,15.903,13.869,16.118,14.851,13.887,14.263,14.781,14.211,14.465,15.707,14.698,14.737,13.747]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"04_select1k","values":{"total":[4.106,4.184,4.322,4.5,5.388,4.59,5.322,4.425,4.45,4.119,4.853,4.102,4.28,4.808,4.829,4.545,3.902,4.604,4.371,5.032,3.849,4.582,4.339,4.198,4.025],"script":[1.89,1.841,1.622,2.081,1.87,2.067,1.702,1.882,1.747,1.995,1.381,1.403,2.066,1.849,2.063,2.276,1.39,1.837,2.091,2.168,1.788,1.933,1.726,1.508,1.62],"paint":[1.657,2.235,2.053,2.317,1.309,1.453,2.409,1.874,1.897,1.986,3.117,2.581,1.487,2.837,1.483,2.11,1.834,2.023,2.176,2.743,1.954,2.163,2.455,1.62,1.581]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"05_swap1k","values":{"total":[20.341,21.189,20.477,20.538,20.932,21.079,21.098,22.106,21.166,21.946,21.085,21.669,20.145,20.192,23.001],"script":[1.805,2.347,2.006,1.565,1.811,2.054,1.747,2.483,2.019,2.121,2.455,2.063,1.884,1.815,2.035],"paint":[17.618,17.728,17.174,17.675,17.784,17.71,17.307,18.637,17.645,18.219,16.994,18.172,16.524,16.5,19.268]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.212,16.13,16.094,16.012,15.918,15.951,15.875,16.199,15.89,15.707,16.324,16.54,16.086,16.221,16.063],"script":[0.932,0.718,0.665,0.812,1.001,0.988,0.678,0.986,0.67,0.678,0.997,1.02,0.701,0.817,0.702],"paint":[14.513,14.582,14.377,14.418,14.111,13.906,14.445,14.535,14.455,14.208,14.554,14.989,14.585,14.731,14.626]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"07_create10k","values":{"total":[474.187,476.075,478.803,473.318,476.12,473.73,479.969,473.463,479.033,475.379,471.712,478.19,473.138,470.514,477.046],"script":[124.375,120.589,121.405,124.623,121.28,121.949,121.711,125.913,121.162,127.474,116.646,118.655,118.704,125.173,117.703],"paint":[342.311,348.118,350.16,341.304,347.506,344.454,350.813,340.23,350.528,340.578,347.756,352.033,347.174,337.938,352.117]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.23,52.812,51.221,52.728,54.126,52.041,53.515,52.595,52.435,53.274,52.612,52.376,53.401,52.573,51.278],"script":[11.67,12.865,11.579,12.399,12.766,11.603,12.607,11.896,12.267,11.887,12.408,12.03,12.415,11.64,11.529],"paint":[38.592,39.032,38.703,39.387,40.378,39.526,39.971,39.769,39.177,40.475,39.304,39.431,39.88,40.016,38.821]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.516,23.459,24.796,23.46,22.014,22.31,21.086,21.674,21.856,21.407,23.101,23.75,23.525,22.992,23.091],"script":[22.627,21.5,23.274,21.966,19.926,20.67,19.184,19.761,19.141,19.776,21.045,21.975,21.445,21.265,20.938],"paint":[0.93,1.253,1.409,1.392,1.158,1.54,1.806,1.814,1.368,0.725,1.963,0.809,1.967,0.717,2.047]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.838836669921875]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.991396903991699]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.111337661743164]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1895809173583984]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[41.20985221862793]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[76.447265625]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.0400390625]}},{"framework":"san-composition-v3.12.2 + 1.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[123.1]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"01_run1k","values":{"total":[41.43,39.066,39.696,42.655,40.883,40.565,40.661,39.857,39.545,41.34,40.047,41.319,40.705,41.317,41.343],"script":[7.691,7.046,7.14,7.057,7.916,7.697,7.929,7.108,7.103,7.795,7.135,7.806,7.695,8.152,7.953],"paint":[33.547,31.861,32.378,34.74,32.787,32.677,32.553,31.908,32.279,33.354,32.734,33.331,32.84,32.994,33.18]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"02_replace1k","values":{"total":[47.677,47.015,46.298,46.583,49.137,46.834,47.258,46.527,46.185,45.795,47.305,47.631,46.942,47.926,46.374],"script":[12.993,12.463,12.56,12.35,12.961,12.68,13.055,12.148,12.366,12.252,12.541,12.558,12.47,12.743,12.535],"paint":[34.507,34.365,33.57,33.95,36.015,33.975,34.03,34.105,33.648,33.37,34.599,34.895,34.16,34.994,33.655]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.893,22.216,22.167,18.446,20.126,43.748,40.144,19.991,21.588,42.368,23.601,22.256,18.685,21.487,18.41],"script":[3.717,4.909,4.824,4.355,4.288,3.739,3.25,4.25,3.921,4.314,4.397,4.324,4.262,4.807,3.934],"paint":[13.486,15.856,16.459,13.97,13.941,15.272,14.99,13.894,17.141,16.228,15.94,16.034,13.455,15.501,13.307]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"04_select1k","values":{"total":[8.825,5.818,8.777,10.165,8.558,12.998,10.359,8.269,4.868,17.077,9.715,14.626,7.127,6.82,10.082,5.242,6.984,4.659,8.849,14.116,7.262,10.225,7.071,10.035,7.068],"script":[2.182,2.424,3.087,3.456,2.623,3.635,2.549,2.318,1.287,2.596,2.483,2.956,3.694,1.812,2.339,2.693,3.397,2.248,2.697,2.497,2.854,3.419,2.407,1.651,2.63],"paint":[4.002,3.183,3.739,3.343,4.159,4.288,3.623,3.196,1.354,4.531,2.658,4.257,2.454,3.803,3.956,1.614,3.687,1.746,3.323,3.574,3.934,4.399,3.622,3.68,2.643]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"05_swap1k","values":{"total":[43.426,21.789,21.707,21.748,40.357,39.992,21.238,39.777,20.314,20.501,39.189,19.696,22.468,43.647,40.244],"script":[1.692,1.445,2.876,2.21,1.233,2.743,2.299,2.692,2.485,2.479,1.868,2.798,2.501,2.013,1.954],"paint":[19.867,15.416,16.608,17.205,16.026,16.091,17.315,16.758,16.911,17.735,16.946,15.893,17.843,18.658,16.762]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.028,17.933,18.553,16.985,16.533,16.124,16.044,15.463,17.43,16.017,16.086,15.462,17.859,16.318,16.436],"script":[1.299,1.217,1.249,1.229,1.199,1.204,1.052,1.262,1.059,1.209,1.202,1.201,1.272,1.172,1.184],"paint":[14.699,15.242,16.08,14.574,14.081,14.014,13.769,13.453,14.852,13.742,13.114,13.853,15.112,14.234,14.807]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"07_create10k","values":{"total":[420.351,416.537,422.528,415.904,420.126,415.658,424.254,417.813,421.342,418.369,423.222,419.979,421.203,416.647,417.203],"script":[86.113,83.695,85.323,86.081,84.057,85.283,85.874,84.464,86.226,84.235,88.229,85.279,86.021,84.1,84.418],"paint":[332.015,330.744,335.079,327.644,333.533,328.255,336.212,331.148,332.972,332.009,332.792,332.45,333.054,330.415,330.616]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.099,46.454,45.676,44.813,47.136,47.058,47.093,46.418,47.922,45.978,46.78,46.43,45.793,46.697,64.611],"script":[8.317,7.774,7.613,7.751,8.54,8.537,8.596,7.766,8.269,8.036,8.624,7.856,7.694,8.329,7.75],"paint":[38.425,38.339,37.781,36.795,38.277,38.243,38.213,38.36,39.38,37.669,37.814,38.089,37.778,38.045,39.132]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.608,17.213,16.922,15.768,20.396,19.684,21.019,16.271,18.534,18.906,20.714,15.968,18.851,20.473,20.076],"script":[15.225,15.076,14.806,14.606,15.41,16.01,17.088,14.629,14.979,14.545,16.779,14.547,14.513,15.773,16.116],"paint":[3.372,2.05,2.018,1.068,3.216,2.353,2.576,1.541,1.93,2.896,3.346,1.317,4.101,4.425,2.566]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8736782073974609]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5236940383911133]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6472854614257812]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1404657363891602]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.184914588928223]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[86.3759765625]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.6728515625]}},{"framework":"san-store-v3.12.2 + 2.2.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[136.2]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"01_run1k","values":{"total":[78.123,75.551,75.921,74.888,79.07,75.762,78.237,76.38,74.482,79.689,78.864,79.727,80.016,75.322,78.149],"script":[42.338,39.849,39.911,39.037,43.509,39.947,42.503,40.588,39.218,43.667,42.36,43.521,43.915,39.746,42.639],"paint":[35.361,35.273,35.585,35.423,35.125,35.357,35.307,35.354,34.837,35.606,36.076,35.778,35.647,35.153,35.104]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"02_replace1k","values":{"total":[99.773,99.466,98.032,102.565,102.051,102.623,102.187,98.951,102.334,98.716,100.249,99.047,98.894,97.037,100.309],"script":[63.861,62.756,62.038,65.909,66.041,66.662,65.824,62.989,65.831,62.663,63.858,63.045,63.037,61.202,63.569],"paint":[35.477,36.259,35.563,36.225,35.57,35.533,35.935,35.525,36.067,35.613,35.96,35.524,35.43,35.391,36.305]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.776,25.108,25.252,25.451,25.586,25.314,26.774,25.792,24.714,25.182,24.614,25.536,24.864,26.872,24.685],"script":[8.768,9.126,9.28,9.314,9.454,8.903,9.075,9.006,8.792,8.674,9.099,8.734,9.813,9.873,9.022],"paint":[14.687,15.286,14.645,14.588,14.138,15.602,16.333,15.789,14.55,14.873,14.596,15.529,13.755,15.507,14.296]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"04_select1k","values":{"total":[11.225,11.121,9.806,9.652,9.924,9.825,10.032,9.941,9.836,10.275,9.304,10.034,9.957,10.144,9.802,9.877,10.097,10.122,9.041,10.196,10.79,10.056,9.365,9.932,9.607],"script":[8.194,7.699,7.394,6.6,7.291,7.126,6.754,6.908,7.331,7.576,6.491,7.699,7.195,7.664,7.078,7.769,7.544,7.571,6.993,7.033,7.599,7.827,6.708,7.123,7.369],"paint":[1.633,2.827,1.486,2.913,2.496,1.412,3.145,2.34,2.039,2.128,2.347,2.195,2.629,1.593,1.749,1.241,1.745,1.391,1.175,2.075,3.027,1.431,2.523,1.941,1.64]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"05_swap1k","values":{"total":[49.935,48.889,50.49,49.752,49.474,49.258,48.074,48.978,48.225,50.226,48.564,48.238,49.289,48.675,50.554],"script":[29.924,29.904,30.261,30.363,29.831,29.251,29.688,30.097,29.286,30.643,29.805,30.172,29.447,29.621,30.525],"paint":[18.222,17.222,19.063,18.454,18.321,18.174,16.796,17.237,18.209,18.591,17.137,15.626,18.498,18.35,17.697]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.932,19.935,18.964,18.957,18.82,19.073,18.513,19.06,18.978,18.468,18.747,19.535,19.122,18.768,18.997],"script":[3.6,3.41,3.585,3.585,3.614,3.604,3.522,3.603,3.597,3.576,3.61,3.659,3.593,3.605,3.612],"paint":[14.591,15.263,14.334,14.619,14.468,14.489,14.043,14.674,14.657,14.158,14.108,14.92,14.787,14.436,14.686]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"07_create10k","values":{"total":[968.534,955.047,980.719,949.514,969.919,972.798,958.738,966.162,955.943,961.78,963.683,963.888,967.29,953.395,973.519],"script":[606.151,594.295,615.479,588.883,606.344,606.385,590.483,599.47,591.278,598.989,599.553,594.46,597.864,591.681,609.974],"paint":[355.661,354.153,358.461,353.983,356.981,359.489,361.349,360.018,358.059,356.112,357.458,361.886,362.728,350.853,356.809]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[95.188,96.19,95.513,96.827,95.202,97.431,97.37,95.941,94.9,95.236,94.48,95.805,97.811,96.918,94.839],"script":[56.9,57.311,56.734,58.411,57.151,55.301,58.023,57.774,55.971,56.804,57.929,57.405,55.832,58.509,56.41],"paint":[37.347,37.962,37.843,37.499,37.131,41.174,38.417,37.245,37.986,37.523,35.673,37.499,41.028,37.489,37.523]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[44.793,45.659,42.892,39.851,43.234,42.058,42.396,43.689,41.298,44.098,43.332,44.806,46.411,41.891,44.155],"script":[42.878,43.251,40.714,38.206,41.218,39.951,40.745,41.314,39.089,41.548,40.961,42.369,44.168,39.7,42.23],"paint":[1.806,1.888,2.073,1.201,1.147,2.002,1.556,2.24,2.109,2.014,0.741,1.866,1.357,2.09,1.824]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6824398040771484]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.564094543457031]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[7.88668155670166]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.553736686706543]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[42.07828235626221]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[249.458984375]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[75.6826171875]}},{"framework":"sauron-v0.57.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[473.8]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"01_run1k","values":{"total":[42.998,41.663,41.112,43.881,42.76,41.651,42.433,42.717,42.23,41.05,42.599,41.339,41.186,40.88,42.734],"script":[7.985,7.488,7.195,7.564,8.071,7.288,7.832,8.037,7.973,7.258,7.911,7.128,7.148,7.109,7.662],"paint":[34.547,33.712,33.448,35.848,34.24,33.927,34.155,34.239,33.815,33.325,34.251,33.779,33.58,33.335,34.651]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"02_replace1k","values":{"total":[46.914,46.026,45.497,46.186,45.381,45.753,46.619,47.676,44.619,47.325,46.776,46.666,48.258,47.273,45.139],"script":[10.025,9.729,9.641,9.538,9.455,9.595,10.134,10.269,9.424,10.229,10.287,10.688,10.662,10.464,9.659],"paint":[36.427,35.848,35.409,36.169,35.47,35.7,35.994,36.944,34.74,36.643,36.052,35.492,37.148,36.325,35.015]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.046,17.153,19.953,20.63,20.646,18.408,17.344,18.229,32.272000000000006,17.427,34.616,21.885,16.452,32.295,18.743],"script":[2.624,1.803,1.018,1.369,2.48,1.566,1.962,2.109,1.134,1.793,1.995,2.521,1.916,1.217,1.475],"paint":[13.891,14.916,15.666,15.573,14.297,13.916,15.262,15.254,15.096,14.706,16.554,15.968,13.735,14.154,14.895]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"04_select1k","values":{"total":[3.85,4.304,3.789,4.513,3.856,3.979,4.136,3.957,4.377,3.587,4.575,3.892,3.69,3.765,5.525,3.711,4.082,4.07,4.038,4.352,4.649,4.131,4.487,3.889,4.132],"script":[1.374,1.28,0.953,1.445,1.186,1.71,1.242,1.306,2.063,1.279,1.531,1.714,1.167,1.004,1.525,1.086,1.516,1.364,1.596,1.574,1.185,1.678,1.403,1.536,1.913],"paint":[2.351,2.799,2.716,1.929,1.941,2.166,2.151,2.198,1.546,2.211,0.984,1.431,2.086,2.475,2.235,2.076,2.458,1.877,2.309,1.435,0.775,1.549,2.074,1.469,2.106]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"05_swap1k","values":{"total":[19.505,20.502,19.471,20.905,19.75,20.62,20.274,20.099,20.996,21.496,19.604,19.908,20.152,20.296,19.749],"script":[0.941,1.525,0.207,0.851,0.885,1.299,1.502,0.765,1.149,1.567,0.559,1.157,0.945,1.177,0.828],"paint":[16.433,17.676,18.287,18.896,17.39,17.898,17.549,18.199,18.057,18.821,17.666,17.231,17.359,17.718,15.819]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.844,15.868,16.68,16.466,16.457,16.205,16.235,15.88,16.012,15.782,16.035,17.263,15.953,16.05,16.148],"script":[0.474,0.566,0.609,0.562,0.556,0.599,0.574,0.62,0.28,0.379,0.566,0.614,0.584,0.585,0.602],"paint":[14.352,14.563,15.036,15.135,15.104,14.848,14.38,14.572,14.631,14.714,14.75,15.508,14.552,14.237,14.561]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"07_create10k","values":{"total":[436.196,434.251,435.195,434.36,435.849,437.512,436.23,430.599,436.723,437.545,435.661,438.082,438.85,435.453,431.769],"script":[86.737,86.042,86.535,86.471,87.076,87.742,87.47,86.692,89.173,88.229,88.08,90.126,89.374,87.306,87.876],"paint":[342.025,340.572,341.168,340.574,341.277,342.458,341.345,336.678,340.21,341.803,340.108,340.666,342.145,340.563,336.527]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.18,47.229,46.253,46.396,45.915,46.833,47.612,48.418,48.425,46.213,48.3,48.668,46.579,46.924,45.707],"script":[6.728,6.781,6.631,6.588,6.546,6.59,7.137,7.12,7.243,6.579,7.142,7.179,6.634,6.65,6.663],"paint":[39.552,39.533,38.746,38.932,38.468,39.347,39.534,40.411,40.305,38.711,40.234,40.6,38.995,39.359,38.107]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.137,14.281,13.955,14.392,14.452,14.312,13.949,15.124,14.291,13.811,14.142,13.588,14.326,14.404,13.506],"script":[13.832,12.717,12.166,12.494,12.395,11.909,12.012,12.715,12.295,11.938,12.075,12.226,11.89,12.021,11.626],"paint":[2.166,0.939,1.682,0.391,1.95,2.023,1.84,2.284,1.125,1.78,1.059,0.905,2.21,1.458,1.049]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8361473083496094]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.917496681213379]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.059771537780762]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.250258445739746]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.43843364715576]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[117.443359375]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.4462890625]}},{"framework":"scarlets-frame-v0.34.6-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[167.6]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"01_run1k","values":{"total":[41.628,42.487,40.069,40.711,42.885,42.032,41.069,41.904,41.051,41.611,40.722,40.431,41.939,41.684,40.338],"script":[7.062,8.097,6.972,7.442,7.867,7.448,7.672,7.506,7.083,7.652,6.986,7.109,7.563,7.606,7.016],"paint":[34.137,33.957,32.677,32.879,34.595,34.157,32.979,33.989,33.589,33.566,33.35,32.881,33.974,33.68,32.906]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"02_replace1k","values":{"total":[44.701,45.76,44.11,44.53,44.89,45.233,45.115,44.747,44.014,44.43,45.1,46.115,45.249,44.228,43.775],"script":[9.522,10.61,9.448,9.648,9.228,10.457,9.679,9.372,9.271,9.458,9.537,9.881,10.45,9.206,9.31],"paint":[34.687,34.688,34.201,34.452,35.21,34.326,35.013,34.921,34.307,34.543,35.114,35.81,34.366,34.585,34.012]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.498,16.403,16.649,18.452,16.191,16.772,16.017,16.5,16.088,17.423,16.433,16.253,16.802,16.555,15.927],"script":[1.228,0.572,0.922,0.936,0.902,0.936,1.25,1.089,1.036,1.642,0.875,1.104,1.117,1.494,0.938],"paint":[14.111,14.493,14.545,15.781,13.614,14.239,13.184,14.14,13.752,14.814,14.119,13.856,13.912,13.18,13.653]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"04_select1k","values":{"total":[4.118,3.303,3.096,3.887,3.112,3.104,3.315,3.171,5.708,4.515,3.09,3.039,2.877,3.005,4.997,3.49,4.424,2.971,2.805,3.626,3.262,2.879,3.221,2.661,2.871],"script":[0.184,0.858,1.012,1.295,0.195,0.933,0.629,1.019,1.483,0.868,0.543,0.531,0.901,0.764,0.929,0.554,1.221,0.651,0.918,1.186,0.19,1.034,1.043,0.202,0.871],"paint":[2.451,2.342,1.619,1.894,2.321,1.372,2.581,1.877,1.909,1.777,1.384,2.395,1.876,1.738,2.498,1.901,1.423,1.551,1.351,2.339,2.959,1.35,1.665,2.21,1.175]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"05_swap1k","values":{"total":[18.63,18.314,18.905,18.702,18.16,19.584,18.727,18.08,18.421,18.683,19.479,19.196,18.626,18.274,17.602],"script":[0.778,0.519,0.25,0.751,0.133,0.127,0.829,0.125,0.143,0.9,0.787,0.117,0.762,0.126,0.129],"paint":[16.541,16.739,17.611,16.455,16.43,18.217,16.536,16.943,16.734,16.469,17.672,17.825,16.412,16.705,15.456]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.005,14.844,14.96,14.857,15.406,14.817,15.539,14.917,15.516,15.162,15.124,15.358,15.416,15.737,14.975],"script":[0.275,0.098,0.289,0.102,0.312,0.106,0.231,0.24,0.12,0.109,0.324,0.422,0.416,0.364,0.189],"paint":[13.819,13.842,13.919,13.996,14.403,14,14.615,13.791,14.678,14.105,14.099,14.523,14.013,14.614,14.069]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"07_create10k","values":{"total":[421.262,417.104,417.936,417.769,420.012,420.224,424.198,418.89,427.169,424.694,419.635,419.384,418.666,423.341,420.615],"script":[81.428,83.476,78.185,81.959,85.601,83.398,82.257,82.287,80.239,85.116,84.846,84.866,83.494,85.571,84.433],"paint":[332.863,327.008,333.099,328.972,327.093,330.213,335.267,329.959,340.064,332.324,328.139,327.884,328.52,331.154,329.602]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.569,46.511,46.731,45.612,45.882,46.718,45.606,46.476,46.941,46.296,46.567,45.942,45.83,48.376,46.811],"script":[7.399,7.141,7.313,7.145,7.218,7.451,7.254,7.183,7.332,7.313,7.358,7.287,7.195,7.438,7.192],"paint":[37.327,38.547,38.585,37.649,37.829,38.405,37.494,38.43,38.748,38.154,38.33,37.827,37.773,40.063,38.76]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.739,14.194,14.381,14.195,14.489,14.38,14.148,14.727,14.553,13.473,13.564,13.846,14.4,14.32,14.026],"script":[11.596,12.516,11.943,12.04,12.517,12.316,12.051,12.361,12.68,11.627,12.234,11.494,12.072,12.447,12.274],"paint":[2.061,1.594,1.994,2.063,1.852,1.965,2.009,2.111,1.777,1.755,1.246,1.345,2.146,1.782,1.031]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.635274887084961]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.6682281494140625]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.796940803527832]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.534296989440918]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.434337615966797]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[170.7578125]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[46.126953125]}},{"framework":"silkenweb-v0.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[269.2]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"01_run1k","values":{"total":[40.957,39.918,39.295,39.607,40.086,40.969,39.758,37.597,37.964,40.663,40.635,38.201,38.273,39.116,40.282],"script":[6.968,6.165,6.228,6.331,6.221,6.35,6.002,6.095,5.974,6.137,6.303,6.05,6.046,6.113,6.9],"paint":[33.57,33.29,32.631,32.847,33.441,34.181,33.323,31.089,31.576,34.092,33.901,31.747,31.811,32.58,32.961]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"02_replace1k","values":{"total":[45.083,44.369,44.591,44.458,44.533,44.893,43.931,44.81,43.593,44.595,44.737,45.152,44.487,45.34,44.848],"script":[8.787,9.106,9.181,9.282,9.047,9.166,8.87,9.138,8.686,9.284,9.09,9.227,9.152,8.981,9.241],"paint":[35.839,34.838,34.969,34.735,35.041,35.296,34.606,35.23,34.457,34.853,35.197,35.474,34.906,35.902,35.134]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.893,16.647,16.007,16.327,16.324,16.658,15.622,17.203,16.612,16.568,16.803,16.533,17.377,17.468,16.93],"script":[1.095,0.918,0.738,1.073,0.89,0.643,0.654,1.128,1.221,0.591,1.148,0.928,0.655,1.417,0.194],"paint":[13.237,13.534,13.963,13.937,13.773,13.988,13.434,14.64,14.681,13.731,14.372,13.793,15.114,14.808,15.136]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"04_select1k","values":{"total":[3.402,2.971,2.769,3.104,2.637,2.985,2.668,3.022,3.029,2.773,3.05,2.524,3.444,2.377,2.385,2.297,2.843,2.948,2.789,2.864,2.512,2.333,3.347,5.189,2.582],"script":[0.072,0.064,0.065,0.76,0.068,0.569,0.068,0.062,0.796,0.766,0.064,0.066,0.737,0.064,0.499,0.073,0.068,0.8,0.77,0.067,0.07,0.065,1.072,0.283,0.069],"paint":[3.237,2.432,1.761,2.237,1.602,2.316,1.785,2.708,2.14,1.904,2.893,2.156,1.624,1.968,0.868,1.231,2.67,1.422,1.907,2.696,2.343,1.525,1.312,1.82,1.603]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"05_swap1k","values":{"total":[19.182,20.196,19.702,20.405,20.436,21.412,19.328,20.266,19.741,19.998,20.294,19.981,20.231,20.521,19.563],"script":[1.065,1.033,2.152,1.248,1.696,2.046,0.87,1.217,1.005,0.644,1.112,1.304,1.484,1.407,1.565],"paint":[15.861,17.794,15.833,17.596,17.441,17.096,16.701,17.61,17.203,18.096,17.352,17.625,17.319,17.332,16.648]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.324,15.712,15.048,15.244,15.715,15.253,15.197,15.878,15.961,15.859,15.655,15.506,15.677,15.073,15.301],"script":[0.186,0.329,0.17,0.44,0.489,0.449,0.184,0.571,0.338,0.49,0.489,0.34,0.492,0.332,0.349],"paint":[14.376,14.623,13.873,14.042,14.494,13.845,14.192,14.545,14.716,14.584,14.354,14.155,14.45,14.01,14.217]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"07_create10k","values":{"total":[423.929,435.528,425.143,424.863,423.571,427.162,425.398,420.984,430.16,426.606,421.954,418.322,412.985,417.874,423.016],"script":[81.022,81.328,80.082,81.768,79.596,81.011,81.416,81.042,82.395,81.102,81.374,80.104,77.118,79.631,80.468],"paint":[336.181,347.481,338.398,336.364,337.337,339.445,337.337,333.112,341.033,338.796,333.848,331.5,329.14,331.577,335.89]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.396,44.239,43.792,46.019,44.973,44.926,45.023,44.727,45.236,44.661,44.736,44.705,45.985,45.938,46.205],"script":[6.351,6.088,6.051,6.539,5.978,6.139,6.206,6.114,6.128,6.088,6.186,6.104,6.532,6.811,6.681],"paint":[39.17,37.036,36.901,38.546,37.98,37.908,37.924,37.722,38.223,37.669,37.674,37.659,38.501,38.249,38.669]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.012,12.305,11.728,11.643,12.3,12.811,11.994,12.591,11.731,11.645,11.853,11.725,11.565,12.43,11.885],"script":[10.194,10.44,9.902,10.52,10.261,10.984,10.56,10.82,10.021,10.236,9.736,9.629,10.118,10.494,9.549],"paint":[1.721,1.781,1.739,0.356,1.081,1.156,1.258,0.875,0.833,0.382,2.022,2.021,1.356,1.832,2.253]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4849967956542969]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.647650718688965]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.645925521850586]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7718515396118164]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.569453239440918]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.44140625]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7568359375]}},{"framework":"sinuous-v0.32.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[48.6]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"01_run1k","values":{"total":[46.111,46.326,50.157,45.703,45.527,46.967,46.852,47.051,46.844,46.501,46.329,45.309,47.921,47.479,47.284],"script":[12.549,11.983,14.199,12.443,12.427,12.269,12.221,12.069,11.925,12.166,12.223,12.375,12.798,13.825,13.412],"paint":[33.126,33.921,35.482,32.837,32.666,34.237,34.202,34.548,34.488,33.913,33.668,32.471,34.648,33.185,33.444]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"02_replace1k","values":{"total":[56.799,54.58,53.849,57.612,53.303,54.515,54.25,54.929,54.982,58.407,56.387,57.112,57.379,54.371,56.672],"script":[20.5,18.237,18.278,21.184,17.682,17.9,17.671,18.322,18.344,21.659,19.861,20.597,20.892,18.173,19.928],"paint":[35.815,35.891,35.082,35.967,35.165,36.163,36.134,36.124,36.15,36.273,36.012,36.079,36.04,35.749,36.264]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.445,20.088,20.65,21.982,20.906,20.888,20.612,20.909,20.175,20.336,21.674,21.097,20.776,20.509,21.58],"script":[5.275,4.392,5.165,5.725,5.06,5.118,4.556,5.142,4.991,4.977,5.512,5.132,4.745,4.66,4.967],"paint":[14.184,14.351,14.149,15.229,12.953,13.764,14.908,14.587,13.117,13.505,13.909,14.529,14.723,13.985,15.495]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"04_select1k","values":{"total":[5.656,5.466,4.952,5.504,5.51,4.823,5.751,5.531,5.583,5.445,5.28,6.105,5.475,5.462,6.577,5.337,6.622,5.261,6.049,5.882,4.815,6.124,5.814,5.424,5.889],"script":[3.146,3.217,2.91,2.881,2.967,2.956,2.973,3.04,3.214,3.185,3.595,3.097,3.237,3.04,3.638,2.852,3.692,2.866,3.326,3.469,2.52,3.365,3.069,2.761,3.551],"paint":[1.773,2.13,1.927,2.152,2.416,1.419,2.264,2.389,2.254,1.281,1.033,2.027,2.124,2.313,1.913,2.372,1.685,1.713,2.627,1.523,1.797,2.13,2.628,2.554,2.229]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"05_swap1k","values":{"total":[20.916,21.533,21.173,22.079,21.529,21.989,21.792,22.235,21.176,21.346,23.194,21.004,21.517,21.366,21.39],"script":[2.981,3.203,3.042,2.864,3.282,3.283,3.049,3.083,3.757,3.027,3.716,3.015,3.278,3.089,2.816],"paint":[16.614,17.315,17.123,17.641,16.5,17.23,17.263,17.519,16.21,17.024,18.096,16.484,17.171,16.45,17.262]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.337,16.706,17.804,17.254,16.932,16.475,17.116,17.132,16.6,16.602,16.894,16.677,16.474,16.728,16.542],"script":[1.668,1.363,1.783,1.612,1.796,1.352,1.327,1.555,1.37,1.342,1.684,1.675,1.374,1.622,1.66],"paint":[14.644,14.314,14.933,14.854,14.404,14.37,14.986,14.888,14.485,14.311,14.466,14.261,14.415,14.363,14.133]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"07_create10k","values":{"total":[494.707,496.445,493.65,490.497,495.949,498.897,493.102,493.106,490.299,491.08,490.827,491.9,490.476,489.249,494.689],"script":[140.769,144.626,144.559,143.569,143.151,145.434,144.078,143.822,140.531,145.848,143.527,142.484,140.638,141.4,144.651],"paint":[346.074,345.033,342.195,340.177,345.664,346.561,342.008,342.369,343.107,338.474,340.514,342.426,343.238,341.004,343.193]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.112,56.296,54.91,57.33,55.765,56.137,55.188,55.713,54.601,57.268,56.468,55.421,55.819,56.324,54.826],"script":[15.663,15.336,15.439,16.343,15.697,15.589,15.469,15.923,15.524,15.939,15.705,16.022,15.687,16.079,15.312],"paint":[39.604,40.028,38.598,40.028,39.104,39.558,38.781,38.907,38.138,40.399,39.579,38.46,39.205,39.342,38.625]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.26,13.211,12.782,12.579,13.853,13.361,13.158,13.191,13.177,13.256,13.6,13.347,13.714,12.975,12.444],"script":[11.015,11.336,10.671,11.452,11.859,10.779,11.562,11.883,10.962,10.658,11.68,11.631,12.023,11.34,10.96],"paint":[2.157,1.675,2.018,0.382,1.899,1.145,0.679,0.535,1.127,2.315,1.758,1.22,1.572,0.72,1.391]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46224308013916016]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.0004663467407227]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.998490333557129]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8954391479492188]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.219494819641113]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[4.5078125]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.8310546875]}},{"framework":"skruv-v0.6.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.5]}},{"framework":"solid-v1.8.0-keyed","benchmark":"01_run1k","values":{"total":[36.673,39.587,36.501,37.033,36.97,36.385,37.442,36.503,37.039,37.133,38.149,36.809,36.752,37.081,37.186],"script":[3.905,4.388,3.913,3.74,3.942,3.821,4.2,3.826,3.78,4.317,4.255,4.015,3.938,3.883,4.321],"paint":[32.375,34.778,32.197,32.877,32.602,32.182,32.856,32.266,32.844,32.419,33.486,32.374,32.397,32.817,32.475]}},{"framework":"solid-v1.8.0-keyed","benchmark":"02_replace1k","values":{"total":[42.31,42.465,41.747,43.442,43.597,43.424,43.327,42.228,42.674,43.753,42.9,41.986,43.262,42.724,42.949],"script":[7.349,7.801,7.595,7.937,7.859,8.07,8.252,7.76,7.469,7.96,7.993,7.392,8.348,8.101,8.06],"paint":[34.489,34.211,33.738,35.081,35.301,34.905,34.643,34.016,34.76,35.34,34.478,34.169,34.494,34.174,34.456]}},{"framework":"solid-v1.8.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.117,16.72,17.001,20.198,16.483,16.58,16.452,16.286,18.771,16.886,16.45,16.721,16.585,16.115,16.254],"script":[0.975,1.168,1.554,1.688,1.247,1.067,1.262,0.945,0.987,1.413,0.61,1.293,0.74,0.981,0.926],"paint":[14.554,14.549,12.646,16.372,13.617,13.465,12.765,13.812,16.285,14.196,13.607,14.33,14.225,13.587,14.072]}},{"framework":"solid-v1.8.0-keyed","benchmark":"04_select1k","values":{"total":[3.025,3.24,4.331,2.675,3.54,6.504,2.403,2.774,4.383,2.557,3.337,3.284,2.585,3.442,2.839,3.56,2.953,4.026,2.56,2.321,3.78,2.894,2.367,2.7,2.855],"script":[0.176,0.566,1.086,0.519,1.064,0.135,0.146,0.129,0.522,0.139,1.044,0.969,0.586,0.596,0.141,1.001,0.144,1.113,1.063,0.144,0.497,0.135,0.15,0.141,0.135],"paint":[2.391,2.572,2.076,2.06,2.278,1.637,2.161,1.92,1.867,2.317,1.668,1.565,1.321,2.357,2.589,2.459,2.485,1.494,1.4,2.076,1.188,1.391,1.841,2.049,2.631]}},{"framework":"solid-v1.8.0-keyed","benchmark":"05_swap1k","values":{"total":[21.225,19.478,20.138,19.028,19.655,19.39,19.809,19.097,18.876,19.246,18.495,19.095,19.055,20.207,19.983],"script":[1.291,1.487,1.831,0.981,1.723,1.022,2.108,1.045,1.075,1.131,1.456,1.235,1.186,1.75,1.782],"paint":[18.812,16.926,16.34,16.519,16.442,16.483,16.237,16.792,16.15,16.364,15.561,16.34,16.574,16.65,16.834]}},{"framework":"solid-v1.8.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.364,15.259,15.469,15.263,15.339,15.267,15.159,14.998,15.937,15.101,15.694,15.021,15.051,15.81,15.519],"script":[0.554,0.562,0.417,0.631,0.547,0.588,0.552,0.568,0.561,0.445,0.575,0.55,0.538,0.563,0.43],"paint":[14.099,14.322,13.919,13.915,14.049,13.95,13.473,13.717,14.508,13.912,14.523,13.526,13.807,14.518,14.415]}},{"framework":"solid-v1.8.0-keyed","benchmark":"07_create10k","values":{"total":[387.151,382.369,389.301,382.118,391.102,383.166,385.428,379.685,379.836,378.415,381.688,386.398,381.17,380.981,381.084],"script":[44.132,43.646,44.152,43.653,43.952,43.663,43.618,42.958,42.799,42.383,43.029,43.939,42.746,42.786,44.042],"paint":[336.281,332.104,338.272,331.699,339.413,332.77,335.022,329.951,330.369,329.366,332.019,335.761,331.76,331.605,330.334]}},{"framework":"solid-v1.8.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.746,43.75,44.41,43.7,42.786,44.166,42.739,42.973,44.124,43.397,45.214,44.138,45.021,43.957,43.801],"script":[4.412,4.903,4.553,4.897,4.384,4.901,4.482,4.539,4.883,4.805,4.386,4.827,4.459,4.851,4.884],"paint":[37.484,37.991,38.996,37.956,37.505,38.368,37.413,37.558,38.394,37.743,39.963,38.445,39.714,38.282,38.055]}},{"framework":"solid-v1.8.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.737,13.708,13.81,14.143,13.366,13.758,14.184,13.849,14.012,14.217,13.925,13.517,14.206,13.256,14.391],"script":[11.902,11.844,12.177,11.902,11.13,12.084,12.181,11.968,11.655,11.928,11.361,11.626,11.715,11.932,12.305],"paint":[1.035,1.051,1.541,1.797,2.149,1.573,1.644,1.79,2.268,2.187,2.008,1.084,2.067,0.358,1.977]}},{"framework":"solid-v1.8.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5649776458740234]}},{"framework":"solid-v1.8.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.565220832824707]}},{"framework":"solid-v1.8.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5857162475585938]}},{"framework":"solid-v1.8.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.637751579284668]}},{"framework":"solid-v1.8.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.447714805603027]}},{"framework":"solid-v1.8.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.7734375]}},{"framework":"solid-v1.8.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.5400390625]}},{"framework":"solid-v1.8.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"01_run1k","values":{"total":[39.184,39.235,38.696,44.609,39.673,40.367,39.47,40.624,41.915,40.631,40.622,40.187,37.672,39.607,42.044],"script":[6.538,6.345,5.907,6.363,6.433,6.58,6.226,6.852,6.64,6.483,6.696,6.595,6.028,6.441,6.669],"paint":[32.209,32.47,32.367,37.79,32.826,33.303,32.846,33.329,34.804,33.702,33.471,33.142,31.212,32.737,34.957]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"02_replace1k","values":{"total":[46.602,46.994,46.736,46.588,44.297,43.55,44.86,42.654,44.801,45.022,43.363,44.527,44.661,44.389,44.159],"script":[10.328,9.872,10.271,10.023,9.62,9.868,9.624,9.651,10.077,10.086,9.326,9.953,10.006,9.695,9.872],"paint":[35.752,36.616,35.94,36.076,34.217,33.269,34.811,32.555,34.264,34.491,33.607,34.08,34.228,34.244,33.849]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.935,16.739,15.843,17.847,15.941,16.519,17.563,17.717,17.824,16.846,16.467,16.826,16.104,16.722,17.313],"script":[2.278,1.704,1.618,2.291,1.343,1.471,1.625,2.313,1.764,1.04,1.029,0.946,1.646,1.548,0.988],"paint":[14.271,14.109,13.262,14.252,13.507,14.34,14.922,14.104,14.691,14.272,14.104,14.759,13.163,12.978,15.38]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"04_select1k","values":{"total":[3.205,3.716,3.104,3.307,4.103,3.231,2.98,3.142,4.169,2.751,3.298,3.577,4.691,3.25,3.63,3.527,2.723,2.43,4.007,2.738,2.728,4.926,4.673,3.342,3.354],"script":[0.794,1.436,0.784,1.197,1.017,0.163,0.536,0.147,0.681,1.071,1.11,0.851,0.915,0.555,0.911,0.878,0.246,0.146,1.386,0.391,0.277,0.941,0.726,0.691,0.824],"paint":[2.299,1.782,2.215,1.522,2.898,1.909,1.607,2.884,1.569,1.586,1.564,1.477,1.862,1.761,2.421,1.358,1.967,2.101,1.727,2.243,2.347,2.682,1.971,2.074,1.604]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"05_swap1k","values":{"total":[22.699,22.152,21.342,22.806,22.166,21.574,21.253,21.842,21.866,21.224,20.837,21.44,22.329,20.581,21.226],"script":[3.14,2.83,2.983,3.18,3.589,3.671,3.119,3.396,3.448,3.235,3.47,3.513,3.663,2.784,3.433],"paint":[18.42,18.134,17.166,18.536,17.246,16.831,16.865,16.825,16.313,16.864,16.104,16.608,17.366,16.478,15.953]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.891,17.124,17.341,17.653,17.082,17.101,16.651,16.795,16.935,17.112,16.887,17.196,16.6,18.215,16.612],"script":[2.007,2.021,2.274,2.326,2.305,2.337,2.017,2.126,2.26,2.317,2.24,2.341,1.989,2.282,2.016],"paint":[14.954,14.409,14.142,14.604,14.048,14.032,13.943,13.943,13.971,14.102,13.933,14.3,13.62,14.635,13.899]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"07_create10k","values":{"total":[391.889,398.439,384.872,397.379,396.575,399.224,390.029,395.808,396.613,394.381,391.562,390.65,392.928,393.113,389.864],"script":[61.92,61.079,59.954,63.509,62.607,63.618,60.628,60.528,60.809,61.998,60.442,59.479,59.637,58.715,59.238],"paint":[320.666,327.657,318.042,324.52,324.653,326.456,320.075,325.863,326.609,323.17,324.445,322.064,324,325.178,321.488]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.217,45.326,44.888,47.004,45.133,44.941,45.965,45.035,44.929,44.424,46.251,44.793,44.878,44.449,45.32],"script":[6.963,7.335,7.107,7.342,7.449,7.354,7.026,7.238,7.124,7.216,7.287,7.361,7.366,6.998,7.321],"paint":[36.325,37.18,36.854,38.747,36.761,36.735,38.029,36.969,36.936,36.287,38.092,36.619,36.644,36.529,37.114]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.515,13.302,13.506,14.35,13.892,13.766,14.301,14.132,13.71,14.358,13.991,14.249,14.13,13.992,14.481],"script":[12.405,12.229,11.616,12.365,11.947,12.492,12.574,11.953,11.695,12.116,12.329,12.358,12.382,12.265,12.56],"paint":[1.024,0.349,1.599,1.883,1.859,1.185,1.28,1.14,1.923,1.185,1.306,1.097,1.659,1.632,1.834]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.48853206634521484]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7884883880615234]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8407726287841797]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9144124984741211]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.52719497680664]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.6611328125]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.46484375]}},{"framework":"solid-store-v1.5.4-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.4]}},{"framework":"spair-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[41.121,41.65,41.61,42.149,43.594,42.676,41.908,42.606,42.86,42.421,43.796,42.236,42.188,41.991,42.43],"script":[8.598,8.423,8.682,8.74,9.133,9.19,8.739,8.737,9.462,8.503,8.768,8.98,8.812,9.119,8.809],"paint":[32.108,32.782,32.5,33.026,34.033,33.087,32.751,33.422,33.007,33.478,34.635,32.844,32.93,32.431,33.193]}},{"framework":"spair-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[49.198,48.463,48.552,48.672,49.197,47.831,49.824,48.927,50.564,50.09,48.086,48.713,49.566,49.686,48.745],"script":[12.593,12.603,12.544,12.556,13.207,12.581,13.295,12.579,13.949,12.538,12.722,12.784,12.885,13.297,12.793],"paint":[36.181,35.4,35.557,35.654,35.534,34.756,36.069,35.91,36.129,37.042,34.883,35.492,36.223,35.963,35.455]}},{"framework":"spair-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.561,16.759,16.886,17.484,17.174,17.23,17.044,18.34,16.68,17.583,16.468,17.958,17.719,18.284,17.492],"script":[1.663,1.458,1.106,1.846,1.972,1.75,2.114,2.36,1.122,2.241,1.469,2.362,1.638,1.568,1.564],"paint":[13.839,14.323,14.375,13.876,12.876,14.182,13.932,13.886,14.285,13.93,13.825,14.225,13.563,15.563,14.949]}},{"framework":"spair-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[5.067,4.268,4.243,3.485,4.512,3.774,4.613,5.179,4.748,3.196,3.595,3.825,6.888,3.926,3.648,3.736,3.872,4.663,4.223,4.356,6.029,4.132,3.047,3.492,5.682],"script":[1.333,2.022,1.643,0.732,1.458,1.289,2.051,1.409,1.284,1.059,1.176,1.007,1.438,0.884,1.152,1.841,1.452,2.01,1.309,2.083,1.552,1.741,1.149,1.524,1.856],"paint":[1.46,2.138,2.488,2.653,2.95,1.986,1.902,1.64,2.318,2.026,2.317,2.72,2.224,2.938,1.451,1.264,2.169,1.759,2.419,1.771,2.454,1.67,1.779,1.136,0.873]}},{"framework":"spair-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[20.377,19.323,20.306,19.565,20.857,19.755,19.472,19.379,18.872,19.597,18.668,19.184,19.232,19.463,19.863],"script":[1.006,1.068,1.937,1.82,1.262,0.984,1.768,0.952,1.188,1.594,1.696,1.261,1.551,1.27,1.127],"paint":[17.982,17.204,17.152,16.417,18.599,17.157,16.439,16.671,16.379,16.223,15.499,16.845,16.445,16.289,17.39]}},{"framework":"spair-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.387,15.87,15.843,15.887,15.76,15.909,16.063,16.291,15.594,15.327,15.391,15.381,15.164,16.002,15.573],"script":[0.692,0.694,0.673,0.673,0.938,0.686,0.678,1.036,0.668,0.94,0.676,0.675,0.672,0.859,0.792],"paint":[13.809,14.382,14.113,14.534,14.075,14.519,14.694,14.234,13.955,13.719,13.993,13.975,13.436,14.375,14.056]}},{"framework":"spair-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[439.194,432.031,434.753,438.984,436.455,441.326,436.338,435.977,434.594,437.429,432.773,433.202,434.583,433.776,436.367],"script":[100.104,97.118,96.679,98.777,98.833,97.809,96.275,98.332,97.161,98.896,98.223,97.686,97.733,95.475,97.462],"paint":[332.385,328.35,331.116,333.634,330.864,336.873,333.33,330.975,330.768,331.917,327.946,328.886,330.252,331.645,332.153]}},{"framework":"spair-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.964,49.543,48.872,49.27,49.05,49.237,49.441,49.082,48.919,50.138,49.573,50.804,49.503,49.191,50.291],"script":[9.559,9.547,9.227,9.516,9.651,9.336,9.844,9.436,9.868,9.843,9.486,9.529,9.949,9.686,9.558],"paint":[40.508,39.128,38.775,38.846,38.5,38.979,38.695,38.774,38.179,39.328,39.215,40.379,38.666,38.575,39.844]}},{"framework":"spair-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.427,14.702,13.669,13.899,14.078,13.661,13.146,14.054,14.514,13.361,13.743,13.803,13.825,13.763,13.252],"script":[11.544,12.844,12.561,11.917,12.208,11.875,11.768,12.644,12.859,11.497,11.75,12.015,11.861,12.062,11.785],"paint":[1.204,1.046,0.347,0.995,0.905,1.693,1.285,1.313,1.549,1.771,1.48,1.699,1.69,1.613,1.374]}},{"framework":"spair-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.627676010131836]}},{"framework":"spair-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.961784362792969]}},{"framework":"spair-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.053736686706543]}},{"framework":"spair-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.5224103927612305]}},{"framework":"spair-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[34.254608154296875]}},{"framework":"spair-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.40625]}},{"framework":"spair-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[31.7783203125]}},{"framework":"spair-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[170.1]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"01_run1k","values":{"total":[44.628,42.413,41.569,42.755,42.829,42.818,43.431,43.525,42.897,42.693,42.211,41.743,43.078,42.029,43.008],"script":[9.708,8.97,8.476,9.421,9.284,9.547,9.827,9.765,9.13,8.603,8.799,8.882,8.957,8.818,8.832],"paint":[34.482,33.041,32.658,32.922,33.12,32.843,33.178,33.347,33.345,33.643,32.992,32.44,33.63,32.785,33.738]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"02_replace1k","values":{"total":[48.113,46.597,47.447,46.259,47.036,46.632,47.206,48.562,48.862,46.499,47.214,48.005,47.014,47.5,47.002],"script":[11.141,11.227,11.263,10.935,11.812,11.032,11.207,11.343,11.571,11.062,11.751,11.457,11.452,11.588,11.269],"paint":[36.517,34.936,35.745,34.868,34.761,35.166,35.553,36.767,36.844,34.975,35.023,36.125,35.109,35.426,35.299]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.883,17.732,16.552,16.132,16.659,16.127,16.436,15.623,16.882,16.624,16.439,16.902,16.646,17.389,16.381],"script":[1.751,1.752,1.389,0.938,1.008,1.305,0.694,1.281,1.907,1.103,1.771,1.724,1.595,1.632,1.488],"paint":[14.148,14.795,12.859,13.748,14.58,13.464,12.951,12.206,13.428,13.14,13.397,13.809,13.355,14.144,13.864]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"04_select1k","values":{"total":[2.527,2.119,2.543,2.968,5.286,2.976,2.638,2.731,3.223,2.779,4.143,2.703,4.746,3.728,4.032,4.097,3.103,3.262,4.221,2.788,2.395,5.59,4.295,3.928,3.236],"script":[0.088,0.288,0.63,0.093,0.094,0.71,0.082,0.876,0.773,0.848,0.084,0.083,0.964,0.084,0.799,0.094,0.72,1.104,0.532,0.085,0.083,0.085,0.835,1.22,0.733],"paint":[2.34,1.737,1.807,2.757,3.04,2.176,2.453,1.242,1.679,1.245,2.937,2.521,1.399,2.289,1.712,1.439,2.279,1.429,1.914,1.916,1.346,2.772,1.586,2.03,1.496]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"05_swap1k","values":{"total":[18.855,18.198,18.089,18.431,18.784,19.967,19.026,19.091,18.496,19.294,19.606,19.301,18.049,19.079,19.714],"script":[0.134,0.139,0.831,0.135,0.135,0.781,0.143,0.635,0.134,1.037,0.889,0.885,0.136,0.882,0.764],"paint":[17.709,16.79,15.658,16.875,17.502,17.359,17.144,16.872,17.055,16.448,16.237,16.94,16.328,16.677,17.676]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.871,15.073,14.887,15.054,14.802,15.069,14.785,15.032,15.557,15.436,15.349,15.275,15.019,15.36,15.279],"script":[0.122,0.33,0.219,0.297,0.116,0.197,0.109,0.254,0.43,0.277,0.2,0.439,0.283,0.433,0.442],"paint":[13.707,13.937,13.986,13.659,13.949,14.049,13.973,14.009,14.204,14.331,14.001,14.078,13.862,14.23,14.077]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"07_create10k","values":{"total":[439.144,436.045,435.682,430.649,443.646,436.706,437.438,443.394,436.831,436.588,436.159,435.956,436.255,438.682,437.395],"script":[99.855,96.182,95.881,95.308,101.139,98.509,98.308,97.186,98.745,98.119,98.203,97.216,97.356,98.051,98.762],"paint":[332.46,333.138,333.151,328.626,335.876,331.547,332.41,339.501,331.524,331.835,331.35,332.084,332.295,333.953,331.959]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.094,48.405,49.421,47.833,47.216,49.112,48.558,47.613,49.294,49.267,48.513,49.03,48.928,48.478,47.186],"script":[8.82,8.604,8.878,8.287,8.129,8.941,8.849,8.6,9.367,9.194,9.006,9.264,8.824,8.975,8.581],"paint":[39.415,38.917,39.594,38.677,38.197,39.225,38.856,38.151,39.004,39.111,38.653,38.905,39.219,38.643,37.776]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.816,14.247,13.944,14.204,13.702,14.25,13.921,15.015,14.75,14.937,14.793,14.884,13.821,13.675,13.575],"script":[12.704,11.912,12.55,12.195,11.658,12.17,11.818,12.868,12.88,13,12.393,12.874,11.925,11.471,12.514],"paint":[1.671,1.323,0.762,0.828,1.447,1.822,2.021,1.663,1.761,1.842,2.265,1.348,1.241,2.115,0.338]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6240863800048828]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.469348907470703]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.471112251281738]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.018862724304199]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.77289581298828]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[90.68359375]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[27.787109375]}},{"framework":"spair-qr-v0.0.8-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[160.9]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"01_run1k","values":{"total":[48.617,46.522,46.692,47.407,46.846,48.453,47.118,48.275,46.426,47.865,48.078,46.425,47.004,47.607,47.98],"script":[13.47,13.039,13.191,13.662,13.117,13.922,13.649,13.49,12.888,13.435,13.93,14.019,13.677,13.771,13.921],"paint":[34.709,33.061,33.07,33.326,33.327,34.095,33.05,34.363,33.125,34.013,33.707,31.972,32.923,33.425,33.641]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"02_replace1k","values":{"total":[51.571,52.029,52.986,53.476,53.771,53.34,52.069,53.749,52.992,52.636,52.665,53.354,52.866,52.934,51.735],"script":[16.84,16.837,17.432,17.972,17.174,17.812,16.872,17.246,17.493,16.652,17.434,17.836,17.886,17.426,16.739],"paint":[34.246,34.757,35.108,35.059,36.106,35.092,34.714,36.017,35.022,35.516,34.811,35.046,34.524,35.066,34.536]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.149,16.52,16.512,17.06,16.97,17.742,16.365,16.678,17.268,16.905,16.624,17.498,17.065,16.487,16.677],"script":[0.924,0.949,1.197,0.972,1.412,1.271,1.304,1.12,0.251,1.503,1.432,1.214,0.594,1.116,0.987],"paint":[15.196,14.4,13.13,13.661,13.743,15.301,13.193,13.487,15.246,13.977,13.163,14.534,14.516,14.611,13.071]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"04_select1k","values":{"total":[3.6,4.237,3.919,5.272,2.839,2.826,2.757,5.441,3.165,4.466,4.918,3.074,2.795,3.302,2.847,3.835,3.525,2.651,3.376,3.358,2.83,3.605,4.281,3.563,3.304],"script":[1.145,1.048,0.894,0.108,0.824,0.557,0.798,0.417,1.135,0.885,0.109,0.754,0.335,1.101,0.827,0.827,1.225,0.117,0.881,0.816,0.925,1.229,0.111,0.931,0.897],"paint":[1.511,2.077,1.631,2.748,1.913,1.656,1.104,1.976,1.923,2.306,1.836,2.219,2.36,1.338,1.331,1.935,2.198,1.627,1.732,1.689,1.492,2.282,1.573,2.342,1.752]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"05_swap1k","values":{"total":[17.98,17.966,18.728,19.191,18.661,19.073,19.493,19.62,19.369,18.47,18.714,20.203,18.724,18.973,19.196],"script":[0.109,0.098,0.502,0.774,0.749,0.108,0.109,0.105,0.11,0.101,0.101,0.812,0.102,0.247,0.435],"paint":[16.8,16.456,16.938,16.779,17.275,17.445,18.261,18.382,18.251,16.987,17.063,18.297,17.112,16.998,18.054]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.177,15.202,15.181,15.387,14.842,15.32,15.051,14.877,15.849,14.768,15.875,14.923,15.048,16.037,15.151],"script":[0.513,0.441,0.359,0.492,0.189,0.514,0.298,0.5,0.523,0.177,0.194,0.277,0.378,0.413,0.506],"paint":[13.927,14.063,13.959,14.167,13.703,13.721,13.497,13.665,14.602,13.904,14.605,13.951,13.888,14.849,13.938]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"07_create10k","values":{"total":[442.3,443.02,445.2,457.301,449.328,445.873,446.861,440.911,447.423,443.048,445.052,440.951,444.346,442.76,444.921],"script":[104.187,102.765,99.444,110.376,107.418,100.093,105.107,101.453,101.544,105.773,100.816,105.207,101.825,101.625,108.318],"paint":[331.085,333.247,339.021,339.094,334.6,339.189,335.005,332.717,339.219,330.614,337.581,328.996,335.797,334.46,329.816]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.668,50.389,48.877,47.67,48.33,49.459,49.667,49.783,49.389,49.122,49.384,49.304,48.523,48.97,48.328],"script":[9.487,10.013,9.585,9.102,9.878,10.155,10.462,10.002,10.195,10.136,9.976,10.138,9.352,10.122,9.395],"paint":[38.328,39.396,38.382,37.689,37.609,38.426,38.372,38.934,38.317,38.07,38.546,38.329,38.274,37.967,38.033]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.051,17.563,17.91,18.433,17.478,18.424,18.634,18.607,18.334,17.108,18.511,17.858,18.649,18.739,19.224],"script":[15.252,16.475,16.289,16.524,15.806,16.64,16.766,16.422,16.462,15.727,15.907,15.981,16.445,16.786,16.9],"paint":[1.719,0.36,1.531,1.101,1.581,0.978,1.08,1.61,1.039,0.77,2.508,0.403,2.125,1.862,1.34]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7404394149780273]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.186068534851074]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1746253967285156]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.3049068450927734]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.399325370788574]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[130.80078125]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[34.1728515625]}},{"framework":"stdweb-v0.4.17-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.9]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"01_run1k","values":{"total":[46.348,44.782,45.131,45.387,44.703,44.378,45.132,45.835,45.67,46.436,45.142,45.858,44.893,46.537,46.66],"script":[11.036,10.345,10.572,10.692,10.516,10.276,10.389,10.953,10.748,11.029,10.577,10.741,10.903,11.184,11.089],"paint":[34.865,33.976,34.128,34.25,33.743,33.669,34.274,34.434,34.466,34.977,34.117,34.669,33.551,34.931,35.104]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"02_replace1k","values":{"total":[53.932,55.43,55.031,54.415,55.822,55.527,54.634,54.412,55.749,54.94,55.971,55.112,55.417,54.672,54.579],"script":[18.096,19.369,18.1,18.033,19.061,18.945,18.034,17.993,19.136,18.238,18.892,19.099,18.969,18.9,18.743],"paint":[35.351,35.583,36.497,35.9,36.288,36.136,36.144,35.949,36.157,36.232,36.584,35.586,35.965,35.299,35.395]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.066,32.249,31.21,30.975,34.791,30.607,30.062,31.408,30.572,29.362,31.771,31.422,32.231,31.484,29.829],"script":[15.369,14.904,14.017,14.699,16.8,14.327,14.46,15.841,14.898,13.134,14.795,14.77,14.309,15.149,13.784],"paint":[15.703,15.998,15.598,14.705,16.885,15.08,14.582,13.577,13.981,14.89,15.543,13.904,16.209,14.538,14.72]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"04_select1k","values":{"total":[16.929,17.195,17.876,15.136,16.779,16.245,15.265,15.997,16.517,15.804,16.344,16.569,19.582,15.326,16.267,16.281,16.337,17.087,17.064,17.088,17.813,15.588,16.638,17.841,15.738],"script":[13.195,13.949,14.793,12.627,13.636,13.441,12.221,13.266,13.512,12.794,13.461,13.317,15.865,12.403,13.559,13.764,13.475,13.012,13.339,14.17,13.737,12.815,12.675,14.445,13.022],"paint":[3.314,2.013,1.818,2.352,1.994,1.854,2.004,2.57,2.013,2.855,1.736,2.426,2.581,1.467,2.544,2.36,1.197,2.719,3.362,1.592,2.226,1.18,3.757,3.201,2.005]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"05_swap1k","values":{"total":[33.851,32.597,32.851,33.404,33.358,31.926,32.54,32.995,34.485,33.659,32.635,32.862,33.978,34.065,33.162],"script":[14.133,13.868,12.692,13.059,13.991,13.758,12.52,13.666,14.824,13.571,13.308,14.448,14.354,14.89,14.392],"paint":[18.275,16.82,18.367,18.4,17.439,17.185,18.108,17.791,18.913,18.178,17.649,17.062,17.572,18.346,17.064]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.741,22.382,24.273,22.213,23.176,23.815,23.378,22.558,22.439,21.625,24.181,22.192,23.285,23.793,23.717],"script":[7.442,7.055,7.826,7.313,7.489,7.31,7.414,7.398,7.219,6.37,7.637,7.097,7.538,7.747,7.217],"paint":[14.536,14.54,14.901,13.85,14.673,15.118,14.963,14.384,14.469,14.163,15.671,14.063,14.971,15.288,15.71]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"07_create10k","values":{"total":[476.154,474.054,472.669,476.732,473.803,476.858,477.222,472.994,479.518,469.871,476.761,480.447,475.275,473.408,471.703],"script":[126.702,125.147,124.635,128.419,125.917,128.139,129.96,125.703,129.979,122.687,128.442,128.061,127.907,126.701,124.886],"paint":[342.738,342.146,341.281,341.676,341.132,342.048,340.477,340.611,342.859,340.495,341.25,345.68,340.69,340.03,340.096]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.536,57.384,55.829,57.529,57.417,57.546,58.003,58.142,57.744,57.855,58.246,58.023,58.041,57.769,57.413],"script":[15.931,15.795,15.038,15.808,15.935,15.967,16.048,15.992,16.305,15.526,16.689,16.238,16.195,16.08,16.038],"paint":[40.708,40.671,39.854,40.821,40.587,40.663,41.049,41.257,40.507,41.423,40.675,40.871,40.928,40.771,40.425]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.639,16.374,15.662,15.383,15.53,15.278,15.747,15.96,15.357,15.263,15.249,15.092,15.062,15.583,15.574],"script":[13.278,14.63,13.545,13.794,14.146,13.6,13.768,13.923,13.682,13.219,13.443,13.127,13.619,13.396,13.53],"paint":[2.25,0.87,2.031,1.494,0.985,0.799,1.211,1.453,0.786,1.94,0.853,1.855,1.345,1.051,1.946]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5305614471435547]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5842437744140625]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.573305130004883]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8798732757568359]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[29.561969757080078]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.298828125]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.111328125]}},{"framework":"stencil-v4.11.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.5]}},{"framework":"strve-v6.7.0-keyed","benchmark":"01_run1k","values":{"total":[39.945,40.964,40.71,40.614,42.717,40.351,41.196,42.263,40.307,39.979,40.036,42.092,40.152,41.468,43.88],"script":[6.934,6.912,7.449,7.182,7.448,7.284,7.423,7.4,7.438,6.789,6.938,7.091,6.8,7.359,7.298],"paint":[32.595,33.548,32.867,32.978,34.818,32.667,33.349,34.429,32.477,32.754,32.667,34.579,32.933,33.699,36.15]}},{"framework":"strve-v6.7.0-keyed","benchmark":"02_replace1k","values":{"total":[46.58,45.219,48.053,45.527,45.77,43.752,46.019,47.723,47.356,46.255,46.4,46.185,45.047,45.817,47.751],"script":[10.233,10.326,10.898,10.397,10.817,10.022,10.746,10.872,10.384,10.621,11.275,11.344,10.281,10.833,11.489],"paint":[35.862,34.447,36.719,34.706,34.521,33.308,34.806,36.412,36.507,35.198,34.717,34.409,34.333,34.53,35.832]}},{"framework":"strve-v6.7.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.833,27.323,27.499,28.438,30.094,27.744,28.391,26.884,27.293,27.823,27.117,28.704,27.042,27.176,28.056],"script":[11.142,11.117,11.54,11.651,12.959,11.781,10.839,10.992,11.261,10.755,10.91,12.03,11.243,11.047,11.748],"paint":[14.788,14.4,14.415,15.437,15.383,14.795,16.211,14.592,13.654,15.563,14.947,15.33,13.523,14.758,14.939]}},{"framework":"strve-v6.7.0-keyed","benchmark":"04_select1k","values":{"total":[13.766,12.583,12.346,14.433,13.078,13.577,13.322,13.808,11.817,12.661,12.932,12.646,12.382,14.869,13.822,13.231,13.501,12.258,12.765,13.053,12.521,13.48,12.406,11.798,13.969],"script":[10.95,10.112,9.649,10.771,9.537,9.826,10.207,10.23,9.292,10.412,9.876,10.135,9.689,10.797,11.016,10.529,10.469,8.959,9.44,9.72,10.029,10.623,10.539,9.487,11],"paint":[1.728,1.411,2.061,1.949,2.689,2.65,2.951,2.939,2.369,1.399,2.869,2.376,2.543,3.853,1.906,2.192,2.904,2.609,2.859,2.269,2.369,1.984,1.746,1.228,2.184]}},{"framework":"strve-v6.7.0-keyed","benchmark":"05_swap1k","values":{"total":[29.426,28.968,29.098,29.101,29.045,29.577,28.508,30.321,29.992,28.519,28.705,29.771,28.809,28.338,29.258],"script":[10.355,10.292,10.476,10.955,9.786,11.074,10.401,10.872,10.552,10.072,10.656,10.265,10.336,10.413,10.156],"paint":[17.631,16.945,16.783,16.281,17.339,17.416,16.548,18.112,18.377,16.273,16.994,17.93,16.971,16.769,18.075]}},{"framework":"strve-v6.7.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.428,21.117,20.858,20.367,20.262,21.611,21.068,20.814,21.619,20.695,20.57,20.748,20.784,20.264,21.207],"script":[5.397,5.019,5.376,5.003,4.947,5.532,5.538,5.399,5.459,5.024,5.395,5.332,5.244,5.108,5.051],"paint":[14.833,15.328,14.252,14.615,14.57,15.257,14.46,14.712,15.34,14.895,14.054,14.149,14.537,14.423,15.356]}},{"framework":"strve-v6.7.0-keyed","benchmark":"07_create10k","values":{"total":[417.37,418.656,420.196,425.068,412.926,419.684,422.065,422.365,419.562,422.75,416.123,415.605,412.937,416.464,422.829],"script":[78.655,77.084,77.528,78.324,74.373,78.314,80.053,77.418,77.551,77.413,76.025,76.608,77.046,76.728,77.983],"paint":[332.049,334.817,335.988,339.131,331.841,334.537,335.14,338.172,335.348,338.583,333.367,332.226,329.138,333.083,338.127]}},{"framework":"strve-v6.7.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.244,48.479,48.152,47.551,48.978,48.505,48.364,48.428,51.37,48.926,49.328,48.638,50.176,48.107,48.728],"script":[10.179,10.274,9.981,9.697,10.274,9.918,9.921,10.159,10.012,10.04,10.323,9.979,10.399,9.881,10.047],"paint":[38.148,37.282,37.335,36.994,37.841,37.607,37.527,37.404,40.393,37.93,38.095,37.769,38.875,37.341,37.795]}},{"framework":"strve-v6.7.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.584,13.214,13.152,13.214,13.766,13.089,13.337,12.327,13.416,12.394,13.607,12.068,13.036,12.821,13.687],"script":[11.233,10.922,11.002,10.697,11.879,11.458,11.283,10.521,11.559,10.979,11.459,10.655,11.274,10.692,12.011],"paint":[2.255,2.199,2.059,2.422,1.154,0.92,1.963,1.224,1.766,0.382,1.332,0.408,1.677,2.038,1.013]}},{"framework":"strve-v6.7.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.46660327911376953]}},{"framework":"strve-v6.7.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2777814865112305]}},{"framework":"strve-v6.7.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.280984878540039]}},{"framework":"strve-v6.7.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5851221084594727]}},{"framework":"strve-v6.7.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.717344284057617]}},{"framework":"strve-v6.7.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.5576171875]}},{"framework":"strve-v6.7.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.8564453125]}},{"framework":"strve-v6.7.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.2]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"01_run1k","values":{"total":[41.244,39.794,42.861,39.91,38.922,38.828,38.421,41.581,39.75,40.412,40.892,40.075,41.355,41.242,40.876],"script":[7.157,7.7,7.682,7.226,7.152,6.854,6.902,7.588,7.499,7.517,7.395,7.488,7.736,7.468,7.455],"paint":[33.641,31.714,34.735,32.213,31.39,31.569,31.112,33.596,31.831,32.502,33.078,32.177,33.206,33.392,33.002]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"02_replace1k","values":{"total":[45.624,45.175,45.961,46.601,45.733,45.038,45.494,46.371,44.742,45.734,45.717,45.975,45.456,45.917,44.564],"script":[11.275,10.81,11.412,11.084,11.088,10.55,11.094,11.313,10.299,10.93,10.537,10.652,10.3,11.229,10.583],"paint":[33.909,33.934,34.111,35.083,34.233,34.047,33.997,34.635,34.025,34.392,34.75,34.885,34.731,34.264,33.567]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[27.507,26.851,29.184,28.875,28.831,27.774,29.48,27.126,28.374,28.86,27.364,27.032,29.087,27.828,26.936],"script":[11.52,10.781,11.188,11.832,11.062,11.551,11.984,11.705,11.399,11.324,11.175,10.444,11.997,11.618,11.014],"paint":[14.539,13.839,16.131,16.096,16.243,13.364,16.348,14.121,15.522,15.773,14.911,14.685,15.9,14.179,14.683]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"04_select1k","values":{"total":[14.309,15.149,12.978,14.407,13.476,13.431,13.779,13.686,15.737,15.187,14.564,13.603,13.754,12.637,13.398,13.775,14.662,13.898,13.654,15.255,14.934,14.625,13.036,14.112,13.414],"script":[11.272,11.378,10.483,10.353,10.442,11.042,9.988,10.275,12.002,11.076,11.037,10.168,10.975,9.382,10.287,10.56,10.854,11.427,11.22,11.57,11.468,11.207,9.955,10.575,10.231],"paint":[2.87,2.908,1.9,2.929,2.167,1.358,3.623,2.72,2.828,3.131,2.318,3.275,2.427,2.754,2.511,2.839,2.995,2.321,1.258,3.37,2.12,1.865,2.934,3.359,3.025]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"05_swap1k","values":{"total":[29.421,30.351,30.714,30.674,29.983,30.376,31.861,31.212,31.737,31.403,28.811,29.842,30.671,31.984,30.491],"script":[10.47,11.893,11.478,11.657,11.073,10.504,12.83,12.211,11.57,10.74,10.231,12.059,11.305,11.449,11.654],"paint":[17.584,16.731,18.559,16.975,16.894,18.331,17.811,17.589,18.95,18.262,17.322,16.882,17.61,19.059,17.578]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.349,20.731,20.936,21.405,20.349,21.936,20.771,20.838,21.367,20.334,20.305,20.286,20.542,20.833,21.047],"script":[5.224,5.493,5.497,5.438,5.515,5.615,5.43,5.416,5.521,5.501,5.441,5.452,5.227,5.448,5.533],"paint":[14.396,14.209,14.713,14.931,13.771,15.514,14.625,14.126,15.056,14.092,13.87,14.077,14.242,14.686,14.752]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"07_create10k","values":{"total":[431.802,431.197,429.661,430.171,425.684,430.491,427.387,436.718,428.996,431.825,437.383,425.778,429.926,431.427,432.854],"script":[89.534,88.362,88.459,88.15,86.77,87.692,88.351,87.098,86.537,88.678,86.704,87.06,87.664,88.573,89.975],"paint":[335.679,335.951,334.596,335.475,332.408,336.301,332.528,342.802,335.674,336.659,343.811,332.066,335.757,336.337,336.34]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.758,49.77,48.258,48.321,49.93,48.101,49.299,48.931,49.892,49.283,49.703,49.159,48.343,51.057,48.967],"script":[10.477,10.436,9.913,9.928,10.164,9.925,10.601,10.298,10.403,10.134,10.269,10.192,10.286,10.504,10.161],"paint":[37.403,38.452,37.467,37.522,38.875,37.289,37.797,37.71,38.513,38.319,38.569,38.091,37.206,39.659,37.921]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.572,14.284,13.606,14.026,14.275,14.509,14.321,14.112,14.406,14.077,14.514,14.877,15.081,14.214,14.404],"script":[12.079,12.134,11.563,11.876,12.481,12.286,12.385,11.608,12.536,11.941,12.393,12.81,12.773,12.377,12.575],"paint":[1.408,2.053,1.947,1.805,0.915,1.682,1.105,2.389,1.785,2.042,2.026,1.983,1.854,1.023,1.573]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5268325805664062]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3418779373168945]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3673715591430664]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7147274017333984]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.80020046234131]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.0986328125]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.8701171875]}},{"framework":"strve-reactivity-v1.5.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[75.7]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"01_run1k","values":{"total":[36.808,36.661,36.616,36.92,36.857,38.952,37.209,36.361,37.507,39.163,36.658,36.092,36.988,37.187,36.284],"script":[3.319,3.661,3.39,3.687,3.368,3.73,3.472,3.616,3.809,3.667,3.67,3.509,3.576,3.661,3.571],"paint":[33.055,32.578,32.815,32.827,33.069,34.786,33.266,32.345,33.266,35.06,32.586,32.16,33.009,33.11,32.308]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"02_replace1k","values":{"total":[43.588,44.175,41.454,41.473,44.115,41.125,41.677,41.301,41.099,41.577,41.675,41.721,41.17,41.389,41.891],"script":[6.956,7.179,6.729,6.548,6.913,6.563,6.575,6.73,6.712,6.735,6.941,6.613,6.81,6.793,6.783],"paint":[36.185,36.557,34.293,34.512,36.755,34.12,34.663,34.139,33.954,34.394,34.27,34.689,33.923,34.177,34.692]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.901,15.856,15.593,16.981,15.756,16.118,16.267,16.7,16.87,16.828,16.431,16.148,17.267,16.076,16.438],"script":[1.224,0.941,0.903,1.179,0.271,1.204,0.982,1.475,1.515,0.258,0.892,1.248,0.886,0.974,1.013],"paint":[13.772,13.593,13.454,15.071,13.731,13.616,13.998,14.226,14.083,15.908,14.236,13.386,14.528,12.947,14.203]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"04_select1k","values":{"total":[3.46,3.845,3.138,3.441,3.851,3.261,4.056,2.731,3.95,3.825,5.732,3.803,5.801,4.056,6.929,3.452,3.894,3.397,2.921,3.021,3.11,4.108,3.857,4.267,3.599],"script":[0.9,1.221,1.295,0.954,0.65,0.707,0.678,0.235,1.037,1.296,0.872,1.373,0.619,1.212,1.173,1.298,0.681,0.964,0.867,0.515,0.983,0.683,0.724,1.23,1.179],"paint":[1.353,2.496,1.294,1.94,3.07,2.071,2.18,2.399,2.471,2.414,1.943,2.261,2.425,2.728,1.959,2.052,1.845,2.053,1.93,2.382,2.027,2.51,3.016,2.825,1.379]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"05_swap1k","values":{"total":[20.236,20.128,20.66,20.539,20.067,19.126,20.926,20.155,20.039,19.833,19.95,20.852,20.353,19.701,20.849],"script":[1.318,1.207,1.418,1.665,1.087,1.583,1.572,1.792,1.866,1.909,2.067,1.693,1.702,1.976,1.832],"paint":[17.998,17.362,17.904,17.569,16.809,14.875,18.152,17.295,16.283,16.717,15.914,17.622,16.301,15.491,17.135]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.355,15.625,15.419,16.165,14.884,15.695,14.852,15.157,15.083,15.752,15.62,15.382,15.841,15.516,15.219],"script":[0.583,0.636,0.558,0.248,0.263,0.563,0.515,0.351,0.345,0.568,0.36,0.586,0.563,0.62,0.58],"paint":[14.03,14.297,14.084,15.487,13.899,14.371,13.7,14.029,13.676,14.502,14.015,14.05,14.387,13.904,13.936]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"07_create10k","values":{"total":[369.224,363.796,366.094,369.767,370.029,368.881,371.157,366.824,367.15,364.101,368.407,368.689,367.101,366.033,367.038],"script":[40.453,40.612,42.857,41.597,42.669,40.023,42.164,41.676,40.075,41.07,41.865,40.483,40.047,41.454,40.755],"paint":[321.878,316.745,316.861,321.76,320.388,322.042,322.577,318.799,320.586,316.5,320.05,321.673,320.605,318.089,319.736]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.894,42.805,42.682,43.805,43.741,42.697,41.958,41.814,43.005,42.333,43.182,43.264,42.44,43.341,44.499],"script":[3.399,3.282,3.384,3.575,3.517,3.286,3.379,3.547,3.516,3.369,3.354,3.439,3.598,3.477,3.372],"paint":[38.612,38.612,38.414,39.395,39.285,38.523,37.738,37.433,38.623,38.087,38.928,38.958,37.938,38.956,40.242]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.25,13.401,12.948,13.361,12.797,13.285,13.194,13.317,13.183,13.984,13.239,13.408,13.326,12.773,12.88],"script":[11.425,11.278,11.392,10.796,11.207,10.91,10.747,11,11.27,11.611,11.474,11.416,10.846,11.407,11.239],"paint":[1.729,1.779,1.474,2.478,1.5,2.287,2.311,2.173,1.111,2.272,1.673,1.195,2.384,0.361,0.742]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4982023239135742]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.638660430908203]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.652606964111328]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9120607376098633]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.7034273147583]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.9296875]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.9658203125]}},{"framework":"svelte-v5.0.0-next.64-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.8]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"01_run1k","values":{"total":[39.244,39.672,36.726,36.171,36.615,37.477,37.698,37.383,37.951,38.658,38.715,38.968,38.924,39.313,38.653],"script":[5.114,5.438,5.114,4.868,4.954,5.002,5.172,5.049,5.202,5.1,5.183,5.555,5.384,5.157,5.184],"paint":[33.67,33.792,31.238,30.909,31.246,32.068,32.113,31.927,32.349,33.147,33.135,32.99,33.133,33.745,33.052]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"02_replace1k","values":{"total":[44.566,47.33,44.502,44.364,44.807,45.834,44.235,45.126,44.682,44.658,44.791,44.57,44.504,44.011,44.253],"script":[8.312,8.769,8.937,8.668,8.588,8.133,8.625,8.706,8.312,8.766,9.141,8.561,8.728,8.864,8.578],"paint":[35.804,38.162,35.152,35.222,35.766,37.236,35.19,35.963,35.934,35.442,35.189,35.578,35.343,34.724,35.223]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.363,16.868,17.753,16.778,17.193,17.273,16.87,17.622,17.941,17.157,17.42,17.484,16.91,17.298,17.144],"script":[1.477,1.842,2.366,1.846,2.003,1.771,1.824,2.087,2.625,1.916,1.655,2.043,1.874,2.062,2.098],"paint":[14.474,13.591,13.85,13.284,13.624,14.467,13.746,14.478,13.908,14.294,13.192,14.106,13.239,13.94,13.541]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"04_select1k","values":{"total":[3.873,3.362,3.188,4.211,3.466,3.807,3.506,2.949,3.536,3.811,3.86,3.377,4.253,3.217,4.346,5.208,3.876,4.262,4.719,4.949,3.426,3.962,5.099,3.859,5.168],"script":[0.918,0.658,0.992,1.34,1.525,1.278,1.311,1.216,1.2,0.768,1.28,1.437,0.85,0.876,1.253,1.81,1.241,1.804,1.444,1.623,0.895,1.46,1.489,0.274,1.132],"paint":[1.609,2.578,1.431,2.47,1.84,2.407,2.089,1.615,1.544,1.781,1.77,1.822,2.675,2.24,2.818,2.263,2.519,2.331,1.296,3.154,1.443,2.381,2.152,3.459,2.481]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"05_swap1k","values":{"total":[20.232,20.303,20.066,19.68,19.823,19.829,20.957,19.425,19.666,19.771,19.316,20.619,19.639,20.111,21.249],"script":[2.248,1.91,1.643,1.58,1.824,1.354,1.834,1.23,1.013,1.583,1.405,1.515,1.727,1.777,1.376],"paint":[16.763,16.928,16.678,16.634,16.612,16.998,17.548,17.159,17.487,17.32,16.626,17.885,16.267,17.154,18.314]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.595,15.48,15.313,15.451,15.397,15.644,15.502,15.354,15.779,15.896,15.452,15.66,15.321,15.421,15.857],"script":[0.713,0.614,0.62,0.65,0.655,0.638,0.655,0.662,0.603,0.617,0.608,0.63,0.642,0.608,0.836],"paint":[14.137,13.8,13.931,13.905,13.899,13.572,14.105,14.157,14.471,14.799,14.154,14.001,13.975,14.132,14.327]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"07_create10k","values":{"total":[400.455,394.041,402.524,403.729,403.816,408.845,399.319,405.755,404.43,395.013,402.809,404.087,403.663,399.897,402.036],"script":[57.281,56.451,56.32,57.116,57.983,57.322,56.955,57.037,57.696,56.362,57.071,56.238,55.782,56.724,56.083],"paint":[336.412,330.766,339.255,339.882,339.12,344.8,335.662,341.99,339.953,331.877,338.971,341.06,341.18,336.463,339.136]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.07,45.075,47.493,45.767,45.095,46.327,45.762,46.54,46.345,47.538,46.299,46.564,46.675,46.604,46.807],"script":[5.588,5.559,5.778,5.577,5.502,5.916,5.99,5.88,5.924,6.086,5.984,5.951,5.868,6.1,5.605],"paint":[39.545,38.659,40.845,39.329,38.706,39.567,38.925,39.797,39.565,40.501,39.46,39.765,39.959,39.647,40.303]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.636,12.902,12.847,12.945,13.76,13.411,12.156,12.612,13.155,13.164,12.369,13.189,13.112,12.83,13.633],"script":[10.86,10.821,10.732,10.977,11.5,11.312,10.745,10.765,11.373,11.454,10.767,11.412,10.996,10.732,11.701],"paint":[1.682,1.57,2.021,1.878,1.187,1.375,0.39,1.756,0.966,0.779,1.513,1.511,0.495,1.895,1.835]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49695777893066406]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.757552146911621]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.791414260864258]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.365610122680664]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.956418991088867]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.87890625]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5615234375]}},{"framework":"svelte-classic-v5.0.0-next.64-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.1]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"01_run1k","values":{"total":[42.207,43.475,41.919,41.949,41.199,44.065,43.751,42.552,43.828,42.919,43.06,42.225,42.046,43.081,43.013],"script":[8.362,9.279,8.366,8.297,8.218,9.073,9.395,8.4,8.87,8.694,8.944,8.549,8.754,9.266,8.721],"paint":[33.412,33.767,33.113,33.231,32.578,34.59,33.942,33.735,34.551,33.822,33.708,33.252,32.826,33.4,33.884]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"02_replace1k","values":{"total":[51.829,50.94,49.92,52.931,51.047,50.321,51.423,49.995,51.262,52.252,51.457,50.107,49.33,49.58,51.087],"script":[14.934,14.608,14.695,15.639,14.506,14.443,15.308,14.506,15.188,15.704,15.453,15.202,14.477,14.612,15.418],"paint":[36.442,35.872,34.8,36.842,36.089,35.44,35.635,35.054,35.629,36.105,35.572,34.466,34.423,34.533,35.235]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.576,16.872,17.199,16.633,18.436,17.119,17.592,18.468,18.162,17.45,18.163,17.288,17.854,17.902,16.904],"script":[2.098,1.555,1.817,1.827,2.353,1.286,1.937,2.584,1.504,1.848,1.539,1.804,1.897,1.394,0.954],"paint":[13.902,14.071,14.109,13.512,14.319,13.832,14.621,14.309,15.391,14.177,15.268,13.967,14.896,14.69,14.374]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"04_select1k","values":{"total":[7.233,6.951,6.085,7.03,6.522,6.514,5.856,6.578,5.768,6.222,6.373,7.107,6.473,6.554,6.249,6.821,6.613,6.706,6.426,6.107,6.56,5.944,5.98,5.966,6.605],"script":[4.112,4.047,3.912,4.283,3.973,3.766,3.807,3.722,3.44,3.752,4.16,4.276,3.942,3.799,3.531,4.739,4.125,3.788,3.696,3.897,4.325,3.714,3.751,4.284,4.007],"paint":[3.003,2.795,2.054,1.378,1.503,1.713,1.036,1.281,1.178,2.357,2.089,2.031,2.429,2.238,2.615,1.972,2.363,2.816,1.78,0.995,2.118,2.131,1.363,1.119,2.492]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"05_swap1k","values":{"total":[19.724,19.507,19.694,20.298,19.034,20.75,19.417,19.62,20.499,19.041,19.227,20.543,19.653,19.584,20.122],"script":[1.689,0.938,1.415,2.081,1.421,1.485,1.301,1.345,1.391,1.267,1.307,1.431,1.476,1.535,1.84],"paint":[15.836,16.961,16.89,16.346,15.363,17.975,17.105,16.722,17.704,16.714,16.94,17.479,17.053,17.096,16.726]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.912,15.816,15.901,15.955,15.848,15.488,15.677,15.357,16.27,15.546,15.691,15.851,15.964,15.513,15.683],"script":[1.098,1.087,1.101,1.078,1.04,0.818,0.989,0.992,0.883,0.785,0.939,1.066,1.074,0.8,0.814],"paint":[14.109,14.059,14.143,13.88,14.002,13.663,13.838,13.516,14.638,13.76,13.85,14.101,13.919,13.645,14.165]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"07_create10k","values":{"total":[431.94,429.242,433.906,435.771,436.269,436.129,439.967,436.696,438.383,437.189,436.779,435.481,436.597,438.124,437.004],"script":[96.018,97.587,97.509,98.468,99.398,98.367,99.923,98.684,98.82,98.615,98.387,97.471,99.427,99.528,100.243],"paint":[329.191,324.99,329.53,330.211,330.059,331.076,333.325,331.364,332.805,331.884,331.714,331.322,330.458,331.792,330.081]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.654,50.894,48.128,49.403,49.345,49.979,48.453,49.34,49.39,49.266,49.426,49.641,49.62,50.437,49.757],"script":[9.309,9.763,9.31,9.474,9.806,9.786,9.3,9.811,9.246,9.839,9.421,9.509,9.372,9.913,9.858],"paint":[38.418,40.24,37.967,39.035,38.653,39.337,38.214,38.618,39.258,38.525,39.077,39.271,39.391,39.596,39.027]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.812,15.889,16.072,15.924,16.381,15.153,16.13,14.573,14.68,15.127,14.831,15.267,15.637,15.015,15.342],"script":[13.715,13.762,13.777,14.022,14.091,12.959,14.098,12.696,13.396,13.149,13.364,13.082,13.163,13.456,13.8],"paint":[1.987,2.026,2.193,1.229,1.688,2.098,1.648,1.781,0.696,1.24,1.376,1.117,1.815,1.474,0.973]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6336116790771484]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.749085426330566]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.727506637573242]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.445829391479492]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.606215476989746]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.5185546875]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[47.2265625]}},{"framework":"sycamore-v0.9.0-beta.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[277.6]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[41.63,41.869,41.096,41.728,42.278,41.915,41.683,43.046,42.295,41.642,42.686,42.004,41.691,41.497,42.259],"script":[8.081,7.811,7.996,8.044,8.123,7.912,8.112,7.717,8.459,7.908,7.823,8.607,8.026,8.139,7.982],"paint":[33.102,33.625,32.674,33.261,33.728,33.574,33.145,34.872,33.422,33.309,34.347,32.973,33.254,32.937,33.838]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[46.532,46.783,46.538,46.358,46.095,46.586,46.746,47.615,46.788,46.56,47.922,46.393,47.339,46.884,47.568],"script":[11.758,11.128,11.498,11.491,11.368,11.368,11.393,11.265,11.725,11.321,11.429,11.433,11.807,11.531,11.848],"paint":[34.329,35.213,34.608,34.405,34.277,34.777,34.89,35.891,34.62,34.794,36.04,34.515,35.085,34.898,35.258]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.247,16.614,16.294,17.194,17.413,15.619,15.83,15.939,16.536,16.213,17.888,15.995,15.904,16.282,15.75],"script":[0.99,1.137,0.926,0.195,1.045,0.282,0.945,0.607,0.19,0.183,1.23,0.94,0.635,1,0.924],"paint":[14.93,13.648,13.826,15.559,14.468,14.481,13.66,13.999,15.063,15.041,15.309,13.459,14.16,14.256,13.638]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[2.882,3.298,2.771,3.831,3.159,2.477,1.961,2.87,3.088,6.352,2.636,2.61,3.082,3.139,3.713,3.173,3.161,2.743,2.797,2.995,3.934,2.456,4.782,2.772,2.419],"script":[0.6,0.07,0.071,0.072,0.075,0.314,0.075,0.533,0.562,0.696,0.075,0.071,0.073,0.072,0.067,0.069,0.473,0.574,0.769,0.83,0.071,0.067,0.075,0.98,0.737],"paint":[2.181,2.873,2.601,1.949,0.813,1.738,1.786,1.693,1.765,1.686,2.371,1.4,1.922,2.447,1.971,1.927,1.528,2.069,1.523,1.432,2.587,1.613,3.195,1.697,1.588]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[25.713,25.349,25.232,24.512,27.245,25.798,25.943,27.311,27.595,26.565,25.989,25.761,24.812,25.667,26.271],"script":[7.182,6.291,6.918,6.009,7.283,6.158,6.063,7.393,7.285,7.814,6.283,6.205,6.116,6.681,7.086],"paint":[17.218,18.023,16.724,17.724,18.842,18.467,18.537,18.776,18.729,16.712,18.644,17.728,16.353,18.073,16.335]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.398,19.614,18.711,19.643,19.398,18.912,20.501,19.194,19.014,19.498,19.265,19.226,18.889,19.212,19.228],"script":[4.04,3.952,3.843,3.863,4.287,3.992,4.961,3.919,3.837,4.309,4.136,4.342,4.049,3.484,4.272],"paint":[14.431,13.916,14.105,14.855,13.929,14.146,14.636,14.503,14.122,14.468,14.39,14.111,13.783,14.946,13.829]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[432.937,426.977,425.663,426.648,427.83,430.124,430.799,432.924,427.041,421.002,421.465,429.748,429.335,426.148,429.126],"script":[95.523,88.874,92.604,90.919,92.342,94.593,94.295,94.188,91.529,89.332,90.371,93.716,93.573,88.797,93.173],"paint":[330.568,331.356,325.972,328.866,328.774,328.746,329.789,331.953,328.686,324.878,324.063,329.017,328.679,330.511,329.166]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.269,51.005,51.748,49.98,50.552,50.87,50.499,50.401,50.442,50.45,50.789,51.708,50.741,50.394,50.257],"script":[10.684,10.237,11.317,10.11,10.344,10.133,10.154,10.167,10.893,10.299,10.233,10.848,10.441,10.063,10.252],"paint":[39.683,39.87,39.529,38.994,39.309,39.831,39.413,39.331,38.658,39.241,39.63,39.911,39.395,39.45,39.104]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.233,13.5,13.989,13.576,14.437,13.153,13.658,13.094,14.055,13.491,14.053,13.495,13.034,13.477,13.457],"script":[11.229,11.902,11.908,11.383,12.282,11.096,11.602,11.222,12.164,11.649,12.391,11.366,11.375,11.626,11.525],"paint":[1.444,1.276,1.794,2.076,1.298,1.22,1.961,1.79,1.085,1.746,0.74,1.526,1.404,1.751,1.799]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5291948318481445]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7558364868164062]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.802882194519043]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6911125183105469]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.925585746765137]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.865234375]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.705078125]}},{"framework":"udomsay-esx-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[91.4]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"01_run1k","values":{"total":[41.64,40.952,40.629,41.489,41.443,42.701,40.846,40.191,41.049,40.585,41.133,41.699,41.458,41.4,41.487],"script":[7.371,7.24,7.144,7.317,7.378,8.034,7.468,7.795,7.264,7.29,7.282,7.412,7.6,7.528,7.567],"paint":[33.836,33.266,33.045,33.703,33.594,34.201,32.938,31.932,33.342,32.86,33.405,33.843,33.407,33.426,33.47]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"02_replace1k","values":{"total":[48.07,48.094,47.421,49.25,47.006,47.346,48.532,48.571,48.744,47.933,49.571,49.04,46.634,46.929,48.179],"script":[12.544,11.98,11.854,12.442,11.617,11.707,12.26,12.721,12.184,11.807,12.748,12.213,11.32,11.735,12.278],"paint":[35.063,35.67,35.109,36.311,34.95,35.193,35.822,35.412,36.114,35.683,36.362,36.335,34.865,34.75,35.449]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.781,17.285,16.672,17.096,16.108,15.737,16.49,16.972,15.917,16.213,17.757,15.534,16.489,16.779,17.175],"script":[1.637,0.882,0.615,0.86,1.011,0.638,0.585,1,0.889,0.843,0.888,0.878,0.822,1.14,0.554],"paint":[14.178,15.282,14.597,14.933,13.781,13.482,14.616,14.184,13.756,14.465,15.597,13.09,14.197,14.875,14.504]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"04_select1k","values":{"total":[4.97,3.795,2.577,2.641,2.308,2,3.357,2.759,2.484,2.211,3.157,2.899,3.677,2.595,2.984,2.398,3.292,2.845,2.722,3.663,2.819,2.539,2.572,2.564,3.649],"script":[0.072,0.78,0.078,0.324,0.086,0.075,0.29,0.799,0.076,0.07,0.627,0.07,0.694,0.073,0.07,0.076,0.465,0.072,0.717,0.075,0.793,0.074,0.482,0.082,0.07],"paint":[2.174,1.114,1.955,1.855,1.335,1.142,1.292,1.851,1.087,2.047,2.059,2.381,1.641,2.418,2.522,1.893,1.793,2.478,1.887,1.089,1.085,2.361,1.612,1.454,2.221]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"05_swap1k","values":{"total":[24.861,27.951,25.931,25.533,25.99,24.709,25.386,25.463,26.22,26.962,25.885,25.687,24.945,25.855,26.07],"script":[5.575,7.309,7.08,7.159,7.119,5.753,6.656,6.744,5.976,7.643,7.225,6.758,6.686,6.562,6.711],"paint":[17.032,18.884,17.573,17.253,17.302,16.974,18.004,17.654,18.026,18.156,17.214,17.388,16.506,17.857,17.344]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.552,17.966,18.967,18.447,18.441,18.303,19.012,17.91,18.41,19.579,19.651,18.768,18.059,18.928,19.154],"script":[3.74,3.24,3.759,3.567,3.621,3.497,3.766,3.186,3.258,3.646,3.973,3.684,3.24,3.669,3.688],"paint":[14.051,14.042,13.882,13.903,13.847,13.629,14.465,14.053,14.414,15.081,14.91,14.333,13.798,14.351,14.689]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"07_create10k","values":{"total":[429.683,428.969,426.194,425.626,427.355,429.075,430.807,434.573,436.019,424.513,427.98,428.924,430.319,427.919,426.841],"script":[88.464,86.994,84.469,85.007,86.371,86.137,87.525,96.097,85.91,85.046,87.393,87.937,91.794,86.902,85.91],"paint":[334.477,335.13,334.858,333.641,334.006,336.152,336.515,331.702,343.316,332.694,333.86,334.251,331.706,334.274,334.054]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.116,52.137,51.096,49.554,51.429,49.688,50.064,49.66,50.097,49.609,49.524,50.95,50.873,51.027,51.01],"script":[10.252,11.52,11.038,9.976,10.459,10.227,9.925,9.975,9.978,10.022,9.884,10.177,10.328,10.334,10.116],"paint":[39.907,39.681,39.143,38.723,40.058,38.529,39.263,38.811,39.099,38.715,38.757,39.89,39.645,39.789,39.959]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.157,13.486,13.429,13.273,13.222,12.863,13.201,12.64,13.696,12.763,13.706,13.34,14.076,13.372,12.603],"script":[10.523,11.783,11.516,11.627,11.711,11.012,11.271,10.746,11.673,11.217,11.919,11.352,11.976,11.464,10.71],"paint":[1.184,1.606,0.94,0.746,0.797,1.766,1.842,1.223,0.983,1.463,0.908,1.169,1.879,1.467,1.804]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5861787796020508]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.740572929382324]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.844575881958008]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8802108764648438]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[22.017369270324707]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[13.431640625]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.2373046875]}},{"framework":"udomsay-tpl-v0.4.9-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[100.3]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"01_run1k","values":{"total":[39.077,38.942,39.081,38.973,40.089,39.323,39.836,40.746,39.026,40.208,40.09,38.944,39.686,39.798,40.064],"script":[5.303,5.345,5.838,5.352,5.811,5.465,5.47,5.944,5.344,5.687,5.479,5.797,5.387,5.64,5.731],"paint":[33.318,33.136,32.823,33.171,33.86,33.429,33.92,34.359,33.236,34.102,34.163,32.688,33.837,33.724,33.886]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"02_replace1k","values":{"total":[43.871,45.11,45.18,45.306,45.342,45.276,44.724,45.089,45.009,44.018,45.377,44.693,44.105,45.699,46.696],"script":[8.517,9.142,9.403,8.795,8.97,9.582,8.88,9.421,9.623,8.571,9.66,8.883,8.666,9.691,9.001],"paint":[34.873,35.488,35.323,36.048,35.922,35.231,35.408,35.241,34.942,35.01,35.263,35.35,35.013,35.567,37.248]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.199,18.124,19.769,17.457,17.156,18.262,17.216,19.072,17.612,18.345,17.982,17.005,17.601,16.984,18.155],"script":[2.288,1.88,1.981,1.836,1.833,2.014,1.609,2.206,2.382,1.878,1.847,1.94,1.992,2.074,1.745],"paint":[15.549,14.163,16.162,13.731,13.97,14.613,14.272,15.025,13.771,14.829,14.744,13.609,14.194,13.397,15.131]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"04_select1k","values":{"total":[2.754,2.816,3.194,3.571,3.926,2.779,2.533,5.287,2.809,2.581,2.456,5.757,3.55,2.534,4.133,2.441,3.111,2.351,2.881,5.939,2.765,3.104,4.081,5.402,2.71],"script":[0.878,0.061,0.053,0.758,0.055,0.062,0.059,0.054,0.588,0.055,0.222,0.534,0.055,0.059,0.055,0.057,0.777,0.225,0.972,0.057,0.049,0.705,0.059,1.047,0.06],"paint":[1.782,2.651,1.678,1.569,3.196,2.601,2.377,2.289,1.98,1.621,0.877,1.836,1.167,2.334,1.493,2.294,1.577,1.586,1.794,2.632,2.623,2.295,1.877,2.526,2.553]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"05_swap1k","values":{"total":[20.268,20.054,19.503,19.492,20.106,18.446,19.685,19.647,19.386,19.889,19.917,19.61,19.449,19.343,19.315],"script":[0.91,0.254,0.892,1.101,0.862,1.024,0.85,1.082,0.684,1.249,0.857,0.226,0.224,0.892,0.658],"paint":[17.701,18.769,17.041,17.018,17.518,16.425,17.972,17.548,17.321,16.666,17.771,17.915,18.475,16.933,17.12]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.962,15.489,15.492,15.414,15.279,15.585,15.25,15.354,15.373,15.386,15.695,15.662,15.069,15.296,15.805],"script":[0.569,0.278,0.583,0.577,0.488,0.334,0.459,0.563,0.552,0.555,0.54,0.319,0.365,0.559,0.462],"paint":[14.639,14.54,13.852,14.075,14.295,14.786,13.979,13.791,13.786,14.104,14.142,14.639,13.669,13.861,13.94]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"07_create10k","values":{"total":[423.148,423.891,423.779,419.116,418.747,418.95,417.737,419.08,419.394,423.144,420.755,417.985,418.816,420.16,417.099],"script":[80.404,79.981,79.11,79.639,79.117,79.718,78.24,79.778,79.32,81.601,79.697,79.656,79.221,75.343,75.341],"paint":[335.091,336.757,337.633,332.302,332.336,331.828,332.433,332.351,333.164,334.525,333.854,331.131,332.558,338.009,334.977]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.79,44.725,45.243,45.123,45.865,45.354,46.131,45.514,44.895,46.115,46.28,45.988,45.878,45.999,47.515],"script":[5.653,5.587,5.61,5.655,5.652,5.617,6.049,5.569,5.576,6.219,5.971,6.135,6.169,5.818,6.086],"paint":[38.252,38.265,38.735,38.609,39.307,38.831,39.211,38.948,38.44,39.018,39.458,38.988,38.838,39.211,40.406]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.52,14.128,13.182,13.408,14.145,13.843,13.987,13.334,14.467,14.736,14.446,13.99,14.896,13.619,14.925],"script":[12.168,11.851,11.288,11.804,12.477,11.436,12.38,12.174,11.768,12.561,12.387,12.057,12.57,11.072,12.856],"paint":[1.329,2.187,1.82,1.499,0.733,1.933,1.299,1.077,1.359,1.975,1.955,1.83,2.205,1.606,1.974]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5059242248535156]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.3115644454956055]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.293351173400879]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7289772033691406]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[18.12419033050537]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.677734375]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4]}},{"framework":"uhtml-v4.4.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[51.5]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"01_run1k","values":{"total":[47.098,47.539,44.548,47.792,40.9,47.31,50.169,41.206,49.901,41.659,47.134,45.138,46.808,47.514,42.367],"script":[7.46,7.326,8.546,7.86,7.58,8.262,8.462,7.169,7.646,8.131,7.682,7.537,7.452,7.529,7.449],"paint":[34.15,33.2,34.148,34.18,33.126,32.873,33.183,33.449,33.779,33.293,33.404,33.925,33.023,33.3,33.404]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"02_replace1k","values":{"total":[54.514,54.669,54.99,48.906,54.321,50.814,51.366,52.204,52.704,54.651,51.669,55.361,54.125,48.118,55.299],"script":[10.591,10.375,10.703,10.168,10.756,10.522,10.538,10.421,10.697,10.712,10.783,10.716,10.658,10.309,10.715],"paint":[35.54,34.836,35.677,35.23,35.199,35.941,34.94,35.8,34.825,35.785,35.993,35.915,34.874,35.451,35.5]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.494,21.326,36.156,34.889,20.127,34.425,20.373,18.326,21.467,18.081,19.385,34.869,18.417,18.183,20.395],"script":[3.536,3.646,3.457,4.183,3.746,3.617,2.797,2.603,3.514,2.127,3.243,3.15,3.883,4.483,2.76],"paint":[12.935,14.476,16.322,14.665,15.788,14.763,15.1,14.728,15.623,14.925,14.06,14.945,14.422,13.588,15.068]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"04_select1k","values":{"total":[5.673,5.89,5.919,6.025,5.522,6.223,5.667,5.952,5.76,5.913,6.232,6.959,5.79,6.689,5.303,6.219,6.836,5.629,6.228,5.552,5.839,6.733,5.564,5.708,6.742],"script":[3.171,3.025,2.23,2.333,2.81,3.748,2.768,3.635,2.646,2.203,2.692,3.385,2.626,3.26,2.929,2.818,3.341,2.493,2.906,2.484,2.779,3.976,2.712,3.233,3.916],"paint":[2.348,2.704,3.238,2.407,1.756,2.033,2.14,2.175,2.05,2.631,2.909,2.932,2.583,3.283,1.342,2.448,2.517,2.816,3.169,1.988,1.993,2.622,2.012,2.344,1.623]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"05_swap1k","values":{"total":[23.44,21.731,21.11,36.555,20.986,37.82299999999999,37.306,37.167,36.241,21.668,36.653000000000006,24.642,38.489,19.858,20.674],"script":[2.156,2.775,2.414,2.031,2.851,3.256,2.737,2.912,2.559,2.167,3.273,2.491,4.116,2.931,2.638],"paint":[20.21,18.203,18.579,18.052,18.009,18.575,17.751,18.212,18.13,18.187,17.153,18.507,17.964,16.683,17.925]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.721,15.465,19.966,15.329,15.369,21.598,18.304,17.966,18.326,16.622,15.871,15.556,20.774,15.454,18.448],"script":[1.542,1.774,1.669,1.545,0.976,1.324,1.349,1.303,1.692,1.639,1.514,1.481,1.371,1.109,1.692],"paint":[13.008,12.974,13.866,13.657,13.559,13.404,13.549,13.1,12.981,14.05,13.6,13.734,13.273,13.85,13.434]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"07_create10k","values":{"total":[429.319,431.941,440.09,440.734,419.84,423.227,438.412,423.42,425.737,430.047,439.522,441.647,446.31,436.872,425.806],"script":[83.719,84.095,82.121,83.187,80.805,82.32,83.916,82.277,82.718,85.703,82.876,83.915,86.787,84.684,83.117],"paint":[338.855,342.304,355.296,355.518,336.232,338.77,350.763,339.039,340.871,340.731,353.902,354.482,357.46,347.615,340.544]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.029,57.531,57.672,58.137,58.034,56.319,57.784,58.031,56.317,56.662,55.576,58.073,55.802,57.417,58.02],"script":[7.11,7.662,7.215,7.37,7.157,7.232,7.913,7.14,7.1,7.288,7.124,7.046,7.1,7.229,7.275],"paint":[37.624,37.116,37.805,37.942,37.996,37.597,38.54,38.162,37.698,37.797,37.193,38.637,37.585,38.481,38.135]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.85,30.631999999999998,14.796,17.163,15.338,31.644000000000005,15.253,31.213,14.287,18.609,14.488,14.665,18.253,15.031,32.12799999999999],"script":[13.368,13.094,12.874,12.873,12.205,13.615,12.312,12.816,12.028,13.389,11.583,12.734,13.378,13.349,14.272],"paint":[1.649,1.541,1.863,1.038,2.042,2.03,2.89,2.122,1.354,1.012,2.842,1.878,1.648,1.631,1.86]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7735595703125]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.055964469909668]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.0144596099853516]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1264839172363281]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.85037612915039]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.9423828125]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.69921875]}},{"framework":"ui5-webcomponents-v1.3.1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[93.7]}},{"framework":"unis-v1.2.2-keyed","benchmark":"01_run1k","values":{"total":[50.718,49.476,50.616,49.137,49.146,50.173,48.616,48.776,50.095,49.885,48.991,49.202,49.064,48.262,48.776],"script":[15.886,15.54,16.147,15.623,15.488,16.47,15.519,15.829,16.076,15.897,15.4,15.789,15.72,15.549,15.794],"paint":[34.394,33.507,33.987,33.078,33.224,33.283,32.67,32.543,33.59,33.536,33.163,33.004,32.917,32.293,32.559]}},{"framework":"unis-v1.2.2-keyed","benchmark":"02_replace1k","values":{"total":[61.264,60.063,60.359,60.759,60.071,60.603,60.374,60.902,60.609,60.624,60.709,59.956,60.342,60.683,60.364],"script":[23.538,23.446,23.853,22.975,23.289,23.835,23.558,23.867,23.369,23.953,23.777,23.387,23.402,23.76,23.997],"paint":[37.231,36.17,36.043,37.354,36.319,36.312,36.35,36.569,36.775,36.202,36.474,36.107,36.488,36.44,35.925]}},{"framework":"unis-v1.2.2-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.239,27.834,26.196,25.818,26.758,26.526,26.554,25.57,26.959,26.068,27.551,28.553,25.782,26.142,27.474],"script":[10.869,10.839,10.623,10.25,11.056,10.905,10.207,10.24,10.791,10.697,10.88,11.953,11.124,10.492,11.063],"paint":[13.763,14.777,14.192,14.493,14.326,14.584,14.244,13.568,14.805,14.445,15.111,15.532,13.452,14.414,15.08]}},{"framework":"unis-v1.2.2-keyed","benchmark":"04_select1k","values":{"total":[7.598,8.633,7.647,8.3,8.725,7.554,7.98,7.771,7.638,7.422,8.13,7.351,8.54,7.716,8.025,9.728,9.163,7.857,7.641,7.738,8.357,7.948,8.776,7.739,8.072],"script":[5.084,5.806,5.45,5.828,5.845,5.066,5.429,5.191,5.41,4.856,5.323,4.919,5.542,5.542,4.782,6.288,6.456,5.33,5.169,5.002,5.779,5.26,5.582,5.106,5.153],"paint":[2.015,2.317,2.037,2.351,1.648,1.605,1.767,1.655,1.157,2.207,2.227,2.283,2.011,1.832,3.058,2.15,2.438,2.027,1.458,2.623,1.647,2.574,1.764,2.484,2.764]}},{"framework":"unis-v1.2.2-keyed","benchmark":"05_swap1k","values":{"total":[25.095,24.455,24.642,24.445,24.05,24.153,24.516,25.688,25.444,25.332,24.238,24.188,25.611,24.513,24.08],"script":[5.74,5.704,5.62,5.866,5.852,5.62,5.858,5.678,6.341,5.635,4.937,5.33,6.486,5.851,5.637],"paint":[17.679,16.603,17.711,17.013,16.897,17.236,17.657,18.019,16.662,16.86,17.948,17.556,17.417,17.017,17.199]}},{"framework":"unis-v1.2.2-keyed","benchmark":"06_remove-one-1k","values":{"total":[19.448,19.187,18.439,18.89,18.719,18.46,18.355,18.53,18.375,19.432,18.691,19.308,18.229,18.54,18.578],"script":[3.479,3.301,3.454,3.667,3.266,3.483,3.151,3.549,3.181,3.483,3.617,3.388,3.515,3.214,3.222],"paint":[14.692,14.286,14.229,14.196,14.624,13.856,14.426,14.351,14.611,15.157,14.083,14.869,13.957,14.267,13.353]}},{"framework":"unis-v1.2.2-keyed","benchmark":"07_create10k","values":{"total":[519.808,521.376,516.518,527.629,535.96,528.113,518.934,530.957,526.317,515.532,515.96,530.351,530.225,502.89,529.902],"script":[166.196,166.656,164.929,166.24,167.146,165.281,164.659,164.907,165.82,164.799,166.018,166.849,165.194,167.763,165.91],"paint":[346.753,348.04,344.846,354.684,362.063,356.186,347.563,359.322,353.567,344.074,343.033,356.837,358.277,328.487,357.376]}},{"framework":"unis-v1.2.2-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.171,56.269,53.481,53.906,58.029,54.983,53.984,53.516,56.049,56.035,56.675,56.535,56.3,57.069,56.503],"script":[16.419,16.506,15.786,15.747,17.254,16.473,16.1,15.574,16.514,16.728,16.83,16.799,16.497,16.947,16.598],"paint":[39.863,38.85,36.809,37.366,39.768,37.716,37.098,37.067,38.662,38.446,38.957,38.842,38.927,39.245,39.032]}},{"framework":"unis-v1.2.2-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.674,18.727,18.717,16.419,17.075,16.957,19.534,20.014,16.463,19.301,18.325,19.366,18.816,20.019,19.35],"script":[17.284,16.539,17.184,14.435,15.213,15.012,18.156,18.094,14.17,17.082,16.913,17.429,16.341,17.542,17.49],"paint":[1.862,2.09,1.432,1.872,1.76,1.816,1.266,0.891,2.195,2.129,1.31,1.679,2.38,2.368,1.336]}},{"framework":"unis-v1.2.2-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5917606353759766]}},{"framework":"unis-v1.2.2-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.87657356262207]}},{"framework":"unis-v1.2.2-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.899847030639648]}},{"framework":"unis-v1.2.2-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0785112380981445]}},{"framework":"unis-v1.2.2-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[60.885005950927734]}},{"framework":"unis-v1.2.2-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8896484375]}},{"framework":"unis-v1.2.2-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.3017578125]}},{"framework":"unis-v1.2.2-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[76.8]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"01_run1k","values":{"total":[52.97,52.045,53.068,52.794,52.032,52.919,52.251,52.057,53.143,53.05,52.732,52.508,51.918,53.588,52.347],"script":[19.652,18.55,19.52,19.325,18.368,19.518,19.469,18.587,19.454,19.433,19.079,19.078,19.27,20.156,19.184],"paint":[32.876,33.059,33.048,33.006,33.191,32.967,32.338,33.032,33.247,33.179,33.191,32.996,32.217,32.994,32.738]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"02_replace1k","values":{"total":[59.928,61.759,58.759,59.661,59.141,59.445,60.768,59.651,60.674,60.044,59.345,58.755,59.483,59.762,60.646],"script":[23.81,24.367,22.687,23.422,23.561,23.08,24.243,23.955,24.096,23.6,22.654,22.498,23.494,23.102,24.302],"paint":[35.641,36.945,35.607,35.785,35.12,35.908,36.073,35.245,36.118,35.972,36.171,35.78,35.528,36.203,35.876]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"03_update10th1k_x16","values":{"total":[33.522,33.431,33.084,33.444,34.32,33.15,33.366,33.15,31.993,33.793,34.091,34.722,32.625,33.563,33.155],"script":[17.334,17.59,16.794,17.411,16.603,16.89,16.636,17.087,15.481,18.027,17.164,18.224,16.864,17.02,16.914],"paint":[14.536,14.464,15.222,14.211,16.438,15.038,15.484,13.737,15.166,13.147,15.313,14.32,14.623,15.483,14.896]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"04_select1k","values":{"total":[13.184,10.921,11.027,11.601,11.87,11.124,12.119,11.335,10.541,10.304,11.158,11.627,11.734,10.102,11.574,10.677,11.323,10.255,10.633,10.402,10.346,11.46,11.463,10.552,11.758],"script":[9.478,8.515,8.387,8.671,9.379,8.526,9.354,8.657,8.056,8.606,8.365,8.242,9.187,7.669,8.588,8.546,8.559,7.858,7.644,7.85,7.59,8.66,8.929,8.507,8.834],"paint":[3.127,1.634,1.82,2.802,2.341,1.777,1.923,1.859,1.45,1.017,2.272,2.763,2.035,1.339,1.292,2.011,2.653,2.278,1.885,1.735,1.679,2.659,1.312,1.156,2.176]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"05_swap1k","values":{"total":[175.849,174.894,179.68,174.183,174.066,176.486,178.255,173.339,176.499,172.682,175.115,172.381,176.497,179.353,176.704],"script":[35.17,34.247,36.117,35.237,33.829,37.235,37.776,34.627,35.002,33.547,34.401,34.437,36.31,39.428,36.071],"paint":[138.827,137.766,141.705,136.439,138.577,137.37,139.069,136.476,139.743,137.091,138.816,136.432,138.229,137.743,138.013]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"06_remove-one-1k","values":{"total":[24.373,24.555,25.14,24.563,24.003,24.438,24.081,24.27,24.134,24.402,23.969,24.128,24.139,24.308,24.258],"script":[9.064,9.097,8.694,9.445,8.762,9.144,8.739,9.068,8.87,9.162,8.631,8.772,8.907,9.14,8.886],"paint":[14.342,14.621,15.468,14.272,14.143,14.461,14.506,14.466,14.13,14.465,13.962,14.569,14.119,14.029,14.298]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"07_create10k","values":{"total":[672.162,681.107,671.676,640.755,643.564,644.775,698.5,658.617,691.2,685.827,686.064,682.974,689.172,688.187,679.662],"script":[311.234,327.47,316.743,292.709,294.925,293.066,338.187,307.984,335.183,331.698,333.352,333.317,330.705,327.332,329.241],"paint":[354.143,346.598,348.007,341.27,341.965,344.895,353.387,343.944,349.181,347.394,345.527,342.827,351.805,353.72,343.529]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.21,62.951,63.098,64.218,63.173,63.014,64.301,63.378,62.962,62.047,62.488,61.458,65.687,62.713,64.714],"script":[23.675,23.568,23.65,24.622,23.883,23.502,24.751,24.13,23.646,23.163,23.764,22.809,24.717,23.723,24.835],"paint":[38.634,38.471,38.588,38.716,38.413,38.637,38.673,38.359,38.433,38.003,37.675,37.759,40.111,38.09,38.908]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.187,18.944,18.636,18.829,18.736,19.095,18.561,19.56,18.79,18.78,19.455,18.628,18.147,17.803,19.226],"script":[16.844,17.401,16.093,16.462,16.894,16.582,16.897,17.449,16.579,17.028,17.503,16.948,16.798,15.889,16.753],"paint":[1.666,1.443,1.373,2.27,1.208,1.372,0.726,1.983,2.107,0.84,1.861,1.583,0.907,1.803,2.031]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0255231857299805]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.9122314453125]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.723596572875977]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.7328872680664062]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[45.805925369262695]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[146.716796875]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[41.5693359375]}},{"framework":"valtio-v18.2.0 + 1.10.3-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[225.8]}},{"framework":"vanillajs-keyed","benchmark":"01_run1k","values":{"total":[34.895,35.566,36.381,37.158,35.28,37.244,35.199,35.199,36.055,34.745,35.801,35.397,37.868,34.809,36.547],"script":[2.504,2.426,2.47,2.481,2.468,2.467,2.474,2.418,2.523,2.464,2.442,2.483,2.542,2.609,2.433],"paint":[31.942,32.73,33.463,34.267,32.4,34.293,32.324,32.382,33.122,31.895,32.941,32.505,34.879,31.803,33.705]}},{"framework":"vanillajs-keyed","benchmark":"02_replace1k","values":{"total":[39.255,39.093,38.972,39.243,38.943,38.177,39.329,39.591,39.165,39.075,39.926,40.402,41.232,38.518,39.28],"script":[4.797,4.853,4.791,4.906,4.728,4.786,4.778,4.871,4.888,4.746,4.85,4.781,5.048,4.853,4.877],"paint":[34.026,33.802,33.744,33.903,33.799,32.933,34.13,34.308,33.863,33.886,34.649,35.204,35.76,33.248,33.991]}},{"framework":"vanillajs-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.41,16.821,17.332,17.01,16.594,16.339,16.329,17.574,16.482,16.453,16.355,16.479,16.323,16.75,15.988],"script":[1.099,0.88,0.886,0.803,0.193,0.715,0.684,0.885,0.593,0.175,0.631,0.776,0.176,0.812,0.606],"paint":[15.292,14.199,15.26,14.373,15.055,14.386,14.389,15.175,14.622,15.227,13.964,14.136,15.117,14.117,13.782]}},{"framework":"vanillajs-keyed","benchmark":"04_select1k","values":{"total":[2.845,2.623,2.306,3.229,3.385,2.279,5.186,3.28,2.518,2.981,4.99,5.13,2.591,2.506,1.959,2.317,2.567,3.584,4.668,2.927,4.475,4.647,3.774,2.85,2.363],"script":[0.062,0.236,0.058,0.43,0.751,0.054,0.058,0.845,0.057,0.056,0.649,0.056,0.057,0.056,0.053,0.061,0.061,0.055,0.053,0.056,0.056,0.241,0.063,0.058,0.088],"paint":[2.439,2.285,1.494,2.707,1.325,0.876,2.609,2.331,2.051,2.471,1.53,3.037,1.77,1.892,1.205,1.435,2.408,1.786,2.462,2.761,2.19,1.706,2.676,2.554,2.177]}},{"framework":"vanillajs-keyed","benchmark":"05_swap1k","values":{"total":[18.185,18.957,18.793,17.901,18.981,19.088,18.637,18.786,18.693,18.738,18.122,18.881,18.053,17.919,18.671],"script":[0.071,0.909,0.628,0.075,0.781,0.545,0.546,0.075,0.072,0.074,0.593,0.154,0.253,0.463,0.074],"paint":[16.489,16.702,17.236,16.401,15.834,17.236,16.545,17.554,17.061,17.452,16.51,17.997,16.601,15.761,16.36]}},{"framework":"vanillajs-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.435,15.234,14.912,15.071,15.317,15.411,15.24,15.505,15.278,15.421,14.837,14.946,15.122,15.257,15.018],"script":[0.121,0.291,0.104,0.23,0.424,0.329,0.098,0.236,0.187,0.285,0.11,0.108,0.117,0.123,0.209],"paint":[14.404,14.261,14.102,14.048,13.731,14.268,14.434,14.445,14.019,14.181,13.399,14.079,14.275,13.77,14.088]}},{"framework":"vanillajs-keyed","benchmark":"07_create10k","values":{"total":[368.609,371.879,373.041,369.141,375.233,372.074,369.473,371.072,368.353,372.926,367.275,369.63,376.125,377.667,369.112],"script":[30.279,28.325,30.446,29.33,31.162,30.128,29.637,30.328,28.997,28.976,29.04,28.425,30.013,30.669,29.905],"paint":[331.472,336.865,335.908,333.016,337.351,335.289,333.256,334.053,332.764,337.305,331.584,334.381,339.299,340.318,332.547]}},{"framework":"vanillajs-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.577,41.306,40.956,40.65,40.644,41.998,41.18,40.172,40.754,41.248,40.477,40.62,42.015,40.817,40.856],"script":[2.482,2.569,2.563,2.467,2.538,2.6,2.517,2.448,2.513,2.558,2.49,2.467,2.614,2.452,2.506],"paint":[37.265,37.893,37.539,37.287,37.223,38.536,37.807,36.885,37.388,37.85,37.135,37.32,38.541,37.462,37.477]}},{"framework":"vanillajs-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.179,11.946,11.116,12.682,12.012,12.818,11.647,12.171,11.442,11.396,11.767,12.134,12.142,12.885,12.165],"script":[9.769,10.118,10.157,10.688,10.858,10.788,9.5,9.831,9.83,9.595,9.94,10.502,10.37,10.687,10.319],"paint":[1.868,1.059,0.878,1.074,1.074,1.935,1.924,1.813,1.531,1.726,1.739,1.56,0.988,1.751,0.901]}},{"framework":"vanillajs-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.45081233978271484]}},{"framework":"vanillajs-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.752589225769043]}},{"framework":"vanillajs-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.6594047546386719]}},{"framework":"vanillajs-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6156044006347656]}},{"framework":"vanillajs-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.175128936767578]}},{"framework":"vanillajs-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.423828125]}},{"framework":"vanillajs-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.37109375]}},{"framework":"vanillajs-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[60.6]}},{"framework":"vanillajs-1-keyed","benchmark":"01_run1k","values":{"total":[35.605,35.182,35.186,35.525,35.495,35.35,35.336,35.974,35.059,34.979,35.425,35.339,35.105,35.549,35.657],"script":[2.588,2.528,2.583,2.597,2.556,2.537,2.52,2.55,2.456,2.485,2.479,2.576,2.428,2.556,2.467],"paint":[32.611,32.265,32.206,32.511,32.496,32.428,32.428,33.026,32.214,32.095,32.587,32.386,32.304,32.636,32.799]}},{"framework":"vanillajs-1-keyed","benchmark":"02_replace1k","values":{"total":[38.835,38.872,38.928,38.512,38.616,38.353,39.525,39.031,39.053,39.356,39.38,39.677,40.408,38.782,41.003],"script":[4.864,4.955,4.955,4.807,4.762,4.864,4.984,4.799,4.874,4.918,4.968,5.074,5.095,4.97,5.162],"paint":[33.549,33.502,33.559,33.29,33.423,33.077,34.132,33.785,33.745,34.013,33.999,34.195,34.859,33.402,35.412]}},{"framework":"vanillajs-1-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.461,16.04,15.09,15.475,15.941,15.581,15.765,15.805,16.177,16.379,16.202,15.202,15.981,16.487,16.236],"script":[0.161,0.175,0.642,0.159,0.851,0.89,0.811,0.186,0.594,0.823,0.155,0.156,0.782,1.105,0.486],"paint":[13.708,14.175,13.36,13.984,14.07,12.914,13.622,14.055,14.443,14.42,14.495,13.259,14.249,14.384,14.447]}},{"framework":"vanillajs-1-keyed","benchmark":"04_select1k","values":{"total":[5.527,2.247,2.629,2.337,1.833,3.245,2.788,3.078,3.536,3.977,4.524,2.483,2.558,2.57,3.819,3.024,3.112,2.033,4.202,2.988,3.694,2.388,3.452,2.177,2.496],"script":[0.058,0.067,0.064,0.063,0.227,0.833,0.066,0.588,0.056,0.059,0.061,0.596,0.059,0.291,0.057,0.065,0.825,0.056,0.057,0.077,0.059,0.056,0.571,0.055,0.057],"paint":[1.86,2.068,1.628,1.328,1.509,1.813,2.568,2.395,2.265,2.412,1.519,1.556,2.403,2.176,1.349,1.708,2.181,1.194,2.423,2.792,2.089,2.228,2.727,1.359,2.339]}},{"framework":"vanillajs-1-keyed","benchmark":"05_swap1k","values":{"total":[17.304,17.589,18.721,17.601,17.821,17.764,17.855,18.739,17.727,18.521,18.138,19.029,17.792,18.278,18.297],"script":[0.072,0.083,0.077,0.077,0.075,0.075,0.074,0.569,0.082,0.081,0.073,0.066,0.078,0.083,0.075],"paint":[15.65,16.515,17.267,15.878,16.463,16.518,17.081,16.828,16.729,17.222,16.329,18.325,16.005,17.04,16.897]}},{"framework":"vanillajs-1-keyed","benchmark":"06_remove-one-1k","values":{"total":[14.647,15.144,14.626,14.711,14.24,14.362,15.07,14.717,14.724,15.263,15.135,14.65,14.445,14.678,15.165],"script":[0.082,0.388,0.08,0.077,0.075,0.2,0.075,0.194,0.074,0.31,0.306,0.201,0.188,0.075,0.075],"paint":[13.841,14.069,14.109,13.923,13.477,13.26,14.319,13.776,14.073,14.279,14.387,13.752,13.466,13.873,14.093]}},{"framework":"vanillajs-1-keyed","benchmark":"07_create10k","values":{"total":[370.816,363.741,367.265,366.082,366.083,373.35,364.549,368.14,376.52,374.841,370.9,364.894,368.065,365.854,377.412],"script":[27.67,27.758,26.943,27.24,26.543,27.241,27.648,28.132,28.163,29.061,29.745,27.575,28.901,27.32,28.249],"paint":[336.334,329.492,333.851,332.316,332.403,339.436,330.373,333.42,341.529,339.154,334.261,330.776,332.601,331.938,342.414]}},{"framework":"vanillajs-1-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.024,39.761,39.454,39.676,39.845,40.696,41.391,40.771,40.27,41.064,40.335,40.074,39.347,40.744,40.018],"script":[2.541,2.44,2.521,2.436,2.45,2.483,2.59,2.614,2.514,2.566,2.508,2.599,2.476,2.574,2.466],"paint":[36.699,36.486,36.154,36.464,36.578,37.372,37.976,37.341,36.96,37.658,37.003,36.615,36.032,37.323,36.717]}},{"framework":"vanillajs-1-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.656,12.124,11.702,11.8,11.529,11.836,11.682,11.811,11.88,11.727,11.688,11.668,11.149,12.45,12.205],"script":[9.514,10.095,10.09,10.239,9.602,9.735,10.099,10.005,10.365,9.792,10.015,10.051,9.791,10.139,10.282],"paint":[2.06,1.321,1.534,1.47,1.221,1.861,1.496,1.042,1.171,1.854,0.759,1.392,1.286,1.806,0.952]}},{"framework":"vanillajs-1-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4304313659667969]}},{"framework":"vanillajs-1-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7358684539794922]}},{"framework":"vanillajs-1-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.6473112106323242]}},{"framework":"vanillajs-1-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6018514633178711]}},{"framework":"vanillajs-1-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.092707633972168]}},{"framework":"vanillajs-1-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.060546875]}},{"framework":"vanillajs-1-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.041015625]}},{"framework":"vanillajs-1-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.1]}},{"framework":"vanillajs-wc-keyed","benchmark":"01_run1k","values":{"total":[38.476,37.923,38.242,37.943,38.189,37.699,38.455,38.713,37.827,38.035,38.621,37.553,38.68,38.464,37.409],"script":[4.754,4.619,4.787,4.735,4.802,4.831,4.809,4.781,4.721,4.69,4.86,4.64,4.846,4.815,4.74],"paint":[33.314,32.919,33.087,32.817,32.956,32.495,33.242,33.517,32.702,32.934,33.387,32.498,33.427,33.257,32.262]}},{"framework":"vanillajs-wc-keyed","benchmark":"02_replace1k","values":{"total":[41.223,41.296,41.155,41.383,40.6,41.067,41.71,41.183,40.471,41.823,41.047,40.41,40.145,40.88,41.157],"script":[6.781,6.72,6.845,6.81,6.805,6.825,6.873,6.6,6.631,6.927,6.793,6.689,6.717,6.67,6.648],"paint":[34.002,34.151,33.926,34.122,33.382,33.799,34.447,34.157,33.405,34.47,33.843,33.282,33,33.787,34.079]}},{"framework":"vanillajs-wc-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.248,16.501,15.408,16.323,16.742,17.279,16.62,16.876,16.517,17.735,16.316,19.009,16.273,17.071,16.533],"script":[0.506,0.893,0.606,0.193,0.878,1.05,0.965,0.986,0.842,1.259,0.164,0.847,0.556,0.694,0.898],"paint":[14.059,14.607,13.174,15.137,14.093,14.301,13.497,14.887,15.031,14.515,14.73,16.213,15.011,14.844,14.632]}},{"framework":"vanillajs-wc-keyed","benchmark":"04_select1k","values":{"total":[2.418,2.414,4.033,2.629,2.339,3.211,2.493,3.025,2.567,2.647,3.427,4.558,2.589,2.707,3.192,2.346,2.717,1.972,4.091,2.391,3.229,3.728,2.86,3.985,2.526],"script":[0.585,0.323,0.063,0.067,0.069,0.836,0.471,0.861,0.065,0.228,0.956,0.201,0.069,0.071,0.924,0.345,0.062,0.068,0.071,0.071,0.063,0.065,0.433,0.59,0.415],"paint":[1.414,1.988,1.095,1.512,2.166,1.43,1.917,2.058,2.388,1.791,1.905,1.644,1.916,1.715,1.802,1.912,2.554,1.054,1.742,2.214,1.836,2.223,2.314,1.95,2.025]}},{"framework":"vanillajs-wc-keyed","benchmark":"05_swap1k","values":{"total":[17.932,18.342,18.598,17.961,18.5,17.574,18.153,18.892,18.507,18.998,18.326,18.917,18.651,18.138,18.367],"script":[0.09,0.222,0.73,0.096,0.822,0.085,0.504,0.454,0.095,0.101,0.085,0.28,0.546,0.088,0.592],"paint":[16.317,16.785,16.723,16.455,16.061,16.497,15.106,16.673,16.921,18.221,16.752,17.318,16.72,16.66,15.397]}},{"framework":"vanillajs-wc-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.028,14.842,15.762,14.917,14.724,15.162,14.752,14.69,14.74,15.223,14.883,15.241,14.866,15.698,15.149],"script":[0.111,0.404,0.358,0.269,0.107,0.107,0.243,0.276,0.416,0.111,0.104,0.444,0.115,0.332,0.107],"paint":[13.867,13.731,14.671,13.948,13.915,14.333,13.799,13.854,13.623,14.093,13.803,14.054,13.813,14.497,14.415]}},{"framework":"vanillajs-wc-keyed","benchmark":"07_create10k","values":{"total":[407.299,403.612,404.809,407.108,404.285,403.846,406.134,405.682,406.022,406.218,404.362,404.952,402.772,405.146,407.676],"script":[60.044,59.214,59.975,61.116,59.814,58.992,59.618,60.526,58.837,60.374,59.404,58.682,57.431,60.228,58.75],"paint":[340.464,337.556,338.11,339.026,337.758,338.184,339.873,338.419,340.543,339.137,338.135,339.72,338.673,338.257,342.185]}},{"framework":"vanillajs-wc-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.717,43.722,43.518,45.175,43.128,43.991,43.105,43.657,43.771,44.159,43.286,44.041,44.025,43.884,44.001],"script":[4.563,4.235,4.4,4.346,4.287,4.354,4.258,4.453,4.445,4.39,4.332,4.431,4.476,4.431,4.327],"paint":[39.274,38.585,38.277,39.988,37.998,38.763,37.998,38.372,38.468,38.923,38.109,38.732,38.692,38.579,38.761]}},{"framework":"vanillajs-wc-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.901,12.916,12.268,12.437,11.907,11.869,13.091,12.45,13.051,12.016,12.591,12.083,12.045,11.78,13.132],"script":[11.072,10.759,10.43,10.838,10.362,9.865,11.015,10.596,10.817,10.573,10.705,10.552,10.898,9.873,10.679],"paint":[1.736,1.822,1.752,1.092,1.277,1.922,1.349,1.307,1.174,0.38,1.05,1.444,0.385,1.826,2.364]}},{"framework":"vanillajs-wc-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5438957214355469]}},{"framework":"vanillajs-wc-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7899789810180664]}},{"framework":"vanillajs-wc-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.9211034774780273]}},{"framework":"vanillajs-wc-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6146697998046875]}},{"framework":"vanillajs-wc-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.594362258911133]}},{"framework":"vanillajs-wc-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7998046875]}},{"framework":"vanillajs-wc-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.484375]}},{"framework":"vanillajs-wc-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.7]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"01_run1k","values":{"total":[46.158,45.723,45.717,44.184,44.358,45.353,45.33,45.018,44.799,45.758,45.285,45.27,46.561,45.645,45.295],"script":[10.175,9.49,9.573,9.294,9.305,10.025,9.776,9.964,9.993,9.814,9.864,10.081,10.211,9.978,9.532],"paint":[35.516,35.778,35.701,34.463,34.631,34.899,35.085,34.631,34.375,35.51,35.002,34.752,35.91,35.246,35.293]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"02_replace1k","values":{"total":[50.124,47.703,48.201,49.111,49.063,48.529,49.408,49.146,48.888,48.689,49.47,48.134,48.69,49.542,49.623],"script":[12.465,12.021,11.935,12.242,12.749,12.003,12.606,12.64,12.563,12.384,12.59,11.684,12.572,12.232,12.704],"paint":[37.197,35.265,35.827,36.419,35.881,36.093,36.357,36.08,35.896,35.859,36.45,36.017,35.692,36.835,36.48]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[39.27,37.445,15.795,39.076,34.994,39.561,15.843,35.278,16.895,38.697,35.403,35.834,38.847,36.091,17.045],"script":[1.08,1.93,1.354,0.309,1.036,1.376,1.225,1.859,1.142,1.289,1.281,0.292,1.025,1.696,1.194],"paint":[16.578,14.201,13.775,17.314,14.781,15.273,13.203,13.727,14.202,17.15,14.117,13.78,15.733,14.654,14.753]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"04_select1k","values":{"total":[3.109,2.634,5.472,2.549,2.288,3.094,2.696,2.252,5.573,2.532,3.118,2.766,2.379,2.983,2.239,2.448,2.682,2.413,4.382,2.556,5.051,5.841,2.652,4.033,3.409],"script":[0.937,0.294,0.067,0.068,0.069,0.944,0.072,0.073,1.027,0.069,0.397,0.066,0.283,0.804,0.067,0.069,0.493,0.076,0.35,0.068,0.069,0.071,0.526,0.87,1.032],"paint":[2.071,2.231,1.746,1.588,0.861,2.047,2.527,1.094,1.406,2.371,1.454,2.602,1.584,1.646,2.085,2.276,0.573,2.239,1.631,1.954,2.243,2.166,1.452,1.71,2.282]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"05_swap1k","values":{"total":[18.025,18.86,17.997,19.596,18.993,18.481,18,18.688,17.724,18.236,18.95,18.914,18.574,19.354,19.014],"script":[0.412,0.078,0.089,0.73,1.103,0.461,0.262,0.598,0.525,0.078,0.086,0.293,0.085,0.089,0.152],"paint":[16.358,17.457,16.358,16.748,16.848,16.747,15.898,16.836,15.923,16.839,17.42,16.825,17.386,17.831,17.737]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.301,15.341,15.406,16.637,15.886,15.136,15.339,17.758,15.635,15.41,15.897,15.224,15.873,15.877,15.29],"script":[0.133,0.457,0.387,0.478,0.138,0.294,0.135,0.456,0.366,0.374,0.395,0.249,0.449,0.386,0.135],"paint":[13.992,13.703,13.726,14.767,14.867,13.956,14.015,15.918,13.745,13.853,14.506,13.773,14.235,14.231,13.973]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"07_create10k","values":{"total":[467.035,459.315,447.279,459.727,460.062,455.195,467.357,444.377,458.191,460.417,448.267,457.462,467.447,449.11,462.752],"script":[111.681,107.789,108.056,107.64,106.955,107.888,111.808,107.374,107.607,108.139,108.975,106.592,112.219,109.974,110.556],"paint":[348.147,344.967,332.587,345.508,346.129,340.665,348.707,330.46,344.025,345.598,332.637,344.1,348.596,332.471,345.348]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.076,49.126,48.907,49.056,50.077,49.543,49.226,49.002,47.865,48.931,48.169,48.242,47.753,48.563,50.167],"script":[8.775,8.822,8.814,9.497,9.469,9.353,9.345,8.705,8.755,8.874,9.505,8.732,8.773,8.808,8.965],"paint":[39.395,39.414,39.153,38.692,39.736,39.215,38.983,39.357,38.233,39.172,37.77,38.616,38.124,38.881,39.996]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.579,12.381,13.016,12.302,12.947,11.683,12.247,12.851,12.963,12.791,13.107,12.031,12.869,13.285,13.376],"script":[11.057,10.705,10.997,10.725,10.796,10.634,10.823,11.446,11.379,10.855,10.969,10.48,11.256,11.263,11.507],"paint":[0.965,1.59,1.561,1.496,2.052,0.355,1.338,1.314,0.36,1.855,2.05,1.468,1.532,1.652,0.467]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4329671859741211]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.244020462036133]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.343626022338867]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6673069000244141]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.67130947113037]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[5.4677734375]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[1.9130859375]}},{"framework":"vanjs-v1.1.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[49]}},{"framework":"voby-v0.48.0-keyed","benchmark":"01_run1k","values":{"total":[40.555,40.678,39.791,39.907,39.529,39.902,39.128,39.556,39.752,39.869,40.309,40.133,39.964,40.001,39.688],"script":[7.067,7.152,7.005,6.957,7.074,7.191,6.714,6.844,7.075,7.061,7.379,6.966,7.222,7.341,7.11],"paint":[33.066,33.119,32.347,32.556,32.074,32.316,31.99,32.3,32.272,32.416,32.535,32.756,32.335,32.27,32.177]}},{"framework":"voby-v0.48.0-keyed","benchmark":"02_replace1k","values":{"total":[43.433,42.563,41.852,43.51,43.042,43.374,41.852,43.705,43.104,43.794,44.069,42.188,43.359,43.333,44.125],"script":[8.83,8.283,8.401,9.098,8.727,8.723,8.948,9.129,9.263,9.076,8.928,8.392,8.913,9.092,8.929],"paint":[34.153,33.85,33.041,34.002,33.904,34.213,32.484,34.17,33.407,34.286,34.717,33.361,34.001,33.819,34.779]}},{"framework":"voby-v0.48.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.233,16.571,16.796,16.742,15.903,16.294,16.494,16.157,16.228,16.282,15.835,16.468,16.657,15.504,16.464],"script":[1.413,1.709,1.26,1.706,1.029,1.261,0.95,1.276,1.366,1.26,1.24,0.642,0.934,1.14,1.747],"paint":[13.505,13.285,13.908,14.085,13.632,13.751,13.433,13.843,13.576,13.492,12.871,14.279,14.451,13.351,13.202]}},{"framework":"voby-v0.48.0-keyed","benchmark":"04_select1k","values":{"total":[5.885,2.272,2.87,2.925,2.784,3.101,2.691,2.541,3.996,3.123,3.535,2.624,3.39,6.676,4.151,5.446,3.286,2.851,2.827,2.744,2.793,2.784,2.995,3.011,3.299],"script":[0.57,0.147,0.705,0.6,0.839,0.142,0.467,0.153,0.85,1.092,0.512,1.059,0.363,0.78,0.135,0.138,0.146,0.15,0.61,0.488,0.794,0.995,0.653,0.234,1.1],"paint":[1.606,2.022,1.592,2.229,1.216,2.866,2.126,1.349,1.299,1.935,1.149,1.463,2.034,1.805,2.258,2.511,2.356,2.602,1.612,1.245,1.902,1.323,2.238,2.672,2.109]}},{"framework":"voby-v0.48.0-keyed","benchmark":"05_swap1k","values":{"total":[20.867,20.337,20.178,20.731,20.446,20.091,20.428,20.418,20.352,20.67,20.271,22.387,21.182,19.911,20.07],"script":[1.947,1.588,1.498,1.893,2.025,1.412,1.789,2.153,1.639,1.374,1.142,1.389,1.747,2.078,1.349],"paint":[16.83,16.999,17.816,17.518,16.546,17.707,17.61,16.997,16.998,18.201,17.656,17.564,18,16.578,16.72]}},{"framework":"voby-v0.48.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.215,16.482,15.768,15.868,15.791,16.174,15.845,15.549,15.986,15.548,15.932,15.995,15.675,15.98,15.806],"script":[0.882,0.732,0.726,0.906,0.691,1.043,0.967,0.732,0.917,0.699,0.725,0.86,0.699,0.977,0.687],"paint":[14.342,14.881,13.835,14.247,14.322,14.221,13.938,14.054,14.238,13.833,14.493,14.406,14.305,14.267,14.139]}},{"framework":"voby-v0.48.0-keyed","benchmark":"07_create10k","values":{"total":[394.705,391.934,396.002,396.37,394.502,402.957,391.737,395.385,392.712,393.831,394.055,396.473,396.491,399.094,393.096],"script":[67.837,68.567,70.331,67.111,67.463,67.746,68.964,68.324,68.252,69.439,68.12,68.726,69.491,69.665,67.12],"paint":[320.256,316.458,318.948,322.672,320.629,328.67,316.193,320.421,317.82,317.903,319.298,321.194,320.39,322.46,319.56]}},{"framework":"voby-v0.48.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.126,44.465,44.319,44.025,44.132,44.66,43.817,44.913,43.999,43.864,43.713,44.197,44.08,44.701,44.32],"script":[6.252,6.585,6.734,6.689,6.548,6.738,6.691,6.637,6.566,6.27,6.314,6.663,6.469,6.658,6.625],"paint":[37.955,36.998,36.746,36.506,36.726,37.074,36.291,37.437,36.607,36.743,36.489,36.711,36.758,37.217,36.869]}},{"framework":"voby-v0.48.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.237,15.36,13.545,13.244,13.965,13.099,13.279,12.928,15.115,13.408,14.578,13.946,13.475,13.907,15.354],"script":[11.45,13.467,12.001,11.7,11.691,11.275,11.775,11.482,12.96,11.943,13.02,11.75,12.038,11.952,13.296],"paint":[1.691,1.108,1.463,1.452,1.457,1.102,1.41,0.398,2.046,1.372,0.513,1.085,1.341,1.85,1.953]}},{"framework":"voby-v0.48.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6431703567504883]}},{"framework":"voby-v0.48.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.184615135192871]}},{"framework":"voby-v0.48.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.2092485427856445]}},{"framework":"voby-v0.48.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1176328659057617]}},{"framework":"voby-v0.48.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[23.268893241882324]}},{"framework":"voby-v0.48.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[33.6552734375]}},{"framework":"voby-v0.48.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.8427734375]}},{"framework":"voby-v0.48.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[77.6]}},{"framework":"vue-v3.4.21-keyed","benchmark":"01_run1k","values":{"total":[42.952,44.176,45.973,43.443,45.833,42.58,44.004,44.267,45.06,44.391,43.504,46.094,43.205,44.524,44.232],"script":[8.848,8.752,9.553,8.884,9.669,8.869,9.857,9.374,9.751,9.784,9.12,10.07,8.857,9.258,9.45],"paint":[33.693,34.979,35.97,34.106,35.679,33.299,33.723,34.462,34.88,34.172,33.982,35.569,33.921,34.817,34.338]}},{"framework":"vue-v3.4.21-keyed","benchmark":"02_replace1k","values":{"total":[49.349,46.566,49.415,49.224,47.479,48.757,48.238,48.253,48.633,49.114,46.268,48.423,48.487,47.302,48.793],"script":[12.221,11.481,11.747,12.488,11.567,11.676,11.843,12.153,12.151,12.49,11.416,12.019,11.772,12.45,11.681],"paint":[36.664,34.437,37.178,36.275,35.461,36.61,35.938,35.657,36.03,36.174,34.428,35.941,36.268,34.427,36.654]}},{"framework":"vue-v3.4.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.167,19.11,20.453,21.561,19.296,19.486,20.136,19.669,20.017,19.913,19.638,19.4,19.298,19.747,19.134],"script":[3.142,2.984,4.027,3.678,3.312,2.952,3.663,3.636,3.291,3.63,3.552,3.159,3.46,4.167,3.122],"paint":[14.572,15.236,15.424,15.124,13.726,15.572,14.701,14.822,15.173,14.617,14.554,14.307,14.529,13.84,15.006]}},{"framework":"vue-v3.4.21-keyed","benchmark":"04_select1k","values":{"total":[4.373,3.66,4.188,4.993,4.192,3.878,4.142,4.142,4.042,4.869,4.06,4.578,4.998,4.604,5.044,3.761,3.826,4.331,4.523,4.189,3.864,4.917,4.29,4.34,5.028],"script":[1.222,1.177,1.82,1.003,2.016,1.128,1.091,1.558,1.78,2.245,1.025,1.297,2.422,1.822,0.99,1.514,1.756,1.76,1.778,1.827,1.216,1.97,1.504,2.264,1.057],"paint":[2.764,0.825,2.266,2.688,2.063,2.269,2.942,1.352,2.16,1.25,2.927,3.171,2.457,2.646,2.952,1.63,1.962,1.622,1.896,1.666,2.544,1.883,1.799,1.772,2.967]}},{"framework":"vue-v3.4.21-keyed","benchmark":"05_swap1k","values":{"total":[20.642,20.714,20.824,20.833,20.88,19.368,20.943,20.927,20.596,20.066,20.017,21.13,19.842,20.918,20.045],"script":[2.227,1.661,2.389,1.369,1.546,1.778,2.416,1.889,1.347,1.627,1.075,2.308,1.97,2.354,2.301],"paint":[17.055,17.431,17.139,18.311,17.31,15.303,16.568,17.77,18.046,16.841,17.652,17.105,16.189,16.394,16.341]}},{"framework":"vue-v3.4.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.815,18.627,19.809,18.574,19.244,18.414,18.604,19.148,18.827,20.158,19.775,18.84,18.21,19.817,18.592],"script":[2.838,3.207,3.268,3.134,3.325,3.042,3.277,3.3,3.384,3.138,3.216,3.282,2.788,3.459,3.359],"paint":[15.143,14.187,15.802,14.672,15.107,14.608,14.582,14.761,14.326,16.246,14.846,14.717,14.339,15.673,14.463]}},{"framework":"vue-v3.4.21-keyed","benchmark":"07_create10k","values":{"total":[444.662,443.615,445.332,443.53,445.744,448.569,444.512,450.054,446.166,442.448,445.753,448.683,447.175,444.901,448.742],"script":[97.081,101.062,99.487,100.384,101.178,100.541,98.548,100.695,101.4,99.533,98.771,97.713,102.085,98.366,100.395],"paint":[340.692,335.791,339.249,336.386,337.832,341.382,339.295,342.604,338.019,336.273,340.308,344.301,338.431,339.886,341.531]}},{"framework":"vue-v3.4.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.887,50.682,50.542,51.227,50.224,49.416,49.715,50.884,48.891,49.279,47.847,48.9,48.859,48.901,48.376],"script":[8.819,8.947,8.752,8.412,8.94,8.682,8.815,9.179,8.641,8.841,8.862,8.581,9.018,8.466,8.521],"paint":[40.126,40.858,40.915,41.924,40.43,39.877,40.035,40.865,39.367,39.603,38.085,39.471,38.987,39.571,38.993]}},{"framework":"vue-v3.4.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.204,16.151,15.251,15.822,15.687,15.283,14.7,16.857,15.623,15.083,15.702,15.307,16.005,17.05,15.425],"script":[14.352,13.472,13.108,13.647,13.792,13.699,13.286,14.427,13.86,13.004,13.407,13.16,14.125,14.911,13.809],"paint":[1.756,2.571,1.146,2.058,1.309,1.029,1.312,0.609,1.672,1.967,2.2,1.679,1.192,2.037,1.521]}},{"framework":"vue-v3.4.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7242555618286133]}},{"framework":"vue-v3.4.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7696666717529297]}},{"framework":"vue-v3.4.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.769789695739746]}},{"framework":"vue-v3.4.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2298755645751953]}},{"framework":"vue-v3.4.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.31429100036621]}},{"framework":"vue-v3.4.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[55.9345703125]}},{"framework":"vue-v3.4.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20.46875]}},{"framework":"vue-v3.4.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[108.4]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"01_run1k","values":{"total":[43.995,42.556,42.554,42.856,43.377,43.162,43.92,42.311,42.153,42.975,43.238,42.768,42.46,43.153,43.797],"script":[9.207,8.985,8.957,8.947,9.578,9.025,9.548,8.499,8.966,9.396,9.413,8.527,8.74,8.942,8.749],"paint":[34.351,33.16,33.183,33.494,33.382,33.713,33.958,33.402,32.781,33.167,33.416,33.812,33.307,33.802,34.611]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"02_replace1k","values":{"total":[50.362,49.769,49.056,49.378,49.873,51.539,50.941,48.93,48.865,49.058,48.846,49.24,49.176,49.248,49.075],"script":[12.846,13.266,13.183,13.013,13.227,13.459,13.616,13.196,13.015,12.812,12.698,12.865,12.684,13.162,12.589],"paint":[37.041,36.072,35.413,35.941,36.205,37.613,36.883,35.317,35.399,35.798,35.695,35.94,36.03,35.642,36.055]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"03_update10th1k_x16","values":{"total":[29.109,28.301,28.513,28.884,28.129,28.351,28.443,27.717,28.391,28.346,30.555,28.419,27.074,27.935,27.829],"script":[12.96,12.57,12.523,13.074,11.97,12.254,12.614,12.258,11.672,12.399,13.445,12.378,11.439,12.242,11.614],"paint":[14.517,13.247,14.205,13.883,14.302,14.774,14.462,13.486,15.657,14.329,15.605,13.74,14.627,14.206,14.371]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"04_select1k","values":{"total":[13.403,13.494,12.337,12.911,12.383,12.556,13.412,12.5,13.827,14.176,13.139,12.671,13.226,13.301,13.761,13.574,13.201,12.777,11.98,14.046,12.981,11.739,13.31,12.729,12.664],"script":[10.407,10.408,8.977,9.685,9.413,9.97,10.1,9.533,10.72,10.812,9.865,10.251,10.11,10.403,10.336,11.007,9.717,9.951,9.344,10.473,9.651,9.529,10.246,9.976,9.676],"paint":[2.614,2.331,2.788,3.058,2.807,0.542,3.135,2.808,2.943,2.21,2.775,1.265,2.135,1.989,3.27,2.056,3.323,1.902,1.832,3.385,2.398,1.445,2.33,2.619,2.338]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"05_swap1k","values":{"total":[30.354,28.826,29.711,29.963,28.33,28.53,29.445,28.926,29.657,29.876,28.392,29.482,29.659,30.939,32.173],"script":[11.024,10.058,10.731,10.025,9.77,9.339,10.197,10.284,10.643,10.262,10.028,10.597,10.252,11.777,12.139],"paint":[17.812,17.464,17.882,18.625,16.823,18.238,17.03,17.34,17.638,18.25,17.164,17.336,17.485,16.634,18.668]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.595,20.681,21.075,21.271,20.417,21.233,21.677,21.89,20.476,21.695,20.968,21.91,20.479,20.884,21.326],"script":[5.169,5.36,5.197,5.468,5.049,5.247,5.603,5.601,4.968,5.246,5.479,5.602,5.045,5.329,5.597],"paint":[14.64,14.678,14.837,15.009,14.009,14.604,15.328,15.487,14.434,15.059,14.073,15.454,14.3,14.836,14.948]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"07_create10k","values":{"total":[446.829,442.343,445.958,448.261,447.637,446.932,450.635,439.746,445.022,440.805,446.02,446.237,449.096,445.56,447.441],"script":[99.937,97.46,99.253,103.3,104.504,100.621,102.195,98.997,98.336,99.872,98.443,100.364,101.19,102.548,100.037],"paint":[339.681,338.216,339.943,337.99,336.393,339.568,341.412,333.993,339.996,334.189,340.965,339.199,341.187,336.351,340.684]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.901,54.938,54.094,53.39,54.795,55.385,54.244,53.561,54.051,54.291,53.365,53.387,53.507,52.648,53.948],"script":[13.648,12.912,13.775,13.375,13.695,13.673,13.562,13.188,13.116,13.536,13.462,13.313,13.291,13.511,13.235],"paint":[42.313,41.138,39.448,39.15,40.189,40.815,39.743,39.506,40.041,39.874,38.997,39.168,39.321,38.251,39.762]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.607,16.565,16.994,17.837,17.295,17.035,16.82,16.305,18.037,17.51,15.73,16.458,16.764,16.265,15.673],"script":[14.45,13.89,14.809,16.346,14.86,14.763,14.89,15.072,16.184,15.591,13.643,14.15,14.999,13.637,14.153],"paint":[2.034,2.575,1.258,1.388,1.91,2.168,1.819,0.392,0.379,1.823,1.983,2.02,1.664,2.118,0.999]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7718782424926758]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.157095909118652]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.193065643310547]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1573553085327148]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.41868019104004]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[53.763671875]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.6025390625]}},{"framework":"vue-jsx-v3.4.21-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[108.5]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"01_run1k","values":{"total":[47.715,44.591,45.159,46.725,47.043,46.825,46.837,44.866,45.715,47.704,45.37,46.471,46.176,45.909,46.481],"script":[12.436,11.084,10.815,11.288,10.567,11.692,11.603,11.21,10.952,11.396,10.49,11.788,11.618,10.624,11.63],"paint":[34.83,33.066,33.919,35.017,36.004,34.717,34.812,33.203,34.327,35.867,34.449,34.256,34.142,34.863,34.439]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"02_replace1k","values":{"total":[51.58,49.085,49.698,51.229,50.115,49.606,49.283,50.391,49.979,49.298,50.43,49.412,50.419,48.998,49.899],"script":[14.405,13.746,14.043,15.28,14.857,14.318,14.412,14.496,14.78,14.518,14.505,14.235,14.526,13.735,14.421],"paint":[36.729,34.918,35.221,35.523,34.813,34.755,34.226,35.454,34.771,34.354,35.462,34.738,34.966,34.838,35.058]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[24.376,22.642,22.665,23.079,23.771,23.166,23.728,23.759,22.855,22.832,23.156,23.064,24.387,24.362,22.246],"script":[7.405,7.007,5.835,6.705,7.018,6.795,7.406,6.641,6.097,6.292,6.577,6.698,7.331,7.391,6.011],"paint":[15.43,14.13,13.697,15.614,15.44,14.864,14.676,15.877,15.658,14.808,15.254,14.59,14.938,15.051,13.444]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"04_select1k","values":{"total":[7.785,7.152,7.081,6.118,6.809,6.735,5.96,6.628,6.842,6.168,6.207,6.653,6.794,6.893,6.937,7.209,6.646,7.101,6.628,6.815,7.26,7.151,7.289,6.601,7.057],"script":[4.023,4.556,3.779,4.247,4.549,4.985,4.328,4.292,4.206,3.618,4.185,4.215,3.417,4.284,4.153,4.253,3.923,4.333,3.919,4.36,4.826,4.004,4.578,3.829,4.072],"paint":[3.615,2.227,2.782,1.32,1.514,1.626,1.396,2.209,2.434,2.447,1.19,2.19,3.241,1.866,2.388,2.029,1.581,2.64,2.007,1.854,1.644,3.021,2.181,2.652,2.069]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"05_swap1k","values":{"total":[22.593,23.91,23.372,24.043,24.084,24.073,23.262,23.653,22.91,23.845,23.241,22.837,22.494,23.391,23.354],"script":[4.601,4.847,4.593,4.943,4.427,4.629,4.486,4.614,4.716,4.233,4.368,3.898,4.386,4.404,4.526],"paint":[16.456,17.733,16.951,17.847,17.841,18.271,17.61,18.117,16.153,18.201,17.383,16.542,16.688,17.376,17.313]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.838,23.39,22.361,23.617,22.483,23.21,22.16,23.468,21.981,23.423,23.239,22.291,22.257,23.109,22.645],"script":[7.121,6.75,6.524,6.474,6.564,6.849,6.668,6.756,6.694,6.825,6.647,6.831,6.588,6.694,6.078],"paint":[14.765,15.846,15.058,15.768,14.95,15.412,14.091,15.567,14.572,15.637,15.788,14.096,14.612,15.499,15.505]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"07_create10k","values":{"total":[457.241,458.894,458.644,458.695,455.892,457.128,458.037,457.116,459.618,459.487,453.876,458.279,456.198,455.013,457.712],"script":[117.239,112.791,114.982,109.613,110.417,110.795,111.333,110.399,111.265,113.547,109.046,111.371,109.105,110.235,112.392],"paint":[333.249,339.38,336.856,342.383,338.773,339.694,339.994,340.02,341.694,339.234,338.141,340.232,340.404,338.141,338.624]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.509,52.429,54.315,51.998,52.555,53.827,53.6,52.944,53.393,52.865,52.302,53.653,51.245,52.107,52.675],"script":[13.099,12.998,13.501,12.447,13.137,13.292,13.346,12.369,12.796,12.721,12.569,13.131,12.238,12.178,12.863],"paint":[38.45,38.582,39.893,38.691,38.453,39.661,39.384,39.662,39.685,39.235,38.858,39.584,38.136,39.035,38.913]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.044,17.906,18.09,16.65,17.513,17.676,17.394,16.815,17.371,17.426,17.379,17.18,17.755,18.388,18.387],"script":[16.122,16.232,16.275,14.942,15.553,15.303,15.213,14.669,15.873,15.576,15.39,14.92,15.621,16.2,16.643],"paint":[1.041,1.587,1.712,1.454,1.187,1.823,2.087,2.045,0.523,1.038,1.896,2.162,1.406,1.206,1.643]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7592945098876953]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.504608154296875]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.538243293762207]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.4306097030639648]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.30397891998291]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[60.49609375]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[22.1611328125]}},{"framework":"vue-pinia-v3.4.21 + 2.1.7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[104.4]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"01_run1k","values":{"total":[38.623,41.118,39.563,41.57,39.829,42.116,39.968,39.909,42.067,39.967,40.125,39.287,40.087,39.351,43.173],"script":[5.976,6.368,6.225,6.405,6.563,6.503,6.544,6.617,6.245,6.606,6.601,6.323,6.686,6.51,6.765],"paint":[32.237,34.309,32.925,34.729,32.853,35.175,33.02,32.884,35.402,32.952,33.116,32.545,32.974,32.425,35.975]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"02_replace1k","values":{"total":[47.608,45.243,44.93,47.21,45.264,44.995,45.318,46.886,45.367,46.218,47.18,45.019,46.214,45.649,45.375],"script":[10.332,9.874,9.725,9.939,9.862,9.551,10.071,9.432,10.051,10.153,9.83,10.133,9.867,9.94,9.335],"paint":[36.813,34.911,34.768,36.773,34.94,35.006,34.812,37.009,34.864,35.607,36.883,34.438,35.917,35.259,35.557]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.724,19.641,18.891,18.819,19.627,19.914,21.257,19.397,18.299,19.539,19.664,19.608,19.192,19.125,20.216],"script":[3.796,3.835,3.689,3.621,3.305,4.005,4.095,3.643,3.125,3.586,3.415,3.671,3.309,3.44,3.43],"paint":[14.103,14.715,13.896,13.592,15.026,14.504,15.961,13.779,12.423,14.127,15.174,14.85,14.64,14.517,15.82]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"04_select1k","values":{"total":[5.266,5.631,6.149,4.494,6.016,5.12,5.265,4.738,5.174,4.572,5.151,5.421,5.403,5.551,4.933,5.562,5.181,5.325,5.158,6.621,5.587,5.141,4.975,5.338,4.791],"script":[3.18,2.415,3.151,2.449,2.735,2.974,2.211,2.682,2.821,2.54,2.479,2.886,2.88,3.051,2.191,3.152,3.04,2.738,2.416,3.427,3.39,2.702,2.734,2.256,2.05],"paint":[1.951,2.448,2.443,1.198,2.602,2.033,2.781,1.219,1.314,1.238,2.561,2.404,2.388,2.39,2.623,2.306,1.986,1.389,1.546,3.051,2.065,2.335,1.981,2.796,2.616]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"05_swap1k","values":{"total":[21.015,21.097,20.66,20.719,21.818,19.97,20.882,21.076,22.179,21.319,21.51,20.588,22.36,21.173,21.442],"script":[2.596,2.635,2.509,2.51,2.738,2.214,2.916,1.904,2.488,2.405,2.471,1.891,2.269,2.954,2.724],"paint":[16.269,17.635,16.095,16.306,18.102,16.487,15.746,18.163,18.597,17.488,16.469,17.074,18.508,16.674,17.189]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.422,15.623,16.043,16.037,16.551,16.594,16.176,16.591,16.938,16.747,16.489,16.177,15.972,16.603,16.828],"script":[1.256,1.221,1.2,1.187,1.228,1.25,0.995,1.16,1.312,1.285,1.178,1.2,1.221,1.261,1.292],"paint":[14.458,13.669,14.136,14.071,14.397,14.387,14.435,14.964,14.375,14.457,14.317,14.264,13.988,14.406,14.758]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"07_create10k","values":{"total":[408.284,405.849,400.569,398.358,409.08,399.657,398.164,401.517,401.504,400.369,403.106,401.94,404.889,413.058,405.221],"script":[66.715,63.848,64.297,60.646,64.5,63.412,63.003,61.81,63.337,61.347,63.042,63.263,63.294,65.362,63.143],"paint":[334.853,335.226,329.533,331.045,337.88,329.496,328.543,333.103,331.427,332.36,333.356,332.031,334.874,341.076,335.412]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.2,44.768,44.982,46.459,46.835,45.187,45.387,44.972,47.485,46.087,45.717,45.119,44.554,46.132,45.001],"script":[6.132,6.105,6.181,6.919,6.143,6.443,6.612,6.134,6.767,6.125,6.746,6.443,5.964,6.79,6.47],"paint":[40.161,37.798,37.925,38.645,39.758,37.857,37.879,38.016,39.847,39.087,38.12,37.779,37.742,38.444,37.668]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.511,15.897,14.179,14.852,14.977,15.712,16.512,14.69,16.41,14.83,16.558,15.813,15.431,16.417,14.258],"script":[13.623,13.828,12.883,12.941,12.831,13.802,14.255,12.73,14.949,13.387,14.206,14.722,13.086,14.526,12.844],"paint":[1.789,1.973,0.938,1.82,1.817,1.388,2.016,1.862,1.377,1.342,2.267,0.998,1.323,1.798,0.774]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5550289154052734]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5742034912109375]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.584408760070801]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0584259033203125]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.717670440673828]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[29.3837890625]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.978515625]}},{"framework":"vue-vapor-v3.2024.0-83641f7-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[88.6]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"01_run1k","values":{"total":[38.938,38.89,40.62,38.411,40.338,39.06,39.028,38.765,40.315,37.148,39.664,36.93,38.914,38.582,38.09],"script":[5.678,5.45,5.238,4.912,5.516,5.721,5.497,5.176,5.509,5.48,5.019,4.785,4.972,5.309,4.987],"paint":[32.854,33.021,34.967,33.102,34.378,32.943,33,33.168,34.391,31.27,34.22,31.729,33.499,32.799,32.671]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"02_replace1k","values":{"total":[45.958,44.273,44.113,44.411,45.532,44.472,45.292,45.508,44.119,44.831,44.368,43.992,45.254,44.121,45.187],"script":[10.586,9.756,9.538,9.533,9.743,9.77,10.339,10.052,9.715,9.88,9.946,9.558,10.377,9.66,10.121],"paint":[34.934,34.077,34.152,34.422,35.335,34.271,34.518,35.022,33.979,34.507,33.957,33.99,34.429,34.017,34.587]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.91,17.647,17.663,16.958,17.172,17.646,17.345,16.989,16.565,17.547,17.532,17.255,17.645,17.278,16.707],"script":[2.301,1.487,1.545,1.421,1.962,1.846,1.808,1.418,2.118,2.044,1.84,1.596,1.433,1.061,1.61],"paint":[14.005,14.841,14.527,14.157,14.148,13.977,14.531,14.251,12.877,13.965,13.301,14.103,14.207,14.295,13.007]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"04_select1k","values":{"total":[3.096,3.344,2.604,5.608,4.424,3.006,2.775,3.442,2.916,2.79,3.188,3.538,3.784,3.296,3.485,3.348,2.669,2.483,3.363,3.649,6.207,5.373,4.043,4.663,2.593],"script":[0.502,0.129,0.502,0.678,0.946,0.688,0.907,0.14,0.135,0.443,0.5,0.861,0.869,0.132,1.251,0.128,0.136,0.631,0.932,1.293,0.133,0.77,0.967,0.791,0.526],"paint":[1.758,3.112,1.126,2.028,1.612,2.216,1.771,3.148,2.678,2.25,1.761,2.427,1.608,3.062,2.138,3.122,1.498,1.764,1.817,2.259,2.727,1.55,1.744,2.415,1.157]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"05_swap1k","values":{"total":[22.569,22.631,22.189,22.598,22.425,22.312,22.817,22.285,22.639,22.833,22.441,23.166,21.929,20.905,23.468],"script":[4.02,4.29,4.258,4.104,3.988,3.403,4.112,4.527,3.922,3.639,3.464,4.504,3.813,3.894,4.024],"paint":[17.381,16.371,17.2,17.147,16.826,17.616,17.808,16.341,16.761,16.635,17.379,17.356,16.632,15.921,18.043]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.877,17.262,16.597,16.75,17.328,17.329,16.719,17.259,17.025,17.793,16.857,17.076,16.618,16.691,16.698],"script":[1.465,1.649,1.558,1.466,1.791,1.644,1.9,1.818,1.648,1.714,1.592,1.749,1.748,1.684,1.756],"paint":[14.696,14.894,14.121,14.575,14.732,14.943,14.063,14.641,14.308,14.841,14.434,14.45,14.151,14.113,13.89]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"07_create10k","values":{"total":[404.411,401.297,410.933,404.716,408.402,406.734,404.442,404.41,406.45,405.849,404.148,411.721,403.565,407.036,404.215],"script":[65.612,63.351,64.8,65.917,69.008,68.306,64.786,66.43,67.929,66.68,64.368,64.857,63.776,65.326,64.401],"paint":[332.005,331.001,339.315,332.064,332.709,331.724,332.731,331.314,331.854,332.483,333.028,340.144,332.728,334.964,333.098]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.452,46.32,47.611,47.452,46.783,46.014,46.456,46.561,49.096,47.008,47.432,47.237,47.756,47.649,47.084],"script":[7.9,7.813,8.201,7.81,7.765,7.783,7.854,8.061,8.74,7.951,7.907,8.081,8.021,7.924,7.873],"paint":[38.577,37.622,38.474,38.754,38.142,37.345,37.76,37.583,39.417,38.079,38.645,38.212,38.784,38.854,38.252]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.65,14.26,14.678,14.544,14.374,14.631,14.925,14.512,14.632,14.653,13.987,14.74,15.255,14.478,14.582],"script":[12.799,12.241,12.843,12.661,12.57,12.783,12.53,12.009,12.438,12.758,12.246,13.1,13.574,13.149,12.405],"paint":[1.239,1.296,1.392,1.776,1.712,1.432,1.026,2.401,2.096,1.799,0.837,1.117,1.013,0.708,1.449]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5110988616943359]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.3199386596679688]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.5031347274780273]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0394878387451172]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.211716651916504]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[17.8642578125]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.5029296875]}},{"framework":"vuerx-jsx-v0.3.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.7]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"01_run1k","values":{"total":[37.427,37.585,37.416,37.465,37.145,39.016,37.246,37.936,38.291,37.928,37.714,37.664,38.05,38.24,38.288],"script":[4.584,4.573,4.625,4.665,4.422,5.013,4.622,4.91,4.901,4.705,4.778,4.749,4.627,5.132,4.709],"paint":[32.437,32.602,32.373,32.384,32.326,33.608,32.223,32.619,32.99,32.811,32.548,32.492,33.009,32.677,33.192]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"02_replace1k","values":{"total":[42.374,41.971,41.241,43.664,42.051,41.103,41.505,40.884,41.173,43.193,41.921,41.99,42.368,42.376,42.048],"script":[7.111,7.178,6.821,6.954,7.203,6.893,7.08,6.855,6.934,6.96,7.153,7.121,7.268,7.355,7.3],"paint":[34.812,34.322,33.948,36.268,34.414,33.772,33.993,33.586,33.795,35.774,34.326,34.404,34.649,34.583,34.304]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.174,16.941,17.333,17.485,17.706,16.76,16.542,17.142,16.389,17.662,16.229,16.377,16.37,16.548,16.543],"script":[1.241,1.165,1.248,0.936,1.71,0.918,1.199,1.1,1.136,0.949,0.961,0.57,1.041,0.974,1.205],"paint":[14.948,13.84,14.834,15.91,13.361,14.562,13.944,15.094,13.985,14.562,14.549,14.539,13.894,13.83,13.877]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"04_select1k","values":{"total":[4.541,3.316,2.841,2.569,2.552,2.695,3.013,3.105,3.768,3.087,3.701,3.499,4.047,2.538,4.267,2.776,2.436,5.436,2.921,3.316,3.018,2.245,2.792,5.503,4.319],"script":[1.132,0.346,0.084,0.1,0.085,0.521,0.089,0.999,0.747,0.553,0.46,0.087,0.092,0.476,0.302,0.085,0.223,0.923,0.714,0.875,0.475,0.493,0.531,0.864,0.597],"paint":[2.159,1.489,1.662,2.364,2.137,2.002,1.677,1.67,1.634,2.429,1.897,1.24,1.611,1.229,1.852,2.592,1.577,2.539,2.121,1.924,1.645,1.644,2.164,2.614,2.542]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"05_swap1k","values":{"total":[18.261,19.147,17.899,19.514,18.753,18.212,18.572,19.105,17.962,18.382,18.292,18.083,19.424,19.006,18.892],"script":[0.776,0.718,0.098,0.097,0.104,0.424,0.103,1.071,0.096,0.106,0.099,0.758,0.783,0.102,0.754],"paint":[16.424,17.282,16.446,18.12,17.187,16.588,17.154,16.926,15.924,17.334,16.445,15.905,17.205,17.624,16.641]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.581,14.824,14.879,15.337,15.603,15.437,14.847,15.154,15.634,15.011,14.84,14.822,15.337,15.211,14.999],"script":[0.241,0.127,0.124,0.122,0.31,0.204,0.123,0.115,0.13,0.275,0.12,0.12,0.441,0.123,0.338],"paint":[14.805,13.715,14.028,14.459,14.576,14.474,13.997,14.322,14.781,13.886,14.03,13.999,14.208,14.354,13.951]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"07_create10k","values":{"total":[399.488,393.198,396.825,398.809,399.207,390.867,396.681,393.118,392.61,396.564,395.35,395.815,397.212,391.316,394.59],"script":[52.557,51.614,53.723,52.43,53.287,52.027,51.846,52.105,52.367,51.542,51.817,53.01,56.049,52.872,50.892],"paint":[340.068,335.044,336.207,339.677,339.285,332.237,338.242,334.333,333.545,338.108,336.868,336.216,334.401,331.911,337.12]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.503,41.965,42.267,42.302,42.291,42.759,41.918,42.727,42.84,43.067,41.987,43.246,43.556,41.806,42.716],"script":[4.544,4.427,4.388,4.34,4.424,4.552,4.444,4.543,4.477,4.458,4.323,4.904,4.841,4.317,4.409],"paint":[37.077,36.721,37.037,37.148,37.03,37.393,36.643,37.36,37.529,37.798,36.809,37.522,37.891,36.663,37.49]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.301,11.861,11.71,11.397,11.615,12.067,11.872,12.325,12.238,11.798,11.935,11.454,11.881,11.97,11.734],"script":[9.386,10.088,10.296,10.146,10.209,10.187,10.398,10.152,10.448,10.024,10.206,9.335,9.988,10.664,9.827],"paint":[1.826,1.676,1.32,0.848,0.421,1.608,1.385,1.501,0.931,0.996,1.64,2.04,1.803,1.211,1.822]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.598057746887207]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.772341728210449]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9095382690429688]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.7952461242675781]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.315508842468262]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[47.0224609375]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.453125]}},{"framework":"wasm-bindgen-v0.2.84-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[96.3]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"01_run1k","values":{"total":[52.37,51.256,52.739,51.811,51.498,51.591,51.658,51.907,51.641,50.948,50.91,51.032,50.854,52.068,51.377],"script":[15.818,15.618,16.465,15.912,15.466,16.017,15.703,16.088,16,15.631,15.432,15.552,15.697,15.95,15.849],"paint":[36.115,35.185,35.813,35.481,35.596,35.144,35.499,35.365,35.208,34.877,35.012,35.034,34.718,35.674,35.101]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"02_replace1k","values":{"total":[60.215,56.749,57.634,56.991,57.902,56.996,57.419,57.383,57.751,57.956,58.081,57.142,57.775,57.527,57.547],"script":[21.302,19.878,20.981,20.357,20.846,19.976,20.234,20.54,20.961,20.509,20.576,20.664,20.204,19.667,20.919],"paint":[38.229,36.42,36.206,36.186,36.587,36.552,36.722,36.408,36.336,36.947,37.046,36.018,37.099,37.405,36.165]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.238,24.461,25.037,24.551,25.269,24.606,26.303,25.827,24.95,25.326,24.024,26.057,24.036,24.496,22.928],"script":[9.488,8.338,8.481,7.817,9.204,8.621,10.082,9.471,8.628,8.029,8.686,9.129,7.857,8.703,7.581],"paint":[14.644,13.623,14.591,15.395,14.357,14.368,13.802,14.806,13.365,15.669,13.79,14.431,15.091,14.644,14.055]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"04_select1k","values":{"total":[5.462,5.508,4.152,4.953,5.182,4.904,5.038,4.825,5.206,4.379,4.263,4.582,4.695,4.899,4.595,4.798,4.554,5.201,4.655,5.138,4.558,4.607,4.98,4.889,5.046],"script":[2.452,3.137,1.7,1.967,2.783,2.227,2.414,2.375,2.108,2.082,1.812,2.137,2.222,2.524,2.268,2.676,2.201,1.867,1.559,1.914,2.221,1.773,2.444,2.316,2.191],"paint":[2.046,1.725,2.336,2.14,2.281,2.38,1.462,1.728,2.068,1.739,2.164,1.397,1.62,2.059,2.206,1.889,0.867,2.063,2.982,2.204,1.651,1.749,1.462,2.464,1.666]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"05_swap1k","values":{"total":[23.081,22.989,22.07,23.389,22.811,23.379,24.28,23.561,22.979,22.737,23.573,23.137,24.145,23.566,22.597],"script":[4.255,3.886,3.623,4.317,3.996,3.798,4.288,4.054,3.778,3.84,3.958,4.743,4.031,4.345,3.707],"paint":[17.558,17.985,17.296,18.062,16.969,18.182,18.583,17.871,17.57,17.839,18.562,16.003,18.287,18.171,17.806]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.669,16.664,16.75,17.162,17.169,16.973,16.653,16.639,16.731,16.774,16.663,17.805,16.968,16.673,16.668],"script":[1.694,1.378,1.424,1.823,1.56,1.719,1.383,1.585,1.453,1.772,1.293,1.785,1.731,1.778,1.451],"paint":[13.903,14.626,14.544,14.552,14.581,14.495,14.553,14.018,14.542,13.95,14.723,15.199,14.388,14.09,14.414]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"07_create10k","values":{"total":[547.05,560.154,545.146,538.005,543.43,562.085,543.127,560.236,539.291,538.767,524.994,554.693,557.737,557.231,544.916],"script":[178.426,180.523,179.455,178.387,179.825,180.863,180.363,178.694,178.877,178.317,177.62,177.437,177.251,176.65,181.676],"paint":[361.519,372.784,358.932,352.414,356.144,374.332,356.01,374.63,353.631,353.722,340.55,370.461,373.76,373.763,356.391]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.664,57.351,57.814,58.253,57.884,57.557,57.579,60.639,57.37,58.242,58.399,58.061,58.158,58.842,57.271],"script":[17.444,17.23,16.712,17.131,16.847,16.684,16.878,17.519,16.787,17.315,17.472,17.157,17.472,17.749,16.812],"paint":[41.266,39.182,40.188,40.214,40.098,39.951,39.773,41.95,39.666,39.995,40.016,39.972,39.738,40.17,39.511]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.098,18.502,17.776,18.473,18.071,18.38,17.094,18.515,17.965,19.465,16.927,18.414,17.184,16.953,16.927],"script":[16.358,16.318,15.619,16.605,16.648,16.681,15.516,16.137,15.438,17.151,15.009,16.168,14.749,15.623,15.064],"paint":[0.783,1.811,1.248,1.772,1.331,1.434,1.274,2.287,2.425,1.924,1.798,2.158,2.342,0.897,1.5]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6641426086425781]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.461180686950684]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.61449146270752]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.025297164916992]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[74.55990314483643]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[36.12890625]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.9033203125]}},{"framework":"whatsup-v2.6.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80]}},{"framework":"yew-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[54.422,54.898,54.782,55.148,55.408,55.233,55.654,56.05,55.736,56.467,56.571,56.588,55.944,54.906,54.772],"script":[19.353,19.446,19.259,19.159,19.348,19.322,20.004,20.395,19.344,20.091,20.848,20.504,20.162,20.593,19.368],"paint":[34.638,35.029,35.094,35.554,35.62,35.496,35.211,35.221,35.953,35.952,35.296,35.67,35.374,33.834,34.978]}},{"framework":"yew-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[62.809,63.731,62.138,62.03,62.456,61.905,63.175,61.788,63.706,62.346,63.98,63.978,63.578,62.03,60.351],"script":[25.893,25.765,25.466,25.758,25.548,26.368,26.932,25.651,26.055,25.887,27.012,27.565,26.881,25.734,25.214],"paint":[36.477,37.517,36.245,35.845,36.471,35.105,35.814,35.701,37.215,36.03,36.526,35.994,36.273,35.853,34.699]}},{"framework":"yew-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.227,20.539,20.94,20.569,21.16,20.94,20.607,22.261,20.786,20.862,20.306,20.271,20.508,20.92,20.58],"script":[5.347,4.826,4.876,4.862,5.572,4.576,4.742,5.264,4.632,4.198,4.255,4.759,4.395,4.068,4.06],"paint":[14.063,14.434,14.724,14.505,13.837,15.009,15.186,15.31,15.018,15.14,14.05,14.196,14.478,15.511,14.522]}},{"framework":"yew-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[5.577,5.213,4.775,5.577,5.066,4.933,4.983,5.408,5.622,5.218,4.836,5.535,4.62,5.234,5.316,5.037,5.652,5.151,5.371,5.303,4.625,5.283,4.627,6.799,5.341],"script":[2.713,3.074,2.808,2.837,2.293,2.936,2.629,2.699,2.524,2.937,2.155,2.305,2.503,2.771,3.113,2.769,2.514,2.469,2.255,2.527,2.716,2.478,2.105,2.229,2.193],"paint":[2.739,2.01,1.113,2.614,2.487,1.177,1.428,2.589,1.885,2.172,1.732,1.716,1.442,2.193,2.1,1.37,2.435,1.816,1.765,2.662,1.315,2.694,0.581,3.291,3.016]}},{"framework":"yew-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[21.157,21.409,21.241,20.958,21.558,21.239,22.329,21.538,21.468,21.748,22.564,21.631,21.217,22.353,21.398],"script":[2.776,3.056,2.881,2.229,2.839,2.484,3.077,2.433,2.799,3.122,2.551,2.846,2.188,2.739,3.462],"paint":[15.475,16.474,17.099,17.765,17.342,17.456,18.047,16.528,16.567,16.905,18.654,17.61,16.498,18.266,15.35]}},{"framework":"yew-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.534,16.44,16.544,16.061,16.487,16.165,16.079,16.493,16.059,16.554,16.622,16.138,16.144,17.888,16.401],"script":[1.248,1.256,1.281,1.259,1.252,1.227,1.242,1.247,1.234,1.23,1.286,1.266,1.301,1.301,1.255],"paint":[14.858,13.856,14.526,14.06,14.512,14.237,14.052,14.293,14.074,14.635,14.375,13.735,13.94,15.506,13.798]}},{"framework":"yew-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[698.089,679.244,671.535,693.85,679.812,702.221,691.308,694.304,699.492,677.057,687.105,690.72,688.168,681.79,690.018],"script":[310.63,291.442,286.196,304.944,291.056,308.925,306.429,303.457,311.934,294.257,300.342,302.692,299.871,296.213,304.702],"paint":[380.729,381.122,378.476,382.225,382.016,386.685,378.19,384.293,380.928,376.077,380.185,381.38,381.532,378.775,378.724]}},{"framework":"yew-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[66.785,65.564,66.895,66.889,66.457,66.713,65.359,65.875,65.697,66.903,65.771,66.413,66.146,66.161,66.013],"script":[24.712,23.573,24.419,24.752,24.476,24.745,23.634,23.423,23.571,23.65,24.248,23.765,24.807,24.026,24.617],"paint":[41.178,41.082,41.574,41.238,41.113,41.104,40.857,41.551,41.257,42.225,40.618,41.721,40.46,41.258,40.536]}},{"framework":"yew-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.492,25.611,26.331,26.151,24.073,24.909,24.61,24.433,24.998,26.453,26.977,25.997,25.405,26,24.858],"script":[24.273,23.409,23.881,24.649,21.94,22.983,23.13,22.559,22.872,24.618,24.545,23.587,23.417,24.207,23.116],"paint":[1.069,2.097,2.347,1.404,1.52,1.827,0.429,1.778,2.039,1.726,2.333,1.66,1.741,1.016,1.367]}},{"framework":"yew-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6614599227905273]}},{"framework":"yew-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.407252311706543]}},{"framework":"yew-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.434328079223633]}},{"framework":"yew-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.871448516845703]}},{"framework":"yew-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[47.59158897399902]}},{"framework":"yew-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[207.40625]}},{"framework":"yew-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.5244140625]}},{"framework":"yew-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[351.2]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"01_run1k","values":{"total":[56.123,56.373,54.401,55.635,56.419,57.118,56.328,56.334,55.104,54.116,55.076,55.843,56.782,56.193,56.352],"script":[20.998,20.785,19.032,20.064,20.531,20.704,20.262,20.283,20.214,19.425,20.219,20.156,20.899,20.163,20.43],"paint":[34.696,35.187,34.947,35.143,35.475,35.998,35.636,35.632,34.476,34.246,34.447,35.26,35.442,35.604,35.497]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"02_replace1k","values":{"total":[63.439,64.756,64.688,61.331,62.677,59.506,62.438,63.464,59.392,61.65,62.662,63.83,63.719,63.332,61.641],"script":[25.964,27.794,27.298,25.563,26.979,25.226,25.198,26.986,25.088,25.078,25.772,27.82,27.12,27.524,25.241],"paint":[37.033,36.543,36.96,35.34,35.278,33.857,36.781,36.022,33.876,36.111,36.476,35.577,36.182,35.381,35.933]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"03_update10th1k_x16","values":{"total":[30.469,28.15,29.456,28.791,29.229,29.881,30.238,31.983,30.199,29.248,29.807,31.241,29.562,29.656,30.093],"script":[13.9,12.743,13.062,12.946,13.005,13.884,13.583,14.181,13.248,12.965,13.594,13.867,13.525,13.113,13.264],"paint":[14.753,14.717,15.116,14.825,13.758,13.861,14.803,16.753,15.497,15.192,14.927,14.02,14.716,15.442,16.057]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"04_select1k","values":{"total":[14.647,15.16,16.017,14.282,14.705,14.778,14.446,15.261,14.627,14.757,14.98,15.188,14.842,14.884,14.503,14.957,15.098,15.532,14.81,15.131,14.314,14.847,15.088,14.729,15.144],"script":[12.356,12.326,13.074,11.49,12.35,12.301,12.011,12.433,11.579,12.225,12.463,12.072,12.367,12.016,11.99,12.386,12.528,12.013,11.378,12.56,12.007,11.841,12.188,11.705,12.636],"paint":[1.457,2.683,1.933,1.938,1.461,1.949,1.203,2.213,2.901,2.39,1.585,2.97,1.967,2.745,2.392,1.474,1.89,3.37,3.276,1.496,1.733,1.914,1.882,1.859,2.357]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"05_swap1k","values":{"total":[31.79,33.347,31.61,32.367,31.81,32.103,31.803,31.133,30.881,31.983,32.02,32.095,31.981,31.505,31.138],"script":[12.617,13.552,12.525,13.351,13.13,12.491,12.788,12.676,12.14,12.851,12.593,12.443,13.162,12.752,12.868],"paint":[17.964,18.288,18.106,17.461,17.024,18.122,17.736,17.716,17.655,18.142,17.896,18.32,17.497,17.315,16.272]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"06_remove-one-1k","values":{"total":[21.341,22.034,21.433,22.256,21.064,20.94,21.074,21.55,21.399,21.173,21.337,21.502,21.462,21.177,21.48],"script":[6.013,6.175,5.682,6.223,5.709,6.047,5.715,6.089,6.08,5.896,6.064,5.84,5.855,6.039,5.848],"paint":[14.597,15.012,14.715,15.284,14.649,13.664,14.657,14.466,14.609,14.524,14.177,14.707,14.817,13.799,14.45]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"07_create10k","values":{"total":[691.904,688.046,698.757,700.667,690.631,688.325,689.642,700.151,693.661,683.448,677.082,701.727,706.071,696.188,698.999],"script":[307.42,301.975,309.703,313.502,304.808,299.755,300.226,310.514,307.077,298.691,289.804,313.634,313.556,308.276,302.357],"paint":[377.719,379.455,382.409,380.551,378.511,381.881,382.755,382.866,379.924,378.147,380.365,381.466,385.858,381.303,389.835]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[69.402,67.972,67.842,68.43,68.932,68.234,69.003,69.694,69.448,68.345,68.864,69.678,68.024,69.051,69.04],"script":[27.441,26.122,26.006,26.413,26.392,26.754,26.208,26.468,26.749,26.817,26.657,27.203,25.621,26.898,26.841],"paint":[41.056,41.017,40.977,41.114,41.673,40.655,41.902,42.342,41.869,40.626,41.165,41.556,41.432,41.291,41.315]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.518,26.081,26.019,26.481,26.305,25.485,25.553,26.686,25.898,25.662,25.764,26.294,26.884,26.752,25.644],"script":[23.954,23.98,23.867,24.549,23.877,24.054,23.954,24.98,23.365,23.932,23.987,24.529,24.916,24.538,23.247],"paint":[0.822,1.622,2.055,1.826,2.318,1.318,0.452,1.613,2.131,1.635,1.673,1.001,1.682,1.593,1.942]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6616754531860352]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.546679496765137]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.7616424560546875]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.047693252563477]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[48.84193801879883]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[211.9072265625]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.1962890625]}},{"framework":"yew-hooks-v0.21.0-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[355.9]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"01_run1k","values":{"total":[54.16,53.583,55.28,53.479,54.394,53.97,54.561,55.769,54.045,53.869,54.044,53.172,53.649,53.198,53.569],"script":[19.812,19.514,19.548,19.133,19.35,18.66,19.029,19.535,18.869,18.844,19.348,18.662,19.59,19.065,18.772],"paint":[33.859,33.628,35.276,33.916,34.614,34.873,35.084,35.775,34.73,34.594,34.277,34.067,33.636,33.695,34.365]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"02_replace1k","values":{"total":[20.825,19.735,19.016,19.397,19.201,19.591,22.117,20.797,20.436,20.783,19.797,20.078,20.552,20.039,20.533],"script":[5.622,5.388,4.8,5.076,4.926,5.267,5.887,5.631,5.677,5.717,5.348,5.424,5.608,5.692,5.642],"paint":[14.716,13.916,13.784,13.888,13.823,13.876,15.76,14.686,14.327,14.627,14.019,14.216,14.514,13.923,14.488]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.343,17.913,17.94,16.879,17.456,18.216,18.321,17.261,17.494,18.119,18.609,17.182,17.626,17.862,17.648],"script":[1.776,1.807,1.987,1.81,2.093,1.788,1.612,2.18,1.678,1.588,2.414,1.656,1.608,2.227,1.715],"paint":[14.403,14.728,14.806,14.04,14.263,14.953,15.563,14.072,13.989,14.134,15.015,13.752,14.237,13.73,14.914]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"04_select1k","values":{"total":[4.226,4.255,4.071,4.224,4.269,4.068,3.911,4.153,4.18,4.463,4.415,3.681,4.087,3.948,3.661,4.973,3.466,4.107,4.526,4.735,4.163,4.151,5.28,3.832,4.5],"script":[1.424,1.506,1.244,1.64,1.568,1.54,1.334,1.629,0.87,1.674,2.048,1.753,1.545,1.403,1.323,0.873,1.577,1.872,1.76,1.87,1.319,1.516,1.844,1.735,1.635],"paint":[2.537,2.646,2.709,2.461,2.585,1.761,2.153,1.915,3.184,1.955,1.931,1.29,2.379,2.428,2.227,2.435,1.776,1.77,2.101,2.31,2.731,2.529,1.723,1.508,2.039]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"05_swap1k","values":{"total":[11.461,11.745,11.361,12.01,11.828,11.585,11.305,12.003,12.139,11.467,12.212,12.238,11.443,12.215,12.094],"script":[0.115,0.121,0.12,1.072,0.841,0.596,0.125,0.926,0.708,0.534,0.123,0.738,0.116,0.774,0.116],"paint":[9.904,10.151,9.669,9.583,9.724,9.163,9.671,9.604,9.777,9.603,10.699,9.878,9.755,10.313,11.195]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.013,18.192,18.367,18.021,17.974,17.939,18.593,18.08,17.959,17.631,18.109,17.961,18.058,17.986,17.874],"script":[2.869,2.852,2.666,2.968,2.668,2.795,3.223,2.76,2.624,2.719,2.604,2.684,2.675,2.634,2.56],"paint":[14.178,14.38,15.008,14.35,14.663,14.449,14.662,14.372,14.666,14.237,14.792,14.48,14.698,14.668,14.641]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"07_create10k","values":{"total":[546.557,547.162,545.57,534.471,542.855,552.421,544.947,551.25,543.649,547.083,554.142,551.092,554.64,545.726,548.115],"script":[186.579,184.066,185.791,187.164,184.017,182.532,185.8,185.42,184.315,183.696,189.916,184.204,187.082,185.71,187.937],"paint":[352.943,356.145,352.565,340.381,351.914,363.04,352.341,358.696,352.531,356.489,357.414,360.247,360.614,353.261,353.339]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.937,58.634,59.055,58.568,58.887,59.484,59.667,59.025,59.094,59.707,59.348,58.332,58.643,59.533,59.694],"script":[17.723,18.128,17.859,18.05,18.152,18.434,18.712,18.175,18.254,18.01,17.914,17.494,18.137,18.367,18.354],"paint":[40.292,39.627,40.315,39.581,39.826,40.148,40.038,39.929,39.909,40.756,40.524,39.91,39.591,40.272,40.417]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[18.463,18.626,18.44,18.319,17.702,18.318,18.334,18.376,18.333,17.529,19.236,17.763,17.801,17.752,17.659],"script":[16.282,16.048,16.278,15.866,15.642,16.318,16.205,16.345,16.184,15.903,16.515,15.202,15.851,16.155,15.286],"paint":[1.649,2.473,1.379,2.238,1.796,1.196,1.768,1.589,1.517,1.53,1.912,2.46,1.296,1.491,2.266]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5465936660766602]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.373108863830566]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.402748107910156]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9890651702880859]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.05220413208008]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[24.4921875]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[7.87890625]}},{"framework":"alins-v0.0.34-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[81.9]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"01_run1k","values":{"total":[44.731,45.165,45.659,45.498,44.074,44.14,44.289,44.964,44.275,44.131,44.431,45.049,45.238,45.121,45.95],"script":[10.84,11.147,11.687,11.393,10.904,11.027,11.063,11.03,11.408,11.254,11.232,10.99,11.157,11.056,11.838],"paint":[33.466,33.607,33.521,33.633,32.74,32.693,32.805,33.496,32.454,32.446,32.773,33.629,33.651,33.622,33.679]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"02_replace1k","values":{"total":[26.937,24.971,25.557,26.391,25.527,25.502,24.734,25.285,24.787,25.896,25.97,25.955,25.869,24.748,25.513],"script":[10.54,10.259,10.358,11.011,10.321,10.548,10.022,10.369,10.216,10.472,10.712,10.925,10.771,10.077,10.414],"paint":[15.928,14.252,14.744,14.902,14.746,14.5,14.261,14.464,14.101,14.948,14.81,14.565,14.64,14.206,14.641]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[55.935,56.097,58.384,58.413,54.179,56.111,56.193,55.055,56.337,58.328,55.071,54.601,55.689,56.248,56.93],"script":[39.561,39.003,40.319,41.722,37.908,38.865,39.177,38.428,39.931,41.688,38.528,37.729,39.31,39.598,39.953],"paint":[14.602,15.869,15.785,15.626,14.412,15.692,14.178,15.059,15.297,15.299,14.718,15.253,14.618,15.395,15.071]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"04_select1k","values":{"total":[37.459,37.329,38.202,38.717,37.745,39.931,38.715,39.352,38.354,38.148,38.207,39.696,40.658,40.276,42.038,39.825,39.102,39.952,39.224,38.494,39.445,38.238,39.974,37.927,38.27],"script":[34.321,34.143,35.05,35.893,34.271,36.607,35.456,36.729,35.45,34.967,35.378,36.025,37.585,36.676,38.594,36.06,35.739,36.766,36.16,35.451,36.488,35.179,36.292,34.726,34.993],"paint":[2.648,1.981,2.201,2.618,2.854,2.149,1.967,2.439,1.878,1.017,1.951,2.769,2.53,3.394,2.737,3.148,2.191,2.381,2.363,2.865,1.898,2.12,2.692,3.015,2.785]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"05_swap1k","values":{"total":[48.123,46.919,45.73,47.749,47.889,45.742,48.303,48.434,45.467,45.819,49.986,45.583,51.804,48.401,49.821],"script":[36.463,35.448,34.912,36.452,35.744,34.016,35.818,35.881,34.12,34.998,38.412,34.558,38.791,36.81,37.249],"paint":[9.613,10.292,9.223,9.501,10.749,9.084,10.282,10.752,10.578,9.766,10.24,8.47,11.281,9.236,11.245]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[49.041,53.934,48.639,47.828,54.828,54.297,53.549,49.265,49.204,49.439,54.639,48.476,54.467,53.543,51.648],"script":[18.563,20.185,18.133,17.627,20.267,20.533,20.003,18.99,18.718,18.413,20.963,18.597,20.563,20.007,19.501],"paint":[29.464,32.889,29.134,29.222,33.69,32.606,32.494,29.456,29.598,29.751,32.408,29.09,32.899,32.361,31.235]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"07_create10k","values":{"total":[480.701,486.048,485.056,482.234,475.578,479.826,475.237,487.439,476.514,476.596,473.101,482.05,475.713,473.473,484.41],"script":[137.628,140.393,140.149,140.387,140.078,140.232,135.14,139.737,138.876,135.177,136.07,141.303,135.107,139.035,136.398],"paint":[336.604,338.811,338.234,335.375,328.934,332.987,333.54,340.961,331.075,334.85,330.497,334.232,334.009,327.565,341.186]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.84,60.02,61.475,62.434,61.893,62.648,57.712,56.6,61.98,57.515,57.155,59.461,61.456,61.364,60.716],"script":[21.04,20.674,19.923,21.608,21.722,20.905,19.216,19.238,20.769,19.326,19.288,19.813,21.041,21.325,20.885],"paint":[38.948,38.451,40.45,39.918,39.312,40.804,37.62,36.492,40.234,37.296,36.981,38.512,39.541,39.177,38.968]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.852,17.47,14.472,16.651,17.106,15.612,14.152,15.173,14.23,14.587,16.858,16.665,16.697,17.128,14.939],"script":[15.306,15.703,12.692,14.739,15.234,14.18,12.569,13.526,12.243,12.928,15.208,15.01,14.992,15.333,13.163],"paint":[1.449,1.681,0.922,1.833,1.628,1.352,0.929,1.549,1.724,1.341,1.562,0.742,0.824,1.325,1.678]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5502920150756836]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.542430877685547]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.8124704360961914]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.955235481262207]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.928308486938477]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.171875]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.8955078125]}},{"framework":"apprun-v3.30.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.7]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"01_run1k","values":{"total":[88.78,88.598,89.689,91.375,89.717,90.437,89.507,89.054,89.5,87.972,88.91,88.307,89.411,88.764,88.952],"script":[51.153,51.256,52.211,52.873,51.973,52.418,51.952,51.504,52.161,51.08,51.605,51.285,51.384,51.672,51.66],"paint":[37.353,37.08,37.271,38.239,37.469,37.795,37.296,37.294,37.132,36.635,37.089,36.774,37.815,36.884,37.005]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"02_replace1k","values":{"total":[95.138,96.317,94.395,94.887,98.481,95.217,97.145,95.008,95.173,96.898,94.431,93.266,94.811,96.4,95.48],"script":[57.487,57.977,56.579,57.462,59.465,57.594,58.624,57.453,57.443,58.383,56.826,56.29,56.945,58.171,57.529],"paint":[37.431,38.082,37.584,37.174,38.593,37.332,38.069,37.321,37.44,38.095,37.367,36.77,37.633,37.797,37.71]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[83.322,83.468,81.751,85.602,87.434,84.891,80.713,79.675,80.024,86.009,85.553,79.369,83.864,79.47,81.164],"script":[47.335,49.563,48.19,49.765,49.883,48.078,47.879,46.963,46.948,48.22,50.292,46.999,46.127,46.529,46.416],"paint":[34.156,32.929,33.392,35.327,36.286,35.617,30.958,32.548,32.919,37.578,34.123,32.226,37.578,31.73,33.434]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"04_select1k","values":{"total":[16.889,17.426,14.329,15.647,13.276,13.556,13.318,15.755,10.139,13.543,14.284,9.875,13.028,13.823,13.422,13.478,9.93,13.886,16.105,17.787,13.335,13.331,15.972,11.722,14.185],"script":[8.43,8.567,8.527,7.582,6.959,8.162,8.319,8.55,6.689,8.226,7.795,7.388,7.249,8.281,7.467,7.533,5.899,8.135,7.782,8.204,7.136,9.048,8.276,7.943,8.288],"paint":[8.055,7.305,4.13,5.263,3.344,3.39,3.004,4.636,3.245,3.434,4.332,1.934,4.346,4.046,4.714,4.097,2.215,4.381,6.783,6.088,3.812,3.077,6.322,2.77,4.932]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"05_swap1k","values":{"total":[51.294,52.03,46.597,50.521,49.122,50.069,48.705,48.944,49.328,48.996,48.37,46.006,47.01,51.704,51.627],"script":[28.069,27.777,26.692,26.395,27.618,27.996,26.341,26.543,24.557,26.639,26.83,26.614,26.326,26.896,26.612],"paint":[22.78,23.75,19.744,22.541,21.003,21.328,21.776,20.674,24.003,20.068,21.393,19.239,20.529,23.854,24.105]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[193.243,192.931,193.116,188.708,190.506,193.875,192.319,189.623,194.531,190.685,196.289,193.821,198.955,191.584,194.159],"script":[122.853,123.183,123.5,119.842,121.968,123.644,119.066,119.508,122.673,120.022,123.453,123.96,124.869,123.759,122.043],"paint":[68.217,68.313,68.351,67.574,67.235,68.76,71.794,68.273,70.57,68.879,71.622,68.317,72.266,66.836,70.592]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"07_create10k","values":{"total":[804.54,797.751,801.143,790.311,789.308,801.46,799.413,791.301,798.601,785.406,789.811,792.777,793.617,793.297,796.071],"script":[443.06,437.208,432.415,432.851,430.184,439.293,439.35,429.258,437.274,428.963,429.996,434.552,433.712,433.151,434.222],"paint":[357.733,356.727,364.945,353.903,355.259,358.423,356.197,358.31,357.533,352.654,355.879,354.621,356.015,356.411,358.231]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[105.326,105.523,106.409,104.259,104.186,104.498,103.223,105.401,104.067,104.539,104.198,104.669,104.063,102.794,104.807],"script":[67.291,65.428,66.774,66.255,65.658,66.889,65.235,66.61,65.236,64.685,66.266,65.841,65.348,65.019,65.894],"paint":[37.489,39.688,39.221,37.606,38.107,37.206,37.604,38.404,38.428,39.436,37.519,38.254,38.3,37.385,38.518]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.654,21.11,18.082,21.956,18.955,21.943,18.602,19.532,23.156,21.491,21.77,23.581,22.712,18.923,22.472],"script":[16.933,17.178,15.814,17.428,16.84,17.478,17.015,16.553,18.624,17.573,17.398,18.587,18.667,16.916,18.645],"paint":[3.703,3.244,2.197,3.408,1.471,3.428,0.83,2.905,4.295,2.307,3.434,2.427,3.125,1.924,3.587]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5016565322875977]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.464906692504883]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[15.31560230255127]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[43.504631996154785]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[88.50263977050781]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.58984375]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.2705078125]}},{"framework":"arrowjs-v1.0.0-alpha.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[50.5]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"01_run1k","values":{"total":[44.562,43.291,44.052,44.451,44.425,44.682,45.187,44.66,44.464,43.857,44.68,43.796,44.366,43.996,44.308],"script":[10.958,10.268,9.939,10.272,10.63,10.311,10.416,10.309,10.143,10.326,10.362,10.103,10.412,10.666,10.157],"paint":[33.165,32.62,33.716,33.779,33.389,33.913,34.361,33.949,33.9,33.123,33.891,33.28,33.536,32.921,33.726]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"02_replace1k","values":{"total":[25.32,26.124,25.713,27.052,26.089,26.304,25.684,26.271,25.38,25.443,26.324,27.208,26.362,25.995,25.362],"script":[9.707,9.852,9.943,10.019,9.985,10.191,9.987,9.972,9.561,9.64,10.205,9.929,9.47,10.048,9.446],"paint":[15.146,15.808,15.309,16.565,15.663,15.627,15.266,15.856,15.357,15.374,15.681,16.799,16.418,15.46,15.458]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.01,22.01,21.809,21.802,22.796,20.914,21.514,21.845,22.259,21.038,21.658,22,21.824,21.649,21.478],"script":[6.636,6.497,6.342,6.358,6.854,5.869,6.04,6.138,6.81,5.864,6.137,5.788,6.257,6.264,6.38],"paint":[14.096,13.644,13.952,13.715,14.585,13.924,13.285,14.351,13.157,13.373,13.914,14.436,14.434,14.139,13.616]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"04_select1k","values":{"total":[4.593,5.589,4.729,5.138,4.723,4.851,5.229,5.646,4.315,4.691,4.862,4.949,4.577,4.978,4.759,5.01,4.762,4.723,4.518,4.661,4.674,5.588,5.201,5.249,5.272],"script":[2.165,2.898,2.322,2.386,2.207,2.229,2.127,3.195,1.856,2.434,2.35,2.676,2.495,1.97,2.047,2.219,2.829,2.435,2.305,2.001,2.808,2.74,2.347,2.492,2.907],"paint":[1.947,2.57,1.783,2.627,1.854,2.01,2.863,2.141,2.357,1.586,1.604,1.307,1.96,2.889,2.59,1.961,1.828,1.194,2.087,2.181,1.766,2.732,2.735,2.63,2.259]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"05_swap1k","values":{"total":[13.429,12.775,13.36,14.825,13.602,13.331,13.232,13.418,13.712,14,13.73,13.687,13.731,14.016,13.714],"script":[2.643,2.29,2.415,2.631,2.058,2.617,1.998,2.995,2.656,2.548,1.999,2.731,2.23,2.153,2.774],"paint":[9.023,8.425,9.588,10.641,9.811,8.9,9.941,9.495,9.993,10.396,9.611,9.681,10.213,10.587,9.743]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[50.696,49.285,49.708,49.377,50.034,50.955,49.558,52.953,49.259,51.95,49.392,49.787,49.743,48.762,51.027],"script":[17.363,16.976,17.163,16.775,17.261,17.36,17.255,19.211,17.314,18.64,16.789,17.395,17.505,16.922,17.195],"paint":[32.175,30.84,31.356,31.27,31.65,32.721,31.102,32.892,31.16,32.18,31.772,31.479,31.189,30.71,32.881]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"07_create10k","values":{"total":[434.436,433.452,435.585,434.971,433.71,440.28,436.733,436.393,439.661,436.078,436.096,437.44,436.704,438.27,437.757],"script":[98.842,99.249,98.931,97.847,98.526,100.918,99.191,100.562,100.256,99.112,100.776,100.954,100.138,101.134,98.662],"paint":[328.745,327.255,329.752,330.244,328.463,331.725,330.82,329.135,332.629,330.219,328.382,329.654,329.854,330.461,332.331]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.01,50.954,50.861,50.879,49.281,52.424,49.695,50.426,50.821,50.372,49.995,49.565,50.112,50.683,48.798],"script":[10.034,10.905,11.011,10.25,9.819,10.976,10.145,10.072,10.743,10.163,9.757,9.694,10.767,10.911,9.823],"paint":[40.042,39.145,38.961,39.741,38.546,40.493,38.628,39.401,39.156,39.341,39.289,38.971,38.429,38.873,38.04]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.748,11.867,11.777,12.793,12.065,12.517,12.534,11.879,12.306,12.485,12.868,13.076,12.662,13.14,12.953],"script":[10.618,9.909,9.868,10.84,10.342,10.442,10.573,10.19,10.295,10.525,10.778,10.893,10.666,11.304,11.038],"paint":[0.379,1.098,1.825,1.866,0.691,1.981,0.954,1.304,1.104,1.87,1.986,1.286,1.911,1.499,1.365]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4783906936645508]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.86653995513916]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.807729721069336]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7001237869262695]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[32.09145545959473]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.7119140625]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2392578125]}},{"framework":"art-v0.1.7-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.1]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"01_run1k","values":{"total":[53.817,51.686,51.702,50.77,51.836,52.361,51.665,51.714,52.46,50.781,51.938,52.445,51.756,52.258,51.319],"script":[19.12,17.703,18.242,17.482,18.089,18.543,17.757,17.822,18.291,17.792,18.141,18.603,18.328,18.353,17.976],"paint":[34.18,33.448,32.962,32.785,33.273,33.337,33.415,33.401,33.651,32.469,33.309,33.365,32.907,33.403,32.861]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"02_replace1k","values":{"total":[18.69,19.214,18.519,18.388,18.386,18.873,18.691,18.576,20.147,18.477,18.948,18.643,19.805,18.741,18.771],"script":[4.384,4.864,4.339,4.304,4.334,4.659,4.391,4.193,4.971,4.292,4.208,4.29,4.737,4.189,4.3],"paint":[13.876,13.922,13.766,13.674,13.633,13.815,13.866,14.026,14.763,13.762,14.377,13.972,14.636,14.179,14.091]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.838,16.651,17.615,19.212,17.036,17.242,17.273,17.129,17.567,17.25,20.258,17.021,16.814,16.832,16.163],"script":[1.679,1.603,1.964,2.618,1.327,1.779,1.647,1.883,1.812,1.007,2.538,1.563,1.347,1.596,1.541],"paint":[13.421,13.361,14.285,15.522,13.602,13.158,13.83,13.32,13.751,15.193,15.626,13.934,14.409,14.082,13.61]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"04_select1k","values":{"total":[7.986,7.643,8.205,8.694,8.499,8.22,6.952,7.39,7.9,8.411,7.989,8.097,7.308,7.84,7.518,8.782,7.744,8.289,7.796,7.72,7.124,8.102,7.738,8.202,7.841],"script":[5.457,5.45,5.669,6.02,5.654,5.459,4.983,5.187,5.342,5.629,5.511,5.708,4.809,5.301,5.209,5.889,4.824,5.716,4.929,5.221,4.715,5.561,5.759,4.709,5.207],"paint":[1.981,1.563,1.725,2.524,2.709,1.285,1.279,2.109,2.43,1.565,2.35,1.482,1.466,1.576,2.197,2.758,2.818,1.732,2.76,2.357,2.298,1.623,1.874,3.026,1.646]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"05_swap1k","values":{"total":[12.591,12.798,12.003,12.109,12.612,12.214,12.305,12.428,13.208,11.75,12.477,12.417,12.249,11.685,12.062],"script":[1.346,0.642,0.946,1.287,1.833,1.481,1.428,1,1.257,0.985,1.237,1.291,1.266,0.885,1.803],"paint":[9.991,10.643,9.485,9.341,9.445,9.322,9.137,9.59,10.294,9.554,10.21,9.726,9.908,9.347,9.182]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[37.452,39.027,36.848,37.463,37.324,40.218,37.883,37.674,37.498,36.335,36.798,37.739,37.268,36.623,37.342],"script":[7.336,7.16,7.24,7.743,7.386,6.894,7.843,7.761,7.645,6.878,6.833,7.2,7.441,6.875,7.408],"paint":[29.307,31.032,28.527,28.627,29.175,32.203,29.259,28.911,29.094,28.401,29.246,29.398,29.026,28.653,28.73]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"07_create10k","values":{"total":[933.252,903.583,926.543,932.933,922.75,930.024,933.761,925.737,920.722,927.407,923.67,924.781,931.764,913.082,913.552],"script":[203.36,177.985,208.495,204.532,202.939,190.742,212.239,206.59,203.192,205.869,204.349,204.123,206.318,194.802,197.59],"paint":[354.984,350.479,352.129,354.048,350.196,362.777,350.257,351.996,350.764,355.384,352.761,356.322,352.472,352.963,350.784]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[59.58,60.326,62.459,61.309,61.133,60.739,60.936,59.31,60.987,60.25,60.63,60.117,60.461,60.381,61.21],"script":[20.233,21.681,22.059,21.952,21.826,21.4,21.748,20.41,21.529,21.494,21.011,20.874,21.172,21.287,21.579],"paint":[38.364,37.694,39.343,38.346,38.389,38.371,38.229,37.968,38.49,37.841,38.689,38.193,38.343,38.025,38.614]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[25.806,25.601,25.06,24.441,24.985,24.432,25.191,25.216,23.97,24.393,24.93,23.865,26.007,25.665,24.478],"script":[23.422,23.488,22.717,21.931,23.113,22.663,23.256,23.699,21.934,22.258,22.689,21.647,23.716,23.661,22.367],"paint":[1.819,2.003,1.869,2.401,1.04,1.22,1.831,0.984,1.609,2.037,2.13,1.574,1.642,1.892,1.99]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.155496597290039]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.5800933837890625]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.589881896972656]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.1614913940429688]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.73548603057861]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[300.37109375]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[62.51171875]}},{"framework":"aurelia-v1.3.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[469]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"01_run1k","values":{"total":[46.633,46.691,46.747,47.53,48.337,46.774,46.002,46.985,47.076,45.446,46.401,43.958,48.159,43.802,47.349],"script":[12.457,12.532,12.811,13.345,12.705,13.03,12.327,12.665,12.493,12.498,12.722,11.924,13.342,12.143,12.637],"paint":[33.711,33.708,33.502,33.751,35.167,33.31,33.132,33.811,34.137,32.497,33.2,31.593,34.269,31.215,34.232]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"02_replace1k","values":{"total":[52.587,51.242,51.978,51.741,50.675,52.457,51.951,51.015,50.903,51.018,50.956,52.037,52.402,52.234,51.393],"script":[16.035,15.269,15.403,15.942,16.374,16.446,16.203,15.303,15.644,15.627,15.309,15.726,16.658,16.616,15.535],"paint":[36.061,35.466,36.13,35.332,33.837,35.529,35.26,35.249,34.779,34.94,35.174,35.829,35.292,35.158,35.356]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.775,19.561,17.806,18.649,18.029,17.874,18.451,17.675,18.714,18.2,17.612,17.661,18.231,17.602,18.219],"script":[2.84,2.635,2.788,2.645,2.652,1.58,2.462,2.235,2.334,1.961,1.735,2.611,2.494,2.345,3.195],"paint":[14.932,15.141,12.819,14.844,14.039,14.574,14.647,13.879,15.263,13.786,14.593,14.057,14.695,13.981,14.341]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"04_select1k","values":{"total":[5.028,4.026,4.482,4.407,4.426,4.539,3.788,3.91,4.921,4.128,4.119,4.021,4.414,4.061,3.927,4.899,4.698,4.376,3.813,4.384,4.458,6.685,4.763,4.15,6.888],"script":[2.769,2.693,1.759,1.841,2.405,1.8,1.594,1.234,2.133,1.906,1.944,2.008,2.032,1.878,1.144,2.045,2.025,1.975,1.583,1.138,2.209,1.794,2.305,1.713,1.318],"paint":[1.77,1.145,1.724,1.717,1.257,2.604,2.071,1.336,2.433,1.219,1.799,1.898,1.761,0.517,2.148,1.403,0.911,2.268,2.104,1.329,1.792,1.644,2.068,2.319,2.241]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"05_swap1k","values":{"total":[20.121,20.807,20.289,21.262,19.6,20.176,20.917,19.659,20.023,20.26,20.083,20.33,20.737,21.116,20.627],"script":[1.497,1.837,1.908,1.965,1.587,1.624,2.465,2.011,1.709,1.942,1.82,1.654,2.1,1.844,2.524],"paint":[17.267,17.055,15.835,17.731,16.565,17.398,17.588,16.663,15.856,17.272,15.805,17.103,16.311,17.875,17.022]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.782,15.809,16.301,16.306,15.355,15.591,15.948,15.332,16.02,15.84,15.351,15.957,15.454,15.901,15.832],"script":[1.017,1.016,0.827,1.006,0.676,0.703,0.961,0.373,0.697,0.703,0.877,0.973,0.719,1.039,0.742],"paint":[14.025,14.074,14.705,14.494,14.013,13.872,14.036,13.959,14.602,14.403,13.688,13.975,14.039,14.133,14.196]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"07_create10k","values":{"total":[482.408,481.041,484.218,492.023,479.689,482.484,475.861,481.366,487.278,484.046,483.264,486.517,480.275,480.308,480.652],"script":[138.488,139.463,141.165,140.671,138.53,139.947,137.191,137.405,142.106,142.044,139.537,143.012,140.158,138.263,140.48],"paint":[336.398,334.193,335.687,343.795,333.833,335.067,331.337,336.569,337.654,334.76,335.727,336.089,332.62,334.369,332.58]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.908,53.06,53.647,54.223,52.647,52.209,52.881,54.315,52.664,54.06,52.832,51.942,52.46,51.554,51.113],"script":[12.058,13.291,12.672,12.553,12.087,12.194,12.424,12.928,12.509,12.92,12.293,12.611,12.067,12.431,12.214],"paint":[39.837,38.774,39.98,40.594,39.592,39.036,39.445,40.381,39.175,40.129,39.542,38.378,39.408,38.18,37.92]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.183,14.091,14.655,13.912,14.279,14.72,14.024,13.644,13.759,14.197,14.703,13.964,14.284,14.263,13.706],"script":[11.638,11.818,12.232,11.887,12.357,12.197,11.884,11.606,12.28,12.668,12.818,11.949,11.926,12.012,11.854],"paint":[1.622,1.366,1.731,1.354,1.81,1.604,1.863,1.955,1.393,1.328,1.776,1.926,2.269,2.155,1.743]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4713430404663086]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6862878799438477]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7437171936035156]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1057968139648438]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.56671142578125]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[6.7216796875]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.0830078125]}},{"framework":"bau-v0.39.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[45.3]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[63.436,63.385,62.742,63.557,62.709,63.14,63.419,63.878,62.864,62.806,63.395,64.459,62.545,63.128,63.424],"script":[28.026,28.426,27.088,27.436,27.241,27.753,27.851,28.045,27.722,27.467,27.578,29.056,27.343,27.87,27.136],"paint":[34.966,34.527,35.216,35.687,35.007,34.947,35.092,35.382,34.696,34.897,35.38,34.96,34.791,34.83,35.843]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[73.675,74.278,73.632,73.336,72.195,72.87,75.094,72.19,73.043,73.504,74.121,74.058,74,75.577,73.83],"script":[37.054,37.855,36.618,36.225,35.742,36.33,37.901,35.343,36.463,36.725,36.919,37.443,36.912,38.478,37.014],"paint":[36.172,35.942,36.579,36.671,36.012,36.1,36.728,36.355,36.133,36.35,36.743,36.164,36.643,36.608,36.314]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.842,18.536,19.299,19.403,20.126,20.545,19.01,20.922,19.245,20.225,19.952,20.09,19.617,20.076,19.783],"script":[4.828,3.471,4.013,3.181,3.427,3.923,3.939,4.254,3.696,3.732,4.005,4.222,4.015,3.756,3.521],"paint":[14.962,13.763,14.011,14.72,15.103,15.401,13.772,14.96,14.566,14.117,14.088,14.7,13.903,15.638,14.981]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[7.994,7.113,7.188,7.155,8.828,6.988,7.395,7.871,6.766,7.881,7.721,7.75,8.353,7.425,7.112,7.057,7.879,6.552,6.97,7.414,8.279,7.657,7.124,7.869,7.486],"script":[5.41,4.669,4.569,4.078,4.491,4.769,5.136,4.562,3.874,4.877,4.005,4.372,5.261,4.639,4.769,4.492,4.602,3.793,4.506,4.655,4.327,4.593,4.337,5.014,4.309],"paint":[0.966,2.335,1.503,2.599,2.244,1.648,1.397,2.686,2.785,2.174,3.557,2.854,2.946,2.187,1.239,1.72,2.228,2.613,1.669,2.614,3.028,2.922,2.674,1.973,2.916]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[21.284,22.619,22.754,22.724,23.653,22.853,21.654,22.45,23.274,22.521,22.761,22.635,22.587,22.87,24.136],"script":[3.438,3.771,4.632,4.044,4.389,4.01,3.906,4.46,4.352,4.264,4.31,3.923,4.362,4.062,4.112],"paint":[15.269,16.98,17.101,17.307,17.957,17.211,16.965,16.459,17.363,16.908,16.923,17.692,16.67,17.526,18.905]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.217,15.982,16.069,16.253,16.843,16.525,16.151,16.033,16.746,16.29,16.007,15.986,16.603,15.959,16.003],"script":[1.395,1.502,1.31,1.33,1.496,1.651,1.419,1.342,1.325,1.418,1.328,1.313,1.555,1.483,1.452],"paint":[13.876,13.474,14.029,14.075,14.617,14.156,13.754,13.66,14.628,14.115,13.684,13.955,13.989,13.699,13.847]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[572.541,567.218,551.696,564.645,560.798,556.419,568.343,556.415,558.647,561.484,557.978,551.965,560.345,565.383,570.085],"script":[214.076,212.806,212.344,204.634,207.873,202.916,205.281,205.374,205.267,208.165,205.242,205.344,207.72,213.019,210.232],"paint":[351.587,347.634,332.621,353.299,346.3,346.827,356.096,344.369,346.668,346.531,346.067,339.869,345.975,345.628,353.15]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[70.87,68.111,67.987,68.132,69.276,67.772,69.628,67.711,69.266,68.055,69.271,69.67,70.888,68.739,68.854],"script":[30.087,27.884,27.769,27.662,28.771,27.322,29.087,27.23,28.457,28.055,29.242,28.825,29.285,28.39,27.941],"paint":[39.872,39.361,39.32,39.598,39.594,39.575,39.658,39.638,39.948,39.12,39.141,39.938,40.552,39.452,40.002]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[37.073,34.102,36.042,35.754,36.219,35.506,37.741,36.896,35.691,35.615,36.511,35.338,33.714,34.854,35.128],"script":[34.995,31.707,33.401,33.873,33.451,32.922,35.889,35.011,33.483,34.158,34.606,33.335,32.008,32.518,33.482],"paint":[1.734,1.864,1.821,1.768,2.654,2.451,1.379,1.785,2.09,1.352,0.778,0.892,0.793,2.23,1.54]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.0859336853027344]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.375436782836914]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[10.458733558654785]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.1963729858398438]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[76.70380878448486]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[284.4765625]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[44.84765625]}},{"framework":"binding.scala-v10.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[408.2]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[57.939,60.596,58.511,56.81,59.232,56.997,60.246,55.177,57.792,60.5,60.284,61.16,59.166,59.898,59.4],"script":[22.049,22.577,22.456,20.871,22.855,21.176,22.669,20.438,21.804,22.942,22.786,22.444,21.85,22.588,22.814],"paint":[35.468,37.598,35.63,35.515,35.947,35.366,37.148,34.304,35.564,37.142,37.061,38.269,36.872,36.897,36.16]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[64.048,63.995,62.694,63.838,62.66,63.83,65.971,64.942,65.617,66.192,64.059,63.183,64.396,65.192,63.86],"script":[25.872,25.773,25.507,25.716,25.258,25.778,27.258,26.309,27.117,26.982,25.984,25.663,26.253,27.46,25.857],"paint":[37.755,37.785,36.743,37.628,36.964,37.597,38.257,38.196,38.06,38.753,37.623,37.059,37.686,37.299,37.549]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[167.585,174.29,171.801,169.467,169.524,169.511,170.868,171.141,170.677,169.517,170.48,170.729,169.975,174.944,170.088],"script":[136.397,140.888,139.496,137.854,137.533,137.426,138.085,138.272,137.746,137.897,138.353,137.77,137.901,140.359,138.32],"paint":[30.063,31.265,30.818,30.074,29.27,30.403,31.382,30.647,31.352,29.283,30.526,30.556,30.101,32.534,30.437]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.823,5.032,5.2,4.739,4.624,5.421,5.541,5.183,6.337,5.172,4.683,4.694,5.463,5.268,6.195,5.021,5.146,5.546,4.888,4.98,4.96,4.735,4.992,4.884,5.491],"script":[2.594,2.582,2.721,2.04,2.735,2.975,2.512,2.479,2.59,1.914,1.611,2.237,2.689,2.998,2.707,2.439,2.424,2.422,2.527,2.37,2.459,1.76,2.457,2.678,2.938],"paint":[1.864,1.87,1.548,2.16,1.108,1.632,1.815,1.845,2.759,3.119,2.929,1.721,1.316,0.59,2.293,2.451,2.605,1.821,1.286,2.478,3.205,1.695,2.411,1.448,1.679]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[23.294,24.119,23.184,23.556,23.857,22.379,23.34,23.608,23.727,23.691,23.568,24.872,22.672,23.604,23.729],"script":[4.519,4.528,3.928,3.97,4.58,4.362,4.609,4.871,4.96,4.598,4.204,4.652,4.562,4.551,4.892],"paint":[16.517,18.218,17.786,17.538,17.918,16.783,17.666,17.653,17.49,18.223,17.793,18.28,16.49,18.118,17.206]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.122,17.283,17.204,17.331,18.23,17.535,16.772,16.829,17.008,16.744,17.154,17.808,17.304,16.768,16.895],"script":[1.843,1.673,1.725,1.85,1.932,1.874,1.841,1.5,1.632,1.835,1.852,1.962,2.106,1.857,1.887],"paint":[14.187,14.728,14.769,14.73,15.19,14.792,14.178,14.265,14.441,14.133,14.259,14.999,14.415,13.972,14.335]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[590.248,587.776,592.491,591.639,598.704,588.716,584.727,591.273,589.418,592.012,587.785,590.27,580.233,587.241,587],"script":[224.702,220.905,220.357,222.872,225.621,220.207,220.003,220.339,221.964,223.049,221.612,224.094,216.955,221.353,220.859],"paint":[357.576,359.306,364.806,361.258,365.739,361.376,357.4,363.587,360.118,361.546,358.621,358.391,355.793,358.431,358.638]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[126.758,125.625,128.758,127.816,127.083,128.447,127.778,126.315,125.407,128.811,126.463,126.184,125.897,124.935,124.184],"script":[54.387,51.77,54.283,54.409,52.431,53.713,53.291,53.445,51.717,54.346,52.926,52.573,53.063,52.117,51.665],"paint":[71.521,72.999,73.565,72.53,73.753,73.86,73.603,71.99,72.785,73.557,72.647,72.717,71.961,71.946,71.621]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.215,20.057,20.501,19.825,19.816,19.926,19.756,20.605,19.857,20.572,20.892,19.385,19.746,20.606,20.536],"script":[18.688,17.469,18.473,17.914,17.925,18.258,17.578,19.2,17.506,18.728,18.772,17.948,17.733,17.939,18.739],"paint":[1.432,2.502,1.569,1.83,1.791,1.022,2.087,1.286,1.827,1.759,1.402,0.349,1.367,2.371,1.7]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7877273559570312]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.856842041015625]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.9196624755859375]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.076221466064453]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.90069007873535]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[413.1064453125]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[100.4287109375]}},{"framework":"bui-v1.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[574.3]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"01_run1k","values":{"total":[42.437,42.146,44.059,42.675,43.523,44.848,42.159,42.427,42.849,42.872,42.315,42.663,44.009,45.353,43.2],"script":[8.87,8.741,9.531,8.78,9.543,9.47,8.603,8.785,9.499,8.823,8.829,8.625,9.671,9.879,8.985],"paint":[33.163,32.994,34.153,33.491,33.569,34.98,33.157,33.248,32.954,33.622,33.088,33.635,33.926,35.066,33.818]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"02_replace1k","values":{"total":[22.129,22.009,21.528,23.516,21.794,21.906,21.915,21.629,21.503,21.98,21.477,21.321,21.996,22.458,21.241],"script":[7.168,7.268,7.209,7.26,7.306,7.313,6.933,7.08,6.945,7.031,6.686,6.9,7.105,7.32,6.887],"paint":[14.528,14.334,13.883,15.818,14.083,14.182,14.564,14.1,14.113,14.544,14.327,13.988,14.471,14.711,13.918]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[34.142,34.027,33.408,33.984,35.91,33.461,33.607,33.092,34.566,33.81,32.96,35.297,33.046,35.599,32.663],"script":[17.277,17.614,17.674,18.299,18.964,17.173,17.917,17.125,18.23,17.649,17.094,18.299,17.977,18.437,17.033],"paint":[15.263,15.056,14.365,14.309,15.277,14.73,14.346,13.618,14.788,14.311,14.022,15.527,13.729,15.763,14.473]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"04_select1k","values":{"total":[21.525,21.001,21.576,21.444,19.846,23.517,20.707,20.756,20.719,21.799,21.691,20.972,20.054,22.008,19.84,21.008,20.156,21.768,21.033,23.122,19.923,21.251,19.528,20.447,21.977],"script":[18.41,17.542,17.805,18.03,17.077,20.402,17.719,18.079,17.551,17.997,18.68,17.518,16.221,18.345,16.628,17.874,17.1,18.299,17.834,19.354,16.59,18.144,16.346,17.862,18.429],"paint":[1.972,2.53,3.575,2.773,2.596,2.914,1.526,1.458,2.508,3.12,2.132,2.735,2.805,2.875,2.181,1.688,2.892,2.477,2.175,3.197,2.516,2.917,1.934,1.73,3.331]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"05_swap1k","values":{"total":[28.613,29.784,30.171,29.074,28.529,29.871,29.193,26.986,29.689,28.777,28.252,29.42,26.888,27.339,27.782],"script":[17.78,18.825,18.494,18.168,17.226,18.094,17.282,16.502,18.257,17.382,17.713,16.499,15.238,15.773,16.262],"paint":[9.264,9.786,9.614,10.164,10.046,10.015,10.786,9.483,9.794,10.004,9.444,11.416,9.797,9.086,10.152]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[42.997,41.34,45.016,43.016,42.462,42.508,41.804,43.499,42.821,44.462,41.857,43.043,42.434,42.375,41.785],"script":[12.22,11.447,13.48,13.078,12.407,12.351,12.345,12.921,12.754,13.195,11.768,12.984,12.454,12.274,12.165],"paint":[29.94,28.885,30.382,28.961,29.245,29.042,28.69,29.181,29.269,29.941,28.933,28.916,28.894,29.29,28.171]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"07_create10k","values":{"total":[452.73,455.146,448.691,454.696,449.607,448.193,456.107,451.133,452.212,450.59,452.395,453.396,452.861,454.044,450.655],"script":[120.437,118.905,113.808,122.152,115.678,116.105,122.312,116.661,119.211,115.764,115.517,117.969,119.059,119.461,116.747],"paint":[325.415,329.538,328.248,325.714,327.273,325.194,326.921,327.578,326.422,328.166,330.224,328.804,326.854,327.743,327.087]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.563,54.21,54.079,53.209,55.459,55.134,54.435,55.88,55.305,55.353,54.099,54.153,52.839,55.192,56.127],"script":[13.338,13.654,13.314,13.623,13.68,13.46,14.015,13.752,13.494,13.508,13.953,13.72,13.423,13.719,13.5],"paint":[40.248,39.693,39.891,38.694,40.807,40.72,39.531,41.179,40.936,40.95,39.21,39.513,38.531,40.489,41.654]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.929,20.946,20.404,19.688,19.574,19.266,20.249,19.126,19.788,20.885,20.999,20.077,19.559,20.235,19.703],"script":[19.013,19.155,18.215,18.229,17.658,17.127,18.045,17.656,17.435,19.158,18.686,17.937,17.62,17.775,18.151],"paint":[1.423,1.325,1.836,1.355,1.81,2.034,2.107,0.397,2.262,0.843,1.722,1.535,1.837,2.37,1.453]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8789291381835938]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5381240844726562]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.518671989440918]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1139411926269531]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.0386962890625]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[83.35546875]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.55078125]}},{"framework":"cyclejs-dom-v20.4.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[130.7]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"01_run1k","values":{"total":[40.472,40.033,39.185,40.434,40.003,40.024,40.002,40.528,42.459,40.285,39.779,40.108,40.418,40.557,40.23],"script":[6.911,7.116,6.433,7.002,6.702,6.959,7.109,7.002,6.75,7.005,6.83,6.842,6.99,6.903,6.707],"paint":[33.148,32.512,32.346,33.037,32.885,32.647,32.483,33.109,35.277,32.87,32.528,32.845,33.007,33.24,33.116]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"02_replace1k","values":{"total":[17.009,15.999,15.989,17.976,17.722,18.031,16.172,17.713,16.598,17.682,16.051,17.823,17.845,17.863,17.669],"script":[1.949,1.945,1.898,2.121,2.119,2.102,1.877,1.969,1.897,2.072,1.882,2.154,2.094,2.034,2.065],"paint":[14.6,13.64,13.708,15.444,15.19,15.527,13.934,15.347,14.241,15.207,13.763,15.248,15.312,15.42,15.187]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.064,19.604,19.685,19.546,19.365,19.745,19.546,19.324,19.041,20.465,19.545,18.816,18.808,19.471,19.451],"script":[4.086,3.854,3.678,3.926,4.729,4.206,4.093,4.555,3.974,4.049,4.022,3.851,3.738,3.963,4.113],"paint":[14.273,14.164,14.862,14.503,12.523,13.803,13.505,12.927,13.134,15.371,13.681,13.69,13.408,14.422,13.802]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"04_select1k","values":{"total":[2.672,2.735,2.541,3.247,4.3,3.653,2.952,2.639,2.768,3.846,2.42,4.482,3.244,2.687,2.541,4.018,4.102,2.312,2.655,4.389,4.787,2.142,3.297,3.122,2.981],"script":[0.122,0.702,0.111,0.901,0.113,0.942,0.956,0.114,0.255,0.835,0.597,0.112,0.482,0.469,0.793,1.227,0.832,0.122,0.107,0.543,0.108,0.28,0.937,0.131,0.827],"paint":[1.587,1.94,1.798,2.24,2.628,2.516,1.888,1.314,1.769,2.13,1.726,2.473,2.278,2.122,1.646,1.901,1.455,1.101,2.449,1.943,2.682,1.764,2.255,1.583,1.481]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"05_swap1k","values":{"total":[14.653,14.07,13.287,14.384,14.529,13.488,13.695,14.41,13.306,14.305,13.446,14.424,13.919,14.031,14.586],"script":[3.642,3.643,3.032,2.283,3.358,2.334,3.091,3.511,3.224,3.194,3.193,2.879,3.033,2.752,3.269],"paint":[9.481,8.91,8.971,10.926,9.66,9.807,8.887,9.007,8.881,9.733,8.992,9.715,9.567,10.296,9.805]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.329,33.542,34.289,33.765,34.119,34.004,34.225,33.334,33.336,33.515,33.591,33.418,33.807,33.383,34.008],"script":[3.806,3.745,4.232,4.15,3.969,4.149,4.062,3.929,3.994,4.114,4.19,3.806,4.116,3.901,3.998],"paint":[28.49,28.778,29.127,28.639,29.398,29.029,29.385,28.467,28.476,28.036,28.637,28.672,28.714,28.707,29.236]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"07_create10k","values":{"total":[412.315,414.597,413.097,412.512,414.189,412.178,410.824,410.755,411.664,413.155,416.385,412.442,413.654,412.043,412.689],"script":[66.167,68.214,68.402,70.454,67.802,67.214,65.64,66.751,67.746,70.205,67.931,67.369,67.616,65.866,67.381],"paint":[339.461,339.726,337.939,334.84,339.719,338.277,338.234,337.296,337.271,336.289,341.514,338.416,339.39,339.526,338.636]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.628,48.591,46.043,45.297,46.51,46.303,47.824,46.578,47.819,46.502,46.136,45.706,46.031,45.001,46.654],"script":[7.068,7.432,7.271,7.041,7.238,7.427,7.276,7.235,7.08,7.328,7.307,7.246,7.268,6.527,7.291],"paint":[39.684,40.27,37.92,37.399,38.405,37.823,39.66,38.485,39.832,38.282,37.946,37.596,37.889,37.603,38.507]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.648,12.705,12.56,12.783,12.753,12.318,13.035,12.578,12.95,12.532,12.77,13.243,12.11,12.074,12.3],"script":[10.29,10.073,10.238,10.859,10.721,10.699,11.211,10.281,11.05,10.229,10.427,10.94,10.274,10.22,10.887],"paint":[2.265,2.532,1.803,0.97,1.565,1.527,1.054,2.213,1.806,1.557,2.255,1.384,1.749,1.769,0.382]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5283088684082031]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.2488718032836914]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.3182449340820312]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7514276504516602]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.00042152404785]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.7841796875]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2373046875]}},{"framework":"cydon-v0.1.8-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.2]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"01_run1k","values":{"total":[38.492,38.675,39.37,41.889,39.937,39.482,39.306,39.611,39.655,39.96,39.22,40.38,39.731,39.425,39.654],"script":[5.343,4.976,5.341,5.222,5.114,5.242,5.254,5.372,5.291,5.173,5.07,5.238,4.861,5.172,5.115],"paint":[32.709,33.283,33.599,36.237,34.39,33.83,33.631,33.837,33.911,34.318,33.74,34.651,34.455,33.84,34.117]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"02_replace1k","values":{"total":[20.022,21.194,19.517,19.816,18.671,19.337,20.055,19.806,19.231,18.75,19.649,19.679,19.718,19.274,19.556],"script":[4.033,4.791,4.747,5.045,4.11,4.507,4.857,4.731,4.485,4.149,4.9,4.861,4.779,4.483,4.875],"paint":[15.561,15.947,14.365,14.393,14.169,14.459,14.729,14.635,14.322,14.174,14.356,14.425,14.563,14.422,14.292]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.291,17.343,17.035,17.122,16.408,16.104,16.297,16.787,17.227,16.384,16.847,17.256,16.007,15.77,16.713],"script":[0.541,0.933,0.903,1.153,0.904,0.946,0.843,0.907,0.872,1.107,0.921,0.891,0.964,0.664,0.225],"paint":[13.589,15.385,14.806,14.58,13.678,14.054,14.165,14.695,14.335,13.514,13.724,13.803,13.792,13.653,15.231]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"04_select1k","values":{"total":[5.303,2.227,2.26,2.613,1.863,2.7,2.644,5.115,2.482,3.049,3.138,3.215,2.841,3.301,2.512,2.504,2.528,2.203,5.204,2.671,2.857,2.196,4.146,1.97,2.734],"script":[0.063,0.303,0.061,0.066,0.066,0.07,0.714,0.057,0.066,0.336,0.074,1.058,0.067,0.725,0.059,0.059,0.062,0.059,0.895,0.068,0.062,0.057,0.061,0.061,0.064],"paint":[1.828,1.427,1.219,2.44,1.706,0.896,1.213,2.336,2.123,1.812,2.963,2.054,2.24,2.476,2.179,2.343,2.369,2.046,1.826,1.656,2.695,1.319,2.28,1.813,1.873]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"05_swap1k","values":{"total":[12.792,11.315,11.955,12.54,11.846,10.991,11.542,11.389,11.398,11.597,11.508,11.455,11.531,12.121,12.236],"script":[0.122,0.561,0.096,0.752,0.814,0.102,0.107,0.108,0.11,0.602,0.107,0.101,0.56,0.792,0.41],"paint":[11.039,9.387,9.719,10.767,9.923,9.61,9.381,10.216,10.328,10.019,9.834,9.709,9.822,10.116,10.672]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.421,14.846,15.031,14.788,14.744,15.981,15.446,14.985,14.867,14.75,15.063,15.005,15.366,15.406,15.657],"script":[0.198,0.107,0.256,0.419,0.103,0.249,0.106,0.43,0.109,0.099,0.243,0.117,0.441,0.275,0.303],"paint":[14.484,13.104,14.023,13.67,13.783,14.779,14.593,13.866,13.722,14.262,14.106,13.885,14.181,14.122,14.671]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"07_create10k","values":{"total":[415.622,415.065,416.558,413.669,408.244,415.353,416.308,413.428,415.662,413.81,417.848,418.608,411.438,411.927,410.83],"script":[63.883,62.392,65.587,63.279,63.374,62.949,64.067,63.891,64.249,64.395,65.589,62.773,63.433,61.68,62.174],"paint":[344.987,345.972,344.144,343.677,338.19,345.708,345.507,342.597,344.752,342.733,345.533,349.141,341.337,343.713,341.751]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.326,44.329,43.304,43.867,44.589,43.482,44.002,43.789,44.896,43.759,43.573,44.859,44.031,44.755,44.352],"script":[4.484,4.642,4.525,4.537,4.618,4.497,4.595,4.51,4.7,4.674,4.452,4.754,4.523,4.666,4.619],"paint":[37.997,38.808,37.984,38.522,39.097,38.083,38.588,38.417,39.292,38.15,38.303,39.253,38.668,39.228,38.824]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.168,12.209,12.683,12.105,12.92,12.151,12.334,11.766,12.119,12.219,12.504,12.701,13.346,12.317,12.164],"script":[10.448,10.802,11.319,10.073,11.327,10.42,11.062,9.706,10.687,9.858,10.425,10.467,10.835,10.717,9.858],"paint":[1.625,1.311,1.26,1.95,1.131,1.029,1.182,1.656,0.38,2.271,1.995,1.994,2.317,0.908,1.985]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6674489974975586]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.184140205383301]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.342824935913086]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.9062232971191406]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[17.652867317199707]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[101.130859375]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[36.1484375]}},{"framework":"delorean-v0.1.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[43.9]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"01_run1k","values":{"total":[37.497,36.065,38.189,36.317,36.758,37.51,38.406,38.347,36.969,37.759,37.533,37.022,37.481,37.148,37.149],"script":[4.141,3.875,3.848,3.836,3.815,4.317,3.89,4.243,3.935,4.078,4.231,3.995,3.938,3.924,4.039],"paint":[32.89,31.777,33.93,32.095,32.55,32.801,34.088,33.721,32.609,33.28,32.888,32.615,33.124,32.831,32.702]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"02_replace1k","values":{"total":[16.554,16.574,16.595,16.82,16.663,17.774,16.348,16.863,16.72,16.954,16.777,16.34,16.829,17.355,16.701],"script":[2.07,2.09,1.91,2.161,2.027,2.089,1.951,2.185,2.143,2.104,2.17,1.989,2.242,2.308,2.097],"paint":[14.123,14.111,14.288,14.283,14.262,15.244,14.053,14.277,14.148,14.473,14.186,13.969,14.17,14.649,14.237]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.348,18.91,20.055,18.94,20.709,19.675,19.924,18.974,21.019,19.119,19.864,18.759,19.632,19.666,18.495],"script":[3.743,2.969,3.603,2.999,3.419,3.993,3.934,2.991,3.606,3.703,3.139,3.002,3.262,3.348,3.419],"paint":[14.574,14.177,13.877,14.112,15.744,14.967,14.011,13.879,16.06,14.075,15.529,14.505,15.34,14.034,13.271]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"04_select1k","values":{"total":[2.719,3.358,2.626,3.307,2.39,3.258,3.15,3.617,2.537,3.084,3.283,3.888,3.275,2.965,2.863,3.147,4.403,4.096,2.575,3.391,2.517,3.086,4.037,2.83,2.716],"script":[0.131,0.842,0.132,0.506,0.277,0.963,0.959,0.828,0.119,0.858,0.835,0.124,1.061,0.593,0.871,0.126,0.125,0.599,0.126,0.688,0.522,0.12,0.119,1.101,0.547],"paint":[0.725,1.74,2.383,1.847,2.015,1.849,2.077,1.727,1.426,1.961,1.588,2.726,2.112,1.936,1.793,2.007,2.324,1.954,1.307,2.215,1.126,2.144,3.214,1.619,0.555]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"05_swap1k","values":{"total":[12.646,12.361,12.472,13.697,12.804,13.095,12.211,12.558,12.071,12.021,12.812,12.172,13.322,12.753,11.632],"script":[1.163,1.061,1.052,2.05,1.849,1.285,0.912,1.286,1.073,1.181,1.713,1.286,2.067,1.104,1.312],"paint":[9.954,9.585,10.184,10.19,9.368,10.267,9.343,10.369,9.144,9.182,9.687,9.141,9.913,10.411,7.72]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[34.558,34.524,34.367,33.981,34.201,35.343,36.78,33.791,33.805,33.814,34.284,34.502,33.768,34.594,34.416],"script":[3.094,3.059,3.127,3.144,3.231,3.199,3.542,2.991,3.107,3.04,2.795,2.873,3.009,2.781,2.992],"paint":[30.362,30.639,29.972,29.781,29.629,31.199,32.35,29.709,29.698,29.991,30.448,30.797,29.722,31.083,30.502]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"07_create10k","values":{"total":[388.763,388.83,386.428,391.669,388.15,385.734,393.555,395.775,392.433,387.315,387.491,390.777,389.952,388.703,389.69],"script":[43.328,41.998,42.533,42.521,43.509,42.374,45.059,46.037,45.384,42.234,41.021,44.356,44.744,43.67,44.753],"paint":[338.775,340.294,337.261,342.593,337.991,336.715,341.829,343.015,340.436,338.503,339.845,339.689,338.549,338.582,338.313]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.109,44.317,43.712,45.063,42.89,42.742,43.546,43.125,44.434,43.12,43.178,43.077,42.692,42.916,44.873],"script":[4.905,4.911,4.541,4.713,4.631,4.58,4.48,4.629,4.71,4.781,4.557,4.748,4.629,4.67,4.809],"paint":[38.326,38.493,38.329,39.436,37.379,37.304,38.147,37.629,38.826,37.484,37.795,37.486,37.194,37.415,39.206]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.169,14.074,14.871,13.795,14.305,14.856,14.862,14.54,14.415,14.266,14.551,15.15,14.734,15.365,15.186],"script":[12.346,12.191,13.112,12.495,12.031,12.908,12.696,11.945,12.779,12.328,12.282,13.588,12.198,13.339,13.102],"paint":[1.738,0.96,1.67,0.888,1.4,1.836,2.062,2.491,0.771,1.84,2.177,1.014,2.108,1.726,1.997]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4864158630371094]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.061552047729492]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0935182571411133]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6149311065673828]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.710993766784668]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[18.279296875]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.0888671875]}},{"framework":"dlightjs-v1.0.0-next.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.5]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"01_run1k","values":{"total":[59.269,58.719,59.392,58.793,58.498,58.496,60.218,59.423,60.053,59.588,60.05,58.908,58.559,60.49,59.897],"script":[25.798,25.222,26.016,25.614,25.227,24.905,26.235,25.662,26.275,25.971,26.223,25.296,25.182,26.532,25.935],"paint":[33.048,33.093,32.964,32.74,32.84,33.17,33.552,33.322,33.34,33.194,33.392,33.171,32.944,33.509,33.528]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"02_replace1k","values":{"total":[39.582,40.15,37.54,38.136,38.398,39.72,40.396,38.588,38.187,38.087,38.742,38.281,38.813,38.587,38.6],"script":[23.983,23.417,22.271,23.078,23.235,23.177,23.49,23.318,23.069,23.012,23.258,23.157,23.067,23.151,23.174],"paint":[15.117,16.274,14.796,14.57,14.687,16.036,16.428,14.787,14.659,14.609,15.047,14.639,15.29,15.01,14.959]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[25.893,26.063,26.155,26.212,25.602,26.181,25.505,25.499,25.734,25.488,26.105,25.254,26.389,27.9,25.726],"script":[9.79,10.475,10.338,10.628,9.645,10.283,9.836,10.145,10.141,9.572,9.646,10.113,9.802,10.109,9.8],"paint":[14.978,13.746,14.254,13.939,14.283,14.893,14.214,14.317,14.052,14.507,14.768,13.307,14.808,16.937,14.501]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"04_select1k","values":{"total":[8.366,7.118,7.762,7.794,7.456,8.384,7.863,8.245,7.709,8.512,7.786,7.95,7.274,8.151,7.361,7.584,7.713,6.979,7.71,8.018,8.251,7.738,8.247,8.51,8.807],"script":[5.462,4.596,4.997,5,5.237,5.579,5.002,5.473,5.403,5.17,5.531,5.203,4.94,5.07,4.75,4.799,5.411,4.912,5.632,5.461,4.986,5.318,5.291,6.029,6.103],"paint":[1.997,2.055,2.646,2.397,1.455,1.993,2.752,2.654,2.185,2.855,1.487,2.616,1.898,2.936,2.013,2.655,2.191,1.263,1.972,2.419,3.138,2.307,2.792,1.664,2.199]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"05_swap1k","values":{"total":[16.865,16.179,16.304,16.576,16.311,16.121,16.252,16.63,16.231,16.087,16.481,16.735,17.11,16.644,16.462],"script":[5.622,4.982,6.077,5.139,5.661,4.551,5.386,5.852,5.425,5.093,5.501,5.599,5.272,5.188,4.844],"paint":[9.49,9.592,8.685,9.718,7.653,10.616,9.202,9.002,8.992,9.472,9.711,10.085,10.431,10.141,10.022]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[50.305,50.167,53.948,53.102,53.292,50.505,50.975,49.711,49.726,53.422,52.248,50.149,50.236,49.432,50.849],"script":[19.516,18.689,19.454,18.752,19.682,19.303,19.43,18.952,18.917,19.673,19.502,18.729,18.925,18.034,19.078],"paint":[29.247,30.609,33.683,33.176,32.419,30.369,30.705,29.593,29.716,32.916,31.576,30.551,29.902,30.375,30.602]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"07_create10k","values":{"total":[672.862,673.182,672.007,664.724,664.016,677.2,668.852,672.646,672.21,668.59,668.911,661.689,669.139,671.649,670.613],"script":[323.74,318.904,314.686,314.081,312.435,324.952,316.995,314,316.886,318.866,316.424,310.604,318.879,318.783,319.893],"paint":[342.474,347.596,350.728,344.085,344.914,345.642,345.263,352.239,348.67,343.232,345.823,343.987,343.69,346.195,344.078]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[79.877,80.554,80.114,80.05,80.275,82.156,80.646,83.035,79.977,81.006,79.774,80.604,80.544,81.754,81.4],"script":[40.85,41.244,41.134,41.074,40.959,41.189,41.361,43.16,41.07,41.213,41.063,41.27,41.353,42.011,41.306],"paint":[38.197,38.448,38.041,38.078,38.388,39.739,38.374,38.927,38.064,38.921,37.807,38.481,38.289,38.831,39.203]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.858,18.891,16.583,17.84,17.659,17.711,17.343,17.64,17.117,17.573,17.527,18.487,19.011,17.906,17.12],"script":[15.313,16.958,14.648,15.718,15.289,15.24,15.833,14.958,15.188,15.972,14.983,16.474,16.893,15.445,15.474],"paint":[1.439,1.81,1.84,2.029,1.322,2.375,1.417,2.222,1.114,1.506,2.44,1.922,2.005,1.784,1.544]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7719287872314453]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.346159934997559]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.000749588012695]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.525975227355957]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.81096363067627]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[77.251953125]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[19.8955078125]}},{"framework":"doz-v4.0.3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[116.7]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"01_run1k","values":{"total":[35.407,36.576,35.569,35.403,35.228,38.562,36.627,35.014,35.552,35.751,35.918,35.919,37.074,35.522,36.57],"script":[2.305,2.411,2.208,2.289,2.353,2.328,2.412,2.336,2.348,2.305,2.228,2.271,2.15,2.419,2.254],"paint":[32.677,33.741,32.943,32.707,32.463,35.844,33.793,32.265,32.765,32.97,33.282,33.228,34.495,32.675,33.891]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"02_replace1k","values":{"total":[15.887,15.194,16.346,15.508,15.099,15.286,17.159,15.362,15.436,15.322,15.234,15.077,14.93,15.559,15.488],"script":[1.106,1.206,1.164,1.161,1.143,1.146,1.141,1.278,1.236,1.09,1.143,1.197,1.147,1.074,1.194],"paint":[14.363,13.614,14.763,13.92,13.558,13.726,15.601,13.676,13.797,13.863,13.673,13.496,13.387,14.106,13.874]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.984,16.094,16.47,15.553,15.454,17.734,16.017,16.159,16.198,16.122,16.794,16.573,17.648,16.486,16.375],"script":[1.226,0.975,1.074,1.115,1.066,1.388,1.013,0.724,1.089,1.17,1.228,1.178,0.941,1.445,0.586],"paint":[13.203,13.287,13.854,13.213,13.408,14.265,13.194,14.128,13.404,12.95,14.302,13.848,14.115,13.98,14.509]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"04_select1k","values":{"total":[2.804,3.643,3.009,2.903,4.331,3.043,2.219,2.649,3.219,2.733,4.075,2.6,3.151,2.491,4.216,2.488,3.521,2.929,5.982,2.992,2.766,2.67,2.998,2.792,5.513],"script":[0.932,0.839,0.732,0.532,0.773,0.729,0.108,0.53,0.777,0.553,0.097,0.098,0.991,0.104,0.342,0.102,1.076,0.104,0.1,0.771,0.104,0.105,0.865,0.514,0.783],"paint":[1.766,2.009,2.178,2.269,1.893,2.205,2.014,2.026,2.347,2.082,2.823,1.607,1.498,2.285,2.302,1.316,2.341,2.725,1.309,2.122,1.789,1.569,1.373,2.182,1.899]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"05_swap1k","values":{"total":[11.396,12.218,11.077,11.629,11.464,11.13,11.252,10.785,11.307,10.681,10.893,11.437,11.79,11.674,11.563],"script":[0.244,0.57,0.078,0.088,0.243,0.092,0.605,0.397,0.084,0.538,0.084,0.54,0.612,0.432,0.79],"paint":[8.39,10.315,8.978,9.111,10.173,9.624,9.119,9.429,10.492,9.178,8.8,9.355,10.021,9.81,9.491]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.208,14.723,14.678,15.37,14.685,15.639,14.797,15.11,14.798,15.08,14.794,15.289,14.799,14.852,14.825],"script":[0.419,0.285,0.258,0.148,0.125,0.444,0.119,0.486,0.124,0.201,0.366,0.431,0.344,0.195,0.114],"paint":[14.1,13.689,13.258,14.816,13.727,14.499,13.967,13.904,13.969,14.171,13.421,13.904,13.773,13.644,13.73]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"07_create10k","values":{"total":[505.616,481.551,482.526,484.277,491.855,485.924,486.983,481.845,485.507,484.745,486.887,489.367,479.353,484.85,483.692],"script":[140.445,141.265,141.858,141.192,141.013,140.082,141.187,137.903,140.075,140.265,141.252,142.986,138.407,140.959,139.852],"paint":[357.416,333.307,333.938,336.273,343.877,339.111,338.902,337.135,338.745,337.655,338.88,339.019,334.291,337.191,337.145]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.099,55.623,56.859,55.377,55.793,57.424,56.238,57.091,55.631,56.485,56.138,56.139,54.886,55.196,55.595],"script":[15.65,15.86,16.177,15.229,15.307,16.104,15.582,16.016,15.468,16.031,15.825,15.873,15.691,15.103,15.252],"paint":[40.585,38.864,39.794,39.278,39.554,40.405,39.786,40.19,39.316,39.581,39.425,39.409,38.331,39.215,39.468]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.355,17.867,18.148,17.523,17.543,16.847,17.423,15.961,18.734,16.724,17.321,18.089,18.183,17.772,17.959],"script":[15.624,15.364,15.88,14.975,15.874,15.205,15.582,14.76,16.479,14.801,15.599,16.098,15.791,15.837,16.107],"paint":[1.643,1.819,1.04,2.463,1.261,0.702,0.413,0.524,2.102,1.834,0.811,1.891,2.054,1.844,1.102]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5634775161743164]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.682707786560059]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.742267608642578]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.690851211547852]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.7879581451416]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[25.3876953125]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.2763671875]}},{"framework":"ef-js-v0.17.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.8]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"01_run1k","values":{"total":[46.854,46.787,46.383,42.399,51.556,42.096,44.092,47.187,50.965,46.08,44.399,46.693,47.477,45.342,50.319],"script":[9.012,8.321,8.799,8.715,9.104,8.617,8.511,8.918,9.063,8.817,8.803,8.712,8.433,8.819,8.866],"paint":[33.796,32.871,32.189,32.971,33.799,33.035,31.842,33.52,32.561,32.668,33.545,32.437,32.401,32.338,36.078]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"02_replace1k","values":{"total":[24.746,24.779,27.036,29.873,26.797,27.947,30.034,28.58,26.758,27.268,28.9,20.917,30.379,31.043,23.057],"script":[5.643,5.691,5.538,6.006,5.473,5.637,6.113,5.917,6.143,6.213,5.705,5.865,5.635,5.647,5.94],"paint":[16.02,14.324,14.572,14.825,14.485,14.608,14.81,14.762,14.669,14.344,15.148,14.629,14.675,14.858,16.676]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.394,42.806,41.476,42.948,44.776,19.521,22.704,45.343,20.929,21.315,20.624,22.361,20.466,45.04,42.523],"script":[3.165,3.658,4.128,4.326,3.905,4.04,3.455,3.496,3.344,3.68,3.567,3.812,3.766,3.694,3.555],"paint":[15.907,14.613,14.933,14.124,14.263,13.722,15.321,15.019,14.731,14.516,14.279,15.733,14.154,15.684,13.71]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"04_select1k","values":{"total":[4.591,4.84,7.568,9.072,11.47,6.727,4.657,6.631,9.609,7.619,5.584,8.702,7.835,4.376,9.883,10.26,5.264,9.738,12.136,6.531,5.553,12.944,5.238,8.728,10.766],"script":[0.946,0.934,1.2,1.123,1.129,1.417,1.376,0.582,0.639,1.035,1.729,0.316,0.94,1.827,0.349,1.066,1.89,0.668,0.403,1.326,1.488,1.844,1.407,1.579,0.893],"paint":[2.248,2.903,1.719,1.585,2.716,1.759,2.345,1.48,2.346,1.785,1.73,3.376,1.606,1.43,2.322,1.759,1.652,1.738,2.598,1.381,1.674,2.01,1.764,2.235,2.415]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"05_swap1k","values":{"total":[39.631,14.095,13.704,36.206,14.934,40.14,35.61,36.101,13.57,33.24,12.536,14.864,14.893,35.183,38.419],"script":[1.061,0.963,0.436,0.946,1.856,1.228,0.994,1.049,0.489,1.105,0.922,0.356,2.3,1.936,1.054],"paint":[10.728,10.752,10.311,9.126,9.987,10.45,10.219,9.974,10.099,10.375,10.538,9.92,10.885,9.715,11.438]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.08,40.582,40.638,39.584,36.937,42.272,36.264,43.193,42.279,37.643,44.256,41.369,39.64,38.226,43.943],"script":[7.385,7.186,7.918,7.369,6.455,6.981,6.564,6.955,7.967,7.322,7.052,6.615,6.575,7.508,6.503],"paint":[29.907,32.432,31.929,31.42,29.244,33.256,28.793,30.492,31.577,29.297,29.341,32.072,28.717,29.314,29.901]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"07_create10k","values":{"total":[455.09,449.1,432.973,448.495,447.404,445.415,456.273,447.443,451.935,446.792,432.096,429.225,428.958,431.126,790.926],"script":[93.912,94.151,93.04,92.906,92.969,92.224,95.409,93.87,93.868,92.995,93.395,93.286,91.919,95.285,91.547],"paint":[352.006,345.723,330.966,345.708,344.902,344.362,347.103,344.52,348.827,343.28,330.229,326.447,326.055,327.277,339.826]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.8,51.875,46.821,57.78,54.711,57.711,53.743,52.72,47.402,57.131,56.602,56.272,57.606,55.459,53.081],"script":[7.632,7.292,7.386,7.572,7.669,8.411,8.569,7.757,7.854,7.797,7.911,7.591,7.621,7.489,7.877],"paint":[37.79,37.512,37.397,38.541,39.754,38.732,38.127,38.271,37.915,38.825,37.662,38.41,38.198,38.326,37.135]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.547,14.582,37.406,12.47,13.438,11.626,12.268,16.92,37.129,12.265,13.256,13.193,12.182,12.156,40.089],"script":[9.881,10.426,10.155,10.493,11.242,9.964,10.097,11.538,9.931,9.58,10.173,10.581,9.116,9.994,12.128],"paint":[2.455,1.009,2.287,1.853,2.005,1.55,2.075,1.923,2.173,1.746,1.383,0.505,2.954,1.684,1.947]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5519618988037109]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.624457359313965]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6785879135131836]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0083017349243164]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.937386512756348]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[22.40234375]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.15234375]}},{"framework":"elm-v0.19.1-3-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[79.9]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"01_run1k","values":{"total":[40.902,45.135,45.812,41.761,48.264,48.62,45.02,43.031,43.903,46.898,46.193,44.738,48.33,46.066,46.5],"script":[2.747,2.895,3.053,2.87,2.927,3,2.98,2.912,2.982,3.111,2.806,2.84,2.792,2.858,2.881],"paint":[33.509,34.169,33.175,33.733,33.675,33.923,33.773,34.159,33.756,34.115,33.918,34.29,34.064,33.714,33.969]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"02_replace1k","values":{"total":[25.375,27.533,29.041,23.867,29.281,27.802,20.879,22.326,24.262,19.841,26.744,28.091,27.448,28.961,28.421],"script":[3.614,4.486,4.066,3.982,3.652,4.386,4.424,4.166,4.388,4.11,4.386,4.416,4.14,4.182,4.498],"paint":[14.449,14.281,14.669,13.804,14.022,14.335,14.53,14.06,14.251,13.694,14.507,14.366,14.669,14.796,14.543]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.337,20.089,35.541,19.546,19.288,19.237,35.083,19.312,35.813,19.31,20.569,34.295,22.072,34.616,34.692],"script":[3.207,3.495,4.873,3.169,3.389,3.716,4.207,4.048,4.037,3.895,3.119,3.014,3.952,3.576,3.44],"paint":[14.821,13.981,14.621,15.295,15.082,15.388,14.724,14.169,15.727,14.258,14.391,16.107,15.473,14.875,14.801]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"04_select1k","values":{"total":[8.433,8.49,7.801,10.962,8.367,7.771,8.216,9.243,7.928,8.294,8.302,9.298,7.847,8.797,7.985,11.411,8.633,9.709,8.825,8.813,8.779,8.248,8.024,7.641,8.236],"script":[6.228,6.275,4.704,5.784,5.425,5.558,4.661,5.076,5.158,4.734,5.917,6.201,5.488,6.761,5.717,5.945,6.264,6.132,6.142,5.966,5.871,5.779,5.469,5.407,5.178],"paint":[1.692,1.481,2.089,1.758,2.404,2.104,2.397,1.605,2.663,3.449,2.003,1.63,2.257,1.914,2.062,2.358,2.256,2.104,2.577,2.732,2.098,1.683,2.424,2.128,2.08]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"05_swap1k","values":{"total":[11.985,13.209,28.458,12.379,13.439,27.729999999999997,27.451,11.314,11.745,14.164,27.505000000000003,14.198,13.056,12.018,12.754],"script":[0.834,0.521,1.304,0.249,0.247,1.889,1.076,1.129,1.024,0.653,0.234,1.414,0.261,0.338,1.431],"paint":[10.105,9.749,11.119,11.167,12.166,9.917,10.11,9.804,9.644,10.765,12.026,11.102,11.236,9.802,10.457]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[18.725,22.149,16.556,15.776,17.818,17.156,23.671,15.998,20.215,17.177,16.227,15.338,16.562,20.228,19.43],"script":[1.679,1.398,1.409,1.463,1.65,1.395,1.551,1.715,1.722,1.654,1.498,1.556,1.642,1.689,1.439],"paint":[14.159,14.731,13.766,13.666,14.308,13.825,14.469,14.152,13.503,14.616,14.203,13.657,13.579,14.628,13.608]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"07_create10k","values":{"total":[491.093,487.122,483.581,498.88,486.4,483.278,482.04,479.178,494.944,478.057,488.091,477.942,477.648,487.288,479.424],"script":[130.072,131.596,138.384,129.446,139.021,138.375,136.2,135.683,135.016,136.619,131.254,135.152,135.184,127.79,136.333],"paint":[350.145,344.281,331.721,356.874,335.103,335.081,335.303,334.555,346.323,333.906,347.093,335.123,332.513,347.701,333.559]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.986,59.597,59.46,59.232,61.846,61.32,61.99,61.411,62.09,62.292,61.772,62.743,62.109,60.395,63.996],"script":[11.813,11.039,11.335,11.486,12.048,12.031,12.205,11.551,12.283,11.77,12.102,11.66,12.101,11.501,12.03],"paint":[39.859,39.626,39.38,38.683,40.07,40.108,40.475,41.3,40.574,41.272,40.429,39.951,40.866,40.175,43.439]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.339,15.626,15.648,15.276,15.653,18.112,30.455000000000005,14.877,15.519,15.085,15.39,30.966,17.866,15.77,16.621],"script":[12.726,13.608,13.044,13.171,13.322,13.641,12.852,13.309,13.025,12.956,12.46,13.136,12.993,12.461,12.326],"paint":[1.55,1.205,1.781,0.761,1.619,1.847,2.322,1.509,1.481,2.069,1.648,1.835,2.777,1.889,2.716]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6624746322631836]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.240492820739746]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.503320693969727]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.235123634338379]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[35.7040901184082]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[41.4462890625]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[12.2041015625]}},{"framework":"fast-v2.0.0-beta.26-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[80.1]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"01_run1k","values":{"total":[44.67,45.108,59.197,57.066,59.092,56.097,44.96,44.862,45.217,57.118,44.791,44.953,57.861,57.081,46.483],"script":[12.442,12.25,12.127,11.842,12.907,11.458,12.656,12.112,11.379,11.972,12.454,12.024,12.654,11.842,12.85],"paint":[31.979,32.637,33.364,32.561,32.809,32.231,32.079,32.504,33.594,32.759,32.095,32.664,32.785,32.719,33.367]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"02_replace1k","values":{"total":[25.275,23.487,25.396,21.787,23.004,24.338,24.228,22.203,22.195,22.267,24.43,25.127,22.542,25.132,25.768],"script":[7.95,8.32,7.535,7.413,7.4,7.639,8.007,7.841,7.665,7.509,8.009,7.608,7.599,7.086,7.539],"paint":[14.814,14.931,14.614,14.153,14.96,15.814,14.569,14.142,14.308,14.54,14.415,14.708,14.448,14.831,15.75]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.87,19.71,18.933,18.128,21.559,18.668,18.301,19.769,21.455,18.446,19.919,18.924,17.937,23.013,18.548],"script":[4.917,3.648,3.735,4.439,4.61,3.814,3.944,4.129,4.428,3.53,3.66,3.938,3.77,4.037,4.299],"paint":[14.603,14.793,15.075,13.57,15.446,14.704,13.653,13.488,16.317,14.137,14.778,13.024,13.637,15.962,13.294]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"04_select1k","values":{"total":[8.251,7.867,15.191,11.925,10.536,6.85,8.91,8.022,8.22,7.111,4.385,6.502,13.381,10.398,4.338,6.752,8.038,3.827,16.201,10.655,4.643,5.719,3.694,3.828,6.77],"script":[2.638,3.133,2.544,1.847,2.257,3.279,1.844,1.787,2.855,1.857,1.535,2.098,1.298,2.774,2.318,3.389,2.751,1.356,3.828,2.92,1.386,1.335,1.232,1.671,2.717],"paint":[4.269,3.793,5.14,4.476,3.211,3.664,4.367,3.933,3.12,2.812,2.728,4.637,3.125,4.054,1.166,3.847,4.77,1.442,4.41,4.208,1.75,2.215,1.812,1.711,3.176]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"05_swap1k","values":{"total":[16.982,13.907,12.199,54.801,54.943,54.238,11.526,56.825,53.182,56.372,12.925,60.407,11.902,54.87,11.983],"script":[2.162,1.326,1.642,2.046,1.536,1.784,1.741,1.494,1.326,1.745,1.421,1.572,2.382,1.042,2.017],"paint":[10.331,10.019,9.71,10.073,10.191,10.03,9.666,11.505,9.079,11.453,9.588,11.433,9.305,11.172,9.196]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[44.96,43.346,45.039,46.883,45.113,45.233,45.216,45.736,46.575,45.636,43.768,49.092,44.267,42.367,40.974],"script":[12.299,13.739,37.087,13.436,37.306,37.281,36.737,37.797,12.971,37.479,35.56,13.401,36.491,11.825,12.002],"paint":[31.719,28.941,30.125,29.55,29.67,31.018,30.313,31.631,32.862,30.954,30.468,31.236,29.908,29.539,28.027]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"07_create10k","values":{"total":[1485.217,1472.941,1438.897,1447.172,454.46,455.628,453.914,454.598,1445.447,454.524,1412.313,457.311,456.932,1453.099,452.584],"script":[113.105,113.19,113.6,113.755,117.166,115.277,115.454,114.541,113.306,116.904,113.151,119.084,119.373,111.018,116.022],"paint":[352.615,342.53,353.221,345.97,323.159,325.175,324.31,324.275,344.933,322.916,342.49,323.591,322.638,338.181,322.043]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[54.418,55.659,53.107,55.733,54.282,54.498,54.834,52.608,95.55,55.182,55.126,55.379,56.056,53.967,53.892],"script":[14.394,14.257,12.876,13.938,14.716,14.392,13.954,13.585,14.165,13.71,14.874,14.598,13.909,14.557,13.521],"paint":[39.451,40.076,38.899,40.35,39.212,39.266,40.249,38.026,38.711,40.239,39.594,40.193,40.792,39.038,39.393]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.93,11.683,11.324,14.232,14.213,13.766,11.602,11.872,14,11.201,12.119,12.076,15.295,11.668,13.847],"script":[10.183,9.984,9.531,10.507,9.883,10.506,9.697,10.03,10.218,9.587,9.785,10.082,10.939,9.634,11.165],"paint":[1.641,1.605,1.384,2.635,3.155,2.474,1.81,1.059,2.843,1.532,2.249,1.907,2.958,1.957,2.462]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5707340240478516]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.72432804107666]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.706169128417969]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0058984756469727]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.632941246032715]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.8798828125]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.1337890625]}},{"framework":"frei-hooks-v1.1.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"01_run1k","values":{"total":[51.13,50.425,51.025,51.061,51.433,50.607,49.531,48.604,50.686,49.399,51.682,49.536,49.977,49.713,49.979],"script":[15.681,15.245,15.505,15.282,15.599,15.507,14.919,14.997,15.567,14.839,15.338,15.212,15.134,14.58,15.341],"paint":[35.007,34.742,35.09,35.342,35.402,34.674,34.171,33.062,34.679,34.137,35.912,33.898,34.425,34.68,34.215]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"02_replace1k","values":{"total":[24.446,22.555,22.471,22.903,22.165,23.142,23.497,22.431,22.347,22.18,22.815,22.806,22.438,23.53,23.278],"script":[8.167,7.804,7.889,7.953,7.556,8.302,8.399,7.944,7.814,7.557,7.9,7.937,7.969,8.183,7.959],"paint":[15.831,14.331,14.128,14.507,14.161,14.404,14.681,14.046,14.083,14.178,14.464,14.452,14.024,14.937,14.854]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[26.887,25.767,27.896,27.022,25.634,28.002,25.632,26.717,26.047,27.278,26.374,25.232,26.725,26.034,25.866],"script":[10.177,10.209,11.891,10.845,9.264,10.904,10.244,10.07,10.11,10.145,10.126,9.9,9.544,10.199,10.285],"paint":[15.7,13.753,13.238,14.954,14.595,14.356,13.7,14.891,13.853,14.85,14.939,14.007,15.634,13.719,14.336]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"04_select1k","values":{"total":[6.605,6.849,7.131,7.014,7.25,7.56,7.829,6.255,7.483,6.492,6.636,6.851,8.314,7.312,6.575,7.908,7.321,7.062,6.466,6.387,6.837,6.502,6.451,8.072,6.745],"script":[4.444,4.089,4.545,4.269,4.85,4.617,5.266,4.497,5.078,4.344,4.445,4.252,5.089,4.116,4.406,5.117,4.312,4.089,4.422,4.259,4.599,4.554,3.964,4.372,4.778],"paint":[2.034,2.595,0.851,2.216,1.447,1.944,1.638,1.641,2.287,1.343,1.14,2.468,1.934,2.522,1.656,1.961,2.134,2.835,1.924,1.188,2.11,1.589,1.389,3.197,1.846]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"05_swap1k","values":{"total":[15.683,14.703,15.497,15.685,16.039,15.308,15.048,15.811,15.39,16.008,15.695,15.307,14.954,15.128,15.992],"script":[4.844,4.113,4.105,4.497,3.762,4.396,3.953,4.666,4.183,4.849,4.369,4.242,4.158,4.341,4.336],"paint":[9.245,9.473,9.862,9.688,10.491,10.02,9.542,9.257,9.875,9.06,10.518,9.523,8.618,9.832,10.388]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[46.016,45.304,46.673,45.073,45.351,45.585,47.943,46.103,46.381,46.62,45.422,45.792,47.377,44.993,47.646],"script":[15.231,14.68,15.008,14.486,14.794,15.391,15.304,14.81,15.106,15.456,14.796,14.877,15.4,14.479,16.112],"paint":[29.976,29.327,30.329,29.72,29.658,29.388,31.814,30.348,29.963,30.028,29.792,29.995,30.75,29.688,30.433]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"07_create10k","values":{"total":[495.692,492.264,492.047,515.328,492.603,492.039,493.399,493.298,495.833,492.905,489.936,515.477,492.517,489.86,494.888],"script":[149.432,150.076,148.369,149.482,148.323,150.068,150.094,149.432,151.169,148.594,148.738,149.63,149.119,146.871,149.738],"paint":[338.248,335.319,336.894,358.889,337.171,335.087,335.938,337.047,337.863,337.492,334.487,358.947,336.576,336.284,337.78]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[58.157,59.201,58.622,58.258,58.665,58.788,59.437,58.285,58.364,59.212,60.408,58.15,58.687,58.546,57.944],"script":[17.474,18.318,17.892,17.662,17.979,17.801,18.375,17.329,17.927,18.411,18.903,17.129,17.291,17.754,17.594],"paint":[39.764,39.96,39.835,39.681,39.798,40.087,40.149,40.063,39.406,39.851,40.568,40.108,40.419,39.89,39.398]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[21.666,21.544,20.9,22.137,22.304,22.755,22.175,20.957,21.619,21.467,21.155,20.736,21.375,21.236,21.059],"script":[19.448,19.585,19.265,20.399,19.907,20.817,20.094,19.618,19.384,19.084,19.214,19.07,19.044,19.05,19.246],"paint":[2.089,1.583,1.198,0.774,1.466,1.246,1.99,0.702,2.102,1.786,1.649,0.386,2.231,1.561,1.731]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.621800422668457]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9554786682128906]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.319791793823242]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.2683067321777344]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.139659881591797]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[63.119140625]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[13.2578125]}},{"framework":"gyron-v0.0.16-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[114.7]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[49.382,47.263,49.716,46.798,46.977,48.017,49.218,47.316,48.818,47.538,47.991,47.907,48.259,48.973,48.557],"script":[13.18,11.784,12.941,11.366,11.971,11.773,12.979,11.568,11.659,11.757,12.139,12.835,12.133,12.005,12.771],"paint":[35.75,35.047,36.318,34.994,34.564,35.807,35.797,35.327,36.69,35.335,35.416,34.634,35.67,36.525,35.335]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[21.147,22.185,20.854,22.163,21.054,21.81,21.703,23.342,23.408,21.963,21.809,22.612,21.753,22.146,22.941],"script":[6.601,7.428,6.45,7.164,6.379,7.312,7.33,7.795,7.177,7.316,7.203,7.518,6.581,7.288,7.482],"paint":[14.111,14.295,13.956,14.554,14.201,14.034,13.9,15.116,15.766,14.176,14.16,14.661,14.734,14.397,14.94]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[37.368,40.36,37.978,40.895,37.046,38.147,38.009,41.529,38.483,41.477,38.909,37.857,38.852,38.3,38.825],"script":[21.113,22.803,21.306,24.712,21.008,22.162,21.809,23.073,22.102,23.872,22.292,21.229,21.862,22.217,21.694],"paint":[14.192,16.321,15.638,14.754,14.554,14.62,14.677,16.436,14.735,16.177,14.363,15.033,14.996,14.926,14.582]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[23.711,24.341,25.867,23.65,25.653,23.865,24.59,24.771,25.267,25.734,25.247,25.301,24.623,24.394,24.283,24.488,24.491,24.849,25.419,24.12,23.305,24.672,25.971,23.861,23.263],"script":[20.419,20.721,22.015,19.851,21.699,20.936,21.433,21.065,21.575,22.008,21.558,21.896,20.841,21.258,20.456,20.759,21.316,21.517,22.181,20.119,19.852,21.843,22.027,21.058,19.691],"paint":[1.368,2.272,2.437,2.637,2.341,2.017,1.286,3.367,2.514,2.691,2.503,2.766,2.577,2.352,2.115,3.03,2.111,3.13,1.641,3.097,2.376,2.232,3.007,2.122,2.661]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[32.467,32.99,33.056,32.141,33.697,32.314,33.277,34.158,31.881,33.174,35.187,34.04,32.1,34.631,32.642],"script":[20.751,21.423,21.88,20.255,22.527,20.571,21.618,21.605,19.977,21.257,22.152,21.13,20.389,21.94,20.941],"paint":[10.283,9.233,9.748,10.207,9.641,9.489,9.87,11.835,9.261,10.441,11.661,10.611,10.28,9.891,9.888]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[41.98,44.974,41.646,45.375,41.838,46.12,45.959,45.895,42.563,44.287,42.417,47.041,42.399,42.31,46.837],"script":[11.38,11.797,10.826,10.614,10.927,11.135,11.419,11.793,11.432,11.4,11.195,11.301,11.353,11.314,12.284],"paint":[29.788,32.151,29.88,33.973,29.923,33.902,33.599,33.308,29.982,31.913,30.216,34.673,29.868,30.105,33.489]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[524.166,509.126,483.177,488.116,479.698,500.896,506.503,509.937,481.998,485.609,498.547,499.606,497.748,484.155,482.353],"script":[134.384,134.595,129.251,130.049,130.799,135.674,133.842,134.28,134.589,135.644,134.68,134.734,134.317,135.18,133.929],"paint":[382.455,367.226,347.043,351.213,341.711,358.336,365.846,368.724,340.586,343.107,357.074,358.071,356.531,342.109,341.631]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.612,61.111,62.227,60.97,62.378,62.325,62.342,61.655,62.84,61.566,62.264,62.291,63.724,60.99,61.047],"script":[20.779,20.702,21.191,20.753,21.743,21.832,21.067,20.583,21.139,20.697,21.573,21.707,21.558,20.82,20.473],"paint":[39.904,39.529,40.134,39.284,39.702,39.589,40.264,40.161,40.79,39.916,39.76,39.672,41.219,39.232,39.666]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.163,25.882,28.059,27.422,28.779,27.82,27.282,27.109,24.943,25.896,27.228,28.135,27.655,24.132,27.716],"script":[25.232,23.717,25.93,25.814,26.411,25.402,25.198,24.955,22.783,24.242,25.325,25.955,25.391,22.708,26.147],"paint":[1.827,1.593,2.02,1.127,1.338,1.845,1.983,2.033,2.057,1.533,1.802,1.675,2.162,0.388,1.451]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8120155334472656]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.879240989685059]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.363706588745117]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[6.155579566955566]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.184922218322754]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[152.435546875]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[21.8876953125]}},{"framework":"halogen-v7.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[213.1]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"01_run1k","values":{"total":[56.738,57.335,58.285,57.302,57.19,56.051,56.952,57.487,56.835,56.632,57.652,56.719,57.283,56.546,56.436],"script":[21.852,22.468,22.613,22.295,22.116,21.731,22.246,22.778,22.274,22.713,22.503,22.786,22.158,22.053,21.68],"paint":[34.454,34.421,35.195,34.557,34.561,33.895,34.238,34.256,34.103,33.469,34.676,33.502,34.653,34.043,34.291]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"02_replace1k","values":{"total":[26.049,27.368,26.128,26.159,25.762,26.291,26.809,25.748,26.878,28.693,26.709,26.379,26.738,26.542,25.21],"script":[11.64,12.51,11.767,11.843,11.476,11.919,11.978,11.57,12.146,12.766,11.933,11.936,11.833,11.82,10.688],"paint":[13.976,14.403,13.919,13.882,13.856,13.969,14.393,13.712,14.297,15.474,14.354,14.005,14.478,14.301,14.103]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.609,17.525,18.3,17.372,18.103,17.446,17.252,18.434,17.533,16.939,17.556,17.568,18.328,16.864,17.856],"script":[2.367,1.849,1.557,1.331,1.933,2.43,1.082,2.632,1.45,1.961,2.702,1.64,2.437,1.525,2.255],"paint":[13.85,14.182,14.985,14.79,14.491,13.949,14.453,13.629,14.565,13.132,13.467,14.786,14.67,14.327,14.123]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"04_select1k","values":{"total":[5.816,5.939,5.437,6.387,5.926,5.533,5.076,6.006,6.286,5.279,5.859,6.362,5.466,5.89,6.125,6.143,6.008,5.62,5.664,5.514,5.154,6.103,5.39,7.449,5.381],"script":[3.41,3.767,3.102,3.898,3.337,3.284,3.112,2.889,3.352,3.062,3.426,3.982,3.247,2.893,3.589,3.469,2.841,3.704,2.935,3.041,3.093,3.429,3.201,3.787,3.203],"paint":[1.855,2.063,1.351,2.367,1.727,1.434,1.163,2.999,2.225,2.112,1.73,2.262,2.103,2.882,1.586,1.262,2.691,1.456,2.278,1.991,1.955,2.568,2.09,2.427,1.603]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"05_swap1k","values":{"total":[11.584,11.427,11.471,11.593,11.16,11.201,12.393,11.145,11.135,11.782,13.038,11.243,12.146,12.107,11.895],"script":[0.438,0.668,0.118,0.133,0.122,0.12,0.48,0.118,0.116,0.123,0.625,0.22,0.86,0.866,0.826],"paint":[9.357,8.693,9.452,8.634,10.01,8.795,9.741,10.029,9.987,10.302,10.745,8.632,9.073,10.013,10.089]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.331,15.135,15.284,15.109,15.953,15.505,15.294,15.161,15.405,15.387,15.363,15.368,15.428,15.141,15.261],"script":[0.123,0.343,0.378,0.332,0.37,0.192,0.126,0.119,0.124,0.375,0.464,0.366,0.136,0.123,0.362],"paint":[14.381,13.993,13.939,13.959,14.847,14.626,14.42,14.267,14.586,13.998,14.128,14.256,14.544,13.989,14.232]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"07_create10k","values":{"total":[597.704,591.292,607.641,596.871,612.279,600.482,599.097,596.011,594.347,602.887,595.928,594.205,595.171,606.014,593.887],"script":[231.679,229.865,243.301,234.496,243.019,232.42,237.788,234.296,229.636,242.17,230.993,231.922,229.147,231.124,230.466],"paint":[359.115,354.112,357.493,355.856,361.987,361.067,354.399,354.841,358.201,354.122,358.048,355.421,359.298,368.314,356.718]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[68.594,68.531,68.018,69.772,68.978,68.537,69.318,68.764,69.238,69.753,68.559,69.761,68.73,70.476,69.524],"script":[28.61,29.044,28.635,28.728,28.389,28.6,29.348,28.806,28.262,28.829,28.726,29.399,28.602,28.986,29.202],"paint":[39.082,38.581,38.458,40.137,39.678,39.055,39.094,39.072,40.098,39.835,38.88,39.437,39.167,40.574,39.405]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.461,13.993,13.854,15.394,13.768,13.873,14.682,13.94,14.257,14.924,13.819,14.113,14.198,14.17,13.517],"script":[11.841,12.114,11.98,12.814,11.636,12.227,12.676,11.839,11.734,12.206,11.381,11.768,11.87,12.36,12.168],"paint":[1.535,1.786,1.134,2.06,2.045,1.365,1.909,1.396,2.108,2.351,2.342,1.213,1.21,1.702,1.256]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5830469131469727]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9488906860351562]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.04698371887207]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2535133361816406]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.374146461486816]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.775390625]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.0458984375]}},{"framework":"hydro-js-v1.5.14-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[58.5]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"01_run1k","values":{"total":[40.197,45.861,46.005,46.105,39.886,42.507,43.221,46.44,45.735,44.429,44.687,40.698,45.774,43.882,39.755],"script":[1.379,1.353,1.404,1.311,1.274,1.286,1.354,1.314,1.372,1.281,1.359,1.367,1.368,1.366,1.208],"paint":[32.674,32.744,33.12,33.029,32.837,33.822,33.006,35.986,33.057,34.402,32.962,32.789,32.907,32.934,33.286]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"02_replace1k","values":{"total":[23.749,18.657,15.3,22.703,24.649,18.339,17.078,15.179,16.358,16.034,17.679,19.043,19.583,20.715,21.961],"script":[1.185,1.181,1.068,1.123,1.152,1.158,1.025,1.029,1.07,1.068,1.143,1.159,1.154,1.154,1.207],"paint":[14.221,13.698,13.454,13.68,14.741,14.244,14.344,14.04,15.173,14.173,13.713,14.124,14.046,14.02,13.786]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.567,15.61,19.041,17.239,16.023,17.529,14.924,15.433,15.952,16.882,16.269,15.876,19.416,16.483,32.117000000000004],"script":[1.62,0.995,1.324,2.082,1.729,0.965,0.838,1.538,0.724,1.965,1.253,1.016,1.085,2.106,1.662],"paint":[13.847,14.268,15.331,13.31,14.198,13.788,12.3,13.03,12.645,14.792,14.466,13.836,15.404,13.439,14.666]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.62,3.234,3.492,3.437,3.934,6.405,3.595,4.081,3.997,3.73,6.176,3.383,3.312,3.483,4.191,3.74,3.804,2.952,3.77,3.783,4.455,3.752,3.352,3.639,3.553],"script":[0.778,0.85,1.196,0.974,0.283,1.636,0.973,1.459,1.503,1.031,1.092,1.702,1.123,1.588,1.599,1.752,1.172,1.424,0.293,1.235,1.488,1.588,1.334,1.328,1.206],"paint":[2.364,1.516,1.522,1.916,3.52,2.438,1.649,1.618,2.372,2.601,1.728,1.03,2.07,1.333,2.471,1.412,2.524,1.406,2.409,1.443,2.846,1.659,1.902,1.784,1.203]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"05_swap1k","values":{"total":[11.111,11.848,26.837,12.037,11.45,27.026000000000003,26.339,27.123,10.491,11.594,11.638,27,26.369,10.987,26.541999999999998],"script":[0.243,0.243,1.211,0.788,0.202,0.975,1.08,0.928,1.565,0.256,1.366,0.78,0.255,0.219,0.252],"paint":[9.773,9.749,9.587,10.188,10.401,10.312,9.079,10.17,8.826,10.403,9.507,10.169,9.713,9.975,10.248]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.452,30.613,30.518,36.127,30.87,33.675,30.934,30.423,30.132,31.726,31.239,31.241,31.313,31.881,33.925],"script":[2.02,1.676,1.665,1.918,1.485,1.571,1.524,1.408,1.803,1.544,1.754,1.793,1.881,1.598,1.428],"paint":[28.61,28.812,28.727,31.835,28.926,29.806,29.293,28.872,27.979,29.86,28.098,28.568,29.31,28.317,28.367]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"07_create10k","values":{"total":[457.909,441.124,462.006,438.113,443.772,459.886,439.032,452.851,458.168,458.345,455.634,455.505,459.189,459.033,445.317],"script":[97.909,98.99,97.902,98.549,97.826,98.163,97.97,96.042,96.326,99.675,96.645,99.021,97.846,96.844,99.069],"paint":[354.839,335.455,351.829,335.079,333.006,350.541,336.148,344.098,348.784,350.822,354.047,345.011,350.093,350.797,334.662]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[53.944,54.404,53.411,58.965,56.782,60.081,58.142,57.139,58.577,53.28,58.521,54.193,53.882,57.217,54.546],"script":[10.631,10.826,10.391,10.72,10.675,10.673,10.41,10.723,10.534,9.88,10.742,10.635,10.537,11.093,10.448],"paint":[37.547,37.608,37.013,38.124,37.533,38.022,38.007,37.536,36.858,37.586,37.443,37.483,37.36,37.64,37.683]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.507,13.898,14.411,14.268,13.768,30.053000000000004,15.877,13.418,14.21,14.363,13.204,14.825,14.098,13.586,14.452],"script":[11.235,10.764,11.571,12.161,11.465,13.012,13.596,11.476,12.391,12.912,11.11,12.781,11.03,10.741,10.874],"paint":[0.863,2.167,1.81,1.06,1.857,1.047,1.856,1.885,1.756,1.027,1.715,1.06,3.014,1.854,1.841]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7588653564453125]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.5638742446899414]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.7335472106933594]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.61740779876709]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.33153247833252]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[64.1015625]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.0302734375]}},{"framework":"imba-v1.5.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[107.9]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"01_run1k","values":{"total":[116.107,114.768,115.067,114.976,115.329,115.392,115.041,115.367,115.029,115.348,115.166,115.274,115.239,115.517,115.322],"script":[18.425,17.539,17.597,17.702,17.655,17.783,17.803,18.09,17.859,18.104,17.459,18.317,17.496,18.039,18.005],"paint":[29.784,29.592,29.326,29.584,29.142,29.516,29.765,29.366,29.834,29.517,29.696,29.842,29.614,29.564,29.547]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"02_replace1k","values":{"total":[89.043,89.366,88.639,89.665,88.223,88.703,90.196,88.876,88.471,89.141,89.698,88.705,88.833,88.59,89.676],"script":[16.668,16.276,16.643,16.383,16.33,16.473,16.156,16.142,16.313,16.369,16.25,16.454,16.362,16.728,16.511],"paint":[16.242,14.532,14.653,14.686,15.091,14.492,14.162,14.509,14.481,14.729,15.116,14.484,14.709,14.518,14.394]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[159.931,161.364,158.669,159.19,159.578,160.952,157.384,162.293,159.592,159.668,157.691,160.071,158.095,159.358,157.09],"script":[66.433,67.748,67.283,68.032,68.322,67.075,66.991,67.89,66.544,67.006,67.073,67.582,67.648,66.898,67.572],"paint":[15.1,14.798,16.413,14.844,15.754,14.476,15.881,15.443,15.906,14.244,14.519,16.132,15.531,16.189,16.158]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"04_select1k","values":{"total":[116.94,122.236,124.464,121.475,115.991,124.767,116.104,122.636,122.975,115.921,122.818,113.971,115.071,122.539,123.116,124.945,122.904,123.456,115.033,123.3,123.06,120.827,116.265,122.618,113.553],"script":[61.592,62.557,64.097,62.117,62.17,63.199,61.128,63.354,63.461,63.351,61.71,61.375,62.81,64.029,64.036,64.375,64.95,64.893,62.445,66.007,62.41,66.477,62.604,62.32,61.075],"paint":[2.371,3.608,3.45,4.119,3.558,4.932,3.292,2.214,2.752,3.178,3.377,3.673,2.17,2.583,3.946,1.988,2.269,3.798,3.285,3.638,2.61,4.1,4.235,2.846,3.59]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"05_swap1k","values":{"total":[158.418,159.557,158.941,160.139,159.15,158.489,160.339,161.251,159.768,160.93,158.744,159.625,159.73,157.969,160.774],"script":[65.825,64.781,61.321,64.495,64.419,64.82,64.703,63.984,64.779,65.517,65.401,65.915,63.377,64.787,65.537],"paint":[11.548,11.497,11.593,10.81,11.897,12.227,11.413,9.644,11.808,11.308,12.171,11.538,11.017,11.338,11.53]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[117.433,118.198,117.8,118.319,117.158,116.351,116.926,117.549,117.834,119.374,119.493,118.279,120.311,117.149,116.248],"script":[35.589,36.054,35.822,36.133,34.765,34.741,35.114,36.631,35.197,35.508,36.03,34.444,36.285,34.945,35.094],"paint":[29.311,29.281,30.254,29.575,31.246,31.225,30.074,30.906,29.998,30.495,30.363,31.941,29.768,32.306,30.134]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"07_create10k","values":{"total":[940.369,923.64,922.83,914.977,923.489,916.814,923.649,932.152,923.641,922.941,923.786,906.92,940.5,931.576,916.878],"script":[173.289,170.451,170.618,170.521,168.24,165.821,164.833,171.281,170.829,165.294,173.413,164.252,173.881,172.132,163.667],"paint":[348.472,340.862,342.162,338.851,343.811,343.146,344.892,351.409,339.994,347.347,341.989,339.622,350.97,341.166,342.574]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[145.818,145.98,139.187,139.148,139.27,139.077,139.417,139.225,139.128,138.812,139.36,139.337,139.271,138.87,139.139],"script":[33.149,32.413,33.056,32.616,33.372,32.089,33.455,32.93,31.61,32.083,32.21,32.409,33.17,33.041,32.861],"paint":[33.782,34.513,33.25,33.682,33.479,33.577,33.467,33.52,33.398,33.429,33.386,33.238,33.389,33.146,33.593]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[66.683,66.833,66.074,66.039,65.748,67.368,67.682,64.398,66.923,68.322,67.225,67.912,66.817,67.684,66.755],"script":[15.509,14.944,16.273,15.651,15.174,16.337,16.257,16.863,17.23,16.239,16.051,16.297,16.74,15.833,17.304],"paint":[3.233,3.141,1.624,2.474,2.434,1.856,1.575,2.199,1.924,2.255,1.591,2.596,2.159,2.396,1.922]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[5.3805694580078125]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.009295463562012]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.253120422363281]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.9250946044921875]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[38.473849296569824]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[946.77734375]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[243.220703125]}},{"framework":"incr_dom-v0.15.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[1511.6]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"01_run1k","values":{"total":[38.871,38.561,38.689,39.183,39.063,37.975,39.013,39.551,39.459,38.975,39.859,39.752,41.053,40.936,39.409],"script":[5.546,5.4,5.617,5.407,5.581,5.211,5.322,5.805,5.765,5.741,5.567,5.983,5.693,5.462,5.737],"paint":[32.91,32.735,32.665,33.346,33.071,32.349,33.241,33.353,33.284,32.828,33.855,33.333,34.946,35.051,33.259]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"02_replace1k","values":{"total":[15.68,15.2,16.913,14.986,16.509,15.845,15.241,15.28,15.01,15.217,15.178,16.397,15.272,15.405,15.125],"script":[1.397,1.225,1.119,1.179,1.158,1.154,1.1,1.13,1.195,1.187,1.176,1.118,1.157,1.136,1.171],"paint":[13.849,13.567,15.401,13.429,14.947,14.281,13.723,13.774,13.419,13.63,13.599,14.891,13.694,13.905,13.548]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.836,16.115,16.676,15.982,16.637,16.905,16.666,17.051,16.366,16.815,16.292,16.6,16.536,17.199,16.451],"script":[1.852,1.139,1.505,1.456,1.316,1.291,1.647,1.68,1.253,1.072,1.022,1.224,1.259,1.654,1.176],"paint":[13.419,13.459,13.842,13.242,13.492,14.085,13.517,14.298,13.149,14.574,14.326,13.929,13.572,13.426,14.115]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"04_select1k","values":{"total":[3.446,3.22,3.382,2.936,3.138,3.191,6.562,3.041,2.925,3.261,2.676,3.112,5.087,3.101,3.017,3.227,2.562,3.317,3.982,3.023,3.242,4.61,5.579,3.08,4.384],"script":[0.973,0.596,0.91,0.499,0.808,1.102,1.205,0.786,0.506,0.881,0.173,0.888,0.696,0.994,0.669,0.829,0.615,0.913,1.016,0.609,0.173,0.947,1.004,0.863,0.62],"paint":[2.05,2.307,1.771,1.383,2.227,1.498,2.047,2.153,2.328,1.321,2.239,1.467,1.745,2.008,2.249,2.108,1.842,2.288,1.185,2.309,2.797,1.502,1.521,1.359,2.809]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"05_swap1k","values":{"total":[11.531,12.095,12.274,11.643,11.751,11.508,12.18,11.015,12.193,11.747,11.961,11.445,10.831,11.072,11.863],"script":[0.178,0.61,0.877,0.879,1.055,0.751,0.866,0.506,0.85,0.992,0.918,0.172,0.504,0.179,0.293],"paint":[9.921,9.096,10.39,9.007,9.279,8.737,9.686,9.566,9.662,9.005,9.568,10.428,8.965,9.833,10.597]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[34.02,32.005,32.206,31.636,31.905,31.416,31.148,31.323,31.967,31.944,32.098,32.293,31.345,31.468,31.639],"script":[2.439,2.475,2.496,2.458,2.426,2.491,2.512,2.432,2.472,2.523,2.399,2.57,2.453,2.461,2.268],"paint":[30.575,28.374,28.783,28.247,28.076,28.06,27.732,28.141,28.789,28.408,28.927,28.656,28.15,28.257,28.47]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"07_create10k","values":{"total":[392.917,397.004,403.445,401.352,396.367,399.827,402.512,398.24,400.437,403.166,397.015,397.669,400.958,395.732,397.168],"script":[56.436,57.187,58.187,58.208,57.44,57.387,58.88,56.836,58.557,59.627,58.579,57.646,56.576,56.911,58.219],"paint":[329.774,332.344,338.5,336.4,332.145,335.682,336.911,334.613,335.175,336.82,331.718,333.333,337.657,332.13,332.162]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.627,43.156,44.16,43.63,44.047,43.883,43.451,44.584,42.84,44.671,45.11,44.508,44.216,44.053,46.021],"script":[5.251,5.386,5.114,5.861,5.744,5.482,5.732,5.841,5.416,5.426,5.559,5.771,5.711,5.708,5.591],"paint":[37.527,36.913,38.12,36.895,37.465,37.533,36.884,37.911,36.575,38.33,38.713,37.905,37.664,37.52,39.58]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.667,12.237,12.181,12.694,12.764,12.704,13.235,13.301,12.685,12.385,13.94,12.679,13.24,12.401,13.209],"script":[10.756,10.613,10.732,10.973,10.695,10.764,11.588,11.432,10.682,10.044,11.603,10.201,10.774,10.453,10.732],"paint":[1.826,1.533,0.367,1.633,1.754,1.651,1.551,1.775,0.797,2.251,1.303,2.002,2.047,1.554,2.347]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5288782119750977]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.686009407043457]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.742860794067383]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7079181671142578]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.237048149108887]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[27.158203125]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.9365234375]}},{"framework":"inferno-v8.2.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.7]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"01_run1k","values":{"total":[40.214,41.276,40.397,40.952,40.315,40.468,40.172,40.083,40.1,40.392,40.557,39.861,40.728,40.66,40.399],"script":[5.811,6.384,6.193,6.116,5.995,6.148,5.909,6.013,5.934,6.039,6.452,5.941,6.471,6.078,5.8],"paint":[33.987,34.455,33.801,34.411,33.941,33.908,33.873,33.642,33.716,33.927,33.69,33.499,33.813,34.166,34.159]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"02_replace1k","values":{"total":[14.636,14.763,15.228,16.504,14.439,14.802,14.715,14.729,15.341,15.569,14.624,14.944,15.484,14.395,15.677],"script":[1.056,1.037,1.024,1.02,1.009,0.97,1.015,1.013,1.085,1.092,0.992,1.086,1.076,1.002,1.046],"paint":[13.221,13.31,13.841,15.075,13.015,13.434,13.321,13.321,13.877,14.115,13.269,13.505,14.038,12.987,14.194]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.483,16.162,16.629,15.966,16.551,16.17,16.352,16.546,16.185,15.956,16.596,17.016,16.426,16.557,15.919],"script":[0.218,0.868,1.292,0.878,0.678,0.822,0.838,0.809,0.574,0.849,0.89,1.392,1.427,1.48,0.905],"paint":[14.531,13.507,13.055,13.536,14.917,14.206,14.207,14.128,13.872,13.836,14.175,14.558,13.494,13.749,13.738]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.669,4.825,2.632,3.066,2.705,2.74,2.435,3.291,2.687,2.26,5.668,4.168,5.447,3.753,5.976,2.505,2.795,2.549,3.901,3.284,2.522,3.328,2.873,2.915,2.988],"script":[0.544,0.07,0.07,0.749,0.307,0.683,0.185,1.061,0.073,0.07,0.886,0.069,0.955,0.071,0.072,0.606,0.071,1.025,0.687,0.859,0.071,0.073,0.084,0.948,0.87],"paint":[1.336,1.275,2.452,1.445,2.289,1.93,1.28,2.12,2.514,2.093,1.708,1.649,2.069,2.528,1.599,1.802,2.62,1.426,3.059,2.327,1.629,3.142,1.852,1.862,1.436]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"05_swap1k","values":{"total":[11.118,11.14,11.646,10.889,11.004,10.94,10.797,11.156,12.715,11.176,10.501,11.299,11.403,11.495,10.902],"script":[0.073,0.089,0.074,0.074,0.32,0.077,0.55,0.069,1.001,0.082,0.328,0.841,0.096,0.556,0.081],"paint":[9.367,9.255,10.27,9.511,9.397,9.129,8.833,8.736,9.591,9.777,8.837,9.508,9.177,9.83,10.087]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[31.798,31.961,31.465,31.916,32.387,31.486,31.906,32.592,32.968,33.655,32.998,32.702,31.922,33.979,32.888],"script":[2.294,1.983,1.982,2.326,2.315,1.916,2.191,2.153,2.231,2.263,2.277,2.304,2.311,1.984,1.935],"paint":[28.682,29.224,28.755,28.435,29.315,28.474,28.906,29.392,30.026,30.688,29.588,29.41,28.588,30.552,30.142]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"07_create10k","values":{"total":[422.427,417.874,418.823,424.898,419.933,419.457,420.662,421.95,415.498,417.696,415.273,418.247,418.456,417.127,417.053],"script":[74.08,73.637,71.99,75.761,73.475,73.329,72.039,75.275,74.726,73.027,73.462,74.468,71.998,73.161,73.094],"paint":[341.401,337.439,340.155,342.428,339.625,339.445,341.461,339.801,333.992,337.961,335.167,337.022,339.764,337.285,337.314]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[44.41,44.783,43.784,44.754,44.967,45.134,45.194,45.222,45.789,45.057,45.58,45.457,45.76,45.303,45.47],"script":[5.395,5.451,5.512,5.603,5.522,5.535,5.936,5.555,5.601,5.587,5.49,5.584,5.638,5.659,5.676],"paint":[38.128,38.444,37.382,38.354,38.606,38.735,38.381,38.794,39.331,38.596,39.203,38.985,38.998,38.757,38.939]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.635,13.467,13.622,13.143,12.599,13.273,13.187,13.019,12.202,13.292,12.959,13.47,14.097,12.478,13.906],"script":[11.195,10.548,11.73,11.137,10.808,11.84,11.493,11.102,10.82,11.619,11.05,11.798,12.179,11.016,11.189],"paint":[1.333,1.925,1.205,1.915,1.702,1.341,0.853,1.825,1.284,1.561,1.066,0.98,1.831,1.374,2.598]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.5972986221313477]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.979879379272461]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.029573440551758]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.8490228652954102]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[15.637201309204102]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[26.1337890625]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[9.73828125]}},{"framework":"kobold-v0.9.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.9]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"01_run1k","values":{"total":[59.883,58.167,59.303,59.918,60.39,58.294,60.452,58.598,58.587,60.771,58.491,57.77,59.387,59.303,60.918],"script":[23.847,21.626,22.098,22.894,22.881,22.035,23.431,23.514,23.695,23.807,23.349,23.385,24.175,23.278,23.587],"paint":[35.604,36.101,36.755,36.577,37.072,35.823,36.59,34.652,34.46,36.481,34.73,33.975,34.792,35.585,36.882]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"02_replace1k","values":{"total":[35.048,36.367,35.734,37.193,37.274,36.821,38.927,35.854,37.76,35.854,35.656,37.14,36.154,35.469,37.548],"script":[20.355,20.885,20.908,22.166,21.946,21.57,22.665,21.114,21.129,21.094,20.914,21.173,21.395,20.728,22.012],"paint":[14.234,15.076,14.354,14.575,14.877,14.786,15.726,14.293,16.169,14.321,14.282,15.497,14.367,14.287,15.084]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[69.532,69.164,68.43,72.078,69.138,69.578,69.722,70.154,69.565,69.678,69.395,69.1,69.519,70.514,70.899],"script":[53.36,52.521,52.81,54.43,52.669,53.279,53.577,53.6,53.236,52.771,53.532,52.375,52.986,53.409,53.813],"paint":[14.095,14.109,14.21,15.674,15.062,14.064,13.172,14.995,14.969,13.91,14.025,15.516,14.38,15.086,15.595]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"04_select1k","values":{"total":[53.492,53.468,53.295,53.543,54.339,53.633,53.536,53.057,53.577,54.218,53.524,53.547,53.198,52.656,53.477,52.967,53.188,53.017,53.039,52.564,56.037,52.949,58.049,52.554,53.91],"script":[49.953,49.893,50.223,50.498,50.647,50.659,49.706,50.292,50.834,50.978,49.525,50.439,49.964,49.877,49.844,50.451,50.629,49.892,50.013,49.9,51.624,50.118,53.703,50.146,50.395],"paint":[2.035,2.83,2.756,2.178,2.782,2.724,2.85,2.189,2.11,2.728,2.734,2.948,2.363,2.621,3.031,2.355,2.19,2.842,2.859,1.492,3.468,1.585,3.758,1.277,2.656]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"05_swap1k","values":{"total":[62.095,62.748,63.304,62.202,63.073,63.354,62.403,65.179,62.639,62.557,62.129,61.692,62.408,61.903,62.097],"script":[50.845,50.349,50.631,50.644,51.134,50.528,50.133,52.838,50.764,50.824,50.567,49.832,50.699,50.665,50.895],"paint":[9.793,10.746,11.511,10.277,9.981,10.921,10.51,10.844,10.351,10.027,9.843,11.214,9.97,9.953,10.188]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[75.604,74.887,75.048,76.31,75.299,74.333,75.723,72.049,74.705,74.648,75.694,75.907,76.047,75.076,74.619],"script":[43.734,42.773,43.742,44.469,42.954,43.13,44.188,40.773,42.085,42.55,42.283,43.404,44.187,43.817,43.366],"paint":[31.031,30.959,30.135,30.693,31.333,30.455,30.524,30.48,31.499,30.927,32.249,31.538,30.856,30.222,30.116]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"07_create10k","values":{"total":[759.748,760.506,765.759,774.155,760.385,780.789,758.149,764.372,743.455,771.971,772.17,775.518,771.183,757.743,763.737],"script":[376.318,374.417,380.857,388.087,374.542,388.904,378.802,379.321,358.15,386.352,386.228,383.831,382.73,369.348,374.93],"paint":[376.758,379.378,378.201,379.279,378.701,385.056,372.558,378.142,378.446,378.747,379.175,384.82,381.444,381.676,382.007]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[85.496,84.64,85.5,84.235,85.012,85.961,84.089,86.24,84.819,84.772,85.805,84.949,86.071,84.71,84.4],"script":[43.028,43.967,44.541,43.469,44.024,44.458,43.677,44.693,44.043,44.234,44.514,44.115,44.774,44.271,43.645],"paint":[41.518,39.794,40.034,39.856,40.065,40.557,39.467,40.616,39.828,39.555,40.358,39.901,40.325,39.479,39.844]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.828,24.807,23.088,24.872,22.844,24.409,23.325,26.868,24.213,24.878,23.542,23.834,24.515,24.276,24.639],"script":[22.989,22.181,21.145,22.985,20.812,22.489,21.275,24.463,22.035,22.963,21.295,22.309,22.902,22.096,22.551],"paint":[1.159,2.521,1.844,1.454,1.049,1.798,1.943,2.28,1.186,1.821,2.138,1.42,1.03,1.629,1.998]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.6342687606811523]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[7.279816627502441]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.35072135925293]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.896078109741211]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[57.041433334350586]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[253.1162109375]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[59.880859375]}},{"framework":"korvin-v0.2.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[395.3]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"01_run1k","values":{"total":[50.47,50.551,49.604,50.497,51.283,49.534,50.489,50.187,51.97,49.82,49.442,49.674,50.216,49.88,50.298],"script":[16.851,17.145,16.667,17.412,16.455,16.436,17.202,17.123,18.085,16.982,16.698,16.562,16.686,16.613,17.201],"paint":[33.177,32.965,32.499,32.626,34.319,32.652,32.84,32.622,33.44,32.414,32.301,32.694,33.069,32.84,32.653]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"02_replace1k","values":{"total":[24.238,23.953,24.136,23.769,24.435,24.37,24.609,24.656,23.788,23.962,24.784,24.228,24.305,24.057,24.129],"script":[9.254,9.15,9.6,8.964,9.544,9.753,9.288,9.898,8.811,9.299,10.126,9.528,9.627,9.275,9.413],"paint":[14.559,14.372,14.09,14.387,14.437,14.191,14.86,14.294,14.557,14.217,14.226,14.258,14.243,14.336,14.273]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.196,23.325,23.256,23.842,22.947,23.812,22.187,23.497,22.044,21.777,24.111,23.592,23.739,22.828,23.656],"script":[7.501,7.61,7.919,7.18,7.625,6.418,6.468,7.04,6.017,6.212,7.647,6.666,7.24,7.081,6.712],"paint":[14.438,13.609,13.86,15.295,13.562,15.324,14.324,15.528,14.981,14.05,14.717,15.283,15.173,13.781,14.912]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.505,4.752,4.199,5.083,4.454,4.004,5.12,4.757,5.259,4.541,4.736,5.687,4.835,4.6,5.202,4.319,5.04,5.579,5.09,4.985,4.41,6.175,4.49,5.005,5.66],"script":[2.28,2.365,2.196,1.816,2.251,1.747,2.144,1.515,1.678,1.688,1.831,2.733,1.897,1.499,2.385,1.366,2.64,2.721,1.982,2.518,1.422,2.252,2.123,2.434,2.447],"paint":[1.427,2.239,1.888,2.685,1.673,1.165,2.01,2.137,3.45,1.591,1.787,2.103,1.783,2.572,1.606,2.831,2.267,1.938,2.965,1.639,2.631,3.547,2.236,2.433,2.8]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"05_swap1k","values":{"total":[12.786,12.97,13.357,13.973,12.925,13.553,13.181,12.808,13.514,12.9,13.077,13.274,13.232,13.398,13.257],"script":[1.451,1.835,2.175,2.547,2.072,2.653,1.721,2.186,2.238,1.382,2.008,1.672,2.321,1.778,2.424],"paint":[10.599,9.368,9.317,10.33,9.897,8.876,9.858,8.629,9.417,9.307,9.722,10.277,9.446,10.268,8.728]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[17.678,18.45,18.029,18.271,18.827,17.826,17.875,17.835,18.021,17.903,18.314,18.532,17.886,17.938,18.517],"script":[3.016,2.823,2.746,3.077,3.012,2.811,2.826,2.656,2.688,2.802,3.038,2.886,3.043,2.611,3.091],"paint":[13.902,14.741,14.53,14.438,14.866,14.133,14.01,14.428,14.601,14.122,14.506,14.866,13.801,14.306,14.26]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"07_create10k","values":{"total":[628.285,619.537,617.793,619.594,622.434,619.5,618.157,621.435,616.969,624.508,619.914,620.357,618.443,619.79,618.283],"script":[268.371,264.595,264.947,266.039,267.534,265.129,264.223,266.866,263.528,265.986,264.42,263.564,265.951,265.936,265.456],"paint":[353.042,348.232,346.238,346.817,348.109,347.508,347.101,347.904,346.568,351.805,348.851,350.101,345.731,347.198,346.207]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.677,55.963,56.967,55.998,56.398,57.408,57.253,56.281,56.384,57.122,55.921,56.284,57.952,56.467,57.027],"script":[17.981,16.424,16.75,17.312,16.576,16.681,17.252,16.974,16.522,17.656,16.14,16.223,17.478,16.978,17.265],"paint":[38.762,38.647,39.289,37.79,38.926,39.817,39.091,38.397,38.823,38.515,38.885,39.171,39.579,38.55,38.904]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.869,16.736,16.73,16.052,17.057,14.732,16.365,15.679,16.083,16.055,16.211,15.865,16.359,15.649,16.006],"script":[14.452,14.749,14.565,13.634,14.654,13.28,14.196,13.818,14.336,13.893,14.288,14.005,14.318,14.118,14.131],"paint":[2.327,0.979,1.099,1.331,2.295,0.395,2.08,1.768,1.654,2.072,0.942,1.465,1.938,1.435,1.781]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.0401029586791992]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.745843887329102]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.331998825073242]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.616761207580566]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[43.734707832336426]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[157.1630859375]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[45.197265625]}},{"framework":"legend-state-optimized-v18.2.0 + 2.1.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[249]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[40.32,40.498,40.799,41.003,42.436,39.638,40.312,40.91,40.663,41.008,40.343,41.032,40.601,39.849,41.775],"script":[6.551,6.538,7.196,7.268,7.273,6.913,6.476,6.968,6.61,6.736,6.522,6.651,6.594,6.549,7.217],"paint":[33.367,33.54,33.205,33.303,34.747,32.298,33.419,33.541,33.627,33.877,33.341,33.968,33.594,32.897,34.151]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[15.964,16.314,15.993,16.159,16.462,16.074,16.928,15.826,16.172,16.793,15.957,16.182,16.293,16.292,17.015],"script":[1.72,1.718,1.811,1.723,1.807,1.755,1.82,1.68,1.754,1.644,1.743,1.754,1.806,1.819,1.725],"paint":[13.808,14.14,13.758,14.008,14.289,13.861,14.667,13.707,13.981,14.714,13.779,14.05,14.06,14.104,14.845]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.432,17.188,17.301,16.652,17.27,17.478,18.489,16.95,17.358,17.145,16.592,15.938,17.072,18.992,16.72],"script":[1.939,1.833,1.178,1.75,1.765,1.756,1.819,0.75,1.501,1.851,1.543,1.005,1.699,1.273,1.959],"paint":[14.181,14.034,14.072,13.676,13.262,14.351,15.663,15.019,14.807,14.214,13.721,13.542,14.289,16.105,13.718]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[4.444,4.408,4.493,3.953,3.968,4.17,3.689,4.46,4.741,3.46,3.602,3.788,3.825,3.3,4.181,4.703,4.719,3.824,4.08,4.126,4.397,3.527,4.454,3.747,4.019],"script":[1.724,1.552,0.99,1.314,1.729,0.626,1.008,1.234,1.636,1.302,1.513,1.058,0.987,1.297,1.244,1.516,1.249,0.973,1.287,1.318,1.456,0.981,1.667,1.003,0.641],"paint":[1.888,2.718,2.935,2.499,1.473,3.426,1.703,2.55,2.476,1.49,1.058,2.325,1.814,1.138,1.926,2.903,3.334,2.718,2.296,2.388,1.996,2.172,2.641,1.59,2.613]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[12.486,12.632,12.207,12.55,12.35,12.464,12.383,11.816,12.19,13.035,11.608,13.202,13.094,13.151,12.42],"script":[1.542,1.702,1.201,1.441,0.982,1.271,1.604,1.039,1.082,1.384,1.484,0.684,1.542,1.301,1.501],"paint":[9.672,9.582,10.057,10.143,10.703,9.641,8.704,9.328,9.605,10.349,7.637,10.338,9.37,10.435,9.185]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[34.381,32.832,34.302,33.29,32.734,33.6,33.025,34.934,32.981,32.645,33.093,32.513,33.361,33.2,33.163],"script":[2.669,2.985,3.03,3.073,2.693,3.07,3.009,3.073,2.849,2.754,2.615,2.802,3.017,3.046,3.043],"paint":[30.553,28.714,30.215,29.175,29.252,29.719,29.188,31.034,29.364,28.764,29.284,28.7,29.554,29.255,29.387]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[431.317,431.555,426.57,430.646,435.826,425.942,431.683,430.222,433.405,427.8,429.361,427.155,428.271,436.293,426.894],"script":[82.505,83.008,81.855,82.227,84.38,81.218,81.585,83.715,84.04,79.833,82.694,80.706,83.008,81.273,81.765],"paint":[341.999,341.614,337.984,341.703,344.705,337.416,343.387,339.801,342.006,341.242,339.935,339.689,338.44,348.327,338.437]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.243,46.688,46.706,46.357,46.436,47.276,46.329,48.497,46.742,46.819,47.683,46.868,48.213,46.265,45.586],"script":[6.74,6.926,6.903,6.632,6.713,7.031,6.634,6.823,6.801,6.871,6.987,6.884,6.649,6.631,6.705],"paint":[39.579,38.91,38.933,38.889,38.806,39.406,38.792,40.774,38.93,39.081,39.823,39.11,40.697,38.777,38.017]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.918,15.248,15.408,16.072,15.393,15.575,16.215,15.049,16.172,15.491,15.957,15.507,15.103,15.805,15.943],"script":[13.815,13.79,13.273,13.829,13.234,13.968,14.062,13.358,13.922,12.772,13.998,13.636,12.636,13.488,13.6],"paint":[1.219,1.371,1.392,2.142,2.055,1.518,1.487,1.197,2.083,2.628,1.872,1.044,2.365,2.223,2.24]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.570530891418457]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.691349983215332]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.685105323791504]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8183450698852539]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.185483932495117]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.7099609375]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.55078125]}},{"framework":"lit-v3.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[57.7]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"01_run1k","values":{"total":[38.499,39.524,38.217,38.338,39.26,39.28,39.769,40.688,40.516,39.218,39.695,40.333,40.391,40.002,39.055],"script":[5.622,5.753,5.666,5.653,5.665,5.785,5.938,6.419,6.219,5.618,5.977,6.128,6.232,6.033,5.715],"paint":[32.473,33.361,32.156,32.293,33.168,33.075,33.431,33.851,33.856,33.202,33.291,33.787,33.739,33.59,32.908]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"02_replace1k","values":{"total":[15.551,15.363,15.214,15.226,16.52,15.346,15.484,15.602,15.669,15.269,15.55,15.859,15.356,15.733,15.336],"script":[1.346,1.221,1.166,1.257,1.235,1.223,1.248,1.195,1.193,1.184,1.16,1.232,1.223,1.194,1.305],"paint":[13.779,13.772,13.648,13.589,14.839,13.72,13.831,14.038,14.102,13.677,14.033,14.262,13.71,14.17,13.625]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.964,17.207,17.082,16.546,16.83,17.512,16.869,16.63,17.493,16.912,16.769,17.216,16.111,17.81,17.185],"script":[1.026,1.749,1.253,0.973,1.771,1.232,0.897,0.907,0.997,1.706,1.677,1.679,1.234,1.624,1.424],"paint":[13.471,14.262,14.715,14.183,13.075,15.304,14.912,14.984,15.17,14.185,13.609,14.126,13.51,14.697,13.965]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.4,3.64,4.502,4.225,3.823,3.178,3.999,3.571,4.064,2.921,3.951,3.173,3.535,4.087,3.602,3.165,3.245,2.78,5.393,4.603,4.491,3.899,3.333,3.839,3.945],"script":[0.192,0.556,0.177,0.822,1.17,0.917,0.753,1.006,1.441,0.709,0.936,0.735,0.675,0.899,0.698,0.903,0.703,0.493,0.942,0.275,1.045,1.117,1.126,1.009,1.101],"paint":[3.101,2.353,2.717,2.147,1.741,2.158,2.566,2.465,2.518,2.106,2.902,2.331,2.752,3.078,2.79,2.158,2.413,2.03,2.659,2.151,2.417,2.381,2.105,2.717,1.668]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"05_swap1k","values":{"total":[11.932,11.692,12.318,12.125,11.549,11.849,11.829,11.22,12.034,11.733,11.971,11.522,11.825,11.6,11.972],"script":[0.323,0.19,0.717,0.909,0.858,0.854,0.641,0.188,0.19,0.188,0.913,0.755,1.199,0.229,0.561],"paint":[9.907,9.875,9.755,9.904,9.208,9.828,9.597,9.651,9.242,9.628,10.262,9.477,9.874,10.105,9.837]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[31.23,31.464,31.133,31.203,32.502,32.364,32.399,31.174,31.222,31.304,32.03,31.467,31.57,31.296,31.543],"script":[2.249,1.936,1.874,1.867,1.919,2.149,1.897,1.905,1.879,1.873,2.083,2.043,2.224,1.889,1.892],"paint":[28.218,28.391,28.52,28.584,28.927,29.072,29.679,28.252,28.436,28.171,29.232,28.719,28.574,28.533,28.831]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"07_create10k","values":{"total":[416.578,415.85,413.416,409.053,411.134,412.674,421.039,412.78,415.789,416.254,413.343,418.202,414.446,416.382,418.059],"script":[71.746,70.591,71.004,70.039,69.941,71.052,69.951,71.084,70.111,71.469,74.017,72.99,70.859,72.311,74.316],"paint":[338.008,338.484,335.679,332.188,334.491,334.831,344.339,334.903,338.634,338.05,332.573,336.577,336.844,337.288,336.966]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.738,44.196,44.497,45.651,43.566,44.169,45.44,43.969,44.722,45.322,45.494,44.774,44.379,44.194,44.843],"script":[5.814,5.497,5.562,5.804,5.497,5.495,5.754,5.495,5.599,5.65,5.858,5.466,5.402,5.722,5.613],"paint":[38.986,37.803,38.007,38.961,37.191,37.811,38.794,37.567,38.134,38.766,38.776,38.382,38.034,37.575,38.352]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.737,14.89,15.19,16.267,16.631,15.152,14.82,15.897,16.749,17.132,14.883,15.104,15.399,15.244,15.154],"script":[14.145,13.147,13.34,13.662,14.526,13.213,12.671,13.545,14.885,14.994,13.243,13.534,13.683,13.363,13.277],"paint":[1.501,1.65,1.758,2.485,2.029,1.842,2.056,2.262,1.775,2.024,0.74,1.477,0.914,1.066,1.084]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5777406692504883]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.48476505279541]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.5159683227539062]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7471113204956055]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.461997032165527]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.7421875]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.7734375]}},{"framework":"lit-html-v3.0.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.8]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"01_run1k","values":{"total":[44.406,45.179,45.665,43.973,44.602,44.586,44.078,43.876,43.778,43.682,43.524,43.698,45.688,44.024,44.65],"script":[9.867,11.016,10.581,9.978,10.134,10.223,10.233,10.159,9.545,9.762,9.583,9.972,10.687,10.42,9.813],"paint":[34.118,33.732,34.658,33.566,34.065,33.95,33.422,33.296,33.805,33.499,33.536,33.334,34.573,33.193,34.441]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"02_replace1k","values":{"total":[25.862,26.155,25.385,25.908,25.856,25.098,27.28,28.109,25.958,26.269,27.57,26.053,27.306,28.41,25.616],"script":[10.554,10.774,10.25,10.551,10.341,10.123,11.135,11.157,10.647,10.74,10.92,10.595,10.917,11.313,10.224],"paint":[14.832,14.904,14.698,14.906,15.029,14.537,15.682,16.475,14.831,15.064,16.185,14.974,15.935,16.613,14.954]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[47.087,47.147,49.786,46.841,46.021,47.217,45.755,47.501,47.997,48.853,47.895,50.254,49.247,50.023,49.931],"script":[29.695,30.469,31.397,29.699,29.463,29.919,29.035,30.069,31.169,31.294,30.329,32.973,32.415,32.992,31.076],"paint":[16.013,14.556,16.533,15.779,14.715,14.678,14.603,15.296,14.488,15.102,15.992,16.102,14.934,15.911,16.364]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"04_select1k","values":{"total":[28.683,30.009,29.252,28.984,28.882,28.016,29.274,30.727,28.62,30.153,28.425,29.685,29.278,29.243,29.522,27.778,28.901,29.622,28.457,29.062,28.253,28.59,29.6,28.619,30.139],"script":[25.912,26.256,25.906,25.808,24.301,25.135,26.416,26.723,25.22,26.749,25.596,26.958,26.167,26.3,25.597,24.824,25.536,26.386,25.879,26.269,25.432,25.402,25.622,25.647,26.726],"paint":[0.981,2.822,2.442,2.495,3.665,2.02,1.856,3.09,2.502,2.606,2.186,2.536,2.523,1.776,3.736,2.066,2.796,2.048,2.394,2.637,1.895,1.79,2.923,1.805,2.553]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"05_swap1k","values":{"total":[37.358,37.186,38.588,37.039,39.108,37.095,38.187,38.16,38.015,38.474,37.443,38.991,37.461,38.888,37.639],"script":[24.639,25.249,27.058,24.729,26.492,25.688,25.727,26.219,25.302,26.439,25.19,26.925,24.974,26.505,25.559],"paint":[11.223,9.492,10.195,10.707,11.182,9.813,10.829,10.382,10.962,10.21,11.225,10.463,11.095,11.379,10.662]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[51.992,54.63,55.565,55.844,52.989,51.237,55.824,50.732,55.497,55.721,52.556,56.021,56.309,51.432,51.716],"script":[20.127,21.019,20.431,20.938,19.827,18.985,21.499,18.392,21.032,21.393,20.3,21.297,21.759,19.183,19.335],"paint":[30.683,32.481,34.32,33.764,32.296,31.479,33.268,30.903,33.716,33.51,31.192,33.906,33.54,31.451,31.208]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"07_create10k","values":{"total":[465.957,448.017,454.264,450.534,450.447,458.912,459.493,457.971,460.78,466.806,465.359,464.281,456.911,462.281,463.2],"script":[107.452,106.794,102.37,110.559,108.11,105.102,104.134,107.704,106.065,110.89,109.086,106.409,104.756,106.206,106.983],"paint":[351.736,334.286,344.653,333.242,335.674,347.108,348.649,343.646,348.028,349.258,349.578,351.218,345.513,348.719,349.61]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.063,57.534,58.314,58.124,59.19,59.911,59.755,59.672,58.747,59.025,59.175,58.038,58.149,59.272,58.438],"script":[18.091,16.936,18.149,17.857,18.214,18.875,18.75,19.303,18.393,18.632,18.491,18.096,17.382,18.84,18.13],"paint":[41.009,39.724,39.292,39.381,40.042,40.132,40.112,39.463,39.436,39.477,39.772,39.061,39.859,39.551,39.43]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.579,18.191,17.435,17.491,16.772,16.921,17.547,19.549,18.652,18.37,18.219,17.503,17.173,19.608,17.408],"script":[18.337,16.127,15.575,16.051,14.87,14.971,15.088,17.881,16.74,16.47,15.746,15.114,14.995,17.475,14.861],"paint":[2.138,1.063,1.75,0.385,0.681,0.982,2.352,1.376,1.826,0.362,2.383,2.28,1.291,2.027,1.846]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4665384292602539]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.9551801681518555]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.3450870513916016]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6227302551269531]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.29177761077881]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[8.3408203125]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.927734375]}},{"framework":"literaljs-v7.0.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.5]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"01_run1k","values":{"total":[44.846,43.869,51.425,48.991,49.256,49.404,47.454,49.984,52.208,48.486,47.328,49.62,51.311,50.724,50.552],"script":[9.486,9.875,10.478,9.503,9.811,9.38,9.543,9.864,9.995,9.861,9.975,9.628,10.833,9.874,10.106],"paint":[33.251,33.114,35.009,33.092,32.676,32.948,33.495,32.437,32.798,32.964,34.027,33.293,33.407,33.186,33.566]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"02_replace1k","values":{"total":[67.99,66.335,64.7,63.633,66.784,66.934,62.368,66.421,60.552,65.689,59.008,63.855,64.927,61.037,65.432],"script":[20.402,20.258,20.42,20.37,21.277,20.718,20.06,20.7,20.233,20.384,20.674,20.401,20.491,18.739,20.712],"paint":[35.618,36.233,35.537,35.745,35.722,35.633,35.685,34.683,35.823,35.829,35.469,36.046,35.633,33.529,35.87]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[36.764,37.766999999999996,18.568,21.734,18.458,19.392,37.132999999999996,18.796,37.30200000000001,37.23,37.80800000000001,21.148,18.91,19.115,34.97],"script":[5.163,6.308,3.484,4.285,3.004,4.218,6.039,3.788,5.162,5.483,5.719,3.634,4.176,3.597,5.13],"paint":[15.566,15.413,14.965,15.818,14.374,15.064,14.378,13.494,16.072,14.606,16.047,16.341,14.642,13.44,13.8]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"04_select1k","values":{"total":[32.216,32.115,36.05,37.597,35.925,36.124,34.239,31.066,35.914,33.116,32.836,32.318,34.405,40.444,35.706,35.569,36.248,39.925,35.182,38.572,32.194,31.142,35.756,31.622,35.307],"script":[3.825,3.793,4.671,3.77,3.566,3.079,4.049,4.623,4.259,4.177,4.012,4.794,4.049,4.645,4.931,4.289,4.779,4.363,4.197,3.461,3.93,3.813,4.679,4.401,4.413],"paint":[20.236,19.486,19.999,22.182,21.627,22.281,19.557,21.54,21.415,22.012,19.508,20.429,20.463,21.398,20.712,21.283,21.805,20.507,20.69,20.632,20.151,21.72,22.168,19.818,19.89]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"05_swap1k","values":{"total":[213.283,204.436,209.454,195.825,210.171,198.225,197.596,199.118,200.144,184.933,198.648,215.556,185.84,185.713,190.469],"script":[48.244,49.275,47.718,47.779,48.353,47.349,47.812,48.742,50.23,45.559,49.514,47.87,45.134,45.738,46.395],"paint":[148.938,152.284,144.979,144.703,145.725,147.515,147.636,147.894,149.707,138.867,148.956,150.845,139.839,136.962,143.232]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[20.531,23.621,32.353,29.492,20.419,21.728,33.303,20.04,33.886,26.754,20.521,34.373,19.127,21.876,26.841],"script":[1.584,1.908,1.889,1.568,1.799,1.699,2.169,1.819,1.932,1.606,1.835,1.801,1.507,1.6,1.669],"paint":[14.734,15.339,15.042,16.3,15.554,15.051,15.904,14.544,15.179,14.976,14.838,15.042,14.689,14.691,14.736]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"07_create10k","values":{"total":[466.879,448.979,453.397,474.75,467.146,488.635,465.534,446.889,468.81,474.376,468.659,446.227,446.404,447.034,454.311],"script":[116.458,110.77,114.901,117.81,113.34,119.71,118.653,109.829,106.644,114.547,109.923,106.545,102.569,107.435,113.477],"paint":[348.193,334.865,330.357,350.23,349.308,358.723,341.724,328.244,356.556,356.325,355.582,334.581,339.407,337.415,336.1]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.557,58.584,56.325,54.034,58.24,57.596,53.629,60.564,58.776,54.913,55.093,55.624,54.796,59.756,56.302],"script":[11.156,11.461,10.898,10.772,10.975,11.079,10.819,11.333,10.605,11.116,10.854,10.962,10.925,11.225,11.199],"paint":[38.81,38.064,38.692,37.435,38.194,38.199,36.969,37.744,37.987,37.709,38.198,38.095,37.884,37.969,37.821]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.727,13.534,28.480999999999998,13.801,12.894,15.787,15.864,14.341,16.072,12.445,13.02,29.427000000000003,16.1,13.733,12.508],"script":[11.286,11.676,10.342,11.498,11.057,11.279,10.687,11.073,10.641,10.791,11.613,11.598,12.049,11.722,11.348],"paint":[1.385,1.79,2.144,1.856,1.77,2.297,0.986,2.046,2.122,1.595,1.348,1.6,2.274,1.951,1.104]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5164823532104492]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.779850959777832]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.7264318466186523]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.8932018280029297]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.448715209960938]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[43.798828125]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.3623046875]}},{"framework":"maquette-v3.3.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[86.9]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"01_run1k","values":{"total":[35.284,35.505,35.642,35.285,35.338,35.274,35.784,35.999,36.558,36.304,36.772,35.831,35.982,36.817,36.174],"script":[2.643,2.542,2.48,2.457,2.463,2.475,2.567,2.598,2.545,2.599,2.569,2.687,2.471,2.607,2.542],"paint":[32.24,32.536,32.737,32.43,32.427,32.387,32.806,33.003,33.605,33.305,33.788,32.744,32.994,33.736,33.222]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"02_replace1k","values":{"total":[14.678,14.281,14.489,14.7,15.471,14.354,14.642,14.97,15.2,14.972,16.11,14.759,14.491,14.99,15.086],"script":[0.648,0.657,0.654,0.654,0.617,0.622,0.653,0.671,0.683,0.647,0.632,0.646,0.647,0.632,0.647],"paint":[13.633,13.232,13.422,13.696,14.444,13.317,13.646,13.947,14.17,13.982,15.084,13.727,13.465,14.017,14.088]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.904,15.784,15.168,15.791,15.297,15.437,15.771,16.544,19.214,15.465,15.669,16.319,16.014,15.788,17.728],"script":[1.453,0.87,0.128,0.702,0.76,0.128,0.127,0.818,0.669,0.132,0.137,0.843,0.132,0.602,0.868],"paint":[15.213,13.494,13.463,13.977,13.493,14.055,14.575,14.178,15.985,14.295,14.239,13.939,14.216,14.161,15.445]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"04_select1k","values":{"total":[2.755,2.973,2.997,3.078,2.9,3.74,2.364,4.834,2.464,3.07,6.233,2.904,3.004,2.722,2.847,3.048,2.934,2.608,1.872,4.978,2.413,2.397,2.696,2.356,3.002],"script":[0.078,0.589,0.481,0.077,0.907,0.075,0.292,0.081,0.074,0.821,0.293,0.429,0.577,0.083,0.086,0.086,0.073,0.085,0.262,0.077,0.08,0.08,0.676,0.272,1.008],"paint":[2.578,2.249,2.398,2.892,1.887,2.33,1.975,1.456,2.289,1.698,2.255,1.514,1.879,1.804,2.657,2.567,2.763,2.424,1.098,3.085,1.18,1.693,1.285,1.989,1.282]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"05_swap1k","values":{"total":[11.939,11.42,11.435,10.935,11.022,11.955,11.464,11.403,11.6,11.279,11.185,11.711,10.879,10.536,11.017],"script":[0.899,0.086,0.088,0.41,0.588,0.775,0.737,0.093,0.807,0.083,0.091,0.759,0.098,0.093,0.079],"paint":[8.426,10.127,10.373,9.533,9.405,9.114,9.251,9.563,9.042,9.915,9.889,9.194,9.403,8.648,8.443]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.384,14.822,16.045,14.819,14.738,15.281,15.349,14.703,15.065,15.214,14.692,14.753,14.709,15.347,14.697],"script":[0.093,0.084,0.08,0.085,0.26,0.292,0.082,0.081,0.093,0.083,0.079,0.094,0.08,0.087,0.08],"paint":[14.496,14.027,15.269,14.012,13.572,14.301,14.609,14.173,14.088,14.423,13.957,13.947,13.881,14.49,13.911]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"07_create10k","values":{"total":[371.908,370.133,369.106,371.33,370.051,365.59,373.13,368.231,367.575,370.467,368.434,367.552,370.547,368.894,372.717],"script":[28.453,28.466,29.03,28.814,29.458,28.382,29.153,29.239,30.073,30.54,29.281,28.048,29.649,28.289,30.83],"paint":[336.868,335.079,333.401,335.61,333.886,330.49,336.77,332.169,330.831,333.24,332.416,332.879,334.198,333.487,335.254]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[39.946,41.807,43.69,40.172,40.145,41.153,40.488,40.513,41.443,42.224,41.203,41.157,41.077,41.393,41.486],"script":[2.483,2.554,2.614,2.35,2.426,2.596,2.398,2.455,2.464,2.474,2.44,2.437,2.421,2.499,2.524],"paint":[36.596,38.239,40.134,36.969,36.833,37.728,37.241,37.242,38.121,38.9,37.933,37.849,37.809,38.151,38.131]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[11.816,12.183,12.376,12.085,11.427,12.174,12.2,11.437,12.109,12.274,11.99,12.604,11.814,11.772,12.334],"script":[9.947,10.545,10.385,9.932,9.778,10.383,10.528,9.648,9.523,10.816,10.209,10.723,9.778,9.898,10.694],"paint":[1.797,1.339,1.902,2.068,1.564,1.706,1.565,1.708,2.487,1.359,0.712,1.099,1.952,1.789,1.538]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5064077377319336]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.8316268920898438]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.8668279647827148]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6702022552490234]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[13.353330612182617]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.5068359375]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.171875]}},{"framework":"mikado-v0.8.327-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[42.6]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"01_run1k","values":{"total":[47.781,47.27,47.745,48.727,46.785,48.097,48.884,48.411,47.627,48.883,48.861,48.191,47.842,47.741,47.98],"script":[13.454,12.901,12.956,14.112,12.935,13.469,13.951,13.375,13.799,14.253,13.983,13.546,13.17,13.086,13.319],"paint":[33.91,33.962,34.385,34.171,33.405,34.219,34.485,34.604,33.408,34.215,34.453,34.211,34.266,34.249,34.24]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"02_replace1k","values":{"total":[28.154,28.703,27.036,26.723,27.413,29.21,26.206,28.149,26.588,25.792,26.957,27.128,27.128,26.752,27.18],"script":[11.564,13.075,12.031,11.443,12.175,13.208,11.516,12.913,11.069,11.229,11.949,11.131,11.424,11.575,11.77],"paint":[16.128,15.162,14.581,14.817,14.772,15.54,14.228,14.77,15.032,14.101,14.569,15.518,15.245,14.719,14.977]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.77,16.588,16.824,16.098,16.397,16.259,16.243,15.521,16.236,15.494,16.264,17.013,16.813,16.414,15.608],"script":[1.114,0.825,0.21,0.201,0.755,0.937,0.917,0.211,0.939,0.198,0.923,0.937,0.207,0.939,0.591],"paint":[14.356,13.986,15.626,13.438,14.453,14.364,13.969,13.394,14.319,14.132,13.623,14.284,14.73,13.841,12.819]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"04_select1k","values":{"total":[2.901,4.431,3.741,3.057,4.112,2.936,2.725,3.183,2.986,2.772,2.84,2.443,3.052,5.68,2.896,3.818,3.203,3.588,2.801,2.374,4.4,2.929,4.095,2.794,2.558],"script":[0.805,1.234,0.657,0.146,1.292,0.8,0.831,0.899,0.881,0.124,0.129,0.528,0.137,1.047,0.231,0.928,0.856,0.829,0.65,0.125,1.137,0.491,0.564,0.248,0.144],"paint":[1.213,1.685,2.007,2.807,2.696,1.932,1.125,0.679,1.185,2.53,2.047,1.109,2.806,2.159,2.554,1.619,0.78,1.82,1.559,2.148,1.638,1.573,1.711,1.772,2.32]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"05_swap1k","values":{"total":[12.478,12.284,11.824,12.291,11.946,12.365,11.741,11.951,12.023,12.531,11.924,12.384,11.773,11.896,12.019],"script":[1.214,1.557,1.055,1.248,0.614,1.095,1.141,1.28,1.281,1.131,1.179,1.218,1.273,1.028,0.911],"paint":[10.282,9.423,8.965,9.669,9.471,9.17,9.252,9.92,9.255,9.843,9.416,9.277,9.232,8.858,10.408]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.307,15.355,15.484,15.32,15.765,15.289,15.107,15.314,15.08,14.769,14.988,14.922,15.366,15.316,14.901],"script":[0.501,0.498,0.273,0.484,0.402,0.446,0.394,0.312,0.216,0.429,0.311,0.185,0.505,0.392,0.18],"paint":[14.062,14.028,14.271,13.768,14.196,14.105,13.982,14.158,14.156,13.619,13.717,13.941,14.11,14.102,13.982]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"07_create10k","values":{"total":[467.841,461.739,463.979,473.287,473.671,462.663,469.872,474.534,470.153,478.708,462.109,471.585,468.023,471.882,475.059],"script":[121.293,121.944,122.043,127.113,128.402,120.627,128.481,126.16,127.232,126.893,121.834,126.283,127.113,125.704,129.039],"paint":[339.785,333.046,335.147,339.276,338.545,335.277,334.601,341.55,336.186,345.079,333.636,338.431,334.23,339.424,339.304]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[51.568,52.529,52.394,51.798,50.858,51.437,50.202,51.369,51.257,52.514,50.795,52.526,52.75,50.286,51.948],"script":[11.163,11.618,11.222,11.119,10.946,11.471,11.009,11.12,11.452,11.349,10.923,11.027,11.4,11.069,11.035],"paint":[39.468,39.964,40.215,39.766,39.002,39.036,38.29,39.345,38.788,40.263,38.969,40.572,40.462,38.238,40.015]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.429,14.567,13.677,13.497,13.792,13.282,13.397,13.939,13.813,14.019,12.909,13.945,13.336,13.557,13.327],"script":[12.544,12.121,11.814,11.564,11.921,11.378,11.749,11.149,11.924,11.927,11.473,11.915,11.996,11.689,11.798],"paint":[1.725,1.535,1.749,0.77,1.775,1.81,0.751,2.691,1.602,1.999,1.342,1.928,0.719,1.64,0.942]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.654205322265625]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9264116287231445]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.059597015380859]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0473566055297852]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.311805725097656]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[51.15625]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.123046875]}},{"framework":"mimbl-v0.10.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[94.9]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"01_run1k","values":{"total":[61.717,60.165,61.409,60.758,58.764,60.585,59.948,59.942,59.068,59.155,59.44,59.877,59.028,62.15,59.597],"script":[26.713,26.581,26.005,26.002,25.126,26.089,25.84,25.451,25.731,25.754,25.362,25.803,25.144,26.445,25.789],"paint":[34.81,33.393,35.214,34.569,33.47,34.311,33.923,34.309,33.153,33.212,33.898,33.853,33.702,35.524,33.599]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"02_replace1k","values":{"total":[35.235,34.703,35.074,34.693,35.329,34.842,35.178,35.328,35.188,34.897,36.06,34.727,34.542,35.675,35.754],"script":[21.212,20.368,20.718,20.313,20.998,20.282,20.464,21.124,20.705,20.633,21.547,20.666,20.564,21.043,21.544],"paint":[13.862,14.166,14.172,14.175,14.164,14.374,14.365,14.032,14.306,14.098,14.338,13.894,13.807,14.453,14.04]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[64.39,65.867,62.753,60.921,67.269,60.728,66.17,64.626,65.507,63.482,61.874,59.67,60.655,63.948,60.843],"script":[45.325,48.897,45.699,45.625,48.732,44.959,48.888,47.415,49.478,45.522,45.65,44.649,45.188,46.33,43.548],"paint":[18.61,16.528,16.086,14.486,16.769,15.365,16.681,16.24,15.177,16.338,15.174,14.696,15.316,16.276,14.844]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"04_select1k","values":{"total":[45.548,47.2,47.106,45.177,46.569,47.01,47.726,47.721,50.956,47.518,47.837,48.105,54.22,49.446,49.696,46.624,45.912,47.228,50.122,48.398,52.836,47.173,47.822,49.541,48.43],"script":[41.012,40.461,42.079,41.468,40.832,39.667,41.522,42.352,44.075,43.79,42.436,41.847,47.695,44.107,42.733,39.902,41.381,41.511,42.753,41.367,46.849,41.58,41.246,43.111,42.455],"paint":[2.885,5.323,3.896,2.006,4.414,5.535,3.679,3.432,5.367,2.815,4.291,4.423,4.696,4.426,5.101,5.193,2.192,3.592,5.464,4.533,4.537,3.655,4.631,4.559,4.897]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"05_swap1k","values":{"total":[57.69,56.759,52.405,51.895,55.068,51.724,52.247,53.135,54.791,51.428,49.849,50.304,50.89,54.847,50.84],"script":[42.955,43.832,40.615,41.987,43.687,40.34,39.133,41.419,43.731,39.473,39.266,38.482,40.267,41.112,39.804],"paint":[13.32,11.011,10.552,9.392,11.116,11.22,11.274,10.899,10.636,10.078,9.161,11.67,9.79,11.27,9.238]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[54.194,55.531,54.416,50.823,54.678,52.127,54.681,53.74,52.51,51.441,52.069,53.833,52.499,54.113,53.856],"script":[22.592,23.595,23.559,21.514,21.933,22.372,22.899,22.545,21.719,22.197,22.353,22.829,21.769,21.977,23.069],"paint":[30.899,31.776,30.236,29.13,32.554,29.589,31.127,30.8,29.791,29.082,28.674,30.481,30.302,31.872,30.526]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"07_create10k","values":{"total":[602.595,596.329,593.687,590.077,600.704,591.378,592.312,592.566,599.019,591.948,590.869,595.645,588.85,606.221,595.554],"script":[247.056,245.577,248.667,244.121,248.056,243.45,242.431,245.275,239.153,247.734,245.453,248.892,245.504,246.715,246.739],"paint":[353.368,348.647,342.868,343.81,350.425,345.783,347.728,345.179,357.689,342.05,343.246,344.638,341.158,357.332,346.699]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.768,75.589,75.082,75.11,74.999,75.449,76.229,75.52,75.925,75.029,76.321,75.801,77.335,76.44,76.372],"script":[35.021,34.872,34.55,34.985,34.821,34.458,35.76,35.48,35.371,35.372,35.424,35.513,36.055,35.765,35.21],"paint":[40.428,39.842,40.234,39.817,39.879,40.704,40.159,39.559,40.272,39.354,40.606,39.249,40.966,40.371,40.857]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[27.937,38.647,35.566,34.295,36.238,57.284,35.608,30.799,36.521,57.209,30.51,30.589,57.858,56.086,57.042],"script":[25.874,34.244,29.727,29.404,31.868,27.182,28.878,28.747,30.31,28.523,28.605,28.988,27.921,28.027,29.559],"paint":[1.344,2.559,2.404,2.873,3.231,2.689,2.407,1.394,2.512,3.256,0.429,1.509,2.99,2.635,2.339]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.748133659362793]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.610014915466309]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.825002670288086]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[8.599519729614258]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[49.493614196777344]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[442.755859375]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[90.7958984375]}},{"framework":"miso-v1.4.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[670.6]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"01_run1k","values":{"total":[40.66,40.224,40.313,39.799,41.189,40.713,40.907,40.848,42.361,40.423,40.016,41.576,40.323,40.34,39.728],"script":[7.085,6.849,6.849,6.78,6.843,6.851,6.807,6.806,7.738,6.92,6.794,6.945,6.814,6.841,6.733],"paint":[33.125,32.914,33.03,32.606,33.946,33.412,33.683,33.628,34.193,33.081,32.773,34.174,33.06,33.036,32.577]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"02_replace1k","values":{"total":[45.743,45.396,45.008,45.905,45.304,45.047,45.005,46.757,44.993,45.702,44.339,44.569,45.695,45.95,46.068],"script":[10.175,10.146,9.942,9.97,9.886,9.905,9.807,11.046,9.937,10.002,9.944,9.733,9.784,10.8,10.652],"paint":[35.107,34.81,34.624,35.474,34.972,34.691,34.774,35.283,34.584,35.28,33.959,34.351,35.467,34.699,34.95]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.844,16.685,17.389,16.034,15.975,16.769,16.122,17.541,15.988,16.468,16.898,16.6,18.259,16.188,17.224],"script":[1.537,0.702,1.277,0.982,1.664,1.776,1.429,1.298,0.986,1.086,1.874,1.104,1.015,0.667,1.252],"paint":[13.795,14.882,15.022,14.037,12.339,12.255,12.696,15.134,14.012,14.411,13.27,13.9,15.232,13.122,13.984]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"04_select1k","values":{"total":[6.034,2.896,4.028,3.844,3.305,2.649,2.837,3.736,2.935,3.281,3.029,3.459,3.402,4.024,2.558,3.255,3.197,3.403,3.622,3.014,3.748,3.122,3.28,3.442,2.985],"script":[1.309,1.002,1.697,0.934,0.915,0.955,0.634,0.909,1.022,0.987,0.656,1.113,0.936,1.3,0.849,0.905,1.131,0.576,0.839,0.876,1.321,0.857,0.87,0.681,0.811],"paint":[1.784,1.79,0.863,2.026,2.271,1.043,1.475,2.711,1.266,2.138,1.888,2.24,1.734,2.603,1.603,1.397,1.96,1.889,1.602,2.039,1.525,2.16,1.729,2.254,2.052]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"05_swap1k","values":{"total":[11.314,11.104,11.1,11.675,11.403,11.048,11.99,11.354,11.916,11.655,11.616,11.076,11.236,11.365,11.174],"script":[0.789,0.209,0.887,0.108,0.522,0.105,0.642,0.658,1.101,0.12,0.932,0.53,0.832,0.105,0.102],"paint":[8.965,9.823,8.666,10.015,9.896,9.147,9.978,9.232,9.85,10.062,9.405,8.643,8.276,9.648,9.556]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.717,16.047,15.81,16.249,16.176,15.59,15.735,16.407,15.594,15.982,15.966,15.641,15.675,15.795,16.424],"script":[0.673,0.653,0.655,0.888,0.825,0.662,0.642,0.923,0.777,0.642,0.656,0.663,0.638,0.588,0.665],"paint":[14.287,14.166,14.435,14.576,14.464,14.178,14.351,14.723,14.038,14.626,14.26,14.253,14.088,14.476,14.458]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"07_create10k","values":{"total":[641.306,627.21,626.85,632.05,621.852,632.597,632.07,627.021,626.265,629.359,631.28,627.033,630.643,626.836,621.605],"script":[275.245,270.8,271.531,271.414,269.147,273.537,274.235,268.822,271.953,271.939,273.015,270.734,274.512,270.01,267.84],"paint":[359.151,349.68,348.745,353.954,345.953,352.445,350.978,351.499,347.68,350.71,351.595,349.392,349.348,349.885,347.092]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[75.432,75.054,75.85,76.104,76.154,75.387,76.51,75.866,77.696,75.633,76.107,75.953,76.735,75.821,76.314],"script":[35.448,34.993,35.376,35.661,35.253,35.092,35.734,35.222,35.129,35.871,35.454,35.335,36.343,35.498,35.682],"paint":[39.083,39.169,39.576,39.512,39.948,39.379,39.877,39.742,41.632,38.86,39.755,39.694,39.496,39.439,39.719]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[19.188,18.679,17.816,18.338,18.605,19.006,20.254,19.485,18.044,18.803,18.645,18.834,19.239,18.152,18.852],"script":[18.05,16.734,15.899,15.984,16.229,17.375,18.095,17.618,15.618,16.904,16.891,17.377,17.084,16.383,16.349],"paint":[0.364,1.842,1.435,1.209,1.352,1.093,2.052,1.762,1.406,1.732,1.664,1.361,2.059,0.907,2.156]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[2.711318016052246]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[9.763786315917969]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[9.80611515045166]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.340601921081543]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.76583957672119]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[229.640625]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[65.7919921875]}},{"framework":"mogwai-v0.6.5-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[396.4]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"01_run1k","values":{"total":[57.047,56.498,54.828,56.363,56.101,55.289,55.559,56.362,55.519,56.26,56.012,56.18,56.052,57.109,56.106],"script":[20.91,21,18.977,20.309,19.931,19.696,20.163,20.627,20.438,20.989,20.643,20.68,20.734,21.007,20.941],"paint":[35.674,35.054,35.405,35.601,35.719,35.156,34.936,35.275,34.593,34.815,34.919,35.058,34.876,35.657,34.713]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"02_replace1k","values":{"total":[59.809,58.275,57.525,58.92,58.357,59.009,57.957,58.704,57.693,58.775,58.331,58.868,58.536,59.129,57.856],"script":[22.014,20.658,20.921,21.646,21.796,21.776,21.387,21.479,20.476,22.079,21.732,21.377,22.031,21.906,20.805],"paint":[37.317,37.163,36.136,36.82,36.106,36.79,36.101,36.782,36.756,36.252,36.147,37.061,36.068,36.79,36.586]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.803,20.985,20.939,22.69,20.587,20.503,20.041,20.877,20.479,20.617,20.567,21.718,20.255,21.903,22.126],"script":[2.753,2.675,2.148,2.603,2.783,2.331,2.488,2.721,2.803,2.485,2.262,2.286,2.382,2.46,3.162],"paint":[16.178,16.482,17.321,17.645,16.176,16.575,16.061,15.7,16.065,16.392,16.754,17.409,16.035,17.432,17.35]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"04_select1k","values":{"total":[6.431,6.79,6.361,7.648,6.266,6.372,7.493,6.684,5.942,6.21,6.958,6.838,6.019,6.874,6.491,5.986,6.098,6.285,5.925,7.376,6.617,6.504,7.437,5.987,6.944],"script":[3.635,4.52,3.594,4.83,3.997,3.639,4.346,3.408,3.327,3.641,3.957,3.674,3.552,3.982,3.237,3.243,3.155,3.715,3.375,3.993,3.791,4.464,4.561,3.248,4.202],"paint":[2.062,2.14,2.65,2.685,1.487,2.301,2.489,3.156,2.492,2.014,2.838,2.676,1.787,2.366,2.434,2.618,1.902,2.451,2.421,2.976,2.049,1.205,2.285,1.974,1.929]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"05_swap1k","values":{"total":[21.534,23.306,22.31,21.628,21.982,21.824,21.11,21.511,21.173,20.81,21.516,20.607,21.121,20.958,20.928],"script":[0.872,0.914,0.211,0.89,0.696,0.879,0.906,0.897,0.633,0.697,0.718,0.968,1.482,0.203,0.546],"paint":[18.683,19.749,20.01,19.28,19.247,19.51,18.469,18.738,19.088,18.678,19.55,18.26,17.783,19.43,18.676]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.762,16.765,16.541,16.607,16.992,17.183,17.559,16.743,16.271,17.064,16.781,16.655,16.549,16.68,16.58],"script":[0.162,0.221,0.442,0.12,0.115,0.308,0.369,0.131,0.155,0.111,0.12,0.384,0.447,0.327,0.442],"paint":[15.536,15.754,15.333,15.408,15.886,16.097,16.36,15.485,15.365,15.898,15.553,15.523,15.336,15.419,15.346]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"07_create10k","values":{"total":[581.786,591.965,580.581,586.434,588.927,584.878,576.931,586.809,588.227,570.888,584.89,584.896,589.025,580.514,595.971],"script":[208.187,212.025,208.932,214.148,214.054,212.084,208.248,213.45,213.32,203.855,212.289,212.302,212.671,211.029,211.858],"paint":[366.658,372.98,364.985,365.528,368.035,366.065,361.739,366.447,367.991,360.289,365.904,365.778,369.571,362.385,377.354]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[63.474,63.018,60.021,61.404,59.974,61.975,61.708,61.103,61.468,60.098,61.486,60.937,61.209,59.49,61.142],"script":[20.163,20.526,17.923,20.183,18.708,20.445,19.209,19.494,19.596,18.886,20.097,19.399,19.35,18.412,19.636],"paint":[42.368,41.543,41.205,40.3,40.363,40.579,41.557,40.724,40.946,40.309,40.475,40.615,40.925,40.14,40.588]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[20.775,20.827,19.296,18.742,19.818,19.949,20.561,20.059,18.834,20.613,19.58,20.191,18.971,20.687,19.869],"script":[18.573,18.954,16.678,16.526,17.821,17.769,18.371,18.1,16.441,18.34,17.847,17.781,17.19,19.2,18.364],"paint":[1.086,1.606,2.043,1.238,1.385,1.167,2.071,0.973,2.294,2.15,1.627,2.298,1.685,1.358,1.385]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5200681686401367]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.407238006591797]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.569584846496582]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2352485656738281]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[46.202895164489746]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[28.0068359375]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.85546875]}},{"framework":"mutraction-v0.25.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[82.2]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"01_run1k","values":{"total":[39.726,40.528,40.341,40.487,47.992,40.381,39.875,41.547,40.728,40.431,39.705,40.958,41.337,40.512,40.996],"script":[7.804,8.405,8.285,7.648,8.004,8.398,7.685,8.614,8.159,8.034,7.857,8.398,8.479,7.791,7.974],"paint":[31.756,31.969,31.862,32.662,33.456,31.804,32.054,32.755,32.393,32.127,31.673,32.372,32.712,32.545,32.855]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"02_replace1k","values":{"total":[22.989,25.978,24.342,24.473,24.487,22.754,24.326,24.514,24.09,24.316,24.209,24.24,22.845,24.719,25.773],"script":[9.113,10.486,10.004,9.822,9.86,9.044,9.958,10.142,9.425,10.073,9.651,9.984,9.147,9.758,10.051],"paint":[13.74,15.364,14.209,14.398,14.378,13.568,14.225,14.233,14.398,14.105,14.277,14.129,13.562,14.827,15.587]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[49.362,45.885,45.554,48.481,47.107,48.097,48.934,45.392,46.52,47.147,49.696,46.182,48.247,45.754,45.248],"script":[32.156,31.476,30.115,31.323,30.397,31.916,31.819,30.49,32.021,32.184,32.333,30.876,31.53,30.398,31.294],"paint":[16.519,14.283,13.646,15.17,16.47,13.889,15.855,14.78,14.373,14.825,16.058,15.191,15.972,14.733,13.213]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"04_select1k","values":{"total":[37.226,37.224,38.574,37.029,39.499,39.094,34.388,38.025,38.09,37.135,36.626,37.065,36.885,37.258,37.775,37.086,34.037,37.37,37.867,37.154,37.048,38.006,36.749,36.771,36.825],"script":[30.862,31.745,32.409,31.648,32.783,33.194,31.608,32.419,31.68,32.427,30.606,30.934,32.355,31.356,31.358,31.413,31.174,30.799,31.731,31.64,30.955,31.786,31.14,30.724,30.833],"paint":[4.502,3.902,4.519,3.164,3.968,4.543,2.289,3.055,4.254,3.705,2.834,4.529,3.699,3.076,4.868,3.252,2.694,3.113,2.911,4.092,3.716,3.581,4.054,4.31,3.585]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"05_swap1k","values":{"total":[42.366,41.858,40.914,43.655,43.649,41.582,43.851,43.329,42.712,44.349,41.665,39.821,43.936,43.481,43.45],"script":[31.171,30.415,30.922,31.467,31.081,31.905,30.702,31.54,30.466,31.642,30.63,29.546,32.621,31.946,31.463],"paint":[11.01,10.532,9.186,10.584,10.741,8.926,11.56,10.356,11.832,11.64,10.264,9.56,11.069,10.916,11.741]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[47.298,50.737,47.146,53.872,46.672,48.665,50.616,51.304,47.54,47.211,47.016,48.606,49.097,50.931,47.233],"script":[17.558,18.522,17.772,20.364,17.806,18.289,18.348,19.119,17.823,17.811,17.555,18.343,18.063,19.254,17.283],"paint":[28.689,30.964,28.645,32.598,28.458,29.374,31.068,31.275,28.943,28.658,28.478,29.444,29.871,30.556,29.074]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"07_create10k","values":{"total":[419.132,412.465,417.266,415.54,415.413,415.221,418.141,414,418.051,420.821,411.993,415.868,411.681,415.189,411.238],"script":[84.218,85.596,85.855,85.432,86.112,83.868,84.746,84.49,86.346,86.301,85.391,86.229,84.356,85.197,84.101],"paint":[332.804,324.745,329.251,327.911,327.006,329.208,331.139,327.201,329.259,332.287,324.391,327.388,325.22,327.81,325.029]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[52.479,53.568,54.485,52.154,53.68,54.308,53.212,53.232,54.627,53.891,54.009,53.957,54.255,54.931,53.927],"script":[15.667,16.195,16.164,15.549,15.099,16.611,15.715,15.913,15.976,16.367,16.395,15.665,15.249,16.003,16.181],"paint":[36.531,36.975,38.053,36.342,38.307,37.447,37.219,37.051,38.375,37.261,37.341,38.012,38.727,38.382,37.464]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.966,23.823,23.269,23.695,25.569,23.848,23.947,24.564,24.257,24.605,24.059,23.638,24.565,23.256,24.151],"script":[20.53,20.358,19.87,20.086,21.322,20.509,20.144,19.847,20.41,20.839,19.935,20.112,21.151,19.96,20.445],"paint":[3.051,3.242,2.06,3.389,3.341,2.24,3.575,3.68,2.486,2.998,3.072,2.381,3.181,3.072,2.931]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[3.443222999572754]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.948498725891113]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.050936698913574]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[3.918492317199707]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.368244171142578]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[885.853515625]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[211.638671875]}},{"framework":"openui5-v1.120.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[150]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"01_run1k","values":{"total":[46.168,44.374,44.973,45.328,46.708,45.692,44.372,45.074,44.767,46.149,44.977,45.243,44.918,44.947,45.878],"script":[10.744,9.971,10.533,10.615,10.546,10.872,10.371,10.47,10.422,10.962,10.529,10.663,10.376,10.368,10.433],"paint":[34.905,33.98,33.948,34.222,35.678,34.353,33.567,34.142,33.859,34.73,33.984,34.095,34.082,34.071,34.99]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"02_replace1k","values":{"total":[19.404,20.018,20.027,19.003,19.195,20.237,19.22,19.659,19.976,19.756,19.7,19.021,18.863,18.931,19.294],"script":[4.445,4.582,4.527,4.336,4.478,4.429,4.382,4.555,4.633,4.447,4.496,4.319,4.191,4.28,4.308],"paint":[14.496,14.916,15.036,14.246,14.246,15.305,14.436,14.615,14.808,14.821,14.735,14.283,14.245,14.241,14.519]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.747,19.993,20.748,19.908,20.607,21.114,19.924,19.418,20.565,19.374,19.785,19.856,19.42,19.967,20.314],"script":[2.953,4.067,3.969,3.724,3.826,3.706,3.731,3.383,3.624,3.703,2.955,3.364,2.887,3.337,3.747],"paint":[16.888,14.852,14.214,14.713,15.699,15.595,14.812,14.684,15.136,14.342,14.152,14.055,15.157,15.321,14.942]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"04_select1k","values":{"total":[4.641,4.05,4.346,4.532,3.995,4.674,3.991,4.579,3.696,3.293,3.92,4.855,3.834,4.079,3.475,4.443,4.218,4.697,4.884,4.087,5.29,3.851,4.248,4.096,4.203],"script":[1.618,1.251,1.223,0.934,0.947,1.714,0.639,1.735,1.098,0.934,1.11,1.23,1.011,0.987,1.195,1.336,0.983,1.19,0.895,1.222,1.497,0.61,1.009,1.127,1.012],"paint":[2.903,2.269,2.965,2.925,2.44,2.85,2.801,2.722,1.802,1.463,1.96,2.96,2.703,2.968,2.173,2.225,2.561,3.397,2.779,2.758,2.676,3.122,3.125,2.665,1.818]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"05_swap1k","values":{"total":[13.239,14.765,13.026,13.412,13.499,13.177,12.024,12.606,12.489,13.735,12.01,12.08,12.843,11.972,12.722],"script":[1.773,1.651,1.044,0.972,1.734,1.645,1.137,1.092,1.224,1.44,0.675,1.165,1.039,1.048,1.243],"paint":[10.703,11.06,9.547,11.145,9.751,10.843,9.284,9.497,9.963,10.668,9.968,9.941,10.438,9.157,9.344]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[39.261,39.894,38.611,38.832,39.021,39.365,39.234,39.761,39.842,39.329,39.81,39.275,42.003,39.124,39.27],"script":[8.507,8.981,7.969,8.188,7.97,8.446,8.536,9.075,8.755,8.31,8.144,8.654,8.586,8.427,8.509],"paint":[29.908,29.742,29.854,29.522,30.177,29.844,29.528,29.85,29.96,30.035,30.399,29.483,32.29,29.72,29.944]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"07_create10k","values":{"total":[581.739,573.588,569.517,585.152,580.4,569.151,587.029,570.88,581.387,562.901,578.396,571.876,568.063,572.38,590.325],"script":[210.002,205.684,202.348,207.22,205.925,203.289,209.776,203.651,207.423,198.306,208.515,205.119,200.002,202.286,206.061],"paint":[364.722,361.067,360.218,370.853,367.488,358.924,370.01,360.378,366.996,357.75,363.045,359.794,360.471,363.215,377.412]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[69.992,68.49,68.892,69.331,69.602,69.595,70.532,71.009,68.813,67.677,70.512,69.168,69.265,70.791,71.009],"script":[27.881,26.69,26.754,26.673,27.125,27.142,26.87,27.787,26.485,26.155,28.394,27.165,27.051,27.962,27.541],"paint":[41.166,40.852,41.243,41.705,41.477,41.514,42.744,42.187,41.406,40.598,41.162,41.061,41.266,41.889,42.594]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.431,22.848,24.814,20.657,22.037,20.869,22.92,21.087,22.679,21.98,25.225,23.046,22.318,23.906,23.335],"script":[23.559,21.196,23.056,18.945,19.868,19.394,20.335,19.261,20.26,19.756,23.221,21.282,20.297,21.084,21.321],"paint":[2.747,1.555,0.866,1.623,2.077,1.384,2.456,1.726,2.324,2.115,1.896,1.663,1.424,2.273,1.912]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8830146789550781]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[5.188199043273926]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[5.265582084655762]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.54459285736084]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[39.692381858825684]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[57.80859375]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[15.017578125]}},{"framework":"quel-v0.9.51-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[100.3]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"01_run1k","values":{"total":[56.795,60.882,59.545,60.982,60.228,59.656,59.54,58.195,59.367,59.779,56.882,58.565,59.027,57.039,59.614],"script":[23.447,25.877,26.059,27.128,26.529,26.289,25.885,25.137,26.117,25.851,24.66,24.797,25.73,23.913,26.025],"paint":[32.887,34.538,33.049,33.413,33.257,32.907,33.196,32.63,32.809,33.462,31.762,33.331,32.857,32.683,33.167]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"02_replace1k","values":{"total":[17.499,17.377,17.186,17.569,17.228,17.131,17.592,17.688,18.54,17.048,17.191,17.541,19.06,17.345,17.36],"script":[3.018,3.018,2.701,2.835,3.025,3.077,2.936,3.107,2.96,3.007,2.872,2.89,3.026,3.002,2.887],"paint":[14.058,13.932,14.032,14.327,13.815,13.667,14.284,14.074,15.142,13.631,13.899,14.281,15.616,13.926,14.106]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.799,18.753,19.743,20.404,18.839,19.538,19.506,18.551,19.01,18.978,19.655,18.67,19.076,19.022,19.246],"script":[3.752,3.72,4.036,3.795,3.671,3.598,3.686,3.81,3.646,3.66,3.105,3.553,3.428,3.826,3.478],"paint":[14.476,13.283,13.505,15.358,14.203,13.385,13.99,13.393,13.942,13.799,14.868,14.037,13.644,14.517,13.45]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"04_select1k","values":{"total":[9.151,9.325,8.582,8.333,8.578,7.665,8.338,7.168,7.688,8.621,9.328,8.034,7.286,7.219,8.913,7.73,7.239,7.439,8.742,7.766,7.573,8.006,8.714,8.589,8.42],"script":[5.916,6.913,6.208,5.217,5.79,5.166,5.351,5.125,4.668,6.349,6.406,5.209,4.775,4.958,6.193,4.971,4.716,5.197,6.215,4.705,4.887,5.422,5.763,5.75,5.728],"paint":[2.522,1.999,1.912,1.988,1.913,1.589,1.874,1.184,2.758,1.731,2.05,2.698,1.749,1.704,2.574,2.279,2.328,1.883,1.554,2.034,2.558,1.619,2.811,1.849,1.731]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"05_swap1k","values":{"total":[13.087,12.752,13.075,12.576,12.939,12.499,13.052,13.025,12.896,13.19,12.569,12.77,12.347,12.327,13.154],"script":[1.811,1.44,2.01,1.93,1.604,1.969,1.555,1.101,2.176,2.123,1.671,1.381,1.876,2.014,1.404],"paint":[8.743,9.916,9.555,9.188,10.314,9.048,10.484,9.842,9.143,9.992,9.573,10.077,9.087,9.054,9.928]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.806,36.649,35.431,35.428,34.997,35.801,35.471,35.715,35.617,35.533,36.35,35.582,35.652,35.573,35.349],"script":[5.537,5.864,5.25,5.528,5.603,5.598,5.6,5.478,5.642,5.597,5.597,5.495,5.421,5.92,5.518],"paint":[29.126,29.827,28.831,29.169,28.521,29.165,28.963,29.482,28.609,28.859,29.854,28.735,29.429,28.537,29.076]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"07_create10k","values":{"total":[574.603,573.359,571.48,570.379,564.348,575.885,576.332,570.429,576.372,576.235,571.601,569.046,567.602,578.049,572.119],"script":[216.894,216.699,217.687,218.789,213.366,217.886,217.711,218.273,218.718,218.357,217.867,217.335,217.363,224.083,219.704],"paint":[350.614,349.812,346.781,344.844,344.12,351.19,351.869,345.431,351.035,351.091,347.037,345.093,343.621,346.953,345.264]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[61.298,61.29,60.458,61.474,61.565,61.549,60.581,61.717,62.346,60.737,61.312,63.599,61.732,64.072,62.002],"script":[21.344,22.312,21.758,22.328,21.314,22.511,21.218,22.11,22.609,21.306,21.824,22.923,21.701,22.342,22.297],"paint":[39.054,38.08,37.877,38.265,39.363,38.18,38.45,38.728,38.833,38.527,38.593,39.789,39.127,40.806,38.833]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.444,28.691,29.044,27.44,30.61,28.24,27.75,26.49,27.505,28.642,28.228,30.078,29.258,27.94,28.386],"script":[26.066,26.808,26.623,25.094,28.508,25.958,25.657,24.663,25.059,26.252,26.279,27.266,27.339,26.376,26.009],"paint":[2.258,1.768,2.31,2.23,0.933,2.171,1.97,1.716,1.533,2.274,1.842,2.677,1.811,1.454,1.617]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.1113262176513672]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[8.716071128845215]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[8.882790565490723]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.475168228149414]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[72.92078399658203]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[224.068359375]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[58.767578125]}},{"framework":"ractive-v1.3.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[320.9]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"01_run1k","values":{"total":[45.789,46.693,46.271,47.117,46.641,46.602,46.522,47.126,46.992,47.218,47.424,46.87,45.884,47.186,48.014],"script":[12.806,13.011,12.539,12.616,12.899,12.976,12.806,13.663,13.419,13.39,13.206,12.77,12.683,13.426,12.945],"paint":[32.549,33.255,33.307,34.082,33.333,33.212,33.29,33.034,33.144,33.387,33.797,33.675,32.787,33.352,34.658]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"02_replace1k","values":{"total":[19.402,19.256,20.169,19.201,18.656,19.07,19.251,19.007,19.278,19.325,19.649,18.899,19.552,19.193,19.096],"script":[4.77,4.87,4.553,4.72,4.445,4.833,4.845,4.712,4.961,4.644,4.891,4.702,4.581,4.847,4.71],"paint":[14.161,13.975,15.191,14.054,13.79,13.792,13.994,13.867,13.906,14.274,14.284,13.808,14.508,13.939,13.935]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[23.32,21.114,20.387,21.627,21.778,20.923,22.205,21.418,21.076,22.696,21.733,21.494,22.078,21.959,21.613],"script":[6.097,4.578,4.853,5.863,5.849,5.325,5.68,6.014,5.681,5.284,5.841,5.284,5.94,5.505,4.841],"paint":[15.395,15.443,14.183,14.233,14.35,14.663,14.581,13.597,14.042,16.012,14.015,14.426,14.84,15.718,15.215]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"04_select1k","values":{"total":[6.103,5.846,6.348,5.715,5.492,5.101,6.065,5.056,6.57,4.95,6.472,5.298,5.854,5.792,6.146,5.902,5.896,5.891,6.607,6.094,5.872,6.005,5.663,6.34,5.75],"script":[3.247,2.334,2.305,2.346,3.031,2.639,3.188,2.542,3.605,2.553,3.208,2.518,3.346,2.554,3.387,2.536,3.161,2.854,3.266,2.595,3.182,2.834,3.329,2.836,2.948],"paint":[2.005,2.891,3.903,1.831,2.352,2.204,2.725,1.872,2.099,2.283,2.707,2.054,1.57,2.045,2.63,3.21,2.587,2.629,2.665,2.952,1.979,3.043,1.245,2.347,2.654]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"05_swap1k","values":{"total":[13.55,14.195,13.794,13.128,15.028,14.269,14.632,14.643,14.474,14.836,14.495,13.922,14.491,13.835,14.431],"script":[2.175,3.069,2.496,2.079,3.639,2.924,3.538,2.989,3.16,3.165,3.178,2.895,2.792,2.558,3.203],"paint":[10.248,10.397,10.057,9.968,10.172,10.036,10.023,10.339,9.466,9.884,10.317,9.903,9.951,10.271,9.163]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.877,39.293,38.773,38.568,38.568,38.923,39.478,42.241,38.577,38.903,39.006,41.587,38.572,40.222,41.494],"script":[8.76,8.665,8.592,8.558,8.146,8.47,8.591,8.944,8.374,8.29,8.685,8.617,8.225,9.672,8.58],"paint":[29.316,29.432,29.071,29.348,29.689,29.698,29.662,32.19,29.481,29.889,29.204,32.115,29.606,29.734,31.665]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"07_create10k","values":{"total":[606.847,606.577,607.865,602.148,606.127,603.337,582.096,605.087,602.065,610.372,607.216,599.182,600.756,607.103,602.861],"script":[253.606,253.05,253.419,253.687,254.556,251.811,246.504,252.409,250.634,255.593,254.394,250.049,248.671,254.453,252.488],"paint":[346.097,346.687,347.576,341.688,344.84,344.744,328.871,345.613,344.639,344.668,346.069,342.376,345.343,345.861,343.572]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.541,53.621,51.411,52.679,50.742,51.866,52.597,50.457,51.433,50.277,52.246,52.687,50.717,52.229,51.566],"script":[12.576,13.466,12.541,12.687,12.84,12.774,13.127,12.425,13.084,12.86,13.21,13.367,13.052,13.125,12.874],"paint":[37.063,39.183,37.922,38.887,37.006,38.098,38.555,37.124,37.423,36.491,38.13,38.283,36.746,38.172,37.786]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.19,15.239,15.195,13.728,15.09,14.999,15.814,15.172,14.97,14.621,15.899,15.73,15.808,14.985,15.316],"script":[13.178,13.067,13.616,11.913,13.408,12.845,13.591,12.8,12.783,12.883,14.402,13.772,13.973,13.212,13.592],"paint":[1.467,1.222,0.917,1.719,0.78,1.168,2.124,2.288,0.996,1.641,1.4,1.866,1.027,1.298,1.624]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.9869413375854492]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.39421272277832]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.914580345153809]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.830296516418457]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.720491409301758]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[143.240234375]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[40.1767578125]}},{"framework":"react-classes-v18.2.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[224.4]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"01_run1k","values":{"total":[42.915,43.325,45.094,45.209,43.877,42.762,44.064,44.467,44.007,43.179,43.811,42.914,43.546,42.795,43.015],"script":[9.637,9.59,9.627,10.755,9.967,9.608,9.806,9.786,9.508,9.531,9.784,9.622,9.608,10.231,9.694],"paint":[32.837,33.316,35.044,34.026,33.482,32.72,33.822,34.242,34.009,33.197,33.605,32.878,33.483,32.095,32.852]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.061,16.06,16.648,16.844,15.793,15.662,15.656,15.704,16.644,16.429,16.138,16.021,16.633,16.303,17.547],"script":[1.546,1.492,1.605,1.392,1.398,1.389,1.36,1.414,1.628,1.473,1.498,1.562,1.518,1.488,1.48],"paint":[14.099,14.21,14.571,14.998,13.983,13.845,13.888,13.885,14.567,14.586,14.284,14.096,14.751,14.454,15.641]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.831,17.219,17.103,17.282,18.237,18.168,17.586,18.021,18.877,18.364,18.483,18.136,17.043,18.513,18.437],"script":[1.913,1.818,1.524,1.029,2.21,1.984,1.409,2.366,1.622,2.018,1.785,1.833,1.588,2.098,2.222],"paint":[14.13,13.883,13.404,15.119,14.005,15.168,15.116,14.276,15.228,14.832,15.199,14.684,13.207,14.351,15.229]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.948,2.907,3.446,3.514,3.624,3.327,3.427,3.709,5.776,3.437,3.381,3.104,3.577,4.951,3.053,2.989,2.775,3.585,3.142,3.972,3.996,3.279,2.869,3.673,3.714],"script":[1.305,0.225,0.677,0.891,1.458,0.479,0.922,0.882,0.879,1.251,0.898,0.976,1.755,1.645,0.857,0.922,0.92,1.533,1.203,0.835,1.429,0.222,1.042,1.491,1.703],"paint":[2.531,2.196,2.263,2.527,1.535,1.734,2.396,2.518,2.63,1.321,2.374,1.73,1.307,1.653,0.862,1.486,1.736,1.566,1.125,3.031,1.723,2.519,1.714,2.076,1.23]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"05_swap1k","values":{"total":[12.239,12.164,12.682,12.558,12.376,12.626,12.213,12.405,12.279,12.645,13.107,11.836,12.178,13.164,12.493],"script":[0.663,1,1.328,1.37,0.967,1.386,1.699,0.639,1.537,1.205,1.386,0.944,0.94,0.29,1.114],"paint":[10.298,9.737,9.824,9.576,9.773,9.74,8.87,10.238,9.342,9.702,10.732,9.958,9.976,10.695,9.991]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.438,35.758,34.691,33.727,34.762,33.134,33.585,33.819,33.597,35.065,33.634,33.423,33.05,33.685,35.543],"script":[2.797,3.152,2.953,3.054,2.914,2.616,3.044,2.613,3.004,3.067,3.064,2.84,2.948,2.836,3.399],"paint":[29.617,31.748,30.577,29.522,30.77,29.819,29.767,30.258,29.874,30.917,29.777,29.684,29.366,29.732,31.332]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"07_create10k","values":{"total":[442.648,444.715,445.112,442.11,444.499,447.417,442.895,445.342,443.22,442.556,445.683,445.968,443.621,446.272,443.688],"script":[103.729,100.756,102.358,101.608,101.38,104.743,102.351,103.397,100.76,102.557,101.573,103.816,101.965,100.794,101.064],"paint":[332.227,337.394,336.24,333.801,336.382,335.994,333.942,335.26,335.835,333.334,337.44,335.452,334.952,338.805,335.947]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.983,50.025,49.341,51.131,48.624,49.016,46.699,49.807,49.67,50.278,49.376,49.252,48.927,50.283,49.613],"script":[10.501,11.063,10.85,11.044,10.201,10.372,8.578,10.28,10.984,11.247,10.179,10.643,10.503,10.973,10.297],"paint":[38.58,38.04,37.616,39.149,37.49,37.695,37.217,38.515,37.797,38.097,38.26,37.656,37.471,38.4,38.361]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.096,14.501,14.681,14.431,14.137,13.66,15.462,13.665,14.054,13.785,14.526,14.987,14.282,14.396,14.085],"script":[11.719,12.341,12.661,12.046,11.855,11.914,13.467,11.816,12.292,12.334,12.079,12.791,12.531,12.899,12.253],"paint":[1.98,1.601,1.919,1.887,2.188,1.645,1.295,1.008,0.939,1.354,2.168,2.081,0.867,0.908,1.736]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4919414520263672]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.445683479309082]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.590097427368164]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.4091501235961914]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.20994281768799]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.4873046875]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.2451171875]}},{"framework":"redom-v3.29.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.4]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"01_run1k","values":{"total":[120.522,125.195,119.787,126.959,127.847,120.883,121.636,125.514,119.989,121.095,121.38,121.9,123.604,119.277,124.151],"script":[85.394,88.451,84.14,91.633,92.382,85.012,86.394,88.407,83.795,85.64,86,86.484,88.263,84.072,88.151],"paint":[34.922,36.529,35.445,35.115,35.253,35.654,35.026,36.889,35.971,35.248,35.141,35.192,35.118,34.99,35.788]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"02_replace1k","values":{"total":[136.111,132.144,132.715,132.849,133.991,130.75,129.406,131.536,129.775,129.895,133.1,132.665,131.328,130.133,130.283],"script":[104.67,100.637,101.361,101.466,102.497,98.904,98.192,100.321,98.339,98.36,101.533,101.495,100.105,98.653,98.939],"paint":[31.23,31.296,31.126,31.175,31.277,31.612,31.001,31.004,31.21,31.301,31.353,30.949,30.991,31.26,31.131]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[79.689,75.698,78.988,80.571,79.241,78.142,78.736,79.134,75.526,77.03,74.742,77.088,76.485,79.783,79.147],"script":[44.725,42.718,43.983,46.535,47.236,42.572,45.019,46.958,44.029,45.183,42.954,43.355,44.431,45.534,43.099],"paint":[33.14,30.257,33.617,33.401,31.824,35.036,33.092,31.737,31.085,31.033,31.023,31.631,31.086,32.493,32.038]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"04_select1k","values":{"total":[39.177,39.609,44.868,43.824,41.938,42.109,41.549,37.301,44.783,43.998,41.421,45.737,44.436,41.357,39.749,47.199,39.589,42.9,46.353,40.491,41.809,40.988,45.706,44.899,43.545],"script":[8.34,7.427,7.739,7.773,6.314,6.51,6.412,7.197,7.112,6.409,7.145,6.165,7.271,6.121,5.703,7.514,7.355,7.945,7.186,6.127,6.057,5.918,6.294,7.645,7.676],"paint":[25.124,24.349,24.902,24.997,24.769,24.042,23.636,23.345,26.188,25.541,24.312,26.142,25.868,25.694,26.688,25.584,23.217,24.265,25.081,24.951,25.162,24.389,25.651,24.881,24.409]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"05_swap1k","values":{"total":[24.319,57.761,25.194,24.733,56.957,25.402,25.194,24.809,57.259,24.68,57.145,24.568,56.039,25.629,25.754],"script":[6.522,7.331,6.381,6.686,8.119,6.663,6.257,6.838,7.314,6.32,7.99,6.622,8.699,6.174,6.825],"paint":[16.172,21.323,17.793,17.91,19.364,17.828,17.339,17.572,19.679,18.225,20.009,17.814,19.4,18.691,18.797]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[22.499,20.369,24.243,23.155,24.893,24.827,25.501,26.149,23.656,24.376,27.247,20.681,22.514,29.698,24.639],"script":[2.533,2.485,2.274,2.637,2.309,2.811,2.35,3.101,3.053,2.502,2.572,2.206,2.359,2.685,2.445],"paint":[16.475,15.946,16.169,15.665,15.833,16.66,15.367,16.216,15.986,15.059,16.917,15.403,15.643,15.523,15.683]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"07_create10k","values":{"total":[1022.267,1024.341,1018.437,1033.393,994.978,1014.298,1020.556,1040.878,1031.098,1022.003,990.989,996.791,1021.622,1013.051,1021.519],"script":[644.128,641.379,639.991,652.131,629.969,636.955,639.817,662.129,653.251,639.315,626.341,635.187,643.734,632.065,639.359],"paint":[374.883,380.092,375.567,378.504,362.326,374.527,375.492,376.044,375.144,379.527,361.885,358.862,375.221,375.998,377.38]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[114.612,115.788,117.858,116.23,120.506,113.881,115.903,114.03,118.38,114.065,114.135,116.819,119.472,116.735,117.675],"script":[74.407,75.918,76.359,75.944,80.27,74.205,75.933,74.543,75.946,74.462,74.582,76.238,79.124,77.076,77.346],"paint":[39.88,39.55,41.167,39.956,39.917,39.35,39.641,39.17,42.113,39.275,39.236,40.239,40.021,39.306,40.014]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[82.541,82.811,83.737,80.477,81.928,81.349,84.048,85.84,81.285,84.436,80.199,80.5,83.144,83.166,82.476],"script":[79.593,81.37,80.122,78.744,79.094,77.59,81.404,80.664,76.722,79.27,77.691,78.694,80.902,78.817,79.962],"paint":[2.818,0.833,3.347,1.617,2.696,3.497,2.286,3.717,3.786,4.151,1.088,1.571,2.12,2.564,1.522]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[8.079695701599121]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[21.804302215576172]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[25.147835731506348]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[41.19637870788574]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[128.50971794128418]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[2739.7021484375]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[264.0654296875]}},{"framework":"reflex-dom-v0.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[3495.6]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"01_run1k","values":{"total":[40.356,39.871,39.463,38.526,39.417,38.795,39.131,39.919,39.755,40.304,38.676,38.191,38.874,37.334,39.996],"script":[4.961,4.932,4.724,4.666,4.585,4.662,4.935,4.721,4.949,4.943,4.732,4.904,4.434,4.683,4.879],"paint":[34.971,34.503,34.335,33.431,34.391,33.718,33.764,34.784,34.398,34.944,33.528,32.893,34.01,32.235,34.677]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"02_replace1k","values":{"total":[17.803,16.648,16.756,18.12,17.355,16.952,16.843,17.269,17.129,17.371,18.217,17.352,17.056,17.182,17.341],"script":[2.16,2.205,2.226,2.732,2.25,2.35,2.406,2.441,2.459,2.409,2.403,2.461,2.422,2.473,2.434],"paint":[15.155,13.994,14.065,14.889,14.582,14.161,13.984,14.436,14.219,14.57,15.358,14.494,14.251,14.266,14.507]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.892,20.212,20.148,19.875,20.559,19.155,20.014,22.001,19.476,20.668,20.141,19.678,19.357,21.669,19.852],"script":[3.609,3.814,3.912,4.205,3.974,3.794,4.008,3.964,3.223,3.31,4.195,3.744,3.681,4.537,3.973],"paint":[14.228,13.517,14.633,14.25,15.431,13.732,14.251,15.623,14.861,15.836,14.264,14.637,14.4,14.737,14.534]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"04_select1k","values":{"total":[6.214,6.113,6.182,5.92,6.085,6.121,5.608,5.478,5.891,8.363,5.823,6.41,6.635,5.694,5.829,6.126,6.713,5.497,6.429,6.187,6.02,6.29,6.079,5.414,6.652],"script":[3.377,3.363,3.644,3.264,3.393,3.932,2.919,3.279,2.853,4.024,3.398,3.808,4,3.364,3.093,3.099,3.366,3.1,3.617,3.381,3.442,3.394,3.563,3.155,3.605],"paint":[2.717,1.888,2.408,2.208,2.277,2.073,1.878,1.716,2.536,3.338,2.22,2.457,2.488,1.403,1.687,2.901,3.225,2.277,2.658,2.668,1.451,2.758,2.378,1.465,2.902]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"05_swap1k","values":{"total":[17.026,14.779,16.55,16.18,17.773,16.203,16.676,17.127,16.979,16.937,16.651,16.824,14.889,15.088,16.07],"script":[5.852,3.028,5.01,4.805,5.118,5.085,4.651,5.18,4.77,5.497,5.107,5.392,3.588,3.141,4.896],"paint":[9.25,9.801,9.303,9.828,10.737,9.92,11.329,10.501,10.758,8.952,9.217,9.955,10.265,10.667,9.581]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[36.825,35.753,36.131,36.378,36.357,35.054,36.735,39.554,36.727,36.349,36.183,35.97,36.087,36.187,35.504],"script":[5.955,4.799,4.85,4.946,5.105,4.892,5.041,5.55,5.909,5.02,5.374,4.926,4.732,5.061,4.843],"paint":[29.782,29.884,30.311,30.675,30.468,29.031,30.524,33.144,30.002,30.571,29.483,30.287,30.238,29.982,29.586]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"07_create10k","values":{"total":[417.519,422.563,414.638,423.79,417.32,420.599,420.813,419.77,416.228,422.921,417.16,417.638,417.751,417.027,418.464],"script":[59.563,62.157,59.102,61.811,61.707,62.875,60.622,60.834,60.737,61.445,60.388,59.299,61.178,57.329,59.016],"paint":[350.348,352.759,348.106,354.355,347.991,349.921,352.72,351.38,347.974,354.076,349.24,350.925,348.986,352.356,352.105]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[46.42,45.426,47.073,46.43,44.837,45.296,45.254,45.726,45.467,45.43,46.263,45.022,46.963,45.859,45.942],"script":[5.934,5.508,5.831,6.22,5.957,5.991,5.62,6.23,5.679,5.868,5.425,5.831,6.014,5.811,5.855],"paint":[39.507,39.042,40.338,39.257,38.006,38.401,38.831,38.664,38.865,38.604,39.988,38.264,40.052,39.09,39.16]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.165,12.823,12.764,13.13,13.007,13.736,13.767,13.551,12.669,12.75,12.768,12.694,12.876,12.467,13.168],"script":[11.561,11.03,10.807,11.27,11.13,11.366,11.601,11.603,11.309,11.054,11.453,10.771,10.453,10.851,11.72],"paint":[0.366,1.13,1.863,1.773,1.425,1.269,2.071,1.419,0.708,1.585,1.223,1.838,2.329,1.19,1.343]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.6938457489013672]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.06345272064209]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9527387619018555]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9288501739501953]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.566624641418457]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[32.2421875]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.921875]}},{"framework":"reken-v0.9.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.7]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"01_run1k","values":{"total":[46.44,47.7,45.647,48.827,46.478,46.282,48.544,45.275,45.047,46.007,45.973,46.747,44.547,48.116,46.446],"script":[12.179,12.392,11.692,12.126,11.533,12.611,12.728,11.726,11.494,12.28,12.093,12.549,11.554,12.219,11.951],"paint":[33.808,34.86,33.499,36.241,34.502,33.233,35.37,33.105,33.094,33.275,33.428,33.757,32.556,35.448,34.047]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"02_replace1k","values":{"total":[16.983,16.668,17.164,17.021,17.043,17.658,16.851,17.142,16.843,17.228,16.786,18.206,16.819,16.557,16.842],"script":[2.281,2.304,2.4,2.475,2.349,2.359,2.289,2.305,2.317,2.484,2.281,2.425,2.27,2.129,2.545],"paint":[14.242,13.96,14.343,14.101,14.237,14.748,14.151,14.364,14.113,14.295,14.05,15.324,14.137,14.034,13.846]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[21.872,22.884,22.14,21.511,22.265,21.976,24.035,21.075,22.585,21.626,22.438,21.562,23.594,21.684,21.693],"script":[5.601,6.534,6.495,6.066,6.383,6.038,6.768,5.314,6.863,6.362,6.015,5.58,7.195,5.707,6.422],"paint":[14.485,14.484,14.108,13.911,14.615,14.045,15.362,14.3,14.66,14.304,14.406,15.008,15.4,14.764,13.961]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"04_select1k","values":{"total":[8.231,8.05,8.905,8.298,8.231,7.93,8.52,8.575,8.288,8.023,8.506,8.652,7.639,8.53,7.989,8.443,8.578,8.076,8.093,9.18,8.316,8,8.31,8.087,7.062],"script":[5.576,5.589,6.09,5.454,5.627,5.535,5.365,5.769,5.379,5.431,5.547,5.789,5.454,5.633,5.41,5.546,5.107,5.217,5.528,6.164,5.69,5.195,6.156,5.2,4.849],"paint":[2.039,1.835,1.753,1.944,1.984,2.227,2.013,1.996,1.905,1.549,2.04,2.709,2.043,2.009,1.592,1.995,2.948,1.888,2.211,2.337,1.585,1.938,1.998,1.731,1.437]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"05_swap1k","values":{"total":[16.51,16.803,16.935,16.824,17.311,17.074,16.472,16.364,17.661,16.418,17.561,16.358,16.242,17.171,16.665],"script":[4.942,5.2,5.59,5.743,5.723,5.493,5.127,5.485,5.89,5.294,5.562,5.863,5.53,5.643,5.108],"paint":[10.137,10.269,10.272,10.358,10.483,9.411,9.414,9.647,9.896,9.3,9.304,9.095,9.479,9.825,10.222]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.031,39.408,34.448,35.624,35.35,33.851,36.082,35.767,34.189,34.386,34.205,35.759,34.046,35.058,34.877],"script":[4.33,4.418,3.777,4.178,3.878,3.702,4.297,3.912,4.153,4.178,4.247,4.493,3.845,4.368,4.305],"paint":[29.63,33.848,29.674,30.03,30.252,28.683,30.951,30.804,28.896,29.031,29.01,30.433,29.476,29.774,29.542]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"07_create10k","values":{"total":[487.035,476.303,480.357,474.661,481.018,473.166,478.086,483.003,478.318,476.958,472.822,474.664,485.079,483.142,473.887],"script":[132.253,131.034,132.692,128.708,131.873,128.188,129.961,131.519,129.105,131.141,130.014,129.505,133.742,130.507,127.78],"paint":[346.887,338.447,340.857,339.206,342.348,338.188,341.375,344.484,342.451,339.05,336.008,338.414,344.688,345.82,339.339]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[56.519,53.388,53.726,55.158,54.771,54.437,56.696,55.507,54.328,53.703,55.771,54.73,53.802,54.919,54.607],"script":[14.622,12.696,13.27,14.1,13.4,13.829,14.14,13.787,13.322,13.183,13.931,13.104,13.249,13.3,13.592],"paint":[40.933,39.784,39.553,40.13,40.458,39.685,41.579,40.875,40.078,39.611,40.936,40.768,39.667,40.718,40.073]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[24.773,23.176,24.378,23.528,23.34,23.916,23.429,24.754,23.39,22.806,21.44,22.368,23.408,22.333,21.582],"script":[22.778,20.462,22.11,21.235,22.043,21.451,21.509,22.246,21.186,21.062,19.415,21.276,21.589,20.197,19.137],"paint":[1.224,2.125,1.975,1.398,0.469,2.347,1.791,2.39,1.847,1.318,1.071,0.991,1.715,2.028,1.919]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5326061248779297]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.638944625854492]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.6497344970703125]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9048614501953125]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[30.614426612854004]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[19.1796875]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[6.337890625]}},{"framework":"riot-v9.1.4-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[78.5]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"01_run1k","values":{"total":[40.241,39.559,39.992,39.578,39.77,40.11,39.602,40.252,40.657,43.194,41.35,40.282,39.405,39.078,40.014],"script":[7.163,6.761,6.677,6.641,6.731,6.548,6.573,7.248,7.355,6.863,7.147,7.076,6.74,6.65,7.224],"paint":[32.659,32.396,32.914,32.511,32.62,33.172,32.617,32.608,32.897,35.86,33.777,32.802,32.269,32.029,32.373]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"02_replace1k","values":{"total":[17.158,17.2,16.623,17.869,18.014,18.102,18.551,17.553,17.913,17.927,17.226,18.699,18.03,18.261,17.244],"script":[2.635,2.641,2.34,2.433,2.397,2.53,2.711,3,2.701,2.451,2.85,2.579,2.475,2.534,2.418],"paint":[14.105,14.117,13.879,15.018,15.208,15.143,15.44,14.107,14.777,15.047,13.938,15.702,15.154,15.333,14.434]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[18.163,19.161,18.376,17.765,18.669,17.866,17.641,18.085,17.775,17.318,17.746,17.668,19.002,17.841,16.701],"script":[2.876,2.885,2.791,2.276,2.462,1.944,2.379,2.771,1.91,2.597,2.793,2.448,2.541,2.351,1.732],"paint":[14.305,14.428,13.832,12.955,14.665,14.791,13.067,13.971,14.767,13.737,13.42,13.903,15.032,13.537,13.159]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"04_select1k","values":{"total":[5.004,3.613,4.451,3.567,3.779,3.898,2.845,3.709,6.869,4.016,3.256,5.38,3.3,5.229,3.709,3.427,3.348,3.148,2.774,3.906,3.637,4.932,3.681,3.723,3.083],"script":[1.292,0.943,1.217,0.624,1.574,1.977,1.333,1.213,1.28,1.772,1.19,1.231,1.29,0.942,1.235,1.348,1.156,1.26,0.815,1.56,0.973,1.545,1.484,1.428,1.254],"paint":[1.829,1.168,3.121,2.837,2.101,1.813,1.066,0.54,2.554,1.353,1.248,2.963,1.219,1.53,2.368,1.981,1.614,1.113,0.998,1.492,2.561,1.294,1.424,1.287,1.431]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"05_swap1k","values":{"total":[12.231,12.054,12.163,12.424,12.707,11.452,12.51,11.689,11.846,12.294,11.664,12.533,11.991,11.968,12.29],"script":[1.515,1.366,1.054,0.889,1.273,1.591,1.565,0.58,1.357,1.468,0.609,0.587,0.921,0.894,1.428],"paint":[9.341,8.962,9.666,9.763,10.219,7.708,9.339,9.254,8.727,9.416,9.742,10.396,10.035,9.225,9.637]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.743,38.093,35.557,37.442,34.651,37.411,34.916,34.446,35.328,35.657,33.95,35.854,34.583,35.502,34.665],"script":[4.708,4.63,4.741,4.544,4.892,4.383,4.913,4.774,4.947,4.422,4.9,4.99,4.532,5.419,4.923],"paint":[34.895,32.327,29.854,31.952,28.713,32.237,28.891,28.706,29.441,30.152,28.302,29.45,28.871,29.288,28.971]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"07_create10k","values":{"total":[417.879,418.063,422.917,401.709,419.015,401.202,404.001,426.011,404.706,421.39,422.863,420.157,418.607,418.193,425.13],"script":[79.225,79.138,81.544,73.255,78.233,76.39,75.393,84.117,75.66,80.286,80.719,79.542,78.918,75.503,80.978],"paint":[332.02,332.342,334.555,321.828,333.776,318.253,322.004,334.519,322.242,334.353,335.55,333.902,332.378,336.086,337.452]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.556,45.203,45.398,44.872,46.745,45.12,45.977,46.172,45.815,46.542,45.194,45.139,46.008,45.357,46.605],"script":[8.016,6.946,7.217,7.128,7.627,7.078,7.021,7.544,7.07,7.188,7.01,7.019,7.601,7.137,7.257],"paint":[38.643,37.383,37.331,36.941,38.222,37.228,38.15,37.738,37.848,38.464,37.302,37.233,37.554,37.248,38.47]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.609,16.043,15.902,16.213,16.379,15.255,15.902,15.537,15.69,15.984,15.144,16.598,15.452,16.309,16.519],"script":[13.73,14.153,14.091,14.039,14.153,13.989,13.831,14.375,14.214,14.654,13.84,14.301,13.801,14.695,14.825],"paint":[1.782,1.791,1.634,2.077,1.332,0.381,1.982,0.389,1.373,1.249,0.684,1.248,1.199,1.173,1.6]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8001441955566406]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.4340925216674805]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.633708953857422]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.1238336563110352]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[26.059785842895508]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[71.0341796875]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[17.8583984375]}},{"framework":"san-v3.12.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[117.1]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"01_run1k","values":{"total":[42.053,42.905,43.24,43.407,42.636,42.601,42.865,42.709,42.291,42.597,41.74,44.187,42.957,42.651,43.194],"script":[7.679,8.266,8.169,8.234,8.211,8.53,8.109,8.271,7.496,8.267,7.476,8.056,8.267,8.307,8.383],"paint":[33.914,34.18,34.612,34.7,33.989,33.624,34.312,33.94,34.333,33.882,33.828,35.654,34.241,33.908,34.357]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"02_replace1k","values":{"total":[23.068,15.82,16.417,18.549,21.955,17.908,16.984,15.763,17.765,17.911,19.169,22.305,16.335,16.793,21.217],"script":[1.685,1.54,1.509,1.623,1.609,1.574,1.533,1.518,1.532,1.639,1.67,1.694,1.646,1.577,1.625],"paint":[13.781,13.541,13.576,13.792,13.51,14.196,14.02,13.863,14.088,14.655,14.15,14.402,14.286,15.072,13.645]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.566,19.774,18.939,32.572,16.509,18.421,19.285,18.219,18.622,18.306,17.624,17.131,18.149,17.263,17.165],"script":[2.191,2.724,1.108,1.854,1.62,1.207,1.104,1.953,1.578,1.561,1.32,1.246,1.489,1.883,2.349],"paint":[15.258,14.275,16.525,14.452,13.854,15.835,16.372,15.272,15.031,14.785,15.116,15.391,15.275,15.248,14.701]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"04_select1k","values":{"total":[3.31,4.351,3.95,3.913,3.643,2.448,3.189,3.18,3.748,3.7,3.423,3.982,3.356,3.213,3.619,4.198,5.405,4.924,3.302,4.975,3.832,3.477,4.164,7.202,2.763],"script":[1.022,1.157,0.557,1.319,1.114,0.218,0.901,0.85,0.949,1.424,0.913,0.956,0.623,0.323,0.961,1.175,0.355,1.181,0.218,0.22,0.87,0.682,0.996,0.221,0.218],"paint":[1.788,2.107,2.377,2.307,2.407,2.116,2.184,1.24,2.072,2.155,1.607,2.065,2.614,2.161,2.543,1.876,2.714,2.947,1.696,1.438,2.837,1.391,2.538,2.466,2.423]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"05_swap1k","values":{"total":[26.893,26.72,12.739,12.676,11.201,11.943,11.549,11.865,13.742,11.539,13.749,12.07,27.312,12.13,26.946],"script":[0.615,0.208,0.882,0.982,0.321,1.581,0.823,0.299,0.863,0.184,0.91,1.104,0.842,0.724,0.573],"paint":[10.232,10.758,10.119,9.769,9.287,9.284,10.587,10.134,11.103,9.503,10.634,9.985,10.426,10.775,10.278]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[16.128,16.367,16.292,16.263,16.15,16.103,16.008,16.066,15.681,15.627,16.125,16.419,16.35,16.136,16.201],"script":[0.377,0.382,0.571,0.597,0.586,0.567,0.33,0.289,0.332,0.26,0.561,0.603,0.426,0.581,0.332],"paint":[14.726,14.831,14.57,14.679,14.728,14.773,14.842,15.014,14.546,14.009,14.544,14.662,15.316,14.804,14.641]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"07_create10k","values":{"total":[434.82,434.112,434.782,432.195,433.639,437.217,436.545,439.152,445.337,442.128,438.683,445.022,444.534,437.834,432.919],"script":[90.259,88.56,89.327,89.623,90.27,95.595,90.542,89.83,100.424,96.422,91.365,100.203,89.236,89.363,89.687],"paint":[336.951,338.191,337.995,335.258,336.143,334.263,338.573,341.726,337.358,338.305,339.933,337.483,347.938,341.088,335.878]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.211,47.458,47.757,48.019,47.556,49.472,48.929,47.71,46.583,48.044,49.097,48.64,49.063,46.941,49.293],"script":[7.394,6.996,7.088,7.153,7.072,7.747,7.627,7.759,6.975,7.126,7.715,7.724,7.622,7.056,7.724],"paint":[38.85,39.492,39.711,39.955,39.535,40.759,40.377,39.092,38.675,39.962,40.431,39.952,40.533,38.954,40.651]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.701,14.246,15.067,15.134,13.835,13.789,14.242,13.936,14.353,13.887,14.332,15.717,13.692,13.905,13.886],"script":[11.793,11.79,12.649,12.554,11.399,11.604,11.877,11.793,11.87,11.918,12.461,13.368,11.622,11.482,12.372],"paint":[1.579,2.326,1.506,1.615,2.35,2.097,1.518,1.552,1.869,1.666,1.082,1.482,1.962,1.727,1.417]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.8547477722167969]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.1051740646362305]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.267002105712891]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.2412567138671875]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[31.617819786071777]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[117.6025390625]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[30.4853515625]}},{"framework":"scarlets-frame-v0.34.6-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[160.9]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"01_run1k","values":{"total":[58.333,55.089,56.308,58.26,57.679,58.519,53.862,57.684,54.266,57.192,58.11,57.008,58.667,57.891,56.994],"script":[21.454,21.028,21.988,21.938,21.352,22.407,20.779,20.969,20.807,21.722,22.593,21.888,22.786,22.028,21.514],"paint":[36.431,33.651,33.887,35.877,35.852,35.664,32.685,36.272,33.05,35.024,35.094,34.699,35.457,35.422,35.036]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"02_replace1k","values":{"total":[28.607,30.219,29.431,29.879,30.757,30.639,29.696,30.378,30.035,29.431,28.45,30.127,28.466,30.201,30.229],"script":[14.412,15.921,15.202,15.278,16.138,16.25,15.288,15.663,15.501,15.096,14.451,15.469,14.415,15.441,15.7],"paint":[13.738,13.919,13.839,14.188,14.248,13.993,14.016,14.342,14.062,13.927,13.559,14.266,13.594,14.366,14.149]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[70.004,67.644,67.207,67.492,69.069,67.722,72.009,67.504,67.898,67.362,73.566,68.031,70.647,67.018,67.406],"script":[52.097,51.64,51.245,51.369,51.77,51.097,55.64,51.45,51.333,51.017,57.198,51.787,53.091,50.932,51.323],"paint":[15.794,14.862,13.617,15.052,15.24,14.257,14.337,13.4,15.459,14.189,14.571,14.857,15.175,14.348,14.164]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"04_select1k","values":{"total":[53.869,59.357,53.638,55.919,54.364,54.969,54.11,53.953,54.386,53.224,56.909,53.06,59.901,55.421,53.81,60.517,53.461,55.008,53.642,61.43,53.902,54.579,60.438,53.896,54.023],"script":[50.21,55.844,50.529,52.029,50.556,50.518,49.946,50.871,51.522,49.504,53.098,49.68,56.453,52.311,50.357,57.758,50.315,51.6,50.498,57.747,50.717,50.278,56.65,50.694,50.561],"paint":[2.59,3.06,2.277,3.054,2.89,3.824,3.592,1.801,2.188,3.106,2.861,2.779,2.143,2.926,2.719,1.761,2.773,2.58,2.317,2.779,2.165,3.166,2.626,3.018,3.267]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"05_swap1k","values":{"total":[62.417,60.969,64.056,61.985,60.445,60.713,68.89,62.129,61.49,61.608,61.632,61.514,61.565,62.031,62.229],"script":[50.983,49.638,52.79,50.594,49.913,49.672,56.203,51.053,50.152,50.302,49.756,49.838,50.118,50.649,50.799],"paint":[9.578,10.33,10.302,9.554,8.69,8.956,11.412,9.384,10.956,9.597,10.513,10.33,10.658,9.804,10.084]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[60.308,57.912,59.482,60.066,59.66,59.029,60.979,60.048,58.804,60.569,58.259,59.374,60.575,60.84,59.013],"script":[29.611,28.44,29.818,29.956,29.422,28.807,30.371,29.332,28.823,30.228,28.713,29.968,30.226,29.999,29.014],"paint":[29.931,28.678,28.648,28.904,29.308,29.066,29.518,29.734,29.17,29.505,28.375,28.655,29.02,30.061,29.029]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"07_create10k","values":{"total":[649.361,639.451,648.434,647.75,655.799,651.848,655.074,651.183,643.86,644.778,631.296,629.97,648.615,646.719,637.589],"script":[285.675,280.221,284.076,286.946,287.898,287.566,291.158,284.251,277.152,282.519,271.091,274.552,287.779,283.903,277.297],"paint":[356.905,352.553,357.656,354.078,361.088,357.334,357.221,360.229,359.84,355.447,353.376,348.672,354.056,355.927,353.69]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[83.947,84.786,84.417,82.87,84.241,83.158,83.373,84.486,84.254,85.432,83.287,83.719,84.952,85.045,82.847],"script":[43.297,43.811,43.962,43.014,43.075,41.388,42.569,43.41,44.118,44.325,43.531,43.793,44.011,43.75,42.461],"paint":[39.762,40.095,39.561,38.965,40.277,40.959,39.903,40.157,39.252,40.188,38.871,39.036,40.035,40.394,39.49]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[26.934,29.077,28.402,26.796,30.368,28.332,27.495,27.16,28.943,27.925,29.296,30.115,27.366,26.935,29.957],"script":[25.443,27.292,26.317,25.107,28.413,26.464,25.532,24.982,26.835,26.369,26.941,27.967,25.407,25.09,27.502],"paint":[1.381,1.666,1.975,1.575,1.182,1.756,1.095,2.075,2.003,1.452,2.258,1.869,0.792,1.096,2.333]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.7524213790893555]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[10.869088172912598]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[19.192293167114258]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[10.136829376220703]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[93.31236839294434]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[436.837890625]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[127.9482421875]}},{"framework":"seed-v0.8.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[772.4]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"01_run1k","values":{"total":[36.188,36.509,36.228,36.189,35.755,36.459,35.588,36.062,35.652,35.396,35.247,35.708,36.703,35.527,36.102],"script":[1.923,2.061,1.871,1.878,1.903,1.876,1.892,1.906,1.952,1.95,2.011,1.882,2.055,1.979,1.871],"paint":[33.829,34.013,33.904,33.901,33.434,34.139,33.279,33.727,33.271,33.009,32.786,33.36,34.218,33.101,33.778]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"02_replace1k","values":{"total":[17.739,16.586,16.813,15.734,16.024,15.737,16.264,16.834,15.719,15.805,16.964,15.522,15.456,15.513,15.761],"script":[1.391,1.287,1.303,1.41,1.376,1.352,1.245,1.223,1.281,1.364,1.312,1.211,1.164,1.227,1.309],"paint":[15.746,14.832,14.946,13.921,14.21,13.943,14.593,15.172,14.057,14.008,15.179,13.928,13.867,13.911,14.022]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[17.222,16.939,17.216,18.838,17.238,17.723,17.17,18.309,18.005,18.023,17.397,17.344,17.357,17.428,16.971],"script":[1.853,1.97,1.06,1.963,1.447,2.175,1.911,1.917,1.93,2.223,1.82,1.311,1.191,1.314,1.285],"paint":[13.006,13.186,14.963,14.718,14.597,14.251,13.246,14.538,14.795,14.432,14.595,14.732,14.16,14.566,14.974]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"04_select1k","values":{"total":[3.917,3.08,3.999,3.595,4.073,3.843,3.472,4.253,3.531,4.802,4.404,3.697,3.274,3.604,3.42,3.896,4.033,4.656,3.782,4.095,3.355,3.562,3.479,4.149,3.787],"script":[0.924,0.66,1.741,1.302,1.225,0.981,1.712,1.549,1.212,1.03,1.641,0.697,1.153,1.221,0.91,1.765,1.629,1.022,0.999,1.325,0.728,1.499,1.328,1.655,1.075],"paint":[2.288,2.31,1.326,2.173,1.829,2.746,1.645,1.887,1.735,1.94,1.605,2.138,0.459,2.279,1.377,1.42,2.285,2.137,1.918,2.018,2.512,1.947,1.464,2.391,2.256]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"05_swap1k","values":{"total":[11.674,11.823,11.62,10.857,11.46,11.754,11.443,11.638,11.836,11.929,11.281,10.908,11.194,11.475,12.036],"script":[0.836,0.569,0.553,0.101,0.588,0.528,0.212,0.093,0.439,0.496,0.101,0.102,0.1,0.109,0.096],"paint":[10.066,9.341,8.952,8.938,9.583,9.347,10.175,10.505,10.127,9.499,9.818,9.616,10.056,9.427,10.653]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[32.538,31.896,32.062,32.094,31.515,30.871,33.792,32.08,31.846,33.781,32.873,32.805,32.491,32.545,32.915],"script":[2.154,2.435,2.152,2.114,2.086,1.983,2.491,2.155,2.375,2.577,2.072,2.414,2.431,2.166,2.438],"paint":[29.617,28.514,28.866,28.998,28.359,28.104,30.129,29.183,28.43,30.352,29.675,29.526,29.26,29.419,29.759]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"07_create10k","values":{"total":[563.272,543.996,543.452,559.948,547.575,563.676,560.563,558.776,541.819,542.703,556.418,558.456,546.212,539.355,537.012],"script":[192.372,193.737,194.582,195.695,196.777,197.724,193.76,193.238,193.188,194.401,192.827,194.03,190.833,189.813,191.253],"paint":[363.943,343.459,342.068,357.414,344.007,358.966,359.969,358.725,341.886,341.54,356.685,357.54,348.32,342.745,338.284]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[62.825,63.376,63.83,64.504,63.788,65.681,64.856,63.104,66.045,62.947,64.625,64.094,65.478,64.815,64.266],"script":[21.857,21.707,21.78,22.433,22.614,23.462,23.122,21.484,23.255,21.43,23.085,21.979,22.499,22.303,22.909],"paint":[40.036,40.712,41.172,41.141,40.245,41.32,40.824,40.696,41.869,40.587,40.644,41.183,42.025,41.602,40.446]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.815,14.684,14.453,14.361,14.383,14.298,14.022,13.832,13.684,13.563,14.801,13.378,13.569,14.161,14.193],"script":[11.719,12.377,12.313,11.807,12.375,12.489,12.352,12.194,12.02,11.831,11.827,11.879,11.974,11.411,12.135],"paint":[1.954,2.147,1.73,1.592,0.807,1.68,1.523,0.399,0.872,0.791,1.408,0.405,1.484,1.987,1.811]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5660123825073242]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.9245643615722656]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.0659990310668945]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[4.123658180236816]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[33.59217548370361]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[14.3828125]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.9580078125]}},{"framework":"slim-js-v5.0.8-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[62.8]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"01_run1k","values":{"total":[41.652,41.621,42.287,42.222,42.096,41.479,42.444,40.827,41.421,42.579,43.043,42.442,43.619,43.129,42.607],"script":[6.069,5.945,6.595,6.806,6.26,6.11,6.145,6.223,6.129,6.636,6.632,6.155,6.471,6.188,6.787],"paint":[35.153,35.256,35.245,34.999,35.418,34.946,35.872,34.166,34.874,35.511,35.963,35.824,36.719,36.498,35.39]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"02_replace1k","values":{"total":[18.803,19.72,18.618,20.063,18.809,18.344,18.669,18.871,20.021,18.996,17.975,18.849,19.929,18.207,18.448],"script":[3.385,3.277,3.336,3.368,3.437,3.203,3.31,3.397,3.311,3.388,3.14,3.367,3.318,3.301,3.279],"paint":[14.973,15.954,14.874,16.236,14.985,14.69,14.969,15.089,16.254,15.224,14.409,15.074,16.164,14.486,14.782]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[22.705,21.737,22.323,24.096,22.188,25.924,22.738,24.87,21.597,21.73,21.746,21.847,22.484,21.234,21.73],"script":[6.524,5.552,6.291,8.225,5.741,6.855,6.341,8.385,5.289,6.058,5.827,5.14,5.51,6.012,5.644],"paint":[14.59,14.311,13.801,14.768,15.153,17.71,15.2,15.471,14.732,14.055,14.416,15.103,15.092,14.191,14.736]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"04_select1k","values":{"total":[10.185,9.638,9.305,9.554,10.353,9.644,8.526,8.756,8.801,9.906,10.469,9.644,10.202,9.944,9.396,11.173,9.58,9.471,9.787,9.978,8.987,11.661,9.492,9.172,9.921],"script":[6.261,6.129,6.03,5.984,6.716,6.075,6.167,5.828,5.823,6.414,5.957,6.913,6.675,6.404,6.012,7.001,6.431,6.09,6.446,6.31,5.367,7.399,6.064,6.234,6.22],"paint":[3.12,3.337,2.347,2.412,3.469,3.381,1.567,2.005,1.411,3.201,3.504,1.837,3.316,2.699,2.42,3.499,2.829,3.215,2.64,2.776,3.094,2.61,2.825,2.783,2.709]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"05_swap1k","values":{"total":[18.048,16.821,17.639,17.358,17.437,16.977,17.564,16.841,17.38,17.634,18.76,17.054,17.008,16.429,16.396],"script":[6.078,5.557,5.759,5.818,5.868,5.042,6.215,5.225,5.796,5.761,6.27,5.942,5.66,5.334,5.5],"paint":[10.937,10.277,9.48,10.25,10.508,10.222,10.053,10.547,10.008,10.517,10.229,9.66,9.637,9.831,9.312]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[42.559,40.966,41.434,41.083,42.114,41.943,43.355,41.555,42.523,41.776,42.051,40.805,42.366,40.945,42.063],"script":[8.609,8.103,8.099,7.974,9.059,8.443,8.069,8.005,8.053,8.558,8.089,8.104,8.546,8.08,8.371],"paint":[33.123,31.681,32.449,31.5,32.102,32.346,34.425,32.595,33.397,32.11,33.14,31.87,32.661,31.886,32.53]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"07_create10k","values":{"total":[438.128,442.566,441.688,440.012,437.686,442.308,441.877,436.885,439.442,439.104,441.99,438.803,430.415,428.889,430.291],"script":[84.5,84.157,85.577,85.86,85.566,84.749,83.421,84.391,84.233,84.714,85.531,84.991,81.555,79.553,78.673],"paint":[346.766,351.679,349.04,347.361,345.318,350.807,351.5,345.754,348.327,347.435,349.711,347.061,342.311,342.555,344.808]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.828,47.393,51.168,50.205,50.461,50.214,51.474,50.594,49.989,51.455,52.271,50.56,51.077,50.109,50.86],"script":[8.541,8.183,8.854,8.59,8.451,8.885,8.863,8.454,8.344,9,8.937,8.397,9.096,8.302,8.841],"paint":[41.391,38.303,41.43,40.703,41.03,40.376,41.694,41.181,40.734,41.428,42.3,41.254,41.044,40.913,40.959]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.583,13.293,13.45,12.712,12.975,13.252,12.842,13.605,12.641,13.375,12.399,12.851,12.668,13.074,12.546],"script":[11.835,11.107,11.744,10.749,11.585,11.845,10.514,11.745,11.035,11.061,10.839,10.647,10.68,11.006,10.419],"paint":[0.935,1.493,1.6,1.868,1.294,0.856,1.307,1.761,1.51,2.014,1.454,2.114,1.892,1.063,1.816]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5187244415283203]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.1248531341552734]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.1228208541870117]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.6917409896850586]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[14.177468299865723]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[31.6689453125]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[8.552734375]}},{"framework":"slingjs-v21.0.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[75.4]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"01_run1k","values":{"total":[67.497,68.743,68.209,68.911,69.193,71.276,68.64,70.164,67.196,68.575,68.165,70.87,70.217,68.758,68.84],"script":[30.655,31.055,30.382,30.42,30.653,32.292,31,32.228,29.987,30.295,30.208,32.948,31.538,30.634,30.776],"paint":[36.35,37.2,37.342,37.994,38.029,38.478,37.147,37.446,36.737,37.776,37.474,37.442,38.179,37.631,37.58]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"02_replace1k","values":{"total":[21.359,19.291,20.956,19.207,19.836,19.313,20.604,18.939,18.736,20.43,18.611,19.473,19.301,19.322,21.164],"script":[3.703,3.563,3.327,3.629,4.013,3.747,3.233,3.783,3.208,3.174,3.126,3.863,3.698,3.893,3.377],"paint":[17.084,15.204,17.064,15.057,15.268,15.073,16.83,14.664,15.059,16.706,15.036,15.09,15.073,14.906,17.263]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.397,19.384,18.958,19.452,19.938,19.275,18.792,18.788,19.199,20.404,19.583,20.679,20.4,19.359,18.933],"script":[1.858,1.762,1.742,1.583,2.178,2.323,1.61,1.94,1.403,1.64,2.358,2.611,1.839,1.81,2.019],"paint":[16.53,16.282,16.29,15.74,15.979,15.578,15.651,15.037,16.311,17.427,15.334,15.778,15.451,15.842,15.332]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"04_select1k","values":{"total":[10.031,9.085,9.246,9.585,9.574,9.301,9.255,8.786,8.745,7.537,8.151,8.238,8.712,8.206,8.203,8.429,7.747,9.6,8.191,7.793,7.613,8.668,8.428,7.361,9.048],"script":[5.822,5.384,6.356,5.878,6.719,6.518,6.318,6.131,5.762,4.324,5.717,5.547,5.688,4.984,5.515,6.151,5.107,6.706,5.643,5.126,4.787,6.178,5.615,5.092,6.287],"paint":[3.478,2.29,1.752,3.374,0.897,2.005,1.84,1.913,2.8,2.931,2.305,1.934,2.847,2.937,2.56,2.091,2.499,1.449,2.184,1.851,2.701,2.301,1.683,1.51,2.577]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"05_swap1k","values":{"total":[14.002,13.43,12.874,13.861,13.489,12.072,12.768,13.419,14.199,12.065,14.019,12.939,13.411,13.223,13.476],"script":[1.122,0.582,0.111,0.45,0.418,0.524,0.102,0.768,0.866,0.55,0.928,0.637,0.928,0.355,0.758],"paint":[11.823,10.486,11.113,12.375,12.371,9.972,10.91,11.298,11.844,9.922,11.563,11.195,10.774,11.902,10.8]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[39.444,40.842,39.189,38.686,39.134,38.241,38.903,39.828,38.547,38.441,38.974,39.441,39.097,38.776,38.361],"script":[6.659,6.638,6.1,5.77,6.687,6.436,6.634,6.095,6.038,6.119,6.58,6.004,6.434,6.483,6.544],"paint":[31.364,33.004,31.957,31.723,31.318,30.563,31.126,32.612,31.675,30.834,31.226,32.209,31.615,31.149,30.979]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"07_create10k","values":{"total":[696.349,673.516,686.477,680.719,685.308,686.047,679.052,683.619,680.05,674.155,679.841,665.451,679.423,674.631,674.969],"script":[277.984,273.809,279.589,280.093,284.276,279.613,275.681,278.949,278.843,276.843,281.029,270.468,279.262,274.843,276.836],"paint":[410.767,392.058,399.163,392.996,393.356,399.094,394.889,397.226,393.501,389.825,390.998,387.406,392.458,392.061,390.622]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[77.164,74.027,73.121,73.636,74.011,73.216,74.857,74.391,74.617,74.531,74.56,75.407,73.917,75.018,74.164],"script":[31.018,31.612,30.723,30.658,30.973,30.649,31.998,31.655,31.123,31.282,31.513,32.434,31.231,31.742,31.969],"paint":[44.556,41.471,41.473,41.977,42.09,41.597,41.911,41.771,42.515,42.292,42.093,41.986,41.706,42.315,41.236]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[28.465,29.319,27.278,28.186,29.572,26.156,28.178,27.681,27.657,27.547,29.063,28.455,27.852,28.26,27.352],"script":[26.721,26.963,25.728,26.575,27.533,23.835,25.871,25.809,25.983,26.072,26.867,25.915,26.469,26.653,24.543],"paint":[0.88,2.25,1.446,1.518,1.135,1.642,2.056,1.769,0.807,1.378,2.081,1.866,1.286,1.505,2.123]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5639715194702148]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[6.263603210449219]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[6.405727386474609]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.9573202133178711]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[56.64607048034668]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[16.3017578125]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.6376953125]}},{"framework":"sprae-v8.1.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[47.4]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"01_run1k","values":{"total":[45.914,46.694,48.038,47.192,46.035,46.798,46.126,47.464,48.091,47.76,48.72,47.293,46.252,46.473,46.815],"script":[12.825,13.223,14.067,13.996,13.156,13.68,13.543,13.522,14.215,13.275,13.318,13.799,12.924,12.985,13.579],"paint":[32.669,33.037,33.553,32.759,32.466,32.718,32.17,33.527,33.463,34.072,34.975,33.057,32.893,33.075,32.816]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"02_replace1k","values":{"total":[18.831,19.012,19.028,19.056,19.056,18.904,20.458,19.433,19.629,20.788,19.203,19.538,19.129,20.581,19.001],"script":[4.295,4.254,4.307,4.41,4.319,4.311,4.763,4.628,4.669,4.722,4.556,4.321,4.456,4.799,4.243],"paint":[14.144,14.36,14.315,14.221,14.323,14.147,15.28,14.352,14.569,15.604,14.218,14.715,14.291,15.279,14.334]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.58,16.646,16.118,16.755,16.415,16.637,17.174,16.787,17.122,16.844,16.29,16.817,17.315,15.985,16.201],"script":[0.969,1.378,0.918,1.217,0.298,1.569,1.637,0.974,1.373,1.301,0.971,1.214,1.462,1.259,0.734],"paint":[13.049,13.907,13.389,14.576,14.597,14.378,13.994,14.521,14.195,14.476,14.341,13.563,14.293,13.4,13.65]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"04_select1k","values":{"total":[3.055,2.734,3.029,2.738,2.964,2.724,4.411,4.179,2.837,3.013,3.375,4.635,2.277,2.55,2.592,5.539,2.658,4.704,3.132,3.115,2.926,2.769,2.786,2.321,3.049],"script":[0.911,0.105,0.104,0.281,0.764,0.68,1.079,0.601,0.097,0.833,0.851,0.834,0.117,0.782,0.104,0.407,0.771,0.839,0.862,0.105,0.103,0.103,0.779,0.12,0.578],"paint":[2.046,2.532,2.209,2.363,2.103,1.916,1.845,2.317,2.646,1.43,1.087,1.691,1.886,1.668,1.599,1.286,1.783,1.07,1.601,2.915,2.43,1.801,1.038,2.094,2.376]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"05_swap1k","values":{"total":[11.905,12.088,12.24,12.154,11.421,11.462,10.938,11.375,11.848,12.023,11.332,12.25,11.731,11.738,12.007],"script":[1.094,0.845,0.728,0.635,0.112,0.097,0.102,0.997,0.1,0.101,0.457,0.456,0.763,0.323,0.45],"paint":[9.103,9.74,10.782,10.272,10.311,10.071,9.571,8.715,11.065,10.971,9.428,10.445,10.462,9.661,10.051]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[40.461,40.217,40.537,40.094,40.27,41.118,40.274,41.927,39.69,40.504,41.028,39.01,39.915,39.746,40.252],"script":[9.152,9.442,9.282,9.078,9.098,9.333,9.826,10.417,9.128,9.673,10.17,8.584,9.238,9.085,9.551],"paint":[30.441,29.905,30.282,30.284,30.385,30.906,29.72,30.621,29.737,29.769,30.138,29.654,29.892,29.546,29.976]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"07_create10k","values":{"total":[437.705,436.179,439.893,441.467,444.61,435.004,445.129,441.799,441.06,435.486,439.381,440.906,437.685,438.437,443.58],"script":[102.375,98.114,100.717,100.787,105.646,99.132,104.131,100.713,100.783,100.539,99.939,101.566,99.206,100.192,102.549],"paint":[328.129,331.227,332.463,333.049,332.232,329.071,333.948,334.335,333.302,327.781,332.74,332.611,331.677,331.525,334.302]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[48.636,49.242,47.264,49.029,49.044,46.678,48.649,48.766,49.077,47.211,47.803,48.873,47.515,48.018,47.872],"script":[10.127,10.172,9.326,10.231,9.732,9.302,9.453,9.669,9.846,9.44,9.682,10.292,9.623,9.959,9.691],"paint":[37.588,38.208,37.059,37.924,38.5,36.469,38.276,38.242,38.385,36.915,37.271,37.691,36.999,37.233,37.135]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[17.401,18.377,18.415,18.072,18.069,17.681,17.992,17.327,17.105,16.899,17.671,18.754,18.062,19.875,18.014],"script":[15.481,15.875,16.848,15.972,16.339,15.334,15.933,15.551,15.019,15.509,15.899,16.587,16.415,17.93,16.072],"paint":[1.817,1.641,1.481,1.181,1.639,2.258,1.892,1.014,1.998,1.254,0.89,2.085,1.565,1.857,1.224]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[1.650343894958496]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.120978355407715]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.1730194091796875]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[2.224123001098633]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.521735191345215]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[123.3427734375]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[32.9970703125]}},{"framework":"stdweb-v0.4.17-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.7]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"01_run1k","values":{"total":[49.066,46.972,46.601,46.361,46.095,47.573,47.373,48.714,46.594,46.956,48.95,47.093,47.146,46.709,47.114],"script":[13.542,14.115,13.205,13.34,12.721,14.135,14.01,14.051,13.914,13.621,14.426,13.804,13.815,13.272,13.671],"paint":[35.093,32.465,32.962,32.602,32.952,33.029,32.958,34.234,32.247,32.944,34.101,32.866,32.913,33.008,33.026]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"02_replace1k","values":{"total":[25.327,25.594,26.775,25.928,25.98,28.321,26.688,26.409,26.533,26.02,25.775,25.368,26.106,26.152,26.65],"script":[10.077,10.218,10.594,10.233,10.461,11.396,11.015,10.573,10.858,10.413,10.29,10.136,10.673,10.441,10.861],"paint":[14.829,14.947,15.692,15.251,15.068,16.473,15.249,15.42,15.223,15.195,15.03,14.79,14.981,15.238,15.355]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[46.335,46.257,46.769,43.444,47.295,44.892,44.607,45.39,44.339,48.123,45.086,45.837,46.725,45.558,44.609],"script":[28.839,29.075,30.273,26.442,29.272,28.199,27.718,28.095,27.979,30.914,27.559,29.438,28.76,28.426,28.229],"paint":[16.409,15.467,14.27,15.533,16.769,14.805,14.88,15.341,15.274,14.575,15.913,14.504,15.986,15.475,14.896]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"04_select1k","values":{"total":[29.792,30.352,29.744,29.984,31.29,30.641,31.316,29.712,29.007,33.239,29.462,31.127,29.608,29.503,31.107,30.105,29.499,29.775,29.431,30.19,27.753,30.47,29.159,27.877,29.883],"script":[26.565,26.328,26.251,27.033,28.361,26.825,27.882,25.909,25.803,29.475,26.263,27.177,26.45,25.72,28.622,26.669,26.629,26.361,26.404,26.827,24.703,26.619,25.757,25.152,26.993],"paint":[2.338,1.603,3.3,2.764,2.555,3.61,2.47,3.624,2.249,2.332,2.383,2.225,2.044,2.145,1.672,2.494,1.97,2.86,2.84,2.141,2.512,3.045,2.844,1.563,2.671]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"05_swap1k","values":{"total":[38.329,39.044,38.426,37.82,39.354,36.518,39.235,37.517,39.085,40.245,38.418,38.692,37.433,39.444,39.031],"script":[25.928,26.74,26.589,26.355,26.294,24.836,27.323,25.953,26.876,28.162,26.393,26.432,25.848,27.172,26.027],"paint":[10.484,10.86,10.198,9.903,11.412,9.707,10.293,9.988,11.378,10.375,10.585,10.31,10.306,10.917,11.467]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[51.397,56.38,52.208,51.901,51.929,51.378,51.678,51.707,51.805,55.678,50.961,56.905,51.496,56.562,51.403],"script":[19.655,21.617,19.801,19.96,19.631,20.024,19.419,19.9,19.729,21.607,19.137,21.924,20.116,22.069,19.522],"paint":[30.776,33.971,31.28,31.036,31.498,30.253,31.432,30.806,30.911,33.285,30.792,34.176,30.228,33.57,30.794]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"07_create10k","values":{"total":[471.686,470.804,477.063,474.46,472.913,470.796,474.821,472.041,479.923,473.252,471.895,468.666,468.99,470.187,476.511],"script":[131.375,136.404,132.189,136.92,136.158,132.839,134.826,135.886,135.429,135.426,134.341,135.644,135.044,135.198,139.199],"paint":[333.543,327.559,337.866,330.941,330.008,331.232,333.014,329.142,337.793,331.14,331,326.48,327.284,328.07,330.58]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[60.763,60.555,60.058,60.969,59.985,59.555,60.979,60.871,60.313,60.567,60.378,59.621,60.212,59.754,60.611],"script":[20.812,20.229,20.2,20.958,20.076,20.021,20.778,20.566,20.245,20.803,20.715,20.283,20.207,20.34,20.412],"paint":[39.032,39.459,38.993,39.109,39.04,38.664,39.275,39.403,39.018,38.889,38.771,38.472,39.105,38.505,39.319]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.087,12.377,13.024,11.991,13.471,12.661,12.317,12.28,12.468,13.355,12.723,12.246,12.045,11.963,12.727],"script":[10.29,10.338,11.256,10.436,11.861,10.93,10.489,10.631,10.941,11.551,10.42,9.897,10.615,9.735,10.441],"paint":[1.562,1.942,0.959,0.907,1.498,1.644,1.743,0.742,1.431,1.701,2.21,1.47,1.332,2.148,2.199]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.4891061782836914]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.6115541458129883]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.639925003051758]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7423667907714844]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[19.950050354003906]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.0947265625]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.9716796875]}},{"framework":"strve-v5.6.2-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[59.1]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"01_run1k","values":{"total":[39.269,36.935,38.006,38.334,38.118,37.59,37.64,37.407,38.914,40.132,37.5,38.258,37.651,38.25,38.214],"script":[5.091,4.796,4.997,5.076,5.147,5.141,5.196,4.755,5.126,5.116,4.766,4.997,5.087,5.074,5.088],"paint":[33.768,31.736,32.599,32.833,32.554,32.036,32.051,32.235,33.364,34.606,32.335,32.82,32.16,32.739,32.697]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"02_replace1k","values":{"total":[14.797,15.708,15.15,14.657,14.714,15.326,14.861,15.27,16.672,14.669,15.163,14.782,14.664,15.358,15.312],"script":[0.839,0.852,0.896,0.81,0.803,0.831,0.87,0.858,0.821,0.859,0.834,0.848,0.857,0.839,0.826],"paint":[13.556,14.427,13.909,13.439,13.523,14.156,13.64,14.063,15.455,13.437,13.96,13.548,13.436,14.177,14.131]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.963,16.2,17.6,17.227,17.227,17.144,17.65,17.434,17.032,17.014,18.949,17.148,17.254,18.912,17.322],"script":[1.411,1.935,2.068,1.945,1.565,2.149,1.714,1.926,2.13,1.826,2.443,1.954,1.846,2.078,1.43],"paint":[13.761,12.426,14.063,14.007,14.039,14.017,14.719,13.517,13.523,13.886,14.463,14.153,14.136,15.608,14.825]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"04_select1k","values":{"total":[3.34,3.701,3.098,3.745,3.451,3.373,3.229,3.521,3.127,3.653,3.383,3.7,3.736,3.798,3.281,3.7,3.398,6.284,3.117,4.898,3.932,3.441,4.126,3.522,4.14],"script":[0.864,1.281,1.341,0.945,1.291,1.209,1.141,0.967,1.25,0.647,1.204,0.928,1.213,1.362,0.994,1.696,1.182,1.277,0.97,1.583,1.298,0.98,1.684,1.2,0.914],"paint":[1.4,2.165,1.655,2.675,2.038,2.067,1.523,1.268,1.123,2.633,1.185,2.649,1.456,1.652,1.671,1.883,2.112,2.143,2.046,2.321,2.035,2.36,2.349,1.391,1.658]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"05_swap1k","values":{"total":[11.764,11.92,11.811,11.9,12.174,11.831,12.28,11.327,12.183,12.4,12.549,12.014,12.497,12.05,11.929],"script":[1.246,0.858,0.601,0.636,0.928,0.289,1.527,1.152,1.053,1.25,1.598,0.928,1.517,1.263,1.154],"paint":[9.578,9.191,9.365,9.746,9.597,9.881,9.45,8.712,9.925,9.876,10.003,9.502,10.114,10.117,9.817]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[30.704,30.661,31.502,32.005,30.638,30.628,30.574,30.629,31.651,30.548,31.165,30.998,30.148,31.132,31.485],"script":[1.355,1.699,1.608,1.325,1.557,1.662,1.676,1.573,1.771,1.615,1.747,1.652,1.512,1.736,1.527],"paint":[28.626,28.185,29.201,29.195,28.32,27.865,28.118,28.231,29.194,28.148,28.605,28.576,27.861,28.353,28.996]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"07_create10k","values":{"total":[407.307,392.446,396.066,394.461,399.615,395.874,393.944,397.96,396.637,396.747,396.31,392.704,397.748,391.408,397.755],"script":[56.947,52.817,53.902,53.959,54.089,53.409,53.897,53.293,54.09,54.053,55.65,55.176,53.848,55.024,53.556],"paint":[343.535,332.93,335.5,333.832,338.655,335.785,333.287,337.735,335.758,335.875,333.87,330.837,337.198,329.529,337.47]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[43.754,43.355,44.004,44.33,44.84,43.459,43.996,44.591,45.154,43.886,43.026,43.094,44.831,43.12,43.29],"script":[5.266,5.229,5.506,5.586,5.622,5.167,5.472,5.573,5.511,5.669,5.234,5.195,5.584,5.213,5.132],"paint":[37.617,37.269,37.655,37.875,38.375,37.431,37.675,38.16,38.657,37.379,36.959,37.124,38.27,37.055,37.311]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.499,12.502,12.385,12.545,12.856,12.352,12.211,12.336,12.048,12.922,12.62,12.024,12.656,11.877,12.628],"script":[10.387,10.406,10.614,10.871,10.691,10.059,10.42,10.542,10.382,10.71,10.4,10.582,10.788,10.13,10.331],"paint":[2.022,2.014,1.092,0.725,2.073,2.199,1.12,1.704,1.577,1.636,1.848,1.351,1.387,1.655,2.202]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.49310779571533203]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.7478513717651367]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.760061264038086]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.3034963607788086]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[20.899914741516113]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[15.6357421875]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[5.96875]}},{"framework":"svelte-classic-v5.0.0-next.64-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[56.4]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"01_run1k","values":{"total":[42.169,39.87,39.639,40.402,42.417,41.53,41.162,41.577,41.075,41.096,42.515,41.884,41.783,41.262,41.61],"script":[8.019,7.831,7.749,8.099,8.062,7.97,8.014,8.108,7.7,7.63,8.336,8.102,7.92,8.057,8.01],"paint":[33.702,31.615,31.425,31.907,33.904,33.129,32.735,33.014,32.913,33.041,33.753,33.328,33.424,32.778,33.156]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"02_replace1k","values":{"total":[19.144,19.359,19.135,19.731,19.268,20.525,19.216,18.965,19.43,19.386,19.303,18.952,20.387,19.256,19.884],"script":[4.348,4.558,4.412,4.486,4.439,4.407,4.312,4.372,4.442,4.376,4.416,4.248,4.308,4.41,4.51],"paint":[14.32,14.338,14.301,14.813,14.407,15.649,14.465,14.164,14.53,14.56,14.428,14.277,15.616,14.4,14.93]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.695,16.403,16.257,16.483,16.751,16.22,16.715,15.776,15.917,17.017,16.67,16.631,16.61,16.626,16.657],"script":[0.572,1.167,1.184,0.988,0.873,0.832,0.196,0.731,0.201,0.935,1.303,1.494,1.016,1.078,0.772],"paint":[15.186,14.233,14.089,14.461,14.612,14.205,15.383,13.558,14.218,15.199,14.047,14.092,14.152,13.999,13.757]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"04_select1k","values":{"total":[2.25,4.019,2.792,3.325,3.271,2.551,2.379,2.844,6.152,2.623,2.606,3.459,3.456,3.035,3.927,2.535,2.326,4.41,1.941,3.57,2.562,3.109,2.482,3.956,2.604],"script":[0.075,0.723,0.918,0.993,0.842,0.08,0.071,0.457,0.635,0.068,0.42,0.07,0.428,0.61,0.499,0.067,0.078,0.206,0.08,0.075,0.505,0.796,0.527,0.471,0.07],"paint":[2.074,1.539,1.434,2.226,1.523,1.705,0.96,2.083,1.53,1.592,2.085,1.561,1.577,1.458,1.425,2.034,1.52,1.921,1.117,1.494,1.153,1.442,1.377,1.2,2.27]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"05_swap1k","values":{"total":[19.316,18.645,17.338,18.668,18.094,19.31,17.219,18.659,18.201,17.973,17.577,18.838,17.381,18.748,17.678],"script":[7.643,7.192,6.195,7.183,7.087,7.716,5.781,6.949,6.925,6.157,5.907,6.592,5.748,7.076,5.866],"paint":[10.319,9.154,9.317,9.538,9.689,10.062,10.053,10.995,9.496,10.731,9.259,10.604,9.798,9.792,10.556]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.023,37.889,39.122,37.29,37.948,37.687,37.232,37.485,41.286,39.711,37.83,39.475,38.274,37.348,40.608],"script":[7.017,7.286,7.279,7.204,7.371,7.08,6.821,6.92,7.394,7.305,7.209,7.562,7.389,6.821,7.027],"paint":[29.496,29.476,30.627,29.286,29.471,29.667,29.609,29.651,32.798,31.19,29.805,30.974,30.031,29.397,32.168]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"07_create10k","values":{"total":[421.413,424.97,422.107,421.687,421.29,422.303,421.441,424.701,424.02,422.646,424.735,425.089,421.44,421.994,418.764],"script":[91.53,86.441,91.38,87.399,90.717,90.752,90.418,90.573,88.21,90.865,92.618,89.431,91.814,91.097,89.948],"paint":[322.957,331.566,323.878,327.496,323.812,324.645,324.172,327.376,329.07,324.885,325.318,328.903,322.819,323.97,322.111]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[49.785,49.308,49.25,48.828,49.46,49.607,50.563,51.032,49.575,49.686,49.978,50.413,50.486,49.194,50.326],"script":[10.296,10.212,10.262,10.37,10.104,10.104,10.878,10.428,10.537,10.652,10.179,10.297,10.467,10.056,10.513],"paint":[38.611,38.177,38.118,37.602,38.471,38.606,38.754,39.724,38.165,38.15,38.885,39.22,39.092,38.279,38.892]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.263,13.171,13.138,12.371,12.99,13.745,13.041,12.844,12.713,13.672,13.758,13.095,12.245,13.509,13.203],"script":[11.658,11.361,11.099,11.23,10.705,12.004,11.662,11.185,11.122,11.386,11.863,10.801,10.853,11.305,11.339],"paint":[1.09,1.558,1.307,0.365,2.189,1.655,1.296,0.766,1.503,1.912,1.285,2.212,0.378,2.123,1.06]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5326509475708008]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.794438362121582]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.682803153991699]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7857933044433594]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.811501502990723]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[12.85546875]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[4.7021484375]}},{"framework":"udomsay-esx-v0.4.9-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[87.2]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"01_run1k","values":{"total":[36.879,36.82,37.304,37.864,36.499,37.126,36.999,36.649,37.202,37.977,37.06,36.424,37.008,37.191,37.104],"script":[3.821,4.036,3.933,3.944,3.796,3.908,4.209,3.928,3.907,3.905,3.993,3.701,3.912,3.935,3.956],"paint":[32.632,32.363,32.947,33.488,32.28,32.798,32.379,32.282,32.88,33.658,32.644,32.303,32.686,32.823,32.719]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"02_replace1k","values":{"total":[15.94,15.341,15.326,15.285,15.369,15.673,15.593,16.341,16.279,15.414,15.899,15.692,15.702,16.138,15.617],"script":[1.261,1.299,1.218,1.273,1.213,1.23,1.224,1.239,1.206,1.319,1.236,1.201,1.212,1.266,1.338],"paint":[14.211,13.613,13.723,13.603,13.757,14.062,13.986,14.655,14.62,13.671,14.296,14.127,14.132,14.502,13.839]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.496,16.795,17.227,18.717,18.14,18.798,17.99,18.313,19.554,16.39,18.426,16.972,17.158,17.278,17.51],"script":[1.469,1.508,1.639,1.516,1.766,1.828,1.536,1.337,2.323,2.033,2.175,1.048,1.396,1.332,1.742],"paint":[14.048,14.125,14.178,14.733,14.391,15.135,15.173,15.691,15.666,13.392,14.46,14.413,14.244,14.822,14.362]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"04_select1k","values":{"total":[4.725,3.862,4.031,3.847,5.161,4.002,4.787,4.803,3.993,4.67,4.331,6.115,5.679,3.838,3.399,3.662,3.538,4.388,3.895,3.719,3.487,3.934,3.892,3.447,5.91],"script":[1.807,1.996,1.72,2.414,1.673,1.243,2.032,1.255,0.974,1.558,1.517,1.889,2.258,1.892,1.211,1.538,1.065,1.815,1.329,1.763,1.265,1.079,1.169,0.957,1.731],"paint":[1.496,1.765,0.987,0.808,1.606,2.399,2.6,2.879,2.396,2.985,2.693,2.203,2.239,1.825,1.643,2.024,2.353,2.45,1.714,1.109,1.96,2.74,1.85,1.535,1.932]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"05_swap1k","values":{"total":[13.042,12.92,12.437,12.342,12.839,12.389,12.724,12.156,12.833,11.627,12.627,12.093,13.706,12.268,12.945],"script":[1.999,2.215,1.442,1.064,1.499,1.276,1.59,0.972,1.642,1.627,2.089,1.495,1.496,1.12,2.01],"paint":[10.03,9.595,8.833,9.796,9.316,9.547,9.131,8.904,9.433,8.196,9.862,9.069,9.9,9.479,9.372]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.245,32.205,33.2,32.184,31.732,32.346,31.764,32.911,32.286,32.335,32.24,32.367,30.822,31.253,31.492],"script":[2.161,2.41,2.186,2.195,2.202,2.444,2.404,2.391,2.431,2.249,2.372,2.374,1.911,2.271,2.234],"paint":[32.052,28.937,29.475,29.001,28.272,28.809,28.304,29.746,29.074,29.357,29.077,29.174,27.722,28.204,28.393]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"07_create10k","values":{"total":[404.456,402.577,403.826,402.295,404.272,402.954,411.012,404.653,400.478,399.994,402.278,403.623,400.294,402.359,401.25],"script":[65.392,62.117,64.574,61.709,64.574,62.757,62.132,64.733,62.432,61.566,62.332,63.795,62.023,63.867,62.228],"paint":[332.128,333.601,332.241,333.679,332.908,333.358,342.029,333.187,331.286,331.6,333.163,333,331.458,331.692,332.247]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[42.11,41.826,42.674,41.624,40.807,40.817,42.126,44.143,42.331,43.087,42.252,43.307,42.924,43.554,43.671],"script":[4.354,4.401,4.212,4.361,4.388,4.264,4.353,4.636,4.584,4.715,4.377,4.919,4.867,4.719,4.733],"paint":[36.874,36.543,37.57,36.39,35.541,35.694,36.764,38.576,36.889,37.521,37.012,37.443,37.107,37.977,38.062]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[13.128,13.422,13.11,13.757,13.721,13.855,13.56,13.291,13.882,13.633,13.25,12.926,13.438,13.468,13.988],"script":[11.118,11.022,11.981,11.425,11.609,12.367,11.121,11.1,12.139,11.538,11.113,11.418,11.873,11.288,11.914],"paint":[1.926,2.307,1.047,2.251,2.019,1.386,2.133,2.102,1.59,2.014,1.394,0.672,1.475,2.083,1.98]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5001192092895508]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[2.131106376647949]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.0895309448242188]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.7178659439086914]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[16.251532554626465]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[9.5576171875]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[3.9609375]}},{"framework":"uhtml-v4.4.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[46.9]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"01_run1k","values":{"total":[41.144,46.815,48.024,47.181,49.295,47.017,47.3,41.114,41.472,48.357,40.664,48.369,41.7,40.185,42.032],"script":[7.514,7.598,8.393,7.283,7.252,7.359,7.12,7.114,7.602,7.278,7.268,7.462,7.423,7.291,7.199],"paint":[32.949,33.989,32.778,32.568,32.635,33.708,32.52,32.742,33.719,32.594,32.491,34.051,33.424,32.604,32.808]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"02_replace1k","values":{"total":[25.886,16.662,18.242,20.362,17.15,17.356,20.627,24.021,22.196,17.549,17.462,22.988,22.987,16.114,18.087],"script":[2.262,2.231,2.373,2.214,2.191,2.167,2.138,2.212,2.153,2.121,2.339,2.243,2.202,2.225,2.161],"paint":[13.808,14.304,15.744,13.956,14.044,14.151,14.424,14.016,14.424,14.271,14.775,14.852,14.027,13.774,14.296]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[32.761,20.366,20.961,19.835,19.08,21.302,34.856,19.671,17.648,19.604,16.966,20.687,19.258,35.323,34.257],"script":[2.412,3.399,4.337,3.364,4.833,2.849,3.848,3.003,3.13,3.836,3.01,3.517,3.145,3.743,3.543],"paint":[14.317,14.276,13.554,14.871,13.491,15.102,15.854,13.966,13.768,15.662,13.854,14.619,13.166,15.539,15.071]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"04_select1k","values":{"total":[6.204,6.077,5.438,6.369,5.285,5.97,7.094,5.527,6.772,6.603,5.856,6.003,5.679,6.308,7.182,7.606,5.98,7.03,6.131,6.235,5.34,5.754,5.676,5.262,5.652],"script":[3.303,3.349,2.891,3.32,3.311,2.861,3.074,2.786,3.662,3.793,3.08,3.223,2.957,3.286,3.874,2.9,2.861,4.046,2.602,3.468,1.966,2.979,3.51,2.977,1.571],"paint":[2.253,2.308,1.77,1.713,1.85,2.136,3.001,2.26,2.957,2.669,2.654,2.658,1.937,1.994,1.836,2.197,2.996,2.508,3.38,1.679,2.287,1.911,1.51,2.16,2.503]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"05_swap1k","values":{"total":[12.349,13.941,13.291,29.116,13.004,13.583,14.219,12.701,29.21,14.816,12.259,28.733999999999995,14.164,16.489,12.249],"script":[2.954,2.363,2.713,3.013,3.404,2.376,2.459,3.092,2.578,2.319,2.075,2.263,2.187,3.371,1.637],"paint":[8.792,9.394,10.466,9.558,9.495,9.473,9.441,9.444,10.591,9.565,9.65,9.919,9.733,9.211,10.501]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.218,36.075,35.471,37.05,33.148,33.122,39.584,32.108,33.292,36.943,32.542,32.99,34.377,32.521,39.406],"script":[3.92,3.523,3.762,3.98,3.746,3.441,3.884,3.772,3.678,3.514,3.724,3.766,3.815,3.737,4.065],"paint":[29.15,29.005,28.579,29.811,29.275,29.331,28.272,28.149,29.185,29.183,28.691,28.955,29.945,28.351,32.588]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"07_create10k","values":{"total":[438.324,442.033,423.654,425.186,442.424,422.05,446.29,418.195,430.673,419.322,424.64,438.069,423.247,421.597,425.969],"script":[84.196,82.992,81.742,83.004,82.587,82.686,85.321,81.952,84.182,81.204,82.083,83.449,81.386,82.022,82.843],"paint":[343.975,351.352,338.168,337.995,351.64,336.915,355.659,333.72,337.577,335.299,340.468,351.611,339.351,335.749,340.945]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[57.974,56.439,56.233,57.738,57.844,57.612,56.087,56.464,57.973,57.806,58.665,56.622,58.569,56.771,57.694],"script":[7.361,7.043,7.007,7.166,7.122,7.376,7.144,7.33,7.429,7.11,7.144,7.367,7.639,7.167,7.324],"paint":[38.111,37.718,37.852,37.826,38.221,38.502,37.745,37.841,38.29,38.181,39.81,38.069,38.922,37.934,37.704]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[15.182,15.37,16.843,13.611,14.542,15.091,30.662,16.113,16.932,14.835,15.813,14.998,13.956,13.643,14.984],"script":[12.372,12.984,14.037,12.493,13.4,13.152,12.792,12.645,12.861,13.45,13.245,13.137,12.963,12.317,13.336],"paint":[1.887,1.454,1.539,1.057,1.087,1.877,1.875,1.873,1.794,1.335,1.586,1.798,0.941,0.409,1.588]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7092838287353516]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.038762092590332]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[2.9942636489868164]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0808849334716797]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[21.797054290771484]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[48.9345703125]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[14.712890625]}},{"framework":"ui5-webcomponents-v1.3.1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[94.5]}},{"framework":"vanillajs-non-keyed","benchmark":"01_run1k","values":{"total":[36.693,34.725,34.461,35.293,35.012,35.64,36.507,35.166,35.055,36.029,35.145,35.816,35.061,35.499,35.611],"script":[2.49,2.424,2.424,2.398,2.393,2.68,2.421,2.426,2.544,2.631,2.47,2.524,2.426,2.502,2.509],"paint":[33.757,31.925,31.645,32.468,32.258,32.562,33.683,32.352,32.113,32.971,32.269,32.888,32.23,32.604,32.742]}},{"framework":"vanillajs-non-keyed","benchmark":"02_replace1k","values":{"total":[16.341,18.133,16.312,16.26,16.453,16.536,16.391,16.098,16.219,16.453,16.512,16.644,16.709,16.272,16.555],"script":[1.872,1.976,1.93,1.908,2.019,1.962,2.081,1.869,1.948,1.976,1.986,1.976,1.993,1.903,1.884],"paint":[14.065,15.749,14.029,13.963,13.99,14.152,13.873,13.836,13.877,14.073,14.104,14.301,14.283,13.964,14.298]}},{"framework":"vanillajs-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.309,15.765,17.017,16.025,16.242,15.903,16.515,16.572,15.932,15.935,17.323,15.953,16.212,16.598,15.942],"script":[0.192,0.923,1.209,0.768,1.221,0.483,0.355,0.812,0.791,0.498,0.659,0.162,1.094,1.13,0.906],"paint":[14.864,13.109,14.272,14.499,13.305,14.323,14.482,14.438,13.808,13.301,14,14.524,13.634,14.484,13.76]}},{"framework":"vanillajs-non-keyed","benchmark":"04_select1k","values":{"total":[2.575,2.734,2.452,4.573,3.159,2.732,2.291,2.872,2.19,3.091,2.149,2.589,3.646,3.161,2.451,2.707,1.993,2.169,4.136,2.545,2.495,3.713,2.59,2.489,2.217],"script":[0.057,0.055,0.529,0.058,0.056,0.06,0.056,0.06,0.526,0.743,0.054,0.063,0.172,0.704,0.062,0.799,0.207,0.054,0.057,0.059,0.516,0.054,0.054,0.634,0.6],"paint":[0.567,2.321,1.833,2.403,1.848,2.571,1.346,2.718,0.983,2.247,1.997,2.431,0.825,2.359,2.048,1.135,1.588,2.015,2.154,2.385,1.304,1.894,1.958,1.761,1.254]}},{"framework":"vanillajs-non-keyed","benchmark":"05_swap1k","values":{"total":[11.834,10.96,11.52,11.373,10.769,11.55,11.834,11.232,11.815,11.289,11.105,10.512,11.253,11.095,11.89],"script":[0.377,0.485,1.136,0.094,0.375,1.058,0.731,0.087,0.092,0.48,0.083,0.081,0.094,0.415,0.872],"paint":[10.172,9.454,9.188,10.065,9.144,9.425,8.938,9.855,9.998,9.88,9.806,9.119,9.894,9.958,9.751]}},{"framework":"vanillajs-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.414,33.41,34.172,33.662,34.029,34.737,33.776,34.221,33.724,33.684,35.236,34.214,33.618,34.78,33.864],"script":[3.127,3.163,3.497,3.61,3.548,3.514,3.16,3.409,3.22,3.216,3.368,3.195,3.447,3.751,3.404],"paint":[31.417,29.514,29.954,28.971,29.456,30.481,29.873,29.819,29.655,29.754,30.739,30.297,29.109,30.126,29.512]}},{"framework":"vanillajs-non-keyed","benchmark":"07_create10k","values":{"total":[375.232,369.314,368.358,371.014,367.053,372.506,368.12,370.965,367.269,368.978,370.483,367.436,370.465,373.447,367.239],"script":[29.694,27.277,27.356,30.012,30.719,28.886,30.034,28.13,28.387,29.203,30.132,29.874,28.991,29.276,27.418],"paint":[338.879,335.357,334.396,334.265,329.699,336.844,331.543,336.215,332.268,333.11,333.784,330.93,334.18,337.462,333.224]}},{"framework":"vanillajs-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[40.541,40.083,39.33,39.209,40.598,39.799,39.649,40.37,41.835,40.075,40.558,40.037,41.178,39.33,40.389],"script":[2.58,2.495,2.422,2.472,2.455,2.473,2.458,2.617,2.555,2.582,2.639,2.581,2.65,2.448,2.603],"paint":[37.108,36.805,36.135,35.971,37.269,36.524,36.384,36.931,38.447,36.662,37.097,36.635,37.68,36.046,36.971]}},{"framework":"vanillajs-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.073,12.025,12.024,12.464,11.943,10.843,12.03,11.66,11.462,12.007,11.719,11.452,11.384,11.043,11.589],"script":[10.104,10.363,10.081,10.167,9.563,9.843,10.071,10.261,9.331,10.308,9.617,9.837,9.563,9.918,9.697],"paint":[0.977,0.764,0.986,1.412,1.855,0.578,1.641,1.317,0.546,1.037,2.022,0.718,1.744,1.043,0.918]}},{"framework":"vanillajs-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.44146156311035156]}},{"framework":"vanillajs-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7387580871582031]}},{"framework":"vanillajs-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.676844596862793]}},{"framework":"vanillajs-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.619450569152832]}},{"framework":"vanillajs-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[12.175838470458984]}},{"framework":"vanillajs-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[11.9794921875]}},{"framework":"vanillajs-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.4296875]}},{"framework":"vanillajs-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.9]}},{"framework":"vanillajs-1-non-keyed","benchmark":"01_run1k","values":{"total":[35.457,36.128,34.692,34.252,35.914,34.282,34.357,35.491,35.024,34.883,34.507,35.37,35.585,35.426,35.639],"script":[2.449,2.558,2.397,2.388,2.472,2.344,2.328,2.439,2.413,2.41,2.347,2.479,2.357,2.51,2.463],"paint":[32.555,33.174,31.886,31.458,33.049,31.545,31.649,32.694,32.222,32.069,31.775,32.503,32.82,32.547,32.782]}},{"framework":"vanillajs-1-non-keyed","benchmark":"02_replace1k","values":{"total":[15.851,15.783,15.743,16.23,16.255,15.843,15.955,15.797,16.255,16.111,15.861,16.321,16.217,15.971,16.078],"script":[1.585,1.632,1.563,1.644,1.727,1.698,1.593,1.622,1.738,1.687,1.58,1.674,1.582,1.699,1.602],"paint":[13.87,13.786,13.796,14.178,14.114,13.737,13.921,13.795,14.105,14.018,13.875,14.258,14.244,13.917,14.064]}},{"framework":"vanillajs-1-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[15.355,15.174,16.225,15.543,15.957,15.692,16.922,15.288,15.445,16.046,15.725,15.115,15.653,15.091,15.663],"script":[0.667,0.161,1.358,0.659,0.184,0.183,0.866,0.577,0.976,0.582,0.167,0.153,0.803,0.543,0.156],"paint":[13.039,13.251,13.388,13.561,14.499,14.503,13.655,13.242,12.86,13.846,14.565,14.051,13.222,13.382,14.522]}},{"framework":"vanillajs-1-non-keyed","benchmark":"04_select1k","values":{"total":[2.424,4.158,2.323,2.912,3.037,2.228,2.704,2.194,2.211,2.225,2.336,2.33,2.19,5.827,2.478,3.473,2.897,4.66,4.442,2.477,2.321,2.193,2.434,2.557,2.657],"script":[0.373,0.056,0.119,0.393,0.818,0.059,0.057,0.058,0.059,0.059,0.059,0.065,0.06,0.529,0.057,0.963,0.406,0.065,0.055,0.061,0.299,0.056,0.578,0.061,0.056],"paint":[1.134,1.202,2.109,2.422,1.425,1.301,1.921,2.038,2.054,2.065,2.179,1.185,0.506,2.03,1.509,1.868,2.396,1.708,2.503,2.308,1.612,2.046,1.765,1.709,0.834]}},{"framework":"vanillajs-1-non-keyed","benchmark":"05_swap1k","values":{"total":[11.425,11.945,11.77,11.863,11.404,11.707,11.512,11.119,10.722,11.114,11.394,11.092,11.355,11.529,11.534],"script":[0.688,0.568,0.271,0.754,0.561,0.831,0.589,0.122,0.439,0.615,0.126,0.123,0.614,0.74,1.256],"paint":[9.35,9.777,9.376,10.175,9.075,9.866,9.091,9.392,8.774,9.307,10.333,9.287,8.625,8.66,8.804]}},{"framework":"vanillajs-1-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[33.84,33.47,33.022,33.244,32.887,33.339,33.663,33.79,33.552,32.818,33.268,33.457,33.502,33.144,33.62],"script":[2.677,2.844,3.011,2.783,2.929,2.654,3.022,3.141,2.95,2.809,2.743,2.595,2.81,3.007,2.708],"paint":[30.431,29.802,29.273,29.559,29.227,29.712,29.592,29.872,29.891,29.039,29.83,29.789,29.989,29.347,29.784]}},{"framework":"vanillajs-1-non-keyed","benchmark":"07_create10k","values":{"total":[368.313,377.388,372.447,364.153,366.881,363.819,368.347,366.248,365.535,366.487,365.691,365.468,378.29,367.91,366.087],"script":[27.221,27.738,27.765,27.552,27.455,28.133,27.148,27.203,27.22,28.923,27.134,27.287,28.6,27.721,27.371],"paint":[334.405,342.964,338.068,329.547,332.831,329.057,334.584,332.436,331.608,330.743,331.918,331.564,342.754,333.622,332.158]}},{"framework":"vanillajs-1-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[41.496,39.832,40.122,39.775,39.805,40.744,39.908,40.219,39.663,39.718,39.757,40.029,40.348,40.838,41.114],"script":[2.553,2.516,2.535,2.662,2.547,2.508,2.508,2.429,2.476,2.549,2.508,2.571,2.569,2.645,2.644],"paint":[38.095,36.475,36.769,36.272,36.41,37.395,36.517,36.887,36.376,36.287,36.433,36.581,37,37.315,37.625]}},{"framework":"vanillajs-1-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[12.514,11.759,11.646,12.41,11.963,11.183,11.574,11.963,11.923,12.448,11.594,12.117,11.607,11.891,12.175],"script":[10.411,10.116,9.952,10.233,9.45,9.319,10.168,9.972,10.5,10.593,9.54,10.62,10.001,9.668,10.578],"paint":[1.279,1.565,0.851,1.691,1.528,1.083,0.395,1.265,1.334,1.76,1.178,0.556,1.301,2.138,1.516]}},{"framework":"vanillajs-1-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.43665218353271484]}},{"framework":"vanillajs-1-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[1.7241792678833008]}},{"framework":"vanillajs-1-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[1.6646442413330078]}},{"framework":"vanillajs-1-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[0.5123929977416992]}},{"framework":"vanillajs-1-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[11.99890422821045]}},{"framework":"vanillajs-1-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[10.0205078125]}},{"framework":"vanillajs-1-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[2.1767578125]}},{"framework":"vanillajs-1-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[54.5]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"01_run1k","values":{"total":[36.106,33.809,35.417,33.539,35.235,35.353,35.782,35.458,36.289,34.764,35.745,34.869,36.682,34.926,35.544],"script":[2.687,2.426,2.586,2.558,2.617,2.577,2.46,2.464,2.631,2.55,2.724,2.464,2.639,2.479,2.423],"paint":[32.963,30.966,32.409,30.574,32.219,32.373,32.833,32.578,33.148,31.811,32.616,32.04,33.668,32.033,32.713]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"02_replace1k","values":{"total":[16.226,17.425,16.123,15.833,16.451,16.046,17.061,15.9,16.105,16.413,15.946,16.066,16.097,16.091,16.289],"script":[2.17,2.128,2.174,2.122,2.167,2.111,2.197,2.058,2.085,2.156,2.09,2.134,2.129,2.082,2.24],"paint":[13.646,14.889,13.552,13.315,13.87,13.528,14.444,13.435,13.579,13.86,13.453,13.52,13.535,13.603,13.662]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[16.549,17.055,16.838,16.626,16.847,16.398,16.777,16.588,17.002,16.112,17.484,16.409,16.608,16.232,16.257],"script":[1.774,0.939,1.7,1.303,2.058,1.468,1.748,1.405,1.659,1.594,1.471,1.319,1.505,1.396,1.511],"paint":[13.447,13.927,14.177,13.546,13.757,12.849,12.92,13.514,13.937,13.197,14.241,14.067,13.52,13.858,13.468]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"04_select1k","values":{"total":[3.745,3.794,4.084,3.365,3.117,3.478,3.039,3.103,3.89,3.634,4.199,3.618,3.074,2.966,3.336,3.729,3.394,3.345,4.07,3.343,3.154,3.541,2.89,3.26,3.976],"script":[1.464,0.901,1.198,0.996,0.572,1.055,1.254,1.174,0.912,1.459,1.871,1.591,1.167,1.14,1.291,1.022,0.936,1.29,0.929,0.916,1.567,0.257,0.772,1.084,1.779],"paint":[2.171,2.625,1.758,1.537,1.499,2.312,1.342,1.834,2.862,0.555,1.843,1.843,1.299,1.716,1.223,2.235,2.351,1.947,2.098,1.509,0.967,3.184,1.617,1.34,2.039]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"05_swap1k","values":{"total":[19.814,20.411,19.597,20.422,19.512,19.085,19.989,19.858,19.593,19.103,19.811,20.219,19.281,19.202,19.122],"script":[1.846,2.176,1.465,1.578,1.482,1.039,1.869,1.964,1.207,1.468,1.903,1.406,0.979,1.617,1.294],"paint":[16.775,16.481,16.665,17.68,16.648,16.342,16.661,16.545,17.39,16.629,16.637,17.091,17.297,16.522,17.136]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[15.725,15.468,15.39,15.95,15.836,15.689,15.477,15.429,15.709,15.406,15.532,15.549,16.22,16.222,15.738],"script":[0.711,0.738,0.699,0.696,0.955,0.719,0.709,0.693,0.701,0.703,0.825,0.692,0.898,0.771,0.706],"paint":[14.243,13.992,13.664,14.303,14.177,14.141,13.744,13.73,14.088,13.67,13.989,14.181,14.65,14.742,14.272]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"07_create10k","values":{"total":[426.944,421.015,420.993,417.161,418.851,419.688,418.093,417.226,420.929,422.115,418.942,422.004,416.482,419.755,420.389],"script":[89.238,92.343,91.407,90.209,90.434,93.374,87.712,90.683,90.767,95.633,92.716,92.705,89.745,91.294,89.46],"paint":[330.975,322.063,322.89,320.298,321.537,319.593,323.712,319.761,323.76,319.597,319.637,322.409,320.13,321.625,324.053]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[47.807,47.708,47.367,47.845,47.532,47.838,47.545,47.533,47.181,47.325,49.076,47.08,47.876,47.541,47.554],"script":[9.78,9.475,9.408,9.609,9.817,9.698,9.702,9.565,9.685,9.48,9.395,9.663,9.724,9.533,9.795],"paint":[37.116,37.325,37.082,37.387,36.821,37.282,36.949,37.062,36.634,36.99,38.796,36.563,37.166,37.165,36.868]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[14.762,13.844,13.891,14.373,14.856,14.246,15.04,14.578,13.505,14.253,14.608,14.45,14.242,14.164,14.357],"script":[12.916,12.131,11.585,12.173,12.35,12.496,12.827,12.491,11.88,12.421,12.603,13.018,12.339,12.511,12.258],"paint":[1.739,1.186,2.21,1.064,2.408,1.659,1.852,1.994,0.705,1.044,1.341,1.339,1.804,0.715,0.979]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7299995422363281]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[4.890883445739746]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[4.992438316345215]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[5.204547882080078]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[40.10545349121094]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[33.0810546875]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[11.67578125]}},{"framework":"voby-v0.48.0-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[85.5]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"01_run1k","values":{"total":[43.235,45.268,44.706,42.909,46.707,42.637,45.424,44.021,43.654,45.442,45.668,44.337,45.303,45.334,45.53],"script":[9.557,10.021,9.432,9.567,9.939,9.177,10.252,9.321,8.996,10.733,9.602,9.615,9.755,9.888,9.619],"paint":[33.279,34.822,34.839,32.914,36.33,33.002,34.76,34.286,34.25,34.264,35.643,34.31,35.108,35.006,35.474]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"02_replace1k","values":{"total":[19.616,19.217,19.339,19.254,19.996,19.135,19.702,19.426,18.878,21.721,19.692,19.001,18.972,19.095,19.862],"script":[4.404,4.302,4.574,4.593,4.612,4.468,4.625,4.19,4.45,4.998,4.591,4.028,4.362,3.901,5.05],"paint":[14.715,14.463,14.331,14.225,14.954,14.203,14.636,14.79,14.003,16.263,14.666,14.567,14.159,14.774,14.367]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[19.315,19.357,18.971,20.338,19.788,19.933,19.218,19.497,19.694,19.698,20.473,19.915,20.975,19.299,20.209],"script":[3.739,3.681,3.182,3.867,2.916,3.239,2.968,2.963,3.174,3.798,3.845,3.453,4.06,3.578,3.202],"paint":[14.481,14.692,14.823,15.721,15.819,15.637,14.925,15.544,15.202,15.093,14.533,14.104,15.69,13.378,14.434]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"04_select1k","values":{"total":[3.702,4.297,4.251,4.055,3.224,3.73,4.401,4.275,3.991,4.008,4.378,4.094,4.287,4.057,4.307,4.072,3.912,3.839,4.082,4.387,3.885,3.605,3.645,5.503,4.662],"script":[1.54,1.915,2.07,0.705,1.445,1.041,2.062,1.77,1.64,0.997,1.649,1.061,1.733,1.584,0.936,1.736,1.082,2.084,1.29,1.779,1.298,1.351,1.843,1.581,0.924],"paint":[2.05,1.924,2.064,3.226,1.67,2.295,1.356,1.988,1.606,2.902,1.656,2.91,1.644,2.362,3.246,2.028,2.215,1.64,1.692,2.476,1.525,2.143,1.71,2.159,2.642]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"05_swap1k","values":{"total":[13.187,12.247,13.873,13.307,13.133,12.848,13.251,12.95,12.654,12.929,13.573,13.121,12.865,13.331,13.017],"script":[2.165,1.233,0.97,1.397,1.623,2.229,1.356,1.899,1.596,1.111,1.245,1.216,1.294,1.015,0.94],"paint":[9.733,9.362,11.186,10.442,9.954,9.123,10.684,9.936,8.426,10.425,10.508,10.686,10.094,10.16,10.544]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[38.544,37.373,41.591,41.724,38.728,41.19,38.072,38.729,37.9,37.924,42.409,41.506,38.724,39.453,40.08],"script":[7.204,6.804,7.644,7.784,7.551,7.545,7.16,7.127,6.946,7.562,7.56,7.386,7.326,7.795,7.842],"paint":[30.208,29.776,33.051,33.003,30.291,32.245,29.982,30.622,30.165,29.513,33.572,33.245,30.228,30.77,31.062]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"07_create10k","values":{"total":[441.733,442.532,442.171,454.316,445.78,442.033,448.097,448.294,445.234,443.252,445.861,442.023,438.205,445.56,444.358],"script":[100.311,98.526,95.256,100.776,101.768,101.77,104.822,104.672,105.864,98.925,97.969,96.435,99.83,101.721,101.433],"paint":[334.628,337.314,340.428,346.812,337.296,333.5,336.584,336.912,332.654,337.662,341.121,338.95,331.708,337.207,336.211]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[50.683,49.942,49.864,50.431,50.39,52.853,49.962,50.207,49.207,50.394,49.287,50.201,50.743,50.07,49.797],"script":[8.701,8.569,8.779,8.833,9.704,9.191,8.767,8.836,8.398,8.883,8.375,8.677,9.378,8.752,8.955],"paint":[41.112,40.177,40.192,40.681,39.83,42.763,40.336,40.488,39.923,40.598,40.07,40.64,40.44,40.415,39.938]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.979,16.489,15.93,15.068,15.698,15.68,15.111,17.25,15.426,15.193,15.567,15.405,16.862,16.278,15.932],"script":[14.943,14.608,13.393,13.473,13.83,13.232,13.062,15.015,13.496,12.867,13.865,13.568,15.026,14.195,13.96],"paint":[1.337,1.777,2.445,1.476,1.76,2.355,1.483,2.121,1.842,1.992,1.606,1.743,1.725,1.475,1.873]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.7205495834350586]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.7463369369506836]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.757321357727051]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.22064208984375]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[28.258541107177734]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[55.9248046875]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[20.48046875]}},{"framework":"vue-v3.4.21-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[111.1]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"01_run1k","values":{"total":[39.636,39.177,40.96,41.384,39.627,39.875,39.682,42.456,40.123,42.724,41.339,40.367,41.182,42.238,40.423],"script":[6.165,6.475,6.766,6.369,6.513,6.554,6.849,6.464,6.552,6.744,6.059,6.38,6.35,6.692,6.367],"paint":[33.04,32.297,33.756,34.569,32.676,32.893,32.407,35.548,33.144,35.539,34.858,33.564,34.39,35.107,33.615]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"02_replace1k","values":{"total":[18.594,18.085,17.645,18.036,18.405,17.789,19.066,17.381,19.278,17.77,17.564,18.4,17.573,17.89,19.105],"script":[2.631,2.885,2.585,2.822,2.921,2.672,2.746,2.54,2.757,2.475,2.844,2.707,2.639,2.812,2.848],"paint":[15.457,14.724,14.581,14.758,15.025,14.657,15.853,14.425,16.034,14.821,14.296,15.219,14.515,14.616,15.805]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"03_update10th1k_x16","values":{"total":[20.277,19.45,18.841,19.965,19.518,20.384,19.99,19.452,19.492,19.747,20.292,19.918,19.513,19.378,20.019],"script":[4.467,3.51,2.869,3.675,3.333,3.716,3.488,3.533,3.227,3.541,4.25,3.46,4.068,3.134,3.944],"paint":[12.773,14.875,14.958,14.301,15.04,13.884,15.103,14.808,14.956,14.912,14.728,14.669,14.191,15.143,14.627]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"04_select1k","values":{"total":[5.226,5.295,5.411,6.169,5.446,5.852,5.986,5.079,5.421,4.916,5.709,5.192,6.407,5.647,4.997,5.009,5.223,5.337,5.173,5.056,5.298,5.205,5.157,5.135,5.916],"script":[2.444,3.072,2.673,3.346,2.728,3.321,3.413,2.667,3.15,2.86,2.969,2.452,3.339,2.379,3.385,2.565,2.515,2.75,2.524,2.778,2.597,2.881,2.461,2.114,2.868],"paint":[1.559,2.093,2.312,2.704,1.681,2.401,1.779,2.125,2.161,1.936,1.826,2.265,1.227,2.785,1.515,1.627,2.595,2.477,2.026,1.524,2.227,2.19,2.592,2.452,2.914]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"05_swap1k","values":{"total":[14.552,12.618,12.77,13.348,13.038,12.222,13.929,12.649,13.06,13.657,13.127,13.524,12.714,13.251,12.926],"script":[1.74,1.259,1.736,1.795,1.947,1.717,2.464,1.53,1.845,1.873,2.178,1.972,1.874,1.846,1.774],"paint":[10.067,9.483,9.896,10.282,9.256,9.481,9.67,10.102,9.783,9.311,9.611,10.591,8.831,9.871,9.745]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"06_remove-one-1k","values":{"total":[35.054,34.675,36.773,35.395,35.106,35.807,35.656,35.697,35.324,36.012,35.525,34.659,36.359,36.053,35.967],"script":[3.94,4.403,4.322,4.614,4.35,4.462,4.668,4.361,4.054,4.762,4.264,4.013,4.566,4.639,4.625],"paint":[30.35,28.999,31.644,29.693,29.687,30.227,29.861,30.194,30.533,30.04,30.136,29.966,30.643,30.58,30.183]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"07_create10k","values":{"total":[408.729,403.879,405.441,401.161,402.443,404.348,409.427,401.469,399.558,405.904,402.218,403.121,398.599,402.169,403.329],"script":[65.349,63.213,65.261,64.036,64.303,62.579,65.522,63.113,62.593,64.424,65.292,63.912,61.606,64.175,65.65],"paint":[336.417,333.966,333.424,330.404,331.475,334.965,337.222,331.671,330.187,334.712,330.218,332.562,330.537,331.307,330.896]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"08_create1k-after1k_x2","values":{"total":[45.582,44.29,44.574,45.255,44.739,44.011,44.706,45.849,45.595,45.284,45.16,45.282,43.89,45.523,45.082],"script":[6.496,5.957,5.947,6.091,5.988,5.873,6.132,6.571,6.49,6.425,6.39,6.45,5.967,6.358,6.128],"paint":[38.221,37.448,37.687,38.386,37.865,37.251,37.71,38.386,38.21,38.027,37.923,37.979,37.069,38.263,38.02]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"09_clear1k_x8","values":{"total":[16.577,16.382,16.014,16.332,15.48,16.587,14.79,16.982,14.685,15.431,14.705,16.571,16.766,15.88,15.687],"script":[14.648,14.241,14.376,14.669,14.159,14.145,13.186,14.689,12.476,13.805,12.788,14.368,15.054,14.033,13.628],"paint":[1.828,1.544,1.158,1.56,0.966,1.733,0.746,1.341,2.116,1.535,1.824,2.103,1.617,1.75,1.096]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"21_ready-memory","values":{"DEFAULT":[0.5590343475341797]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"22_run-memory","values":{"DEFAULT":[3.576592445373535]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"23_update5-memory","values":{"DEFAULT":[3.5911664962768555]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"25_run-clear-memory","values":{"DEFAULT":[1.0572319030761719]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"26_run-10k-memory","values":{"DEFAULT":[27.715892791748047]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"41_size-uncompressed","values":{"DEFAULT":[29.3798828125]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"42_size-compressed","values":{"DEFAULT":[10.990234375]}},{"framework":"vue-vapor-v3.2024.0-83641f7-non-keyed","benchmark":"43_first-paint","values":{"DEFAULT":[94.8]}}] \ No newline at end of file diff --git a/webdriver-ts/src/benchmarksSize.ts b/webdriver-ts/src/benchmarksSize.ts index 3099797dc..23fbca8b4 100644 --- a/webdriver-ts/src/benchmarksSize.ts +++ b/webdriver-ts/src/benchmarksSize.ts @@ -13,7 +13,7 @@ export const benchUncompressedSize: benchmarksCommon.SizeBenchmarkInfo = { label: "uncompressed size", description: "uncompressed size of all implementation files (excluding /css and http headers)", type: BenchmarkType.SIZE, - fn: (sizeInfo) => toKb(sizeInfo.size_uncompressed), + fn: (sizeInfo) => Number(toKb(sizeInfo.size_uncompressed).toFixed(1)), }; export const benchCompressedSize: benchmarksCommon.SizeBenchmarkInfo = { @@ -21,7 +21,7 @@ export const benchCompressedSize: benchmarksCommon.SizeBenchmarkInfo = { label: "compressed size", description: "brotli compressed size of all implementation files (excluding /css and http headers)", type: BenchmarkType.SIZE, - fn: (sizeInfo) => toKb(sizeInfo.size_compressed), + fn: (sizeInfo) => Number(toKb(sizeInfo.size_compressed).toFixed(1)), }; export const benchFP: benchmarksCommon.SizeBenchmarkInfo = { diff --git a/webdriver-ts/src/createResultJS.ts b/webdriver-ts/src/createResultJS.ts index 6bbab9f4c..cd9c150fa 100644 --- a/webdriver-ts/src/createResultJS.ts +++ b/webdriver-ts/src/createResultJS.ts @@ -72,8 +72,12 @@ async function main() { } }); - frameworks.forEach((framework) => { - allBenchmarks.forEach((benchmarkInfo) => { + frameworks.forEach((framework,idx) => { + let result: any = { + f: idx, + b: [] + }; + allBenchmarks.forEach((benchmarkInfo) => { if (!args.browser || framework.keyed) { let name = `${fileName(framework, benchmarkInfo)}`; let file = `${resultsDirectory}/${name}`; @@ -120,24 +124,25 @@ async function main() { ); } } - let result: any = { - f: data.framework, - b: data.benchmark, - v: values, - }; + result.b.push({ + b: allBenchmarks.findIndex((b) => b.id== data.benchmark), + v: values, + }); let resultNice = { framework: data.framework, benchmark: data.benchmark, values: values, }; - resultJS += "\n" + JSON.stringify(result) + ","; jsonResult.push(resultNice); } else { console.log("MISSING FILE", file); } } }); + resultJS += "\n" + JSON.stringify(result, function(key, val) { + return val.toFixed ? Number(val.toFixed(1)) : val; + }) + ","; }); resultJS += "];\n"; diff --git a/webdriver-ts/src/writeResults.ts b/webdriver-ts/src/writeResults.ts index 651c24936..b6d4b0905 100644 --- a/webdriver-ts/src/writeResults.ts +++ b/webdriver-ts/src/writeResults.ts @@ -50,9 +50,9 @@ export function writeResults(resultDir: string, res: ResultLightHouse | ResultCP case BenchmarkType.CPU: createResultFile( resultDir, - { total: res.results.map((r) => r.total), - script: res.results.map((r) => r.script), - paint: res.results.map((r) => r.paint), + { total: res.results.map((r) => Number(r.total.toFixed(1))), + script: res.results.map((r) => Number(r.script.toFixed(1))), + paint: res.results.map((r) => Number(r.paint.toFixed(1))), }, res.framework, res.benchmark