blob: d3e82f710351a62beb5cd087653dd8dadc53cce2 [file] [log] [blame]
/* ----------------------------------------------------------------------- *//**
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*//* ----------------------------------------------------------------------- */
-- The data were collected by Anderson, Edgar (1935).
-- The irises of the Gaspe Peninsula, Bulletin of the American Iris Society, 59, 25.
-- Classification
SELECT setseed(0.6);
DROP TABLE IF EXISTS iris_data;
CREATE TABLE iris_data(
id integer,
attributes numeric[],
class_text varchar,
class integer,
grp text
);
INSERT INTO iris_data VALUES
(1,ARRAY[5.1,3.5,1.4,0.2],'Iris-setosa',1,'1'),
(2,ARRAY[4.9,3.0,1.4,0.2],'Iris-setosa',1,'1'),
(3,ARRAY[4.7,3.2,1.3,0.2],'Iris-setosa',1,'1'),
(4,ARRAY[4.6,3.1,1.5,0.2],'Iris-setosa',1,'1'),
(5,ARRAY[5.0,3.6,1.4,0.2],'Iris-setosa',1,'1'),
(6,ARRAY[5.4,3.9,1.7,0.4],'Iris-setosa',1,'1'),
(7,ARRAY[4.6,3.4,1.4,0.3],'Iris-setosa',1,'1'),
(8,ARRAY[5.0,3.4,1.5,0.2],'Iris-setosa',1,'1'),
(9,ARRAY[4.4,2.9,1.4,0.2],'Iris-setosa',1,'1'),
(10,ARRAY[4.9,3.1,1.5,0.1],'Iris-setosa',1,'1'),
(11,ARRAY[5.4,3.7,1.5,0.2],'Iris-setosa',1,'1'),
(12,ARRAY[4.8,3.4,1.6,0.2],'Iris-setosa',1,'1'),
(13,ARRAY[4.8,3.0,1.4,0.1],'Iris-setosa',1,'1'),
(14,ARRAY[4.3,3.0,1.1,0.1],'Iris-setosa',1,'1'),
(43,ARRAY[4.4,3.2,1.3,0.2],'Iris-setosa',1,'1'),
(44,ARRAY[5.0,3.5,1.6,0.6],'Iris-setosa',1,'1'),
(45,ARRAY[5.1,3.8,1.9,0.4],'Iris-setosa',1,'1'),
(46,ARRAY[4.8,3.0,1.4,0.3],'Iris-setosa',1,'1'),
(47,ARRAY[5.1,3.8,1.6,0.2],'Iris-setosa',1,'1'),
(48,ARRAY[4.6,3.2,1.4,0.2],'Iris-setosa',1,'1'),
(49,ARRAY[5.3,3.7,1.5,0.2],'Iris-setosa',1,'1'),
(50,ARRAY[5.0,3.3,1.4,0.2],'Iris-setosa',1,'1'),
(51,ARRAY[7.0,3.2,4.7,1.4],'Iris-versicolor',2,'1'),
(52,ARRAY[6.4,3.2,4.5,1.5],'Iris-versicolor',2,'1'),
(53,ARRAY[6.9,3.1,4.9,1.5],'Iris-versicolor',2,'1'),
(54,ARRAY[5.5,2.3,4.0,1.3],'Iris-versicolor',2,'1'),
(55,ARRAY[6.5,2.8,4.6,1.5],'Iris-versicolor',2,'1'),
(56,ARRAY[5.7,2.8,4.5,1.3],'Iris-versicolor',2,'1'),
(57,ARRAY[6.3,3.3,4.7,1.6],'Iris-versicolor',2,'1'),
(58,ARRAY[4.9,2.4,3.3,1.0],'Iris-versicolor',2,'1'),
(59,ARRAY[6.6,2.9,4.6,1.3],'Iris-versicolor',2,'1'),
(60,ARRAY[5.2,2.7,3.9,1.4],'Iris-versicolor',2,'1'),
(61,ARRAY[5.0,2.0,3.5,1.0],'Iris-versicolor',2,'1'),
(62,ARRAY[5.9,3.0,4.2,1.5],'Iris-versicolor',2,'1'),
(63,ARRAY[6.0,2.2,4.0,1.0],'Iris-versicolor',2,'1'),
(64,ARRAY[6.1,2.9,4.7,1.4],'Iris-versicolor',2,'1'),
(65,ARRAY[5.6,2.9,3.6,1.3],'Iris-versicolor',2,'1'),
(66,ARRAY[6.7,3.1,4.4,1.4],'Iris-versicolor',2,'1'),
(67,ARRAY[5.6,3.0,4.5,1.5],'Iris-versicolor',2,'1'),
(68,ARRAY[5.8,2.7,4.1,1.0],'Iris-versicolor',2,'1'),
(69,ARRAY[6.2,2.2,4.5,1.5],'Iris-versicolor',2,'1'),
(92,ARRAY[6.1,3.0,4.6,1.4],'Iris-versicolor',2,'1'),
(93,ARRAY[5.8,2.6,4.0,1.2],'Iris-versicolor',2,'1'),
(94,ARRAY[5.0,2.3,3.3,1.0],'Iris-versicolor',2,'1'),
(95,ARRAY[5.6,2.7,4.2,1.3],'Iris-versicolor',2,'1'),
(96,ARRAY[5.7,3.0,4.2,1.2],'Iris-versicolor',2,'1'),
(97,ARRAY[5.7,2.9,4.2,1.3],'Iris-versicolor',2,'1'),
(98,ARRAY[6.2,2.9,4.3,1.3],'Iris-versicolor',2,'1'),
(99,ARRAY[5.1,2.5,3.0,1.1],'Iris-versicolor',2,'1'),
(100,ARRAY[5.7,2.8,4.1,1.3],'Iris-versicolor',2,'1'),
(101,ARRAY[6.3,3.3,6.0,2.5],'Iris-virginica',3,'1'),
(102,ARRAY[5.8,2.7,5.1,1.9],'Iris-virginica',3,'1'),
(103,ARRAY[7.1,3.0,5.9,2.1],'Iris-virginica',3,'1'),
(104,ARRAY[6.3,2.9,5.6,1.8],'Iris-virginica',3,'1'),
(105,ARRAY[6.5,3.0,5.8,2.2],'Iris-virginica',3,'1'),
(106,ARRAY[7.6,3.0,6.6,2.1],'Iris-virginica',3,'1'),
(107,ARRAY[4.9,2.5,4.5,1.7],'Iris-virginica',3,'1'),
(108,ARRAY[7.3,2.9,6.3,1.8],'Iris-virginica',3,'1'),
(109,ARRAY[6.7,2.5,5.8,1.8],'Iris-virginica',3,'1'),
(110,ARRAY[7.2,3.6,6.1,2.5],'Iris-virginica',3,'1'),
(111,ARRAY[6.5,3.2,5.1,2.0],'Iris-virginica',3,'1'),
(112,ARRAY[6.4,2.7,5.3,1.9],'Iris-virginica',3,'1'),
(113,ARRAY[6.8,3.0,5.5,2.1],'Iris-virginica',3,'1'),
(144,ARRAY[6.8,3.2,5.9,2.3],'Iris-virginica',3,'1'),
(145,ARRAY[6.7,3.3,5.7,2.5],'Iris-virginica',3,'1'),
(146,ARRAY[6.7,3.0,5.2,2.3],'Iris-virginica',3,'1'),
(147,ARRAY[6.3,2.5,5.0,1.9],'Iris-virginica',3,'1'),
(148,ARRAY[6.5,3.0,5.2,2.0],'Iris-virginica',3,'1'),
(149,ARRAY[6.2,3.4,5.4,2.3],'Iris-virginica',3,'1'),
(150,ARRAY[5.9,3.0,5.1,1.8],'Iris-virginica',3,'1'),
(27,ARRAY[5.0,3.4,1.6,0.4],'Iris-setosa',1,'2'),
(28,ARRAY[5.2,3.5,1.5,0.2],'Iris-setosa',1,'2'),
(29,ARRAY[5.2,3.4,1.4,0.2],'Iris-setosa',1,'2'),
(30,ARRAY[4.7,3.2,1.6,0.2],'Iris-setosa',1,'2'),
(31,ARRAY[4.8,3.1,1.6,0.2],'Iris-setosa',1,'2'),
(32,ARRAY[5.4,3.4,1.5,0.4],'Iris-setosa',1,'2'),
(33,ARRAY[5.2,4.1,1.5,0.1],'Iris-setosa',1,'2'),
(34,ARRAY[5.5,4.2,1.4,0.2],'Iris-setosa',1,'2'),
(35,ARRAY[4.9,3.1,1.5,0.1],'Iris-setosa',1,'2'),
(36,ARRAY[5.0,3.2,1.2,0.2],'Iris-setosa',1,'2'),
(37,ARRAY[5.5,3.5,1.3,0.2],'Iris-setosa',1,'2'),
(38,ARRAY[4.9,3.1,1.5,0.1],'Iris-setosa',1,'2'),
(39,ARRAY[4.4,3.0,1.3,0.2],'Iris-setosa',1,'2'),
(40,ARRAY[5.1,3.4,1.5,0.2],'Iris-setosa',1,'2'),
(41,ARRAY[5.0,3.5,1.3,0.3],'Iris-setosa',1,'2'),
(42,ARRAY[4.5,2.3,1.3,0.3],'Iris-setosa',1,'2'),
(43,ARRAY[4.4,3.2,1.3,0.2],'Iris-setosa',1,'2'),
(44,ARRAY[5.0,3.5,1.6,0.6],'Iris-setosa',1,'2'),
(45,ARRAY[5.1,3.8,1.9,0.4],'Iris-setosa',1,'2'),
(46,ARRAY[4.8,3.0,1.4,0.3],'Iris-setosa',1,'2'),
(47,ARRAY[5.1,3.8,1.6,0.2],'Iris-setosa',1,'2'),
(48,ARRAY[4.6,3.2,1.4,0.2],'Iris-setosa',1,'2'),
(49,ARRAY[5.3,3.7,1.5,0.2],'Iris-setosa',1,'2'),
(50,ARRAY[5.0,3.3,1.4,0.2],'Iris-setosa',1,'2'),
(75,ARRAY[6.4,2.9,4.3,1.3],'Iris-versicolor',2,'2'),
(76,ARRAY[6.6,3.0,4.4,1.4],'Iris-versicolor',2,'2'),
(77,ARRAY[6.8,2.8,4.8,1.4],'Iris-versicolor',2,'2'),
(78,ARRAY[6.7,3.0,5.0,1.7],'Iris-versicolor',2,'2'),
(79,ARRAY[6.0,2.9,4.5,1.5],'Iris-versicolor',2,'2'),
(80,ARRAY[5.7,2.6,3.5,1.0],'Iris-versicolor',2,'2'),
(81,ARRAY[5.5,2.4,3.8,1.1],'Iris-versicolor',2,'2'),
(82,ARRAY[5.5,2.4,3.7,1.0],'Iris-versicolor',2,'2'),
(83,ARRAY[5.8,2.7,3.9,1.2],'Iris-versicolor',2,'2'),
(84,ARRAY[6.0,2.7,5.1,1.6],'Iris-versicolor',2,'2'),
(85,ARRAY[5.4,3.0,4.5,1.5],'Iris-versicolor',2,'2'),
(86,ARRAY[6.0,3.4,4.5,1.6],'Iris-versicolor',2,'2'),
(87,ARRAY[6.7,3.1,4.7,1.5],'Iris-versicolor',2,'2'),
(88,ARRAY[6.3,2.3,4.4,1.3],'Iris-versicolor',2,'2'),
(89,ARRAY[5.6,3.0,4.1,1.3],'Iris-versicolor',2,'2'),
(90,ARRAY[5.5,2.5,4.0,1.3],'Iris-versicolor',2,'2'),
(91,ARRAY[5.5,2.6,4.4,1.2],'Iris-versicolor',2,'2'),
(92,ARRAY[6.1,3.0,4.6,1.4],'Iris-versicolor',2,'2'),
(93,ARRAY[5.8,2.6,4.0,1.2],'Iris-versicolor',2,'2'),
(94,ARRAY[5.0,2.3,3.3,1.0],'Iris-versicolor',2,'2'),
(95,ARRAY[5.6,2.7,4.2,1.3],'Iris-versicolor',2,'2'),
(96,ARRAY[5.7,3.0,4.2,1.2],'Iris-versicolor',2,'2'),
(97,ARRAY[5.7,2.9,4.2,1.3],'Iris-versicolor',2,'2'),
(98,ARRAY[6.2,2.9,4.3,1.3],'Iris-versicolor',2,'2'),
(99,ARRAY[5.1,2.5,3.0,1.1],'Iris-versicolor',2,'2'),
(100,ARRAY[5.7,2.8,4.1,1.3],'Iris-versicolor',2,'2'),
(101,ARRAY[6.3,3.3,6.0,2.5],'Iris-virginica',3,'2'),
(102,ARRAY[5.8,2.7,5.1,1.9],'Iris-virginica',3,'2'),
(103,ARRAY[7.1,3.0,5.9,2.1],'Iris-virginica',3,'2'),
(104,ARRAY[6.3,2.9,5.6,1.8],'Iris-virginica',3,'2'),
(105,ARRAY[6.5,3.0,5.8,2.2],'Iris-virginica',3,'2'),
(106,ARRAY[7.6,3.0,6.6,2.1],'Iris-virginica',3,'2'),
(107,ARRAY[4.9,2.5,4.5,1.7],'Iris-virginica',3,'2'),
(108,ARRAY[7.3,2.9,6.3,1.8],'Iris-virginica',3,'2'),
(138,ARRAY[6.4,3.1,5.5,1.8],'Iris-virginica',3,'2'),
(139,ARRAY[6.0,3.0,4.8,1.8],'Iris-virginica',3,'2'),
(140,ARRAY[6.9,3.1,5.4,2.1],'Iris-virginica',3,'2'),
(141,ARRAY[6.7,3.1,5.6,2.4],'Iris-virginica',3,'2'),
(142,ARRAY[6.9,3.1,5.1,2.3],'Iris-virginica',3,'2'),
(143,ARRAY[5.8,2.7,5.1,1.9],'Iris-virginica',3,'2'),
(144,ARRAY[6.8,3.2,5.9,2.3],'Iris-virginica',3,'2'),
(145,ARRAY[6.7,3.3,5.7,2.5],'Iris-virginica',3,'2'),
(146,ARRAY[6.7,3.0,5.2,2.3],'Iris-virginica',3,'2'),
(147,ARRAY[6.3,2.5,5.0,1.9],'Iris-virginica',3,'2'),
(148,ARRAY[6.5,3.0,5.2,2.0],'Iris-virginica',3,'2'),
(149,ARRAY[6.2,3.4,5.4,2.3],'Iris-virginica',3,'2'),
(150,ARRAY[5.9,3.0,5.1,1.8],'Iris-virginica',3,'2');
-- NOTE that the batch specific tables were created using:
-- madlib.minibatch_preprocessor(), with the regular source tables used in
-- this file.
-- Create preprocessed data that can be used with minibatch MLP:
DROP TABLE IF EXISTS iris_data_batch, iris_data_batch_summary, iris_data_batch_standardization;
CREATE TABLE iris_data_batch(
__id__ integer,
dependent_varname double precision[],
independent_varname double precision[]
);
COPY iris_data_batch (__id__, dependent_varname, independent_varname) FROM STDIN NULL '?' DELIMITER '|';
0 | {{0,1,0},{0,1,0},{0,0,1},{1,0,0},{0,1,0},{0,1,0},{0,0,1},{1,0,0},{1,0,0},{0,1,0},{1,0,0},{0,0,1},{0,0,1},{0,0,1},{1,0,0},{0,0,1},{0,0,1},{1,0,0},{1,0,0},{0,0,1},{0,1,0},{0,0,1},{0,0,1},{0,0,1},{0,0,1},{1,0,0},{0,1,0},{0,0,1},{0,0,1},{1,0,0}} | {{0.828881825720994,-0.314980522532101,0.363710790466334,0.159758615207397},{-1.08079689039279,-1.57669227467446,-0.229158821743702,-0.240110581430527},{-1.08079689039279,-1.32434992424599,0.482284712908341,0.692917544057962},{-1.46273263361555,0.442046528753317,-1.35561108494277,-1.30642843913166},{-0.0623015751321059,-0.567322872960574,0.245136868024327,0.159758615207397},{-0.189613489539692,-0.819665223389045,0.304423829245331,0.159758615207397},{0.701569911313408,-1.32434992424599,0.778719519013359,0.959497008483245},{-1.20810880480038,-0.0626381721036282,-1.35561108494277,-1.4397181713443},{-0.698861147170034,0.946731229610261,-1.35561108494277,-1.30642843913166},{-0.82617306157762,-1.32434992424599,-0.407019705406713,-0.106820849217886},{-0.698861147170034,2.71312768260957,-1.29632412372177,-1.4397181713443},{1.33812948335134,0.442046528753317,1.31230217000239,1.49265593733381},{0.319634168090651,-0.0626381721036282,0.660145596571352,0.826207276270604},{0.701569911313408,-1.32434992424599,0.778719519013359,0.959497008483245},{-0.698861147170034,1.19907358003873,-1.29632412372177,-1.30642843913166},{1.46544139775892,0.189704178324845,0.838006480234363,1.49265593733381},{1.21081756894375,-0.0626381721036282,0.897293441455367,1.49265593733381},{-0.444237318354863,1.70375828089568,-1.29632412372177,-1.30642843913166},{-0.82617306157762,1.95610063132415,-1.05917627883775,-1.03984897470638},{0.828881825720994,-0.819665223389045,0.95658040267637,0.959497008483245},{0.956193740128579,-0.567322872960574,0.541571674129345,0.42633807963268},{1.33812948335134,0.442046528753317,1.31230217000239,1.49265593733381},{0.574257996905822,0.946731229610261,1.01586736389737,1.49265593733381},{0.0650103392754793,-0.819665223389045,0.838006480234363,0.959497008483245},{0.0650103392754793,-0.819665223389045,0.838006480234363,0.959497008483245},{-1.46273263361555,0.442046528753317,-1.35561108494277,-1.30642843913166},{0.574257996905822,-2.08137697553141,0.482284712908341,0.42633807963268},{1.21081756894375,0.189704178324845,1.13444128633938,1.62594566954645},{1.97468905538926,-0.314980522532101,1.54945001488641,0.826207276270604},{-1.08079689039279,0.189704178324845,-1.29632412372177,-1.4397181713443}}
1 | {{0,1,0},{1,0,0},{0,1,0},{1,0,0},{1,0,0},{1,0,0},{1,0,0},{0,1,0},{0,0,1},{0,0,1},{1,0,0},{0,0,1},{1,0,0},{0,0,1},{0,1,0},{0,1,0},{0,1,0},{1,0,0},{1,0,0},{0,0,1},{0,1,0},{0,1,0},{0,0,1},{1,0,0},{1,0,0},{0,1,0},{1,0,0},{0,0,1},{0,1,0},{0,1,0}} | {{-0.0623015751321059,-0.0626381721036282,0.304423829245331,0.0264688829947554},{-0.316925403947277,2.96547003303804,-1.35561108494277,-1.30642843913166},{0.319634168090651,-0.819665223389045,0.838006480234363,0.559627811845321},{-0.953484975985206,1.19907358003873,-1.41489804616377,-1.17313870691902},{-0.953484975985206,0.442046528753317,-1.47418500738478,-1.30642843913166},{-1.33542071920796,0.442046528753317,-1.41489804616377,-1.30642843913166},{-1.71735646243072,-0.0626381721036282,-1.41489804616377,-1.30642843913166},{0.446946082498236,-0.0626381721036282,0.541571674129345,0.293048347420038},{1.21081756894375,-1.32434992424599,1.25301520878139,0.826207276270604},{0.701569911313408,0.694388879181789,1.3715891312234,1.75923540175909},{-1.84466837683831,-0.0626381721036282,-1.53347196860578,-1.4397181713443},{1.84737714098168,1.45141593046721,1.4308760924444,1.75923540175909},{-0.82617306157762,1.19907358003873,-1.35561108494277,-1.30642843913166},{0.701569911313408,-0.314980522532101,1.13444128633938,0.826207276270604},{1.33812948335134,-0.567322872960574,0.660145596571352,0.293048347420038},{0.192322253683066,-0.0626381721036282,0.304423829245331,0.42633807963268},{-0.189613489539692,-0.819665223389045,0.304423829245331,0.159758615207397},{-1.46273263361555,0.189704178324845,-1.29632412372177,-1.30642843913166},{-1.71735646243072,0.442046528753317,-1.41489804616377,-1.30642843913166},{0.828881825720994,0.189704178324845,1.07515432511838,0.826207276270604},{0.0650103392754793,-1.07200757381752,0.185849906803323,0.0264688829947554},{-0.953484975985206,-2.58606167638835,-0.110584899301695,-0.240110581430527},{0.192322253683066,-0.0626381721036282,0.838006480234363,0.826207276270604},{-0.953484975985206,1.19907358003873,-1.23703716250076,-0.773269510281093},{-0.82617306157762,0.946731229610261,-1.29632412372177,-1.30642843913166},{0.319634168090651,0.946731229610261,0.482284712908341,0.559627811845321},{-0.953484975985206,0.694388879181789,-1.35561108494277,-1.30642843913166},{0.192322253683066,-0.0626381721036282,0.838006480234363,0.826207276270604},{0.446946082498236,-0.314980522532101,0.600858635350349,0.293048347420038},{-0.0623015751321059,-0.567322872960574,0.482284712908341,0.159758615207397}}
2 | {{1,0,0},{1,0,0},{0,0,1},{1,0,0},{0,1,0},{0,1,0},{1,0,0},{1,0,0},{0,0,1},{0,0,1},{0,1,0},{0,1,0},{0,1,0},{0,1,0},{1,0,0},{0,0,1},{0,1,0},{1,0,0},{1,0,0},{0,0,1},{1,0,0},{0,0,1},{1,0,0},{1,0,0},{1,0,0},{1,0,0},{0,1,0},{1,0,0},{0,1,0},{0,0,1}} | {{-0.953484975985206,0.946731229610261,-1.23703716250076,-1.03984897470638},{-0.953484975985206,0.694388879181789,-1.35561108494277,-1.30642843913166},{1.21081756894375,0.694388879181789,1.19372824756038,1.75923540175909},{-1.20810880480038,0.946731229610261,-1.23703716250076,-1.30642843913166},{1.08350565453616,-0.314980522532101,0.541571674129345,0.159758615207397},{-0.189613489539692,-0.314980522532101,-0.0512979380806911,0.159758615207397},{-1.20810880480038,-0.0626381721036282,-1.35561108494277,-1.17313870691902},{-1.08079689039279,0.189704178324845,-1.29632412372177,-1.4397181713443},{0.956193740128579,-0.0626381721036282,0.897293441455367,1.09278674069589},{0.956193740128579,-0.0626381721036282,0.897293441455367,1.09278674069589},{1.46544139775892,0.189704178324845,0.719432557792356,0.42633807963268},{0.0650103392754793,-1.07200757381752,0.185849906803323,0.0264688829947554},{1.08350565453616,-0.0626381721036282,0.422997751687338,0.293048347420038},{0.319634168090651,-0.314980522532101,0.482284712908341,0.42633807963268},{-0.82617306157762,1.95610063132415,-1.23703716250076,-1.30642843913166},{0.956193740128579,-0.0626381721036282,1.25301520878139,1.35936620512117},{-0.0623015751321059,-1.07200757381752,-0.110584899301695,-0.240110581430527},{-0.571549232762449,1.70375828089568,-1.29632412372177,-1.30642843913166},{-0.571549232762449,1.70375828089568,-1.29632412372177,-1.30642843913166},{2.35662479861202,-0.0626381721036282,1.72731089854942,1.22607647290853},{-1.71735646243072,0.442046528753317,-1.41489804616377,-1.30642843913166},{1.72006522657409,-0.0626381721036282,1.31230217000239,1.22607647290853},{-0.953484975985206,0.946731229610261,-1.29632412372177,-1.30642843913166},{-1.46273263361555,0.946731229610261,-1.35561108494277,-1.17313870691902},{-1.08079689039279,-0.0626381721036282,-1.35561108494277,-1.30642843913166},{-0.953484975985206,1.45141593046721,-1.35561108494277,-1.30642843913166},{0.701569911313408,-1.82903462510294,0.422997751687338,0.159758615207397},{-0.444237318354863,2.20844298175262,-1.17775020127976,-1.03984897470638},{-0.0623015751321059,-0.314980522532101,0.304423829245331,0.159758615207397},{1.33812948335134,-0.0626381721036282,1.07515432511838,1.22607647290853}}
3 | {{0,1,0},{0,1,0},{0,1,0},{0,1,0},{1,0,0},{1,0,0},{0,0,1},{0,1,0},{1,0,0},{0,1,0},{1,0,0},{0,1,0},{0,1,0},{0,0,1},{1,0,0},{0,1,0},{0,1,0},{0,0,1},{1,0,0},{1,0,0},{0,1,0},{0,0,1},{1,0,0},{0,1,0},{0,0,1},{0,1,0},{0,0,1},{0,1,0},{0,1,0},{0,1,0}} | {{-0.953484975985206,-1.82903462510294,-0.229158821743702,-0.240110581430527},{0.319634168090651,-2.08137697553141,0.185849906803323,-0.240110581430527},{-0.189613489539692,-0.0626381721036282,0.482284712908341,0.42633807963268},{-0.316925403947277,-1.07200757381752,0.422997751687338,0.0264688829947554},{-0.953484975985206,1.19907358003873,-1.23703716250076,-0.773269510281093},{-0.316925403947277,1.19907358003873,-1.41489804616377,-1.30642843913166},{0.0650103392754793,-0.819665223389045,0.838006480234363,0.959497008483245},{0.446946082498236,-0.0626381721036282,0.541571674129345,0.293048347420038},{-0.444237318354863,0.946731229610261,-1.29632412372177,-1.03984897470638},{1.21081756894375,0.189704178324845,0.600858635350349,0.42633807963268},{-0.82617306157762,1.95610063132415,-1.23703716250076,-1.30642843913166},{-0.0623015751321059,-0.567322872960574,0.245136868024327,0.159758615207397},{-0.316925403947277,-1.82903462510294,0.185849906803323,0.159758615207397},{1.21081756894375,-0.0626381721036282,0.897293441455367,1.49265593733381},{-1.59004454802313,-1.82903462510294,-1.41489804616377,-1.17313870691902},{0.701569911313408,0.694388879181789,0.600858635350349,0.559627811845321},{-0.316925403947277,-1.57669227467446,0.00798902314031256,-0.240110581430527},{1.46544139775892,0.189704178324845,1.01586736389737,1.22607647290853},{-1.08079689039279,0.189704178324845,-1.29632412372177,-1.4397181713443},{-1.71735646243072,-0.314980522532101,-1.35561108494277,-1.30642843913166},{-0.444237318354863,-0.0626381721036282,0.482284712908341,0.42633807963268},{1.72006522657409,-0.0626381721036282,1.31230217000239,1.22607647290853},{-0.82617306157762,1.95610063132415,-1.05917627883775,-1.03984897470638},{1.21081756894375,-0.0626381721036282,0.778719519013359,0.692917544057962},{2.35662479861202,-0.0626381721036282,1.72731089854942,1.22607647290853},{-0.953484975985206,-1.82903462510294,-0.229158821743702,-0.240110581430527},{0.701569911313408,-0.314980522532101,1.13444128633938,0.826207276270604},{-0.698861147170034,-0.819665223389045,0.12656294558232,0.293048347420038},{-0.0623015751321059,-0.314980522532101,0.304423829245331,0.159758615207397},{0.574257996905822,-0.314980522532101,0.363710790466334,0.159758615207397}}
4 | {{0,0,1},{0,1,0},{0,0,1},{0,1,0},{1,0,0},{0,1,0},{0,1,0},{0,0,1},{0,0,1},{0,1,0},{0,0,1},{0,0,1},{1,0,0},{0,1,0},{0,1,0},{0,1,0},{0,1,0},{0,1,0},{0,0,1},{1,0,0},{0,1,0}} | {{1.21081756894375,0.694388879181789,1.19372824756038,1.75923540175909},{-0.82617306157762,-1.32434992424599,-0.407019705406713,-0.106820849217886},{0.701569911313408,0.694388879181789,1.3715891312234,1.75923540175909},{0.0650103392754793,-0.819665223389045,0.245136868024327,-0.240110581430527},{-1.20810880480038,0.189704178324845,-1.23703716250076,-1.30642843913166},{0.574257996905822,-0.314980522532101,0.363710790466334,0.159758615207397},{1.21081756894375,0.189704178324845,0.422997751687338,0.293048347420038},{1.97468905538926,-0.314980522532101,1.54945001488641,0.826207276270604},{-1.08079689039279,-1.32434992424599,0.482284712908341,0.692917544057962},{0.0650103392754793,-0.819665223389045,0.12656294558232,0.0264688829947554},{0.574257996905822,0.946731229610261,1.01586736389737,1.49265593733381},{0.956193740128579,0.442046528753317,0.838006480234363,1.09278674069589},{-1.20810880480038,-0.0626381721036282,-1.35561108494277,-1.17313870691902},{0.828881825720994,0.442046528753317,0.482284712908341,0.42633807963268},{-0.0623015751321059,-0.0626381721036282,0.304423829245331,0.0264688829947554},{-0.316925403947277,-1.57669227467446,0.0672759843613159,-0.106820849217886},{-0.189613489539692,-0.0626381721036282,0.245136868024327,0.159758615207397},{1.59275331216651,0.442046528753317,0.600858635350349,0.293048347420038},{0.956193740128579,-0.0626381721036282,1.25301520878139,1.35936620512117},{-1.33542071920796,0.442046528753317,-1.23703716250076,-1.30642843913166},{-0.316925403947277,-1.32434992424599,0.185849906803323,0.159758615207397}}
\.
-- Create the corresponding summary table for preprocessed data
CREATE TABLE iris_data_batch_summary(
source_table text,
output_table text,
dependent_varname text,
independent_varname text,
dependent_vartype text,
buffer_size integer,
class_values text[],
num_rows_processed integer,
num_rows_skipped integer,
grouping_cols text
);
-- The availability of the original source table should not be a condition for
-- MLP to work correctly. It should work fine even the original source table is
-- deleted (this basically ensures that all the necessary info is captured in
-- the summary table). So name the original source table as
-- 'iris_data_does_not_exist' instead of the original 'iris_data', to mimic the
-- scenario where the original source table is deleted and MLP is trained with
-- the preprocessed table.
INSERT INTO iris_data_batch_summary VALUES
('iris_data_does_not_exist', 'iris_data_batch', 'class::TEXT', 'attributes',
'text', 30, ARRAY[1,2,3], 141, 0, '');
-- Create the corresponding standardization table for preprocessed data
CREATE TABLE iris_data_batch_standardization(
mean double precision[],
std double precision[]
);
INSERT INTO iris_data_batch_standardization VALUES
-- -- TODO get real numbers by running preprocessor
(ARRAY[5.74893617021,3.02482269504,3.6865248227,1.18014184397],
ARRAY[0.785472439601,0.396287027644,1.68671151195,0.750245336531]);
-- Create grouping preprocessed data that can be used with minibatch MLP:
DROP TABLE IF EXISTS iris_data_batch_grp, iris_data_batch_grp_summary, iris_data_batch_grp_standardization;
CREATE TABLE iris_data_batch_grp(
grp text,
__id__ integer,
dependent_varname double precision[],
independent_varname double precision[]
);
COPY iris_data_batch_grp (grp, __id__, dependent_varname, independent_varname) FROM STDIN NULL '?' DELIMITER '|';
'1'|0 | {{0,1,0},{0,1,0},{0,0,1},{1,0,0},{0,1,0},{0,1,0},{0,0,1},{1,0,0},{1,0,0},{0,1,0},{1,0,0},{0,0,1},{0,0,1},{0,0,1},{1,0,0},{0,0,1},{0,0,1},{1,0,0},{1,0,0},{0,0,1},{0,1,0},{0,0,1},{0,0,1},{0,0,1},{0,0,1},{1,0,0},{0,1,0},{0,0,1},{0,0,1},{1,0,0}} | {{0.828881825720994,-0.314980522532101,0.363710790466334,0.159758615207397},{-1.08079689039279,-1.57669227467446,-0.229158821743702,-0.240110581430527},{-1.08079689039279,-1.32434992424599,0.482284712908341,0.692917544057962},{-1.46273263361555,0.442046528753317,-1.35561108494277,-1.30642843913166},{-0.0623015751321059,-0.567322872960574,0.245136868024327,0.159758615207397},{-0.189613489539692,-0.819665223389045,0.304423829245331,0.159758615207397},{0.701569911313408,-1.32434992424599,0.778719519013359,0.959497008483245},{-1.20810880480038,-0.0626381721036282,-1.35561108494277,-1.4397181713443},{-0.698861147170034,0.946731229610261,-1.35561108494277,-1.30642843913166},{-0.82617306157762,-1.32434992424599,-0.407019705406713,-0.106820849217886},{-0.698861147170034,2.71312768260957,-1.29632412372177,-1.4397181713443},{1.33812948335134,0.442046528753317,1.31230217000239,1.49265593733381},{0.319634168090651,-0.0626381721036282,0.660145596571352,0.826207276270604},{0.701569911313408,-1.32434992424599,0.778719519013359,0.959497008483245},{-0.698861147170034,1.19907358003873,-1.29632412372177,-1.30642843913166},{1.46544139775892,0.189704178324845,0.838006480234363,1.49265593733381},{1.21081756894375,-0.0626381721036282,0.897293441455367,1.49265593733381},{-0.444237318354863,1.70375828089568,-1.29632412372177,-1.30642843913166},{-0.82617306157762,1.95610063132415,-1.05917627883775,-1.03984897470638},{0.828881825720994,-0.819665223389045,0.95658040267637,0.959497008483245},{0.956193740128579,-0.567322872960574,0.541571674129345,0.42633807963268},{1.33812948335134,0.442046528753317,1.31230217000239,1.49265593733381},{0.574257996905822,0.946731229610261,1.01586736389737,1.49265593733381},{0.0650103392754793,-0.819665223389045,0.838006480234363,0.959497008483245},{0.0650103392754793,-0.819665223389045,0.838006480234363,0.959497008483245},{-1.46273263361555,0.442046528753317,-1.35561108494277,-1.30642843913166},{0.574257996905822,-2.08137697553141,0.482284712908341,0.42633807963268},{1.21081756894375,0.189704178324845,1.13444128633938,1.62594566954645},{1.97468905538926,-0.314980522532101,1.54945001488641,0.826207276270604},{-1.08079689039279,0.189704178324845,-1.29632412372177,-1.4397181713443}}
'1'|1 | {{0,1,0},{1,0,0},{0,1,0},{1,0,0},{1,0,0},{1,0,0},{1,0,0},{0,1,0},{0,0,1},{0,0,1},{1,0,0},{0,0,1},{1,0,0},{0,0,1},{0,1,0},{0,1,0},{0,1,0},{1,0,0},{1,0,0},{0,0,1},{0,1,0},{0,1,0},{0,0,1},{1,0,0},{1,0,0},{0,1,0},{1,0,0},{0,0,1},{0,1,0},{0,1,0}} | {{-0.0623015751321059,-0.0626381721036282,0.304423829245331,0.0264688829947554},{-0.316925403947277,2.96547003303804,-1.35561108494277,-1.30642843913166},{0.319634168090651,-0.819665223389045,0.838006480234363,0.559627811845321},{-0.953484975985206,1.19907358003873,-1.41489804616377,-1.17313870691902},{-0.953484975985206,0.442046528753317,-1.47418500738478,-1.30642843913166},{-1.33542071920796,0.442046528753317,-1.41489804616377,-1.30642843913166},{-1.71735646243072,-0.0626381721036282,-1.41489804616377,-1.30642843913166},{0.446946082498236,-0.0626381721036282,0.541571674129345,0.293048347420038},{1.21081756894375,-1.32434992424599,1.25301520878139,0.826207276270604},{0.701569911313408,0.694388879181789,1.3715891312234,1.75923540175909},{-1.84466837683831,-0.0626381721036282,-1.53347196860578,-1.4397181713443},{1.84737714098168,1.45141593046721,1.4308760924444,1.75923540175909},{-0.82617306157762,1.19907358003873,-1.35561108494277,-1.30642843913166},{0.701569911313408,-0.314980522532101,1.13444128633938,0.826207276270604},{1.33812948335134,-0.567322872960574,0.660145596571352,0.293048347420038},{0.192322253683066,-0.0626381721036282,0.304423829245331,0.42633807963268},{-0.189613489539692,-0.819665223389045,0.304423829245331,0.159758615207397},{-1.46273263361555,0.189704178324845,-1.29632412372177,-1.30642843913166},{-1.71735646243072,0.442046528753317,-1.41489804616377,-1.30642843913166},{0.828881825720994,0.189704178324845,1.07515432511838,0.826207276270604},{0.0650103392754793,-1.07200757381752,0.185849906803323,0.0264688829947554},{-0.953484975985206,-2.58606167638835,-0.110584899301695,-0.240110581430527},{0.192322253683066,-0.0626381721036282,0.838006480234363,0.826207276270604},{-0.953484975985206,1.19907358003873,-1.23703716250076,-0.773269510281093},{-0.82617306157762,0.946731229610261,-1.29632412372177,-1.30642843913166},{0.319634168090651,0.946731229610261,0.482284712908341,0.559627811845321},{-0.953484975985206,0.694388879181789,-1.35561108494277,-1.30642843913166},{0.192322253683066,-0.0626381721036282,0.838006480234363,0.826207276270604},{0.446946082498236,-0.314980522532101,0.600858635350349,0.293048347420038},{-0.0623015751321059,-0.567322872960574,0.482284712908341,0.159758615207397}}
'1'|2 | {{1,0,0},{1,0,0},{0,0,1},{1,0,0},{0,1,0},{0,1,0},{1,0,0},{1,0,0},{0,0,1},{0,0,1},{0,1,0},{0,1,0},{0,1,0},{0,1,0},{1,0,0},{0,0,1},{0,1,0},{1,0,0},{1,0,0},{0,0,1},{1,0,0},{0,0,1},{1,0,0},{1,0,0},{1,0,0},{1,0,0},{0,1,0},{1,0,0},{0,1,0},{0,0,1}} | {{-0.953484975985206,0.946731229610261,-1.23703716250076,-1.03984897470638},{-0.953484975985206,0.694388879181789,-1.35561108494277,-1.30642843913166},{1.21081756894375,0.694388879181789,1.19372824756038,1.75923540175909},{-1.20810880480038,0.946731229610261,-1.23703716250076,-1.30642843913166},{1.08350565453616,-0.314980522532101,0.541571674129345,0.159758615207397},{-0.189613489539692,-0.314980522532101,-0.0512979380806911,0.159758615207397},{-1.20810880480038,-0.0626381721036282,-1.35561108494277,-1.17313870691902},{-1.08079689039279,0.189704178324845,-1.29632412372177,-1.4397181713443},{0.956193740128579,-0.0626381721036282,0.897293441455367,1.09278674069589},{0.956193740128579,-0.0626381721036282,0.897293441455367,1.09278674069589},{1.46544139775892,0.189704178324845,0.719432557792356,0.42633807963268},{0.0650103392754793,-1.07200757381752,0.185849906803323,0.0264688829947554},{1.08350565453616,-0.0626381721036282,0.422997751687338,0.293048347420038},{0.319634168090651,-0.314980522532101,0.482284712908341,0.42633807963268},{-0.82617306157762,1.95610063132415,-1.23703716250076,-1.30642843913166},{0.956193740128579,-0.0626381721036282,1.25301520878139,1.35936620512117},{-0.0623015751321059,-1.07200757381752,-0.110584899301695,-0.240110581430527},{-0.571549232762449,1.70375828089568,-1.29632412372177,-1.30642843913166},{-0.571549232762449,1.70375828089568,-1.29632412372177,-1.30642843913166},{2.35662479861202,-0.0626381721036282,1.72731089854942,1.22607647290853},{-1.71735646243072,0.442046528753317,-1.41489804616377,-1.30642843913166},{1.72006522657409,-0.0626381721036282,1.31230217000239,1.22607647290853},{-0.953484975985206,0.946731229610261,-1.29632412372177,-1.30642843913166},{-1.46273263361555,0.946731229610261,-1.35561108494277,-1.17313870691902},{-1.08079689039279,-0.0626381721036282,-1.35561108494277,-1.30642843913166},{-0.953484975985206,1.45141593046721,-1.35561108494277,-1.30642843913166},{0.701569911313408,-1.82903462510294,0.422997751687338,0.159758615207397},{-0.444237318354863,2.20844298175262,-1.17775020127976,-1.03984897470638},{-0.0623015751321059,-0.314980522532101,0.304423829245331,0.159758615207397},{1.33812948335134,-0.0626381721036282,1.07515432511838,1.22607647290853}}
'2'|3 | {{0,1,0},{0,1,0},{0,1,0},{0,1,0},{1,0,0},{1,0,0},{0,0,1},{0,1,0},{1,0,0},{0,1,0},{1,0,0},{0,1,0},{0,1,0},{0,0,1},{1,0,0},{0,1,0},{0,1,0},{0,0,1},{1,0,0},{1,0,0},{0,1,0},{0,0,1},{1,0,0},{0,1,0},{0,0,1},{0,1,0},{0,0,1},{0,1,0},{0,1,0},{0,1,0}} | {{-0.953484975985206,-1.82903462510294,-0.229158821743702,-0.240110581430527},{0.319634168090651,-2.08137697553141,0.185849906803323,-0.240110581430527},{-0.189613489539692,-0.0626381721036282,0.482284712908341,0.42633807963268},{-0.316925403947277,-1.07200757381752,0.422997751687338,0.0264688829947554},{-0.953484975985206,1.19907358003873,-1.23703716250076,-0.773269510281093},{-0.316925403947277,1.19907358003873,-1.41489804616377,-1.30642843913166},{0.0650103392754793,-0.819665223389045,0.838006480234363,0.959497008483245},{0.446946082498236,-0.0626381721036282,0.541571674129345,0.293048347420038},{-0.444237318354863,0.946731229610261,-1.29632412372177,-1.03984897470638},{1.21081756894375,0.189704178324845,0.600858635350349,0.42633807963268},{-0.82617306157762,1.95610063132415,-1.23703716250076,-1.30642843913166},{-0.0623015751321059,-0.567322872960574,0.245136868024327,0.159758615207397},{-0.316925403947277,-1.82903462510294,0.185849906803323,0.159758615207397},{1.21081756894375,-0.0626381721036282,0.897293441455367,1.49265593733381},{-1.59004454802313,-1.82903462510294,-1.41489804616377,-1.17313870691902},{0.701569911313408,0.694388879181789,0.600858635350349,0.559627811845321},{-0.316925403947277,-1.57669227467446,0.00798902314031256,-0.240110581430527},{1.46544139775892,0.189704178324845,1.01586736389737,1.22607647290853},{-1.08079689039279,0.189704178324845,-1.29632412372177,-1.4397181713443},{-1.71735646243072,-0.314980522532101,-1.35561108494277,-1.30642843913166},{-0.444237318354863,-0.0626381721036282,0.482284712908341,0.42633807963268},{1.72006522657409,-0.0626381721036282,1.31230217000239,1.22607647290853},{-0.82617306157762,1.95610063132415,-1.05917627883775,-1.03984897470638},{1.21081756894375,-0.0626381721036282,0.778719519013359,0.692917544057962},{2.35662479861202,-0.0626381721036282,1.72731089854942,1.22607647290853},{-0.953484975985206,-1.82903462510294,-0.229158821743702,-0.240110581430527},{0.701569911313408,-0.314980522532101,1.13444128633938,0.826207276270604},{-0.698861147170034,-0.819665223389045,0.12656294558232,0.293048347420038},{-0.0623015751321059,-0.314980522532101,0.304423829245331,0.159758615207397},{0.574257996905822,-0.314980522532101,0.363710790466334,0.159758615207397}}
'2'|4 | {{0,0,1},{0,1,0},{0,0,1},{0,1,0},{1,0,0},{0,1,0},{0,1,0},{0,0,1},{0,0,1},{0,1,0},{0,0,1},{0,0,1},{1,0,0},{0,1,0},{0,1,0},{0,1,0},{0,1,0},{0,1,0},{0,0,1},{1,0,0},{0,1,0}} | {{1.21081756894375,0.694388879181789,1.19372824756038,1.75923540175909},{-0.82617306157762,-1.32434992424599,-0.407019705406713,-0.106820849217886},{0.701569911313408,0.694388879181789,1.3715891312234,1.75923540175909},{0.0650103392754793,-0.819665223389045,0.245136868024327,-0.240110581430527},{-1.20810880480038,0.189704178324845,-1.23703716250076,-1.30642843913166},{0.574257996905822,-0.314980522532101,0.363710790466334,0.159758615207397},{1.21081756894375,0.189704178324845,0.422997751687338,0.293048347420038},{1.97468905538926,-0.314980522532101,1.54945001488641,0.826207276270604},{-1.08079689039279,-1.32434992424599,0.482284712908341,0.692917544057962},{0.0650103392754793,-0.819665223389045,0.12656294558232,0.0264688829947554},{0.574257996905822,0.946731229610261,1.01586736389737,1.49265593733381},{0.956193740128579,0.442046528753317,0.838006480234363,1.09278674069589},{-1.20810880480038,-0.0626381721036282,-1.35561108494277,-1.17313870691902},{0.828881825720994,0.442046528753317,0.482284712908341,0.42633807963268},{-0.0623015751321059,-0.0626381721036282,0.304423829245331,0.0264688829947554},{-0.316925403947277,-1.57669227467446,0.0672759843613159,-0.106820849217886},{-0.189613489539692,-0.0626381721036282,0.245136868024327,0.159758615207397},{1.59275331216651,0.442046528753317,0.600858635350349,0.293048347420038},{0.956193740128579,-0.0626381721036282,1.25301520878139,1.35936620512117},{-1.33542071920796,0.442046528753317,-1.23703716250076,-1.30642843913166},{-0.316925403947277,-1.32434992424599,0.185849906803323,0.159758615207397}}
\.
-- Create the corresponding summary table for preprocessed data
CREATE TABLE iris_data_batch_grp_summary(
source_table text,
output_table text,
dependent_varname text,
independent_varname text,
dependent_vartype text,
buffer_size integer,
class_values text[],
num_rows_processed integer,
num_rows_skipped integer,
grouping_cols text
);
-- The availability of the original source table should not be a condition for
-- MLP to work correctly. It should work fine even the original source table is
-- deleted (this basically ensures that all the necessary info is captured in
-- the summary table). So name the original source table as
-- 'iris_data_does_not_exist' instead of the original 'iris_data', to mimic the
-- scenario where the original source table is deleted and MLP is trained with
-- the preprocessed table.
INSERT INTO iris_data_batch_grp_summary VALUES
('iris_data_does_not_exist', 'iris_data_batch_grp', 'class::TEXT', 'attributes',
'text', 30, ARRAY['foo','bar','baaz'] , 141, 0, 'grp');
-- Create the corresponding standardization table for preprocessed data
CREATE TABLE iris_data_batch_grp_standardization(
grp text,
mean double precision[],
std double precision[]
);
INSERT INTO iris_data_batch_grp_standardization VALUES
-- -- TODO get real numbers by running preprocessor
('1',ARRAY[5.74893617021,3.02482269504,3.6865248227,1.18014184397],ARRAY[0.785472439601,0.396287027644,1.68671151195,0.750245336531]),
('2',ARRAY[5.74893617021,3.02482269504,3.6865248227,1.18014184397],ARRAY[0.785472439601,0.396287027644,1.68671151195,0.750245336531]);
DROP TABLE IF EXISTS mlp_class, mlp_class_summary, mlp_class_standardization;
SELECT mlp_classification(
'iris_data', -- Source table
'mlp_class', -- Destination table
'attributes', -- Input features
'class', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
learning_rate_policy=constant,
n_iterations=5,
n_tries=3,
tolerance=0',
'sigmoid',
'',
False,
False,
'grp'
);
DROP TABLE IF EXISTS mlp_prediction_output;
SELECT mlp_predict(
'mlp_class',
'iris_data',
'id',
'mlp_prediction_output',
'output');
-- Test for passing NUMERIC row_weights with grouping
DROP TABLE IF EXISTS iris_data_row_weight;
CREATE TABLE iris_data_row_weight
AS SELECT *, id::NUMERIC AS row_weight FROM iris_data;
DROP TABLE IF EXISTS mlp_class, mlp_class_summary, mlp_class_standardization;
SELECT mlp_classification(
'iris_data_row_weight', -- Source table
'mlp_class', -- Destination table
'attributes', -- Input features
'class', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
learning_rate_policy=constant,
n_iterations=5,
n_tries=3,
tolerance=0',
'sigmoid',
'row_weight',
False,
False,
'grp'
);
DROP TABLE IF EXISTS mlp_prediction_output;
SELECT mlp_predict(
'mlp_class',
'iris_data',
'id',
'mlp_prediction_output',
'output');
-- Test for passing NUMERIC row_weights without grouping
DROP TABLE IF EXISTS iris_data_row_weight;
CREATE TABLE iris_data_row_weight
AS SELECT *, id::NUMERIC AS row_weight FROM iris_data;
DROP TABLE IF EXISTS mlp_class, mlp_class_summary, mlp_class_standardization;
SELECT mlp_classification(
'iris_data_row_weight', -- Source table
'mlp_class', -- Destination table
'attributes', -- Input features
'class', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
learning_rate_policy=constant,
n_iterations=5,
n_tries=3,
tolerance=0',
'sigmoid',
'row_weight'
);
DROP TABLE IF EXISTS mlp_prediction_output;
SELECT mlp_predict(
'mlp_class',
'iris_data',
'id',
'mlp_prediction_output',
'output');
-- minibatch without grouping and without warm_start
DROP TABLE IF EXISTS mlp_class_batch, mlp_class_batch_summary, mlp_class_batch_standardization;
SELECT mlp_classification(
'iris_data_batch', -- Source table
'mlp_class_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
learning_rate_policy=constant,
n_iterations=1,
n_tries=3,
tolerance=0,
n_epochs=20',
'sigmoid',
'',
False,
False
);
SELECT assert
(
source_table = 'iris_data_batch' AND
independent_varname = 'independent_varname' AND
dependent_varname = 'dependent_varname' AND
original_source_table = 'iris_data_does_not_exist' AND
original_independent_varname = 'attributes' AND
original_dependent_varname = 'class::TEXT' AND
original_dependent_vartype = 'text' AND
tolerance = 0 AND
learning_rate_init = 0.1 AND
learning_rate_policy = 'constant' AND
n_iterations = 1 AND
n_tries = 3 AND
layer_sizes = ARRAY[4,5,3] AND
activation = 'sigmoid' AND
is_classification = 't' AND
classes = '{1,2,3}' AND
weights = '1' AND
grouping_col = NULL,
'Summary Validation failed for special chars. Actual:' || __to_char(summary)
) from (select * from mlp_class_batch_summary order by classes) summary;
DROP TABLE IF EXISTS mlp_prediction_batch_output, mlp_prediction_batch_output_summary, mlp_prediction_batch_output_standardization;
SELECT mlp_predict(
'mlp_class_batch',
'iris_data',
'id',
'mlp_prediction_batch_output',
'output');
-- minibatch with grouping and without warm_start
DROP TABLE IF EXISTS mlp_class_batch, mlp_class_batch_summary, mlp_class_batch_standardization;
SELECT mlp_classification(
'iris_data_batch_grp', -- Source table
'mlp_class_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
learning_rate_policy=constant,
n_iterations=5,
n_tries=3,
tolerance=0,
n_epochs=20',
'sigmoid',
'',
False,
False,
'grp'
);
DROP TABLE IF EXISTS mlp_prediction_batch_output, mlp_prediction_output;
-- See prediction accuracy for training data
SELECT mlp_predict(
'mlp_class_batch',
'iris_data',
'id',
'mlp_prediction_batch_output',
'output');
-- minibatch without grouping and with warm_start
SELECT mlp_classification(
'iris_data_batch', -- Source table
'mlp_class_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
learning_rate_policy=constant,
n_iterations=5,
tolerance=0,
batch_size=5,
n_epochs=15',
'sigmoid',
'',
True, -- Warm start
True
);
DROP TABLE IF EXISTS mlp_prediction_batch_output, mlp_prediction_batch_output_summary, mlp_prediction_batch_output_standardization;
SELECT mlp_predict(
'mlp_class_batch',
'iris_data',
'id',
'mlp_prediction_batch_output',
'response');
------------------------------------------------ Regression ------------------------------------------------------------
DROP TABLE IF EXISTS mlp_class_batch, mlp_class_batch_summary, mlp_class_batch_standardization;
-- Set class_values column value to NULL so that encoding info is not captured, to test
-- case where dependent variable is an array for classification.
UPDATE iris_data_batch_summary SET class_values = NULL WHERE source_table='iris_data';
SELECT mlp_classification(
'iris_data_batch', -- Source table
'mlp_class_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
learning_rate_policy=constant,
n_iterations=5,
tolerance=0,
n_epochs=20',
'sigmoid',
'',
False,
False
);
DROP TABLE IF EXISTS mlp_prediction_batch_output, mlp_prediction_output;
SELECT mlp_predict(
'mlp_class_batch',
'iris_data',
'id',
'mlp_prediction_batch_output',
'response');
SELECT * FROM mlp_prediction_batch_output;
DROP TABLE IF EXISTS mlp_prediction_batch_output;
SELECT mlp_predict(
'mlp_class_batch',
'iris_data',
'id',
'mlp_prediction_batch_output',
'prob');
SELECT * FROM mlp_prediction_batch_output;
-- assert to test if the newly created column name exists and matches the count
SELECT assert(count(*) =3, 'Column Names does not exists')
from pg_attribute
where attrelid = 'mlp_prediction_batch_output'::regclass
and attname in( 'prob_1', 'prob_2','prob_3');
DROP TABLE IF EXISTS mlp_prediction_batch_output;
DROP TABLE IF EXISTS mlp_class_batch, mlp_class_batch_summary, mlp_class_batch_standardization;
DROP TABLE IF EXISTS lin_housing_wi CASCADE;
CREATE TABLE lin_housing_wi (id serial, x float8[], grp int, y double precision[]);
COPY lin_housing_wi (x, grp, y) FROM STDIN NULL '?' DELIMITER '|';
{1,0.00632,18.00,2.310,0,0.5380,6.5750,65.20,4.0900,1,296.0,15.30,396.90,4.98} | 1 | {24.00}
{1,0.02731,0.00,7.070,0,0.4690,6.4210,78.90,4.9671,2,242.0,17.80,396.90,9.14} | 1 | {21.60}
{1,0.02729,0.00,7.070,0,0.4690,7.1850,61.10,4.9671,2,242.0,17.80,392.83,4.03} | 1 | {34.70}
{1,0.03237,0.00,2.180,0,0.4580,6.9980,45.80,6.0622,3,222.0,18.70,394.63,2.94} | 1 | {33.40}
{1,0.06905,0.00,2.180,0,0.4580,7.1470,54.20,6.0622,3,222.0,18.70,396.90,5.33} | 1 | {36.20}
{1,0.02985,0.00,2.180,0,0.4580,6.4300,58.70,6.0622,3,222.0,18.70,394.12,5.21} | 1 | {28.70}
{1,0.08829,12.50,7.870,0,0.5240,6.0120,66.60,5.5605,5,311.0,15.20,395.60,12.43} | 1 | {22.90}
{1,0.14455,12.50,7.870,0,0.5240,6.1720,96.10,5.9505,5,311.0,15.20,396.90,19.15} | 1 | {27.10}
{1,0.21124,12.50,7.870,0,0.5240,5.6310,100.00,6.0821,5,311.0,15.20,386.63,29.93} | 1 | {16.50}
{1,0.17004,12.50,7.870,0,0.5240,6.0040,85.90,6.5921,5,311.0,15.20,386.71,17.10} | 1 | {18.90}
{1,0.22489,12.50,7.870,0,0.5240,6.3770,94.30,6.3467,5,311.0,15.20,392.52,20.45} | 1 | {15.00}
{1,0.11747,12.50,7.870,0,0.5240,6.0090,82.90,6.2267,5,311.0,15.20,396.90,13.27} | 1 | {18.90}
{1,0.09378,12.50,7.870,0,0.5240,5.8890,39.00,5.4509,5,311.0,15.20,390.50,15.71} | 1 | {21.70}
{1,0.62976,0.00,8.140,0,0.5380,5.9490,61.80,4.7075,4,307.0,21.00,396.90,8.26} | 1 | {20.40}
{1,0.63796,0.00,8.140,0,0.5380,6.0960,84.50,4.4619,4,307.0,21.00,380.02,10.26} | 1 | {18.20}
{1,0.62739,0.00,8.140,0,0.5380,5.8340,56.50,4.4986,4,307.0,21.00,395.62,8.47} | 1 | {19.90}
{1,1.05393,0.00,8.140,0,0.5380,5.9350,29.30,4.4986,4,307.0,21.00,386.85,6.58} | 1 | {23.10}
{1,0.78420,0.00,8.140,0,0.5380,5.9900,81.70,4.2579,4,307.0,21.00,386.75,14.67} | 1 | {17.50}
{1,0.80271,0.00,8.140,0,0.5380,5.4560,36.60,3.7965,4,307.0,21.00,288.99,11.69} | 1 | {20.20}
{1,0.72580,0.00,8.140,0,0.5380,5.7270,69.50,3.7965,4,307.0,21.00,390.95,11.28} | 1 | {18.20}
{1,1.25179,0.00,8.140,0,0.5380,5.5700,98.10,3.7979,4,307.0,21.00,376.57,21.02} | 1 | {13.60}
{1,0.85204,0.00,8.140,0,0.5380,5.9650,89.20,4.0123,4,307.0,21.00,392.53,13.83} | 1 | {19.60}
{1,1.23247,0.00,8.140,0,0.5380,6.1420,91.70,3.9769,4,307.0,21.00,396.90,18.72} | 1 | {15.20}
{1,0.98843,0.00,8.140,0,0.5380,5.8130,100.00,4.0952,4,307.0,21.00,394.54,19.88} | 1 | {14.50}
{1,0.75026,0.00,8.140,0,0.5380,5.9240,94.10,4.3996,4,307.0,21.00,394.33,16.30} | 1 | {15.60}
{1,0.84054,0.00,8.140,0,0.5380,5.5990,85.70,4.4546,4,307.0,21.00,303.42,16.51} | 1 | {13.90}
{1,0.67191,0.00,8.140,0,0.5380,5.8130,90.30,4.6820,4,307.0,21.00,376.88,14.81} | 1 | {16.60}
{1,0.95577,0.00,8.140,0,0.5380,6.0470,88.80,4.4534,4,307.0,21.00,306.38,17.28} | 1 | {14.80}
{1,0.77299,0.00,8.140,0,0.5380,6.4950,94.40,4.4547,4,307.0,21.00,387.94,12.80} | 1 | {18.40}
{1,1.00245,0.00,8.140,0,0.5380,6.6740,87.30,4.2390,4,307.0,21.00,380.23,11.98} | 1 | {21.00}
{1,1.13081,0.00,8.140,0,0.5380,5.7130,94.10,4.2330,4,307.0,21.00,360.17,22.60} | 1 | {12.70}
{1,1.35472,0.00,8.140,0,0.5380,6.0720,100.00,4.1750,4,307.0,21.00,376.73,13.04} | 1 | {14.50}
{1,1.38799,0.00,8.140,0,0.5380,5.9500,82.00,3.9900,4,307.0,21.00,232.60,27.71} | 1 | {13.20}
{1,1.15172,0.00,8.140,0,0.5380,5.7010,95.00,3.7872,4,307.0,21.00,358.77,18.35} | 1 | {13.10}
{1,1.61282,0.00,8.140,0,0.5380,6.0960,96.90,3.7598,4,307.0,21.00,248.31,20.34} | 1 | {13.50}
{1,0.06417,0.00,5.960,0,0.4990,5.9330,68.20,3.3603,5,279.0,19.20,396.90,9.68} | 1 | {18.90}
{1,0.09744,0.00,5.960,0,0.4990,5.8410,61.40,3.3779,5,279.0,19.20,377.56,11.41} | 1 | {20.00}
{1,0.08014,0.00,5.960,0,0.4990,5.8500,41.50,3.9342,5,279.0,19.20,396.90,8.77} | 1 | {21.00}
{1,0.17505,0.00,5.960,0,0.4990,5.9660,30.20,3.8473,5,279.0,19.20,393.43,10.13} | 1 | {24.70}
{1,0.02763,75.00,2.950,0,0.4280,6.5950,21.80,5.4011,3,252.0,18.30,395.63,4.32} | 1 | {30.80}
{1,0.03359,75.00,2.950,0,0.4280,7.0240,15.80,5.4011,3,252.0,18.30,395.62,1.98} | 1 | {34.90}
{1,0.12744,0.00,6.910,0,0.4480,6.7700,2.90,5.7209,3,233.0,17.90,385.41,4.84} | 1 | {26.60}
{1,0.14150,0.00,6.910,0,0.4480,6.1690,6.60,5.7209,3,233.0,17.90,383.37,5.81} | 1 | {25.30}
{1,0.15936,0.00,6.910,0,0.4480,6.2110,6.50,5.7209,3,233.0,17.90,394.46,7.44} | 1 | {24.70}
{1,0.12269,0.00,6.910,0,0.4480,6.0690,40.00,5.7209,3,233.0,17.90,389.39,9.55} | 1 | {21.20}
{1,0.17142,0.00,6.910,0,0.4480,5.6820,33.80,5.1004,3,233.0,17.90,396.90,10.21} | 1 | {19.30}
{1,0.18836,0.00,6.910,0,0.4480,5.7860,33.30,5.1004,3,233.0,17.90,396.90,14.15} | 1 | {20.00}
{1,0.22927,0.00,6.910,0,0.4480,6.0300,85.50,5.6894,3,233.0,17.90,392.74,18.80} | 1 | {16.60}
{1,0.25387,0.00,6.910,0,0.4480,5.3990,95.30,5.8700,3,233.0,17.90,396.90,30.81} | 1 | {14.40}
{1,0.21977,0.00,6.910,0,0.4480,5.6020,62.00,6.0877,3,233.0,17.90,396.90,16.20} | 1 | {19.40}
{1,0.08873,21.00,5.640,0,0.4390,5.9630,45.70,6.8147,4,243.0,16.80,395.56,13.45} | 1 | {19.70}
{1,0.04337,21.00,5.640,0,0.4390,6.1150,63.00,6.8147,4,243.0,16.80,393.97,9.43} | 1 | {20.50}
{1,0.05360,21.00,5.640,0,0.4390,6.5110,21.10,6.8147,4,243.0,16.80,396.90,5.28} | 1 | {25.00}
{1,0.04981,21.00,5.640,0,0.4390,5.9980,21.40,6.8147,4,243.0,16.80,396.90,8.43} | 1 | {23.40}
{1,0.01360,75.00,4.000,0,0.4100,5.8880,47.60,7.3197,3,469.0,21.10,396.90,14.80} | 1 | {18.90}
{1,0.01311,90.00,1.220,0,0.4030,7.2490,21.90,8.6966,5,226.0,17.90,395.93,4.81} | 1 | {35.40}
{1,0.02055,85.00,0.740,0,0.4100,6.3830,35.70,9.1876,2,313.0,17.30,396.90,5.77} | 1 | {24.70}
{1,0.01432,100.00,1.320,0,0.4110,6.8160,40.50,8.3248,5,256.0,15.10,392.90,3.95} | 1 | {31.60}
{1,0.15445,25.00,5.130,0,0.4530,6.1450,29.20,7.8148,8,284.0,19.70,390.68,6.86} | 1 | {23.30}
{1,0.10328,25.00,5.130,0,0.4530,5.9270,47.20,6.9320,8,284.0,19.70,396.90,9.22} | 1 | {19.60}
{1,0.14932,25.00,5.130,0,0.4530,5.7410,66.20,7.2254,8,284.0,19.70,395.11,13.15} | 1 | {18.70}
{1,0.17171,25.00,5.130,0,0.4530,5.9660,93.40,6.8185,8,284.0,19.70,378.08,14.44} | 1 | {16.00}
{1,0.11027,25.00,5.130,0,0.4530,6.4560,67.80,7.2255,8,284.0,19.70,396.90,6.73} | 1 | {22.20}
{1,0.12650,25.00,5.130,0,0.4530,6.7620,43.40,7.9809,8,284.0,19.70,395.58,9.50} | 1 | {25.00}
{1,0.01951,17.50,1.380,0,0.4161,7.1040,59.50,9.2229,3,216.0,18.60,393.24,8.05} | 1 | {33.00}
{1,0.03584,80.00,3.370,0,0.3980,6.2900,17.80,6.6115,4,337.0,16.10,396.90,4.67} | 1 | {23.50}
{1,0.04379,80.00,3.370,0,0.3980,5.7870,31.10,6.6115,4,337.0,16.10,396.90,10.24} | 1 | {19.40}
{1,0.05789,12.50,6.070,0,0.4090,5.8780,21.40,6.4980,4,345.0,18.90,396.21,8.10} | 1 | {22.00}
{1,0.13554,12.50,6.070,0,0.4090,5.5940,36.80,6.4980,4,345.0,18.90,396.90,13.09} | 1 | {17.40}
{1,0.12816,12.50,6.070,0,0.4090,5.8850,33.00,6.4980,4,345.0,18.90,396.90,8.79} | 1 | {20.90}
{1,0.08826,0.00,10.810,0,0.4130,6.4170,6.60,5.2873,4,305.0,19.20,383.73,6.72} | 1 | {24.20}
{1,0.15876,0.00,10.810,0,0.4130,5.9610,17.50,5.2873,4,305.0,19.20,376.94,9.88} | 1 | {21.70}
{1,0.09164,0.00,10.810,0,0.4130,6.0650,7.80,5.2873,4,305.0,19.20,390.91,5.52} | 1 | {22.80}
{1,0.19539,0.00,10.810,0,0.4130,6.2450,6.20,5.2873,4,305.0,19.20,377.17,7.54} | 1 | {23.40}
{1,0.07896,0.00,12.830,0,0.4370,6.2730,6.00,4.2515,5,398.0,18.70,394.92,6.78} | 1 | {24.10}
{1,0.09512,0.00,12.830,0,0.4370,6.2860,45.00,4.5026,5,398.0,18.70,383.23,8.94} | 1 | {21.40}
{1,0.10153,0.00,12.830,0,0.4370,6.2790,74.50,4.0522,5,398.0,18.70,373.66,11.97} | 1 | {20.00}
{1,0.08707,0.00,12.830,0,0.4370,6.1400,45.80,4.0905,5,398.0,18.70,386.96,10.27} | 1 | {20.80}
{1,0.05646,0.00,12.830,0,0.4370,6.2320,53.70,5.0141,5,398.0,18.70,386.40,12.34} | 1 | {21.20}
{1,0.08387,0.00,12.830,0,0.4370,5.8740,36.60,4.5026,5,398.0,18.70,396.06,9.10} | 1 | {20.30}
{1,0.04113,25.00,4.860,0,0.4260,6.7270,33.50,5.4007,4,281.0,19.00,396.90,5.29} | 1 | {28.00}
{1,0.04462,25.00,4.860,0,0.4260,6.6190,70.40,5.4007,4,281.0,19.00,395.63,7.22} | 1 | {23.90}
{1,0.03659,25.00,4.860,0,0.4260,6.3020,32.20,5.4007,4,281.0,19.00,396.90,6.72} | 1 | {24.80}
{1,0.03551,25.00,4.860,0,0.4260,6.1670,46.70,5.4007,4,281.0,19.00,390.64,7.51} | 1 | {22.90}
{1,0.05059,0.00,4.490,0,0.4490,6.3890,48.00,4.7794,3,247.0,18.50,396.90,9.62} | 1 | {23.90}
{1,0.05735,0.00,4.490,0,0.4490,6.6300,56.10,4.4377,3,247.0,18.50,392.30,6.53} | 1 | {26.60}
{1,0.05188,0.00,4.490,0,0.4490,6.0150,45.10,4.4272,3,247.0,18.50,395.99,12.86} | 1 | {22.50}
{1,0.07151,0.00,4.490,0,0.4490,6.1210,56.80,3.7476,3,247.0,18.50,395.15,8.44} | 1 | {22.20}
{1,0.05660,0.00,3.410,0,0.4890,7.0070,86.30,3.4217,2,270.0,17.80,396.90,5.50} | 1 | {23.60}
{1,0.05302,0.00,3.410,0,0.4890,7.0790,63.10,3.4145,2,270.0,17.80,396.06,5.70} | 1 | {28.70}
{1,0.04684,0.00,3.410,0,0.4890,6.4170,66.10,3.0923,2,270.0,17.80,392.18,8.81} | 1 | {22.60}
{1,0.03932,0.00,3.410,0,0.4890,6.4050,73.90,3.0921,2,270.0,17.80,393.55,8.20} | 1 | {22.00}
{1,0.04203,28.00,15.040,0,0.4640,6.4420,53.60,3.6659,4,270.0,18.20,395.01,8.16} | 1 | {22.90}
{1,0.02875,28.00,15.040,0,0.4640,6.2110,28.90,3.6659,4,270.0,18.20,396.33,6.21} | 1 | {25.00}
{1,0.04294,28.00,15.040,0,0.4640,6.2490,77.30,3.6150,4,270.0,18.20,396.90,10.59} | 1 | {20.60}
{1,0.12204,0.00,2.890,0,0.4450,6.6250,57.80,3.4952,2,276.0,18.00,357.98,6.65} | 1 | {28.40}
{1,0.11504,0.00,2.890,0,0.4450,6.1630,69.60,3.4952,2,276.0,18.00,391.83,11.34} | 1 | {21.40}
{1,0.12083,0.00,2.890,0,0.4450,8.0690,76.00,3.4952,2,276.0,18.00,396.90,4.21} | 1 | {38.70}
{1,0.08187,0.00,2.890,0,0.4450,7.8200,36.90,3.4952,2,276.0,18.00,393.53,3.57} | 1 | {43.80}
{1,0.06860,0.00,2.890,0,0.4450,7.4160,62.50,3.4952,2,276.0,18.00,396.90,6.19} | 1 | {33.20}
{1,0.14866,0.00,8.560,0,0.5200,6.7270,79.90,2.7778,5,384.0,20.90,394.76,9.42} | 1 | {27.50}
{1,0.11432,0.00,8.560,0,0.5200,6.7810,71.30,2.8561,5,384.0,20.90,395.58,7.67} | 1 | {26.50}
{1,0.22876,0.00,8.560,0,0.5200,6.4050,85.40,2.7147,5,384.0,20.90,70.80,10.63} | 1 | {18.60}
{1,0.21161,0.00,8.560,0,0.5200,6.1370,87.40,2.7147,5,384.0,20.90,394.47,13.44} | 1 | {19.30}
{1,0.13960,0.00,8.560,0,0.5200,6.1670,90.00,2.4210,5,384.0,20.90,392.69,12.33} | 1 | {20.10}
{1,0.13262,0.00,8.560,0,0.5200,5.8510,96.70,2.1069,5,384.0,20.90,394.05,16.47} | 1 | {19.50}
{1,0.17120,0.00,8.560,0,0.5200,5.8360,91.90,2.2110,5,384.0,20.90,395.67,18.66} | 1 | {19.50}
{1,0.13117,0.00,8.560,0,0.5200,6.1270,85.20,2.1224,5,384.0,20.90,387.69,14.09} | 1 | {20.40}
{1,0.12802,0.00,8.560,0,0.5200,6.4740,97.10,2.4329,5,384.0,20.90,395.24,12.27} | 1 | {19.80}
{1,0.26363,0.00,8.560,0,0.5200,6.2290,91.20,2.5451,5,384.0,20.90,391.23,15.55} | 1 | {19.40}
{1,0.10793,0.00,8.560,0,0.5200,6.1950,54.40,2.7778,5,384.0,20.90,393.49,13.00} | 1 | {21.70}
{1,0.10084,0.00,10.010,0,0.5470,6.7150,81.60,2.6775,6,432.0,17.80,395.59,10.16} | 1 | {22.80}
{1,0.12329,0.00,10.010,0,0.5470,5.9130,92.90,2.3534,6,432.0,17.80,394.95,16.21} | 1 | {18.80}
{1,0.22212,0.00,10.010,0,0.5470,6.0920,95.40,2.5480,6,432.0,17.80,396.90,17.09} | 1 | {18.70}
{1,0.14231,0.00,10.010,0,0.5470,6.2540,84.20,2.2565,6,432.0,17.80,388.74,10.45} | 1 | {18.50}
{1,0.17134,0.00,10.010,0,0.5470,5.9280,88.20,2.4631,6,432.0,17.80,344.91,15.76} | 1 | {18.30}
{1,0.13158,0.00,10.010,0,0.5470,6.1760,72.50,2.7301,6,432.0,17.80,393.30,12.04} | 1 | {21.20}
{1,0.15098,0.00,10.010,0,0.5470,6.0210,82.60,2.7474,6,432.0,17.80,394.51,10.30} | 1 | {19.20}
{1,0.13058,0.00,10.010,0,0.5470,5.8720,73.10,2.4775,6,432.0,17.80,338.63,15.37} | 1 | {20.40}
{1,0.14476,0.00,10.010,0,0.5470,5.7310,65.20,2.7592,6,432.0,17.80,391.50,13.61} | 1 | {19.30}
{1,0.06899,0.00,25.650,0,0.5810,5.8700,69.70,2.2577,2,188.0,19.10,389.15,14.37} | 1 | {22.00}
{1,0.07165,0.00,25.650,0,0.5810,6.0040,84.10,2.1974,2,188.0,19.10,377.67,14.27} | 1 | {20.30}
{1,0.09299,0.00,25.650,0,0.5810,5.9610,92.90,2.0869,2,188.0,19.10,378.09,17.93} | 1 | {20.50}
{1,0.15038,0.00,25.650,0,0.5810,5.8560,97.00,1.9444,2,188.0,19.10,370.31,25.41} | 1 | {17.30}
{1,0.09849,0.00,25.650,0,0.5810,5.8790,95.80,2.0063,2,188.0,19.10,379.38,17.58} | 1 | {18.80}
{1,0.16902,0.00,25.650,0,0.5810,5.9860,88.40,1.9929,2,188.0,19.10,385.02,14.81} | 1 | {21.40}
{1,0.38735,0.00,25.650,0,0.5810,5.6130,95.60,1.7572,2,188.0,19.10,359.29,27.26} | 1 | {15.70}
{1,0.25915,0.00,21.890,0,0.6240,5.6930,96.00,1.7883,4,437.0,21.20,392.11,17.19} | 1 | {16.20}
{1,0.32543,0.00,21.890,0,0.6240,6.4310,98.80,1.8125,4,437.0,21.20,396.90,15.39} | 1 | {18.00}
{1,0.88125,0.00,21.890,0,0.6240,5.6370,94.70,1.9799,4,437.0,21.20,396.90,18.34} | 1 | {14.30}
{1,0.34006,0.00,21.890,0,0.6240,6.4580,98.90,2.1185,4,437.0,21.20,395.04,12.60} | 1 | {19.20}
{1,1.19294,0.00,21.890,0,0.6240,6.3260,97.70,2.2710,4,437.0,21.20,396.90,12.26} | 1 | {19.60}
{1,0.59005,0.00,21.890,0,0.6240,6.3720,97.90,2.3274,4,437.0,21.20,385.76,11.12} | 1 | {23.00}
{1,0.32982,0.00,21.890,0,0.6240,5.8220,95.40,2.4699,4,437.0,21.20,388.69,15.03} | 1 | {18.40}
{1,0.97617,0.00,21.890,0,0.6240,5.7570,98.40,2.3460,4,437.0,21.20,262.76,17.31} | 1 | {15.60}
{1,0.55778,0.00,21.890,0,0.6240,6.3350,98.20,2.1107,4,437.0,21.20,394.67,16.96} | 1 | {18.10}
{1,0.32264,0.00,21.890,0,0.6240,5.9420,93.50,1.9669,4,437.0,21.20,378.25,16.90} | 1 | {17.40}
{1,0.35233,0.00,21.890,0,0.6240,6.4540,98.40,1.8498,4,437.0,21.20,394.08,14.59} | 1 | {17.10}
{1,0.24980,0.00,21.890,0,0.6240,5.8570,98.20,1.6686,4,437.0,21.20,392.04,21.32} | 1 | {13.30}
{1,0.54452,0.00,21.890,0,0.6240,6.1510,97.90,1.6687,4,437.0,21.20,396.90,18.46} | 1 | {17.80}
{1,0.29090,0.00,21.890,0,0.6240,6.1740,93.60,1.6119,4,437.0,21.20,388.08,24.16} | 1 | {14.00}
{1,1.62864,0.00,21.890,0,0.6240,5.0190,100.00,1.4394,4,437.0,21.20,396.90,34.41} | 1 | {14.40}
{1,3.32105,0.00,19.580,1,0.8710,5.4030,100.00,1.3216,5,403.0,14.70,396.90,26.82} | 1 | {13.40}
{1,4.09740,0.00,19.580,0,0.8710,5.4680,100.00,1.4118,5,403.0,14.70,396.90,26.42} | 1 | {15.60}
{1,2.77974,0.00,19.580,0,0.8710,4.9030,97.80,1.3459,5,403.0,14.70,396.90,29.29} | 1 | {11.80}
{1,2.37934,0.00,19.580,0,0.8710,6.1300,100.00,1.4191,5,403.0,14.70,172.91,27.80} | 1 | {13.80}
{1,2.15505,0.00,19.580,0,0.8710,5.6280,100.00,1.5166,5,403.0,14.70,169.27,16.65} | 1 | {15.60}
{1,2.36862,0.00,19.580,0,0.8710,4.9260,95.70,1.4608,5,403.0,14.70,391.71,29.53} | 1 | {14.60}
{1,2.33099,0.00,19.580,0,0.8710,5.1860,93.80,1.5296,5,403.0,14.70,356.99,28.32} | 1 | {17.80}
{1,2.73397,0.00,19.580,0,0.8710,5.5970,94.90,1.5257,5,403.0,14.70,351.85,21.45} | 1 | {15.40}
{1,1.65660,0.00,19.580,0,0.8710,6.1220,97.30,1.6180,5,403.0,14.70,372.80,14.10} | 1 | {21.50}
{1,1.49632,0.00,19.580,0,0.8710,5.4040,100.00,1.5916,5,403.0,14.70,341.60,13.28} | 1 | {19.60}
{1,1.12658,0.00,19.580,1,0.8710,5.0120,88.00,1.6102,5,403.0,14.70,343.28,12.12} | 1 | {15.30}
{1,2.14918,0.00,19.580,0,0.8710,5.7090,98.50,1.6232,5,403.0,14.70,261.95,15.79} | 1 | {19.40}
{1,1.41385,0.00,19.580,1,0.8710,6.1290,96.00,1.7494,5,403.0,14.70,321.02,15.12} | 1 | {17.00}
{1,3.53501,0.00,19.580,1,0.8710,6.1520,82.60,1.7455,5,403.0,14.70,88.01,15.02} | 1 | {15.60}
{1,2.44668,0.00,19.580,0,0.8710,5.2720,94.00,1.7364,5,403.0,14.70,88.63,16.14} | 1 | {13.10}
{1,1.22358,0.00,19.580,0,0.6050,6.9430,97.40,1.8773,5,403.0,14.70,363.43,4.59} | 1 | {41.30}
{1,1.34284,0.00,19.580,0,0.6050,6.0660,100.00,1.7573,5,403.0,14.70,353.89,6.43} | 1 | {24.30}
{1,1.42502,0.00,19.580,0,0.8710,6.5100,100.00,1.7659,5,403.0,14.70,364.31,7.39} | 1 | {23.30}
{1,1.27346,0.00,19.580,1,0.6050,6.2500,92.60,1.7984,5,403.0,14.70,338.92,5.50} | 1 | {27.00}
{1,1.46336,0.00,19.580,0,0.6050,7.4890,90.80,1.9709,5,403.0,14.70,374.43,1.73} | 1 | {50.00}
{1,1.83377,0.00,19.580,1,0.6050,7.8020,98.20,2.0407,5,403.0,14.70,389.61,1.92} | 1 | {50.00}
{1,1.51902,0.00,19.580,1,0.6050,8.3750,93.90,2.1620,5,403.0,14.70,388.45,3.32} | 1 | {50.00}
{1,2.24236,0.00,19.580,0,0.6050,5.8540,91.80,2.4220,5,403.0,14.70,395.11,11.64} | 1 | {22.70}
{1,2.92400,0.00,19.580,0,0.6050,6.1010,93.00,2.2834,5,403.0,14.70,240.16,9.81} | 1 | {25.00}
{1,2.01019,0.00,19.580,0,0.6050,7.9290,96.20,2.0459,5,403.0,14.70,369.30,3.70} | 1 | {50.00}
{1,1.80028,0.00,19.580,0,0.6050,5.8770,79.20,2.4259,5,403.0,14.70,227.61,12.14} | 1 | {23.80}
{1,2.30040,0.00,19.580,0,0.6050,6.3190,96.10,2.1000,5,403.0,14.70,297.09,11.10} | 1 | {23.80}
{1,2.44953,0.00,19.580,0,0.6050,6.4020,95.20,2.2625,5,403.0,14.70,330.04,11.32} | 1 | {22.30}
{1,1.20742,0.00,19.580,0,0.6050,5.8750,94.60,2.4259,5,403.0,14.70,292.29,14.43} | 1 | {17.40}
{1,2.31390,0.00,19.580,0,0.6050,5.8800,97.30,2.3887,5,403.0,14.70,348.13,12.03} | 1 | {19.10}
{1,0.13914,0.00,4.050,0,0.5100,5.5720,88.50,2.5961,5,296.0,16.60,396.90,14.69} | 1 | {23.10}
{1,0.09178,0.00,4.050,0,0.5100,6.4160,84.10,2.6463,5,296.0,16.60,395.50,9.04} | 1 | {23.60}
{1,0.08447,0.00,4.050,0,0.5100,5.8590,68.70,2.7019,5,296.0,16.60,393.23,9.64} | 1 | {22.60}
{1,0.06664,0.00,4.050,0,0.5100,6.5460,33.10,3.1323,5,296.0,16.60,390.96,5.33} | 1 | {29.40}
{1,0.07022,0.00,4.050,0,0.5100,6.0200,47.20,3.5549,5,296.0,16.60,393.23,10.11} | 1 | {23.20}
{1,0.05425,0.00,4.050,0,0.5100,6.3150,73.40,3.3175,5,296.0,16.60,395.60,6.29} | 1 | {24.60}
{1,0.06642,0.00,4.050,0,0.5100,6.8600,74.40,2.9153,5,296.0,16.60,391.27,6.92} | 1 | {29.90}
{1,0.05780,0.00,2.460,0,0.4880,6.9800,58.40,2.8290,3,193.0,17.80,396.90,5.04} | 1 | {37.20}
{1,0.06588,0.00,2.460,0,0.4880,7.7650,83.30,2.7410,3,193.0,17.80,395.56,7.56} | 1 | {39.80}
{1,0.06888,0.00,2.460,0,0.4880,6.1440,62.20,2.5979,3,193.0,17.80,396.90,9.45} | 1 | {36.20}
{1,0.09103,0.00,2.460,0,0.4880,7.1550,92.20,2.7006,3,193.0,17.80,394.12,4.82} | 1 | {37.90}
{1,0.10008,0.00,2.460,0,0.4880,6.5630,95.60,2.8470,3,193.0,17.80,396.90,5.68} | 1 | {32.50}
{1,0.08308,0.00,2.460,0,0.4880,5.6040,89.80,2.9879,3,193.0,17.80,391.00,13.98} | 1 | {26.40}
{1,0.06047,0.00,2.460,0,0.4880,6.1530,68.80,3.2797,3,193.0,17.80,387.11,13.15} | 1 | {29.60}
{1,0.05602,0.00,2.460,0,0.4880,7.8310,53.60,3.1992,3,193.0,17.80,392.63,4.45} | 1 | {50.00}
{1,0.07875,45.00,3.440,0,0.4370,6.7820,41.10,3.7886,5,398.0,15.20,393.87,6.68} | 1 | {32.00}
{1,0.12579,45.00,3.440,0,0.4370,6.5560,29.10,4.5667,5,398.0,15.20,382.84,4.56} | 1 | {29.80}
{1,0.08370,45.00,3.440,0,0.4370,7.1850,38.90,4.5667,5,398.0,15.20,396.90,5.39} | 1 | {34.90}
{1,0.09068,45.00,3.440,0,0.4370,6.9510,21.50,6.4798,5,398.0,15.20,377.68,5.10} | 1 | {37.00}
{1,0.06911,45.00,3.440,0,0.4370,6.7390,30.80,6.4798,5,398.0,15.20,389.71,4.69} | 1 | {30.50}
{1,0.04590,52.50,5.320,0,0.4050,6.3150,45.60,7.3172,6,293.0,16.60,396.90,7.60} | 2 | {22.30}
{1,0.04297,52.50,5.320,0,0.4050,6.5650,22.90,7.3172,6,293.0,16.60,371.72,9.51} | 2 | {24.80}
{1,0.03502,80.00,4.950,0,0.4110,6.8610,27.90,5.1167,4,245.0,19.20,396.90,3.33} | 2 | {28.50}
{1,0.07886,80.00,4.950,0,0.4110,7.1480,27.70,5.1167,4,245.0,19.20,396.90,3.56} | 2 | {37.30}
{1,0.03615,80.00,4.950,0,0.4110,6.6300,23.40,5.1167,4,245.0,19.20,396.90,4.70} | 2 | {27.90}
{1,0.08265,0.00,13.920,0,0.4370,6.1270,18.40,5.5027,4,289.0,16.00,396.90,8.58} | 2 | {23.90}
{1,0.08199,0.00,13.920,0,0.4370,6.0090,42.30,5.5027,4,289.0,16.00,396.90,10.40} | 2 | {21.70}
{1,0.12932,0.00,13.920,0,0.4370,6.6780,31.10,5.9604,4,289.0,16.00,396.90,6.27} | 2 | {28.60}
{1,0.05372,0.00,13.920,0,0.4370,6.5490,51.00,5.9604,4,289.0,16.00,392.85,7.39} | 2 | {27.10}
{1,0.14103,0.00,13.920,0,0.4370,5.7900,58.00,6.3200,4,289.0,16.00,396.90,15.84} | 2 | {20.30}
{1,0.06466,70.00,2.240,0,0.4000,6.3450,20.10,7.8278,5,358.0,14.80,368.24,4.97} | 2 | {22.50}
{1,0.05561,70.00,2.240,0,0.4000,7.0410,10.00,7.8278,5,358.0,14.80,371.58,4.74} | 2 | {29.00}
{1,0.04417,70.00,2.240,0,0.4000,6.8710,47.40,7.8278,5,358.0,14.80,390.86,6.07} | 2 | {24.80}
{1,0.03537,34.00,6.090,0,0.4330,6.5900,40.40,5.4917,7,329.0,16.10,395.75,9.50} | 2 | {22.00}
{1,0.09266,34.00,6.090,0,0.4330,6.4950,18.40,5.4917,7,329.0,16.10,383.61,8.67} | 2 | {26.40}
{1,0.10000,34.00,6.090,0,0.4330,6.9820,17.70,5.4917,7,329.0,16.10,390.43,4.86} | 2 | {33.10}
{1,0.05515,33.00,2.180,0,0.4720,7.2360,41.10,4.0220,7,222.0,18.40,393.68,6.93} | 2 | {36.10}
{1,0.05479,33.00,2.180,0,0.4720,6.6160,58.10,3.3700,7,222.0,18.40,393.36,8.93} | 2 | {28.40}
{1,0.07503,33.00,2.180,0,0.4720,7.4200,71.90,3.0992,7,222.0,18.40,396.90,6.47} | 2 | {33.40}
{1,0.04932,33.00,2.180,0,0.4720,6.8490,70.30,3.1827,7,222.0,18.40,396.90,7.53} | 2 | {28.20}
{1,0.49298,0.00,9.900,0,0.5440,6.6350,82.50,3.3175,4,304.0,18.40,396.90,4.54} | 2 | {22.80}
{1,0.34940,0.00,9.900,0,0.5440,5.9720,76.70,3.1025,4,304.0,18.40,396.24,9.97} | 2 | {20.30}
{1,2.63548,0.00,9.900,0,0.5440,4.9730,37.80,2.5194,4,304.0,18.40,350.45,12.64} | 2 | {16.10}
{1,0.79041,0.00,9.900,0,0.5440,6.1220,52.80,2.6403,4,304.0,18.40,396.90,5.98} | 2 | {22.10}
{1,0.26169,0.00,9.900,0,0.5440,6.0230,90.40,2.8340,4,304.0,18.40,396.30,11.72} | 2 | {19.40}
{1,0.26938,0.00,9.900,0,0.5440,6.2660,82.80,3.2628,4,304.0,18.40,393.39,7.90} | 2 | {21.60}
{1,0.36920,0.00,9.900,0,0.5440,6.5670,87.30,3.6023,4,304.0,18.40,395.69,9.28} | 2 | {23.80}
{1,0.25356,0.00,9.900,0,0.5440,5.7050,77.70,3.9450,4,304.0,18.40,396.42,11.50} | 2 | {16.20}
{1,0.31827,0.00,9.900,0,0.5440,5.9140,83.20,3.9986,4,304.0,18.40,390.70,18.33} | 2 | {17.80}
{1,0.24522,0.00,9.900,0,0.5440,5.7820,71.70,4.0317,4,304.0,18.40,396.90,15.94} | 2 | {19.80}
{1,0.40202,0.00,9.900,0,0.5440,6.3820,67.20,3.5325,4,304.0,18.40,395.21,10.36} | 2 | {23.10}
{1,0.47547,0.00,9.900,0,0.5440,6.1130,58.80,4.0019,4,304.0,18.40,396.23,12.73} | 2 | {21.00}
{1,0.16760,0.00,7.380,0,0.4930,6.4260,52.30,4.5404,5,287.0,19.60,396.90,7.20} | 2 | {23.80}
{1,0.18159,0.00,7.380,0,0.4930,6.3760,54.30,4.5404,5,287.0,19.60,396.90,6.87} | 2 | {23.10}
{1,0.35114,0.00,7.380,0,0.4930,6.0410,49.90,4.7211,5,287.0,19.60,396.90,7.70} | 2 | {20.40}
{1,0.28392,0.00,7.380,0,0.4930,5.7080,74.30,4.7211,5,287.0,19.60,391.13,11.74} | 2 | {18.50}
{1,0.34109,0.00,7.380,0,0.4930,6.4150,40.10,4.7211,5,287.0,19.60,396.90,6.12} | 2 | {25.00}
{1,0.19186,0.00,7.380,0,0.4930,6.4310,14.70,5.4159,5,287.0,19.60,393.68,5.08} | 2 | {24.60}
{1,0.30347,0.00,7.380,0,0.4930,6.3120,28.90,5.4159,5,287.0,19.60,396.90,6.15} | 2 | {23.00}
{1,0.24103,0.00,7.380,0,0.4930,6.0830,43.70,5.4159,5,287.0,19.60,396.90,12.79} | 2 | {22.20}
{1,0.06617,0.00,3.240,0,0.4600,5.8680,25.80,5.2146,4,430.0,16.90,382.44,9.97} | 2 | {19.30}
{1,0.06724,0.00,3.240,0,0.4600,6.3330,17.20,5.2146,4,430.0,16.90,375.21,7.34} | 2 | {22.60}
{1,0.04544,0.00,3.240,0,0.4600,6.1440,32.20,5.8736,4,430.0,16.90,368.57,9.09} | 2 | {19.80}
{1,0.05023,35.00,6.060,0,0.4379,5.7060,28.40,6.6407,1,304.0,16.90,394.02,12.43} | 2 | {17.10}
{1,0.03466,35.00,6.060,0,0.4379,6.0310,23.30,6.6407,1,304.0,16.90,362.25,7.83} | 2 | {19.40}
{1,0.05083,0.00,5.190,0,0.5150,6.3160,38.10,6.4584,5,224.0,20.20,389.71,5.68} | 2 | {22.20}
{1,0.03738,0.00,5.190,0,0.5150,6.3100,38.50,6.4584,5,224.0,20.20,389.40,6.75} | 2 | {20.70}
{1,0.03961,0.00,5.190,0,0.5150,6.0370,34.50,5.9853,5,224.0,20.20,396.90,8.01} | 2 | {21.10}
{1,0.03427,0.00,5.190,0,0.5150,5.8690,46.30,5.2311,5,224.0,20.20,396.90,9.80} | 2 | {19.50}
{1,0.03041,0.00,5.190,0,0.5150,5.8950,59.60,5.6150,5,224.0,20.20,394.81,10.56} | 2 | {18.50}
{1,0.03306,0.00,5.190,0,0.5150,6.0590,37.30,4.8122,5,224.0,20.20,396.14,8.51} | 2 | {20.60}
{1,0.05497,0.00,5.190,0,0.5150,5.9850,45.40,4.8122,5,224.0,20.20,396.90,9.74} | 2 | {19.00}
{1,0.06151,0.00,5.190,0,0.5150,5.9680,58.50,4.8122,5,224.0,20.20,396.90,9.29} | 2 | {18.70}
{1,0.01301,35.00,1.520,0,0.4420,7.2410,49.30,7.0379,1,284.0,15.50,394.74,5.49} | 2 | {32.70}
{1,0.02498,0.00,1.890,0,0.5180,6.5400,59.70,6.2669,1,422.0,15.90,389.96,8.65} | 2 | {16.50}
{1,0.02543,55.00,3.780,0,0.4840,6.6960,56.40,5.7321,5,370.0,17.60,396.90,7.18} | 2 | {23.90}
{1,0.03049,55.00,3.780,0,0.4840,6.8740,28.10,6.4654,5,370.0,17.60,387.97,4.61} | 2 | {31.20}
{1,0.03113,0.00,4.390,0,0.4420,6.0140,48.50,8.0136,3,352.0,18.80,385.64,10.53} | 2 | {17.50}
{1,0.06162,0.00,4.390,0,0.4420,5.8980,52.30,8.0136,3,352.0,18.80,364.61,12.67} | 2 | {17.20}
{1,0.01870,85.00,4.150,0,0.4290,6.5160,27.70,8.5353,4,351.0,17.90,392.43,6.36} | 2 | {23.10}
{1,0.01501,80.00,2.010,0,0.4350,6.6350,29.70,8.3440,4,280.0,17.00,390.94,5.99} | 2 | {24.50}
{1,0.02899,40.00,1.250,0,0.4290,6.9390,34.50,8.7921,1,335.0,19.70,389.85,5.89} | 2 | {26.60}
{1,0.06211,40.00,1.250,0,0.4290,6.4900,44.40,8.7921,1,335.0,19.70,396.90,5.98} | 2 | {22.90}
{1,0.07950,60.00,1.690,0,0.4110,6.5790,35.90,10.7103,4,411.0,18.30,370.78,5.49} | 2 | {24.10}
{1,0.07244,60.00,1.690,0,0.4110,5.8840,18.50,10.7103,4,411.0,18.30,392.33,7.79} | 2 | {18.60}
{1,0.01709,90.00,2.020,0,0.4100,6.7280,36.10,12.1265,5,187.0,17.00,384.46,4.50} | 2 | {30.10}
{1,0.04301,80.00,1.910,0,0.4130,5.6630,21.90,10.5857,4,334.0,22.00,382.80,8.05} | 2 | {18.20}
{1,0.10659,80.00,1.910,0,0.4130,5.9360,19.50,10.5857,4,334.0,22.00,376.04,5.57} | 2 | {20.60}
{1,8.98296,0.00,18.100,1,0.7700,6.2120,97.40,2.1222,24,666.0,20.20,377.73,17.60} | 2 | {17.80}
{1,3.84970,0.00,18.100,1,0.7700,6.3950,91.00,2.5052,24,666.0,20.20,391.34,13.27} | 2 | {21.70}
{1,5.20177,0.00,18.100,1,0.7700,6.1270,83.40,2.7227,24,666.0,20.20,395.43,11.48} | 2 | {22.70}
{1,4.26131,0.00,18.100,0,0.7700,6.1120,81.30,2.5091,24,666.0,20.20,390.74,12.67} | 2 | {22.60}
{1,4.54192,0.00,18.100,0,0.7700,6.3980,88.00,2.5182,24,666.0,20.20,374.56,7.79} | 2 | {25.00}
{1,3.83684,0.00,18.100,0,0.7700,6.2510,91.10,2.2955,24,666.0,20.20,350.65,14.19} | 2 | {19.90}
{1,3.67822,0.00,18.100,0,0.7700,5.3620,96.20,2.1036,24,666.0,20.20,380.79,10.19} | 2 | {20.80}
{1,4.22239,0.00,18.100,1,0.7700,5.8030,89.00,1.9047,24,666.0,20.20,353.04,14.64} | 2 | {16.80}
{1,3.47428,0.00,18.100,1,0.7180,8.7800,82.90,1.9047,24,666.0,20.20,354.55,5.29} | 2 | {21.90}
{1,4.55587,0.00,18.100,0,0.7180,3.5610,87.90,1.6132,24,666.0,20.20,354.70,7.12} | 2 | {27.50}
{1,3.69695,0.00,18.100,0,0.7180,4.9630,91.40,1.7523,24,666.0,20.20,316.03,14.00} | 2 | {21.90}
{1,13.52220,0.00,18.100,0,0.6310,3.8630,100.00,1.5106,24,666.0,20.20,131.42,13.33} | 2 | {23.10}
{1,4.89822,0.00,18.100,0,0.6310,4.9700,100.00,1.3325,24,666.0,20.20,375.52,3.26} | 2 | {50.00}
{1,5.66998,0.00,18.100,1,0.6310,6.6830,96.80,1.3567,24,666.0,20.20,375.33,3.73} | 2 | {50.00}
{1,6.53876,0.00,18.100,1,0.6310,7.0160,97.50,1.2024,24,666.0,20.20,392.05,2.96} | 2 | {50.00}
{1,9.23230,0.00,18.100,0,0.6310,6.2160,100.00,1.1691,24,666.0,20.20,366.15,9.53} | 2 | {50.00}
{1,8.26725,0.00,18.100,1,0.6680,5.8750,89.60,1.1296,24,666.0,20.20,347.88,8.88} | 2 | {50.00}
{1,11.10810,0.00,18.100,0,0.6680,4.9060,100.00,1.1742,24,666.0,20.20,396.90,34.77} | 2 | {13.80}
{1,18.49820,0.00,18.100,0,0.6680,4.1380,100.00,1.1370,24,666.0,20.20,396.90,37.97} | 2 | {13.80}
{1,19.60910,0.00,18.100,0,0.6710,7.3130,97.90,1.3163,24,666.0,20.20,396.90,13.44} | 2 | {15.00}
{1,15.28800,0.00,18.100,0,0.6710,6.6490,93.30,1.3449,24,666.0,20.20,363.02,23.24} | 2 | {13.90}
{1,9.82349,0.00,18.100,0,0.6710,6.7940,98.80,1.3580,24,666.0,20.20,396.90,21.24} | 2 | {13.30}
{1,23.64820,0.00,18.100,0,0.6710,6.3800,96.20,1.3861,24,666.0,20.20,396.90,23.69} | 2 | {13.10}
{1,17.86670,0.00,18.100,0,0.6710,6.2230,100.00,1.3861,24,666.0,20.20,393.74,21.78} | 2 | {10.20}
{1,88.97620,0.00,18.100,0,0.6710,6.9680,91.90,1.4165,24,666.0,20.20,396.90,17.21} | 2 | {10.40}
{1,15.87440,0.00,18.100,0,0.6710,6.5450,99.10,1.5192,24,666.0,20.20,396.90,21.08} | 2 | {10.90}
{1,9.18702,0.00,18.100,0,0.7000,5.5360,100.00,1.5804,24,666.0,20.20,396.90,23.60} | 2 | {11.30}
{1,7.99248,0.00,18.100,0,0.7000,5.5200,100.00,1.5331,24,666.0,20.20,396.90,24.56} | 2 | {12.30}
{1,20.08490,0.00,18.100,0,0.7000,4.3680,91.20,1.4395,24,666.0,20.20,285.83,30.63} | 2 | {8.80}
{1,16.81180,0.00,18.100,0,0.7000,5.2770,98.10,1.4261,24,666.0,20.20,396.90,30.81} | 2 | {7.20}
{1,24.39380,0.00,18.100,0,0.7000,4.6520,100.00,1.4672,24,666.0,20.20,396.90,28.28} | 2 | {10.50}
{1,22.59710,0.00,18.100,0,0.7000,5.0000,89.50,1.5184,24,666.0,20.20,396.90,31.99} | 2 | {7.40}
{1,14.33370,0.00,18.100,0,0.7000,4.8800,100.00,1.5895,24,666.0,20.20,372.92,30.62} | 2 | {10.20}
{1,8.15174,0.00,18.100,0,0.7000,5.3900,98.90,1.7281,24,666.0,20.20,396.90,20.85} | 2 | {11.50}
{1,6.96215,0.00,18.100,0,0.7000,5.7130,97.00,1.9265,24,666.0,20.20,394.43,17.11} | 2 | {15.10}
{1,5.29305,0.00,18.100,0,0.7000,6.0510,82.50,2.1678,24,666.0,20.20,378.38,18.76} | 2 | {23.20}
{1,11.57790,0.00,18.100,0,0.7000,5.0360,97.00,1.7700,24,666.0,20.20,396.90,25.68} | 2 | {9.70}
{1,8.64476,0.00,18.100,0,0.6930,6.1930,92.60,1.7912,24,666.0,20.20,396.90,15.17} | 2 | {13.80}
{1,13.35980,0.00,18.100,0,0.6930,5.8870,94.70,1.7821,24,666.0,20.20,396.90,16.35} | 2 | {12.70}
{1,8.71675,0.00,18.100,0,0.6930,6.4710,98.80,1.7257,24,666.0,20.20,391.98,17.12} | 2 | {13.10}
{1,5.87205,0.00,18.100,0,0.6930,6.4050,96.00,1.6768,24,666.0,20.20,396.90,19.37} | 2 | {12.50}
{1,7.67202,0.00,18.100,0,0.6930,5.7470,98.90,1.6334,24,666.0,20.20,393.10,19.92} | 2 | {8.50}
{1,38.35180,0.00,18.100,0,0.6930,5.4530,100.00,1.4896,24,666.0,20.20,396.90,30.59} | 2 | {5.00}
{1,9.91655,0.00,18.100,0,0.6930,5.8520,77.80,1.5004,24,666.0,20.20,338.16,29.97} | 2 | {6.30}
{1,25.04610,0.00,18.100,0,0.6930,5.9870,100.00,1.5888,24,666.0,20.20,396.90,26.77} | 2 | {5.60}
{1,14.23620,0.00,18.100,0,0.6930,6.3430,100.00,1.5741,24,666.0,20.20,396.90,20.32} | 2 | {7.20}
{1,9.59571,0.00,18.100,0,0.6930,6.4040,100.00,1.6390,24,666.0,20.20,376.11,20.31} | 2 | {12.10}
{1,24.80170,0.00,18.100,0,0.6930,5.3490,96.00,1.7028,24,666.0,20.20,396.90,19.77} | 2 | {8.30}
{1,41.52920,0.00,18.100,0,0.6930,5.5310,85.40,1.6074,24,666.0,20.20,329.46,27.38} | 2 | {8.50}
{1,67.92080,0.00,18.100,0,0.6930,5.6830,100.00,1.4254,24,666.0,20.20,384.97,22.98} | 2 | {5.00}
{1,20.71620,0.00,18.100,0,0.6590,4.1380,100.00,1.1781,24,666.0,20.20,370.22,23.34} | 2 | {11.90}
{1,11.95110,0.00,18.100,0,0.6590,5.6080,100.00,1.2852,24,666.0,20.20,332.09,12.13} | 2 | {27.90}
{1,7.40389,0.00,18.100,0,0.5970,5.6170,97.90,1.4547,24,666.0,20.20,314.64,26.40} | 2 | {17.20}
{1,14.43830,0.00,18.100,0,0.5970,6.8520,100.00,1.4655,24,666.0,20.20,179.36,19.78} | 2 | {27.50}
{1,51.13580,0.00,18.100,0,0.5970,5.7570,100.00,1.4130,24,666.0,20.20,2.60,10.11} | 2 | {15.00}
{1,14.05070,0.00,18.100,0,0.5970,6.6570,100.00,1.5275,24,666.0,20.20,35.05,21.22} | 2 | {17.20}
{1,18.81100,0.00,18.100,0,0.5970,4.6280,100.00,1.5539,24,666.0,20.20,28.79,34.37} | 2 | {17.90}
{1,28.65580,0.00,18.100,0,0.5970,5.1550,100.00,1.5894,24,666.0,20.20,210.97,20.08} | 2 | {16.30}
{1,45.74610,0.00,18.100,0,0.6930,4.5190,100.00,1.6582,24,666.0,20.20,88.27,36.98} | 2 | {7.00}
{1,18.08460,0.00,18.100,0,0.6790,6.4340,100.00,1.8347,24,666.0,20.20,27.25,29.05} | 2 | {7.20}
{1,10.83420,0.00,18.100,0,0.6790,6.7820,90.80,1.8195,24,666.0,20.20,21.57,25.79} | 2 | {7.50}
{1,25.94060,0.00,18.100,0,0.6790,5.3040,89.10,1.6475,24,666.0,20.20,127.36,26.64} | 2 | {10.40}
{1,73.53410,0.00,18.100,0,0.6790,5.9570,100.00,1.8026,24,666.0,20.20,16.45,20.62} | 2 | {8.80}
{1,11.81230,0.00,18.100,0,0.7180,6.8240,76.50,1.7940,24,666.0,20.20,48.45,22.74} | 2 | {8.40}
{1,11.08740,0.00,18.100,0,0.7180,6.4110,100.00,1.8589,24,666.0,20.20,318.75,15.02} | 2 | {16.70}
{1,7.02259,0.00,18.100,0,0.7180,6.0060,95.30,1.8746,24,666.0,20.20,319.98,15.70} | 2 | {14.20}
{1,12.04820,0.00,18.100,0,0.6140,5.6480,87.60,1.9512,24,666.0,20.20,291.55,14.10} | 2 | {20.80}
{1,7.05042,0.00,18.100,0,0.6140,6.1030,85.10,2.0218,24,666.0,20.20,2.52,23.29} | 2 | {13.40}
{1,8.79212,0.00,18.100,0,0.5840,5.5650,70.60,2.0635,24,666.0,20.20,3.65,17.16} | 2 | {11.70}
{1,15.86030,0.00,18.100,0,0.6790,5.8960,95.40,1.9096,24,666.0,20.20,7.68,24.39} | 2 | {8.30}
{1,12.24720,0.00,18.100,0,0.5840,5.8370,59.70,1.9976,24,666.0,20.20,24.65,15.69} | 2 | {10.20}
{1,37.66190,0.00,18.100,0,0.6790,6.2020,78.70,1.8629,24,666.0,20.20,18.82,14.52} | 2 | {10.90}
{1,7.36711,0.00,18.100,0,0.6790,6.1930,78.10,1.9356,24,666.0,20.20,96.73,21.52} | 2 | {11.00}
{1,9.33889,0.00,18.100,0,0.6790,6.3800,95.60,1.9682,24,666.0,20.20,60.72,24.08} | 2 | {9.50}
{1,8.49213,0.00,18.100,0,0.5840,6.3480,86.10,2.0527,24,666.0,20.20,83.45,17.64} | 2 | {14.50}
{1,10.06230,0.00,18.100,0,0.5840,6.8330,94.30,2.0882,24,666.0,20.20,81.33,19.69} | 2 | {14.10}
{1,6.44405,0.00,18.100,0,0.5840,6.4250,74.80,2.2004,24,666.0,20.20,97.95,12.03} | 2 | {16.10}
{1,5.58107,0.00,18.100,0,0.7130,6.4360,87.90,2.3158,24,666.0,20.20,100.19,16.22} | 2 | {14.30}
{1,13.91340,0.00,18.100,0,0.7130,6.2080,95.00,2.2222,24,666.0,20.20,100.63,15.17} | 2 | {11.70}
{1,11.16040,0.00,18.100,0,0.7400,6.6290,94.60,2.1247,24,666.0,20.20,109.85,23.27} | 2 | {13.40}
{1,14.42080,0.00,18.100,0,0.7400,6.4610,93.30,2.0026,24,666.0,20.20,27.49,18.05} | 2 | {9.60}
{1,15.17720,0.00,18.100,0,0.7400,6.1520,100.00,1.9142,24,666.0,20.20,9.32,26.45} | 2 | {8.70}
{1,13.67810,0.00,18.100,0,0.7400,5.9350,87.90,1.8206,24,666.0,20.20,68.95,34.02} | 2 | {8.40}
{1,9.39063,0.00,18.100,0,0.7400,5.6270,93.90,1.8172,24,666.0,20.20,396.90,22.88} | 2 | {12.80}
{1,22.05110,0.00,18.100,0,0.7400,5.8180,92.40,1.8662,24,666.0,20.20,391.45,22.11} | 2 | {10.50}
{1,9.72418,0.00,18.100,0,0.7400,6.4060,97.20,2.0651,24,666.0,20.20,385.96,19.52} | 2 | {17.10}
{1,5.66637,0.00,18.100,0,0.7400,6.2190,100.00,2.0048,24,666.0,20.20,395.69,16.59} | 2 | {18.40}
{1,9.96654,0.00,18.100,0,0.7400,6.4850,100.00,1.9784,24,666.0,20.20,386.73,18.85} | 2 | {15.40}
{1,12.80230,0.00,18.100,0,0.7400,5.8540,96.60,1.8956,24,666.0,20.20,240.52,23.79} | 2 | {10.80}
{1,10.67180,0.00,18.100,0,0.7400,6.4590,94.80,1.9879,24,666.0,20.20,43.06,23.98} | 2 | {11.80}
{1,6.28807,0.00,18.100,0,0.7400,6.3410,96.40,2.0720,24,666.0,20.20,318.01,17.79} | 2 | {14.90}
{1,9.92485,0.00,18.100,0,0.7400,6.2510,96.60,2.1980,24,666.0,20.20,388.52,16.44} | 2 | {12.60}
{1,9.32909,0.00,18.100,0,0.7130,6.1850,98.70,2.2616,24,666.0,20.20,396.90,18.13} | 2 | {14.10}
{1,7.52601,0.00,18.100,0,0.7130,6.4170,98.30,2.1850,24,666.0,20.20,304.21,19.31} | 2 | {13.00}
{1,6.71772,0.00,18.100,0,0.7130,6.7490,92.60,2.3236,24,666.0,20.20,0.32,17.44} | 2 | {13.40}
{1,5.44114,0.00,18.100,0,0.7130,6.6550,98.20,2.3552,24,666.0,20.20,355.29,17.73} | 2 | {15.20}
{1,5.09017,0.00,18.100,0,0.7130,6.2970,91.80,2.3682,24,666.0,20.20,385.09,17.27} | 2 | {16.10}
{1,8.24809,0.00,18.100,0,0.7130,7.3930,99.30,2.4527,24,666.0,20.20,375.87,16.74} | 2 | {17.80}
{1,9.51363,0.00,18.100,0,0.7130,6.7280,94.10,2.4961,24,666.0,20.20,6.68,18.71} | 2 | {14.90}
{1,4.75237,0.00,18.100,0,0.7130,6.5250,86.50,2.4358,24,666.0,20.20,50.92,18.13} | 2 | {14.10}
{1,4.66883,0.00,18.100,0,0.7130,5.9760,87.90,2.5806,24,666.0,20.20,10.48,19.01} | 2 | {12.70}
{1,8.20058,0.00,18.100,0,0.7130,5.9360,80.30,2.7792,24,666.0,20.20,3.50,16.94} | 2 | {13.50}
{1,7.75223,0.00,18.100,0,0.7130,6.3010,83.70,2.7831,24,666.0,20.20,272.21,16.23} | 2 | {14.90}
{1,6.80117,0.00,18.100,0,0.7130,6.0810,84.40,2.7175,24,666.0,20.20,396.90,14.70} | 2 | {20.00}
{1,4.81213,0.00,18.100,0,0.7130,6.7010,90.00,2.5975,24,666.0,20.20,255.23,16.42} | 2 | {16.40}
{1,3.69311,0.00,18.100,0,0.7130,6.3760,88.40,2.5671,24,666.0,20.20,391.43,14.65} | 2 | {17.70}
{1,6.65492,0.00,18.100,0,0.7130,6.3170,83.00,2.7344,24,666.0,20.20,396.90,13.99} | 2 | {19.50}
{1,5.82115,0.00,18.100,0,0.7130,6.5130,89.90,2.8016,24,666.0,20.20,393.82,10.29} | 2 | {20.20}
{1,7.83932,0.00,18.100,0,0.6550,6.2090,65.40,2.9634,24,666.0,20.20,396.90,13.22} | 2 | {21.40}
{1,3.16360,0.00,18.100,0,0.6550,5.7590,48.20,3.0665,24,666.0,20.20,334.40,14.13} | 2 | {19.90}
{1,3.77498,0.00,18.100,0,0.6550,5.9520,84.70,2.8715,24,666.0,20.20,22.01,17.15} | 2 | {19.00}
{1,4.42228,0.00,18.100,0,0.5840,6.0030,94.50,2.5403,24,666.0,20.20,331.29,21.32} | 2 | {19.10}
{1,15.57570,0.00,18.100,0,0.5800,5.9260,71.00,2.9084,24,666.0,20.20,368.74,18.13} | 2 | {19.10}
{1,13.07510,0.00,18.100,0,0.5800,5.7130,56.70,2.8237,24,666.0,20.20,396.90,14.76} | 2 | {20.10}
{1,4.34879,0.00,18.100,0,0.5800,6.1670,84.00,3.0334,24,666.0,20.20,396.90,16.29} | 2 | {19.90}
{1,4.03841,0.00,18.100,0,0.5320,6.2290,90.70,3.0993,24,666.0,20.20,395.33,12.87} | 2 | {19.60}
{1,3.56868,0.00,18.100,0,0.5800,6.4370,75.00,2.8965,24,666.0,20.20,393.37,14.36} | 2 | {23.20}
{1,4.64689,0.00,18.100,0,0.6140,6.9800,67.60,2.5329,24,666.0,20.20,374.68,11.66} | 2 | {29.80}
{1,8.05579,0.00,18.100,0,0.5840,5.4270,95.40,2.4298,24,666.0,20.20,352.58,18.14} | 2 | {13.80}
{1,6.39312,0.00,18.100,0,0.5840,6.1620,97.40,2.2060,24,666.0,20.20,302.76,24.10} | 2 | {13.30}
{1,4.87141,0.00,18.100,0,0.6140,6.4840,93.60,2.3053,24,666.0,20.20,396.21,18.68} | 2 | {16.70}
{1,15.02340,0.00,18.100,0,0.6140,5.3040,97.30,2.1007,24,666.0,20.20,349.48,24.91} | 2 | {12.00}
{1,10.23300,0.00,18.100,0,0.6140,6.1850,96.70,2.1705,24,666.0,20.20,379.70,18.03} | 2 | {14.60}
{1,14.33370,0.00,18.100,0,0.6140,6.2290,88.00,1.9512,24,666.0,20.20,383.32,13.11} | 2 | {21.40}
{1,5.82401,0.00,18.100,0,0.5320,6.2420,64.70,3.4242,24,666.0,20.20,396.90,10.74} | 2 | {23.00}
{1,5.70818,0.00,18.100,0,0.5320,6.7500,74.90,3.3317,24,666.0,20.20,393.07,7.74} | 2 | {23.70}
{1,5.73116,0.00,18.100,0,0.5320,7.0610,77.00,3.4106,24,666.0,20.20,395.28,7.01} | 2 | {25.00}
{1,2.81838,0.00,18.100,0,0.5320,5.7620,40.30,4.0983,24,666.0,20.20,392.92,10.42} | 2 | {21.80}
{1,2.37857,0.00,18.100,0,0.5830,5.8710,41.90,3.7240,24,666.0,20.20,370.73,13.34} | 2 | {20.60}
{1,3.67367,0.00,18.100,0,0.5830,6.3120,51.90,3.9917,24,666.0,20.20,388.62,10.58} | 2 | {21.20}
{1,5.69175,0.00,18.100,0,0.5830,6.1140,79.80,3.5459,24,666.0,20.20,392.68,14.98} | 2 | {19.10}
{1,4.83567,0.00,18.100,0,0.5830,5.9050,53.20,3.1523,24,666.0,20.20,388.22,11.45} | 2 | {20.60}
{1,0.15086,0.00,27.740,0,0.6090,5.4540,92.70,1.8209,4,711.0,20.10,395.09,18.06} | 2 | {15.20}
{1,0.18337,0.00,27.740,0,0.6090,5.4140,98.30,1.7554,4,711.0,20.10,344.05,23.97} | 2 | {7.00}
{1,0.20746,0.00,27.740,0,0.6090,5.0930,98.00,1.8226,4,711.0,20.10,318.43,29.68} | 2 | {8.10}
{1,0.10574,0.00,27.740,0,0.6090,5.9830,98.80,1.8681,4,711.0,20.10,390.11,18.07} | 2 | {13.60}
{1,0.11132,0.00,27.740,0,0.6090,5.9830,83.50,2.1099,4,711.0,20.10,396.90,13.35} | 2 | {20.10}
{1,0.17331,0.00,9.690,0,0.5850,5.7070,54.00,2.3817,6,391.0,19.20,396.90,12.01} | 2 | {21.80}
{1,0.27957,0.00,9.690,0,0.5850,5.9260,42.60,2.3817,6,391.0,19.20,396.90,13.59} | 2 | {24.50}
{1,0.17899,0.00,9.690,0,0.5850,5.6700,28.80,2.7986,6,391.0,19.20,393.29,17.60} | 2 | {23.10}
{1,0.28960,0.00,9.690,0,0.5850,5.3900,72.90,2.7986,6,391.0,19.20,396.90,21.14} | 2 | {19.70}
{1,0.26838,0.00,9.690,0,0.5850,5.7940,70.60,2.8927,6,391.0,19.20,396.90,14.10} | 2 | {18.30}
{1,0.23912,0.00,9.690,0,0.5850,6.0190,65.30,2.4091,6,391.0,19.20,396.90,12.92} | 2 | {21.20}
{1,0.17783,0.00,9.690,0,0.5850,5.5690,73.50,2.3999,6,391.0,19.20,395.77,15.10} | 2 | {17.50}
{1,0.22438,0.00,9.690,0,0.5850,6.0270,79.70,2.4982,6,391.0,19.20,396.90,14.33} | 2 | {16.80}
{1,0.06263,0.00,11.930,0,0.5730,6.5930,69.10,2.4786,1,273.0,21.00,391.99,9.67} | 2 | {22.40}
{1,0.04527,0.00,11.930,0,0.5730,6.1200,76.70,2.2875,1,273.0,21.00,396.90,9.08} | 2 | {20.60}
{1,0.06076,0.00,11.930,0,0.5730,6.9760,91.00,2.1675,1,273.0,21.00,396.90,5.64} | 2 | {23.90}
{1,0.10959,0.00,11.930,0,0.5730,6.7940,89.30,2.3889,1,273.0,21.00,393.45,6.48} | 2 | {22.00}
{1,0.04741,0.00,11.930,0,0.5730,6.0300,80.80,2.5050,1,273.0,21.00,396.90,7.88} | 2 | {11.90}
\.
-- NOTE that the batch specific tables were created using:
-- madlib.minibatch_preprocessor(), with the regular source tables used in this file.
-- Create preprocessed data that can be used with minibatch MLP:
DROP TABLE IF EXISTS lin_housing_wi_batch, lin_housing_wi_batch_summary, lin_housing_wi_batch_standardization;
CREATE TABLE lin_housing_wi_batch(
__id__ integer,
dependent_varname double precision[],
independent_varname double precision[]
);
COPY lin_housing_wi_batch (__id__, dependent_varname, independent_varname) FROM STDIN NULL '?' DELIMITER '|';
0 | {{15},{15.7},{19.6},{10.9},{21.4},{50},{30.8},{18},{23},{20.5},{15.6},{9.6},{20.6},{29.8},{22.7},{19.3},{16.2},{7.5},{13.6},{20.4},{26.6},{24.7},{27.1},{17.9},{6.3},{28.7},{18.5},{27.9},{20},{17.5},{37.2},{18.3},{10.2},{32.5},{17.1},{23.1},{21.9},{18.7},{19.4},{20.3},{18.3},{19.3},{21.2},{50},{17.3},{21.7},{19.8},{15.2},{27.5},{14.6}} | {{0,-0.445702761621649,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,0.355066565555217,0.815140254739345,1.38432428783503,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.431101787118015,0.949283718252188},{0,-0.428368753077516,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.891680410581072,0.86361611618313,-0.873482235720559,-0.927483143499006,-1.42845214296799,0.103320666207828,0.0982729706837658,1.89946585735285},{0,-0.0388112913321931,-0.384945784500547,0.827294500187726,-0.194870940739048,-0.345339701965513,0.113550135623056,0.680899407664247,-0.213235556286209,1.4404472143815,1.31654026747368,0.670201693636395,0.459246504968759,-0.10833458048247},{0,3.54871710300239,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,0.0694897058381349,0.233429917413921,-0.821483074692163,1.4404472143815,1.31654026747368,0.670201693636395,-3.31184520961623,0.121885761590377},{0,-0.459548842433986,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,0.206566598502334,-1.02321356770575,0.477118489798452,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.338053947675518,-0.656677577055981},{0,0.227968766917991,-0.384945784500547,0.827294500187726,5.13160143945555,0.501583335630603,1.39783007046502,0.934465452139432,-1.14641633731521,1.4404472143815,1.31654026747368,0.670201693636395,0.426394307619848,-1.49105190772},{0,-0.466749828748424,3.45514598302154,-1.37189655875695,-0.194870940739048,-1.23503663034931,0.71081373937421,-1.88832124885638,0.919135956061595,-0.819849945413529,-1.06092177839002,-0.308956444649314,0.462251279116526,-1.30129453485995},{0,-0.43497543662456,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.44318742512506,0.982941313583218,-0.846277376639478,-0.712216747328051,0.00147068171815396,1.18554808220782,0.474971489675403,0.243274669228788},{0,-0.406741253804489,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.346907226706157,0.949381101814444,-0.592972097419787,-0.712216747328051,0.00147068171815396,1.18554808220782,0.363394209655014,-0.352507670559733},{0,-0.459776107226544,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.323790426686532,0.762935480876807,-0.711286177148542,-0.927483143499006,-1.42845214296799,0.103320666207828,0.286572150610455,0.59767446854093},{0,-0.389647313703198,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.384169534169572,0.80768242990184,0.426447594945805,-0.712216747328051,-0.745075371330834,1.08247880449354,0.449230591142872,0.370244676068965},{0,1.06895946435246,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.492143458219417,0.777851130551818,-0.752757598858038,1.4404472143815,1.31654026747368,0.670201693636395,-3.22500723674578,0.614417766146228},{0,-0.464867692156534,-0.384945784500547,-0.0683496472504681,-0.194870940739048,0.00540620249348394,-0.0643234512864404,0.158851669038866,-0.612600919794745,-1.03511634158448,-0.940325877512877,1.08247880449354,0.474971489675403,-0.6371437298498},{0,0.026111751379456,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,1.33908283075179,-0.180479361067632,-0.491876282932224,1.4404472143815,1.31654026747368,0.670201693636395,0.252417884464178,-0.277162831335892},{0,0.0853158302971524,-0.384945784500547,0.827294500187726,5.13160143945555,1.69069749952818,-0.0529003768977577,0.408688801095299,-0.398504090281423,1.4404472143815,1.31654026747368,0.670201693636395,0.460248096351348,-0.302277777743839},{0,-0.454252399099437,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.699120013743269,-0.269973259117697,-0.380547899387038,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.420885555015609,-0.00508424524979929},{0,-0.442047319465291,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.761130988996121,0.878531765858142,-0.858182577177673,-0.712216747328051,0.00147068171815396,1.18554808220782,0.426995262449401,0.494424133308259},{0,0.686279696751882,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,1.01597301232904,0.684628320083,-0.84283372359124,1.4404472143815,1.31654026747368,0.670201693636395,-3.28430144659504,1.69436046168795},{0,-0.458415719383766,-0.384945784500547,2.22664775485615,-0.194870940739048,0.313378216164799,-0.287889335750671,0.982941313583218,-0.818924932427758,-0.712216747328051,1.57496005506756,0.618667054779254,0.406963434797626,0.617208315747111},{0,-0.402504312531021,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.343372839924275,-0.39675628135529,0.577919134024738,-0.712216747328051,-0.745075371330834,1.08247880449354,0.474971489675403,-0.751556263486003},{0,-0.456100392623901,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,0.996390599091292,-2.59308569600064,1.07646170532253,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.359888639815953,-1.228740245237},{0,-0.45102054437334,-0.384945784500547,-0.934961569488072,-0.194870940739048,-0.627647381164219,-0.315631087837472,-1.57509260568115,0.154743369439813,-0.604583549242574,-0.905869905833693,0.154855305064969,0.440216268699573,-0.490639875803442},{0,-0.4639661017823,-0.384945784500547,0.2205209934954,-0.194870940739048,-1.15804362693148,0.635747821962864,-0.799478822580584,1.19428383461582,-0.712216747328051,-0.848443286368387,-1.49425313836359,0.434407038680558,-0.872945171124413},{0,1.53738101002805,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,-2.49907016384579,1.02768826260825,-0.973495759250105,1.4404472143815,1.31654026747368,0.670201693636395,-3.21198654877213,2.89150624046676},{0,0.588369116051868,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-0.501664013596029,0.199869705645146,-0.999815107547354,1.4404472143815,1.31654026747368,0.670201693636395,-0.113363288457242,2.2775853282725},{0,-0.464040789742296,-0.384945784500547,-1.30512244079559,-0.194870940739048,-0.713195162739584,1.50063773996317,-0.348280419911504,-0.0581727790283989,-0.927483143499006,-0.95755386335247,-0.566629638935027,0.466558122061657,-1.10874661239903},{0,-0.439404432652302,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,-0.736652972448942,0.0693577709888006,0.584609659947029,-0.604583549242574,-0.859928610261448,0.360993860493541,0.417179666900031,-0.26600063293236},{0,-0.465840769578191,3.71115210085635,-1.08157430675105,-0.194870940739048,-1.38046785902743,0.767929111317627,-1.82865865015634,0.779225252216032,-0.712216747328051,-1.10112041201574,0.154855305064969,0.474971489675403,-1.24827409244318},{0,-0.449600406162565,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-0.609367286403615,-1.45949632069982,0.771206460117992,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.474971489675403,0.0702605939740419},{0,-0.450723926475071,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.963482592452796,0.0395264716387789,-0.557305690848749,-0.496950351157096,-0.262691767822257,0.154855305064969,0.46365350705215,0.202811700015985},{0,-0.463530777672611,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,1.33908283075179,-0.523539303592882,-0.346209758991749,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.474971489675403,-1.20083474922817},{0,-0.451416390561317,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.377642063090325,0.587676597195429,-0.526214423327513,-0.496950351157096,-0.0272426280144994,-0.566629638935027,-0.0457558701324997,0.294899836845124},{0,1.43662695199392,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,0.103758929004185,1.02768826260825,-1.05604504232073,1.4404472143815,1.31654026747368,0.670201693636395,0.443321201985598,1.13485526671091},{0,-0.459019624888874,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,0.658593970740229,0.86361611618313,-0.337354651153422,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.474971489675403,-1.11153716199991},{0,-0.464338474611422,1.40709704034309,-0.920445456887777,-0.194870940739048,-1.1503443265897,-0.739916707988565,-1.6422130292187,1.52895771586103,-1.03511634158448,-0.762303357170426,-1.03044138864931,0.446125657856846,-0.169726671701896},{0,-0.467702633723797,3.96715821869115,-1.19770320755341,-0.194870940739048,-1.22648185219178,0.581896185559071,-1.66831541614997,2.46100701088846,-0.712216747328051,-0.492398245683485,-0.515095000077885,0.430200354873685,-1.01665847556989},{0,-0.0990023182926892,-0.384945784500547,0.827294500187726,5.13160143945555,1.24584903533628,4.27644481641321,0.390044239001535,-0.800919546489827,1.4404472143815,1.31654026747368,0.670201693636395,0.0507975391490579,-1.16595287921713},{0,-0.453765860388608,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,-0.68280133604515,-0.23268413493017,1.81660113547601,-0.281683954986141,-0.87715659610104,0.412528499350682,0.457043003927064,-0.0692668860701082},{0,-0.465999748235896,1.40709704034309,-0.920445456887777,-0.194870940739048,-1.1503443265897,-0.2095596827997,-1.83238756257509,1.52895771586103,-1.03511634158448,-0.762303357170426,-1.03044138864931,0.127920075608393,-0.811553079904987},{0,-0.460749184648202,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,-0.465762922660168,-1.33644221088098,0.477118489798452,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.466558122061657,-0.634353180248917},{0,-0.441062505364205,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.59631234424512,-0.0686119885050502,-0.314872516252782,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,0.0632842199718343},{0,-0.462637723065235,-0.384945784500547,-1.32979983221609,-0.194870940739048,-0.961283729308144,-0.475554129279038,-1.73916475210627,0.827387199847821,-0.712216747328051,-0.0387279519075608,-1.03044138864931,0.330141375753067,-0.512964272610506},{0,-0.46367375176746,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,0.118445738932492,-0.69879818727426,0.72875113753757,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.369804394503582,-0.18228414490587},{0,0.515361635156118,-0.384945784500547,0.827294500187726,-0.194870940739048,0.501583335630603,0.0923358546155019,1.02768826260825,-1.16279828681611,1.4404472143815,1.31654026747368,0.670201693636395,0.166982139529355,-0.574356363829932},{0,-0.453652761477758,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.495136542516782,0.915820890045669,-0.781389114201962,-0.927483143499006,-1.42845214296799,0.103320666207828,0.208648341045048,1.64134001927117},{0,-0.452758639899524,-0.384945784500547,-0.230930108373771,-0.194870940739048,-1.36335830271236,-0.323790426686532,-2.04866448286275,0.863151996505951,-0.712216747328051,-0.756560695223896,0.154855305064969,0.275053849710684,-0.525521745814479},{0,-0.45603850831419,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.513357739226971,0.919549802464421,-0.541071326478483,-0.604583549242574,-0.302890401447972,1.03094416563639,0.45834507272443,-0.192051068508961},{0,0.110855911703094,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.808725805562925,0.960567839070702,-0.579295875313927,1.4404472143815,1.31654026747368,0.670201693636395,0.0582093153802149,0.5697689725321},{0,0.0164001826383071,-0.384945784500547,0.827294500187726,-0.194870940739048,1.24584903533628,-4.24027307423509,0.576489859939171,-0.944323098427173,1.4404472143815,1.31654026747368,0.670201693636395,0.0522999262229408,-0.910617590736334},{0,0.622133408824188,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,0.0417479537513321,0.904634152789411,-0.670159120743868,1.4404472143815,1.31654026747368,0.670201693636395,0.302697771870134,0.611627216545345}}
1 | {{20.2},{25},{14.1},{25},{36.2},{19.1},{18.9},{22.1},{29.9},{13.4},{24.2},{37},{22},{23.7},{17.2},{7.4},{15.3},{8.5},{23.1},{41.3},{50},{20.9},{17.2},{28.5},{7},{22.2},{29},{17.5},{13.4},{21.2},{23.2},{21.7},{34.9},{27},{28},{14.4},{16.8},{24.1},{20.6},{24.1},{23.8},{11.7},{28.7},{10.2},{19.2},{12.6},{15.2},{19.2},{24.3},{50}} | {{0,-0.38405105155781,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-1.14788365044154,-1.33644221088098,0.129752287318313,-0.712216747328051,-0.745075371330834,1.08247880449354,-0.605845771276142,-0.272977006934568},{0,-0.466630328012431,1.04868847537437,0.383101454618702,-0.194870940739048,-0.927064616677998,0.0841765157664425,-1.62356846712494,0.0655035604468979,-0.712216747328051,-0.95755386335247,-0.360491083506457,0.469262418794647,-1.03758759757651},{0,0.0373661599799437,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.596582995487378,0.524285086076633,-0.539644670215642,1.4404472143815,1.31654026747368,0.670201693636395,-2.99033437580523,0.62557996454976},{0,0.0149117582926795,-0.384945784500547,0.827294500187726,-0.194870940739048,1.69069749952818,0.389335788721266,0.580218772357924,-0.499107954333524,1.4404472143815,1.31654026747368,0.670201693636395,0.251215974805071,-0.817134179106753},{0,-0.462330435458396,-0.384945784500547,-1.48367062577922,-0.194870940739048,-0.978393285623217,1.61160474831038,-0.680153625180496,1.24436438894592,-0.819849945413529,-1.23320163678594,-0.102817889220744,0.474971489675403,-1.16037178001536},{0,-0.222811482606625,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.455971716041296,0.927007627301927,-0.56281553572593,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.0135046276131415,-0.225537663719557},{0,-0.451555096772737,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,-0.253620112584621,0.501911611564117,1.50504892469755,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.372909327789607,0.481866660104285},{0,-0.385363425712019,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.061059715746817,-0.732358399043035,-0.439040806163541,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.474971489675403,-1.06967891798667},{0,-0.462611048793808,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,1.14325869837436,0.0730866834075537,-0.303754436411327,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.418581894835655,-0.938523086745164},{0,-0.115351512735737,-0.384945784500547,1.04213296667209,5.13160143945555,2.55473009343937,-1.23437264224157,1.02768826260825,-1.08777584540807,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.474971489675403,1.83807376613342},{0,-0.460280784441944,-0.384945784500547,-0.230930108373771,-0.194870940739048,-1.36335830271236,0.420341276347693,-2.45511593650679,0.863151996505951,-0.712216747328051,-0.756560695223896,0.154855305064969,0.343061904588462,-0.966428582753994},{0,-0.46002257749453,1.91910927601271,-1.3007676070155,-0.194870940739048,-1.15804362693148,1.29175866542725,-1.89950798611264,1.4498028907951,-0.604583549242574,-0.222493134196543,-1.90653024922074,0.282465625941841,-1.19246310042552},{0,-0.465502539816497,-0.384945784500547,-1.30512244079559,-0.194870940739048,-0.713195162739584,0.400758863109951,0.0544421213137901,-0.21677759942154,-0.927483143499006,-0.95755386335247,-0.566629638935027,0.441418178358679,-0.759927912288652},{0,0.139348301470578,-0.384945784500547,0.827294500187726,-0.194870940739048,-0.345339701965513,0.963753243695055,0.0917312455013173,-0.0989062750847017,1.4404472143815,1.31654026747368,0.670201693636395,0.436610539722253,-0.824110553108961},{0,0.320275616676617,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,-0.885152939501825,0.949381101814444,-1.022297242448,1.4404472143815,1.31654026747368,0.670201693636395,-0.348937581642122,1.77947222451488},{0,1.94134684622739,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.89201535347577,0.636152458639215,-0.990959999709028,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,2.55943083796168},{0,-0.349495066409536,-0.384945784500547,1.04213296667209,5.13160143945555,2.55473009343937,-1.87243294023802,0.580218772357924,-0.945798949733561,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.0620818096686972,-0.212980190515583},{0,0.348884306267523,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-0.673010129426278,0.986670226001971,-0.934385699630829,1.4404472143815,1.31654026747368,0.670201693636395,0.43691101713703,0.875334153828789},{0,-0.454852036721117,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,-0.95858698914336,0.598863334451687,-0.460785015410988,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.474971489675403,0.145605433197883},{0,-0.339145449095852,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,1.27870372326875,0.93073653972068,-0.814398988421502,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.139738853922941,-1.26362211524803},{0,0.0529279299304664,-0.384945784500547,0.827294500187726,-0.194870940739048,0.501583335630603,-1.94097138657012,1.02768826260825,-1.08241358566152,1.4404472143815,1.31654026747368,0.670201693636395,0.260831252077923,-1.44919366370675},{0,-0.456023570722191,0.255069510086467,-0.918993845627748,-0.194870940739048,-1.39757741534251,-0.447812377192237,-1.47068305795607,1.45875638872052,-0.712216747328051,-0.526854217362669,0.000251388493540901,0.474971489675403,-0.677606699062603},{0,-0.463123194805207,-0.384945784500547,-1.1628645373127,-0.194870940739048,-1.1152697361438,-0.426598096184682,-0.751002961136798,2.20435646870763,-0.819849945413529,-0.486655583736954,-0.0512832503636006,0.151557632237488,-0.1362400764913},{0,-0.465961337285041,3.71115210085635,-1.08157430675105,-0.194870940739048,-1.38046785902743,1.14489056614417,-1.66085759131246,0.779225252216032,-0.712216747328051,-1.10112041201574,0.154855305064969,0.474971489675403,-1.43942674010366},{0,4.41127768328361,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-2.67694375075529,1.02768826260825,-0.922185328831357,1.4404472143815,1.31654026747368,0.670201693636395,-2.61623999440833,3.25567296338199},{0,-0.462067960627554,-0.384945784500547,-1.14834842471241,-0.194870940739048,-1.05538628904105,-0.062691583516628,-0.583201902292926,0.105695911024192,-0.819849945413529,-1.08963508812268,-0.205887166935029,0.457443640480099,-0.726441317078056},{0,-0.463764444290312,3.19913986518674,-1.47496095821904,-0.194870940739048,-1.47457041876034,1.43862676471032,-2.3283329142692,2.11295207779868,-0.604583549242574,-0.45219961205777,-2.11266880464931,0.221368551603926,-1.24269299324141},{0,-0.386026014614266,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.276466261361987,0.345297289976502,0.356738218240755,-0.712216747328051,-0.745075371330834,1.08247880449354,0.373309964342643,0.142814883597},{0,0.721084286109856,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.766297243547814,0.826326991995603,-0.692690450688055,1.4404472143815,1.31654026747368,0.670201693636395,-2.40009657404567,1.34275121197669},{0,-0.45565866668907,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,0.0270611438230259,0.00223734745125172,-0.394863657059,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.438914199902207,-0.224142388919115},{0,-0.462205599868117,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,-0.227510228267631,-0.941177494493187,0.0108970621105497,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.438213085934395,-0.493430425404325},{0,-0.458182052766066,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.0580666314494522,-0.672695800342991,-0.371397621287434,-0.604583549242574,-0.302890401447972,1.03094416563639,0.440817223529126,-0.0901960080767308},{0,-0.460767323152772,1.91910927601271,-1.3007676070155,-0.194870940739048,-1.15804362693148,1.67361572356323,-1.25067722524966,0.508652512711604,-0.604583549242574,-0.222493134196543,-1.90653024922074,0.474971489675403,-1.15200013121271},{0,-0.333823398460734,-0.384945784500547,1.04213296667209,5.13160143945555,0.279159103534653,0.147819358789106,0.751748743620549,-0.853213877779501,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.105751193949567,-1.13665210840786},{0,-0.465309418091365,0.895084804673483,-1.09463880809132,-0.194870940739048,-1.25214618666439,0.926220284989382,-1.45203849586231,0.91893917588741,-0.712216747328051,-0.894384581940632,0.0517860273506843,0.474971489675403,-1.16595287921713},{0,-0.442610680077829,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-1.24090011332082,0.852429378926872,1.14981151525001,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.474971489675403,2.39478841150958},{0,-0.44575717713536,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.216087153878947,0.270719041601448,-0.508946963042776,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,0.0953755403819889},{0,-0.461215450912746,2.68712762951712,-1.55479957752066,-0.194870940739048,-1.38046785902743,0.68470385505722,-1.36254459781225,3.53099920801961,-0.712216747328051,-0.147838528891644,-0.308956444649314,0.213355820543215,-1.1380473832083},{0,-0.466170463573029,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.163867385244966,-1.31033982394971,0.629426344617672,-0.604583549242574,-1.22171631289288,0.670201693636395,0.467359395167728,-0.716674393474965},{0,-0.461273067339029,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,0.185352317494779,-2.47748941101931,0.353589735453794,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.455139980300146,-0.958056933951345},{0,-0.277613239768006,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.460867319350732,0.252074479507684,-0.544514979526721,-0.604583549242574,-0.193779824463889,-2.16420344350645,-1.22062256190913,-0.2101896409147},{0,0.468395711969138,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,-0.970010063532043,-0.0686119885050502,-0.722797817338366,1.4404472143815,1.31654026747368,0.670201693636395,-3.46378662235495,0.490238308906934},{0,-0.466512961218152,-0.384945784500547,-1.48367062577922,-0.194870940739048,-0.978393285623217,0.441555557355247,-0.512352566336624,1.24436438894592,-0.819849945413529,-1.23320163678594,-0.102817889220744,0.447127249239435,-1.17711507762066},{0,0.837042678857392,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,-0.526142030143208,-0.475063442149097,-0.755217351035351,1.4404472143815,1.31654026747368,0.670201693636395,-3.2534524320113,0.285132913242033},{0,-0.453588743226333,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.225878360497819,0.378857501745276,-0.386352914525497,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.451033455631531,-0.466920204195936},{0,0.589254701863245,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.149451226558918,0.900905240370658,-0.656630483768647,1.4404472143815,1.31654026747368,0.670201693636395,0.391038131814464,0.389778523275146},{0,-0.453601546876618,-0.384945784500547,2.22664775485615,-0.194870940739048,0.313378216164799,-1.15114738598116,0.755477656039302,-0.842144992981592,-0.712216747328051,1.57496005506756,0.618667054779254,0.456842685650546,0.615813040946669},{0,-0.43341445826065,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.487247854909981,0.986670226001971,-0.695740543387923,-0.712216747328051,0.00147068171815396,1.18554808220782,0.456341889959252,-0.146007000094391},{0,-0.326420754654307,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.152444310856283,1.02768826260825,-0.873433040677013,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.0441870360239717,-1.0068915519668},{0,-0.307622862094259,-0.384945784500547,1.04213296667209,5.13160143945555,0.279159103534653,3.61553836963939,0.800224605064335,-0.674340699445301,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.390337017846652,-1.4408220149041}}
2 | {{7.2},{19},{21.7},{7.2},{13.2},{8.5},{16.1},{20},{23},{14.2},{13.9},{8.3},{13.3},{20.6},{20.1},{13.8},{30.5},{17.8},{18.4},{29.6},{19.3},{16.2},{11.9},{14.1},{21.7},{16.5},{19.5},{14.6},{26.4},{14},{28.6},{10.2},{17.1},{15},{19.9},{17.4},{28.2},{20.2},{19.1},{19.7},{11.5},{22.9},{19.3},{12.7},{17.4},{20.3},{15},{16.4},{21.7},{19.9}} | {{0,1.32407219628047,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.43998798123787,0.956838926651949,-1.03636702490223,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,2.39478841150958},{0,-0.0669185046202712,-0.384945784500547,0.827294500187726,-0.194870940739048,0.70689801141148,-0.338477236614839,0.457164662539084,-0.325301865484589,1.4404472143815,1.31654026747368,0.670201693636395,-3.27989444451165,0.488843034106492},{0,-0.460949775169333,-0.384945784500547,0.2205209934954,-0.194870940739048,-1.15804362693148,-0.245460773735561,-1.12389420301207,0.969118120304595,-0.712216747328051,-0.848443286368387,-1.49425313836359,0.474971489675403,-0.452967456191521},{0,1.04926318233075,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,0.299583061381612,1.02768826260825,-0.963558360453761,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.931145145846448},{0,-0.321603381234588,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.341740972154463,0.35648402723276,0.224944696580325,-0.712216747328051,-0.745075371330834,1.08247880449354,-1.17064315191795,1.96225322337272},{0,3.96134674256123,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-1.02549356770565,0.483267049470353,-0.947176410952856,1.4404472143815,1.31654026747368,0.670201693636395,-0.200501738742466,1.91620915495815},{0,-0.188499833784622,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-1.93607578326069,-1.29169526185594,-0.498517613810969,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.00973229246291796,-0.140425900892625},{0,0.255967149178647,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,-0.127966294309104,0.445977925282826,-0.401062232545828,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.147000707998324},{0,-0.437318504626709,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,0.248995160517444,-1.62356846712494,0.926416822506441,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-1.04595924637916},{0,0.279592017896129,-0.384945784500547,0.827294500187726,-0.194870940739048,1.24584903533628,-0.250356377044997,0.852429378926872,-0.815727254597251,1.4404472143815,1.31654026747368,0.670201693636395,-0.295452601811881,0.286528188042475},{0,1.1614871770785,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,0.798934598944053,0.777851130551818,-1.07631340026179,1.4404472143815,1.31654026747368,0.670201693636395,0.135632329254327,1.33856538757537},{0,2.17657124137941,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-1.32249350181141,0.878531765858142,-0.900244339409725,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.854405031822166},{0,0.212429403355467,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,0.00421499504565896,0.93073653972068,-0.652694880284946,1.4404472143815,1.31654026747368,0.670201693636395,-0.467926637893668,1.45855902041334},{0,-0.458325026860915,3.71115210085635,-1.52286412980001,-0.194870940739048,-1.36335830271236,-0.36458712093183,-1.97408623448769,3.46970218376097,-0.712216747328051,-0.590023498774506,1.59782519306496,0.266039527267385,-1.12688518480477},{0,-0.457820349645515,-0.384945784500547,2.22664775485615,-0.194870940739048,0.313378216164799,-0.287889335750671,0.412417713514051,-0.699971317132902,-0.712216747328051,1.57496005506756,0.618667054779254,0.474971489675403,-0.0413613900612783},{0,0.389831446849711,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,-1.19520781576609,0.856158291345625,-0.542596372828417,1.4404472143815,1.31654026747368,0.670201693636395,0.0310661889120588,0.626975239350201},{0,-0.462324033633253,1.91910927601271,-1.3007676070155,-0.194870940739048,-1.15804362693148,0.945802698227124,-1.55271913116863,1.4498028907951,-0.604583549242574,-0.222493134196543,-1.90653024922074,0.40295706926727,-1.24966936724362},{0,0.410349296431374,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,2.0130442196841,1.00158587567698,-0.531330707856324,1.4404472143815,1.31654026747368,0.670201693636395,0.264336821916984,0.431636767288391},{0,-0.387222088945054,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,0.547626962393021,0.818869167158098,0.453554063939794,-0.712216747328051,-0.745075371330834,1.08247880449354,0.385228901795449,-0.118101504085561},{0,-0.463245896453771,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,-0.0104718148826487,-0.135732412042599,-0.124487697728757,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.376915693319962,-0.0692668860701082},{0,-0.447119698919853,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,-0.0365816991996391,0.557845297845408,-0.402439693765124,-0.604583549242574,-0.302890401447972,1.03094416563639,0.450632819078496,-0.0288039168573048},{0,-0.442643756174399,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.741548575758378,0.196140793226393,0.202806926984508,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.470163851038977,-0.299487228142956},{0,1.74066029771907,-0.384945784500547,0.827294500187726,-0.194870940739048,0.741117124041626,-3.29868537105362,1.02768826260825,-1.15837073289695,1.4404472143815,1.31654026747368,0.670201693636395,0.207746908800719,1.35251813557978},{0,0.525688846081803,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.0417479537513321,0.979212401164465,-0.625342436073226,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.62557996454976},{0,-0.459691816528835,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,-0.441284906112988,-1.24694831283091,0.943635087747632,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.410869641189722,0.287923462842916},{0,-0.447159176841565,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,-0.862306790724458,1.02768826260825,1.25415420261162,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.372108054683536,2.27200422907073},{0,0.240362700393841,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.257154499366503,0.393773151420288,-0.392748270186511,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.0479361971669779},{0,-0.216973018076679,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-2.01277356844185,0.867345028601884,-1.01929634479167,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.422988896919046,2.21619323705307},{0,-0.459811317264828,1.35589581677613,-0.916090623107689,-0.194870940739048,-1.19226273956163,0.547626962393021,-2.01510427109397,0.963706665514506,-0.389317153071619,-0.618736808507159,-1.44271849950645,0.341859994929355,-0.694349996667901},{0,-0.438659686994059,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.0237974082834025,0.789037867808076,-0.944962633993275,-0.712216747328051,0.00147068171815396,1.18554808220782,0.386631129731073,1.46693066921599},{0,-0.45589980210277,-0.384945784500547,0.2205209934954,-0.194870940739048,-1.15804362693148,0.846258764268598,-1.54153239391238,1.19428383461582,-0.712216747328051,-0.848443286368387,-1.49425313836359,0.474971489675403,-1.02921594877386},{0,1.05966614818729,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-2.08783948585319,1.02768826260825,-0.955982323747637,1.4404472143815,1.31654026747368,0.670201693636395,0.234789876130616,2.3682781903012},{0,0.567843797674206,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.402390730879762,0.923278714883174,-0.722010696641626,1.4404472143815,1.31654026747368,0.670201693636395,0.365397392420191,0.819523161811128},{0,4.98634296612442,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,-0.65669145172816,1.02768826260825,-1.04281157560679,1.4404472143815,1.31654026747368,0.670201693636395,-3.47430333187213,-0.493430425404325},{0,-0.402757184624149,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.531037633452644,-0.594388639549184,0.475150688056602,-0.712216747328051,-0.745075371330834,1.08247880449354,0.462151119978267,-0.722255492676731},{0,-0.340869674000895,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.464131054890355,0.826326991995603,-0.544514979526721,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.572793255650712,0.109328288386404},{0,-0.464435568959416,1.30469459320917,-1.48367062577922,-0.194870940739048,-0.858626391417706,1.12530815290643,-0.0797987257613083,-0.172206889968629,-0.389317153071619,-1.23320163678594,-0.257421805792172,0.474971489675403,-0.853411323918232},{0,0.15140187124302,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.577000582249635,0.651068108314226,-0.359689200923424,1.4404472143815,1.31654026747368,0.670201693636395,0.444122475091669,-0.468315478996378},{0,1.19218392863672,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0652896495962397,-0.380905798629948,-0.0536963388300391,-0.307148894416019,1.4404472143815,1.31654026747368,0.670201693636395,0.192923356338405,0.62557996454976},{0,-0.43879839320548,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-1.25558692324913,0.0171529971262628,-0.361165052229812,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,1.04555767948265},{0,0.400069032223401,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.25558692324913,0.986670226001971,-0.887797993392521,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.00509471026985},{0,-0.465909055713044,0.895084804673483,-1.09463880809132,-0.194870940739048,-1.25214618666439,0.0123743338947183,-0.959822056586951,0.91893917588741,-0.712216747328051,-0.894384581940632,0.0517860273506843,0.412271869125346,-0.856201873519115},{0,-0.45140785479446,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-0.779081534464051,-1.44085175860605,0.771206460117992,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.474971489675403,-0.47947767739991},{0,0.0284526854398912,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,-0.299312410139354,0.576489859939171,-0.468410247160658,1.4404472143815,1.31654026747368,0.670201693636395,-3.39537793092413,0.748364146988612},{0,-0.455236146229666,0.255069510086467,-0.918993845627748,-0.194870940739048,-1.39757741534251,-0.922685898207498,-1.32898438604347,1.45875638872052,-0.712216747328051,-0.526854217362669,0.000251388493540901,0.474971489675403,-0.0776385348727573},{0,-0.462053023035555,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.253620112584621,0.434791188026567,-0.656925654029925,-0.927483143499006,-1.42845214296799,0.103320666207828,0.282365466803582,0.0870038915793399},{0,1.62253595413167,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,1.88249479809915,0.949381101814444,-1.09038318271602,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,-0.0288039168573048},{0,0.0437423778218583,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.883791722974271,0.654797020732978,-0.46009628480134,1.4404472143815,1.31654026747368,0.670201693636395,-0.943983022038112,0.386987973674263},{0,-0.0589460983761639,-0.384945784500547,0.827294500187726,5.13160143945555,1.69069749952818,0.38444018541183,0.692086144920505,-0.505503309994538,1.4404472143815,1.31654026747368,0.670201693636395,0.419283008803467,-0.0525235884648103},{0,-0.132150968880474,-0.384945784500547,0.827294500187726,-0.194870940739048,0.70689801141148,-0.653427716188535,-0.90388837030566,-0.229371530569382,1.4404472143815,1.31654026747368,0.670201693636395,-0.15102312444258,0.067470044373159}}
3 | {{14.9},{33.4},{13.8},{23.5},{19.8},{18.2},{24.8},{8.4},{22.2},{23.6},{22.6},{23.9},{29.4},{14.3},{11.8},{50},{39.8},{16.8},{18.9},{21.2},{5},{14.3},{15.2},{20.6},{20.3},{20.4},{22},{15.1},{10.4},{25},{13.8},{11.3},{20.6},{16.7},{23.3},{20},{24.8},{18.8},{18.5},{19.1},{20.1},{21},{24.8},{23},{13},{23.1},{14.1},{13.5},{24.5},{19.8}} | {{0,0.357442479512168,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.231044615049513,0.419875538351557,-0.368790283979482,1.4404472143815,1.31654026747368,0.670201693636395,-0.773912805274538,0.360477752465874},{0,-0.461692386885861,1.30469459320917,-1.48367062577922,-0.194870940739048,-0.858626391417706,2.05710464946903,-0.0201361270612644,-0.213284751329755,-0.389317153071619,-1.23320163678594,-0.257421805792172,0.474971489675403,-1.00131045276503},{0,0.715504028527324,-0.384945784500547,0.827294500187726,-0.194870940739048,0.818110127459455,-2.04541092383808,1.02768826260825,-1.16028933959525,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,2.94731723248442},{0,-0.465873845674761,3.71115210085635,-1.31092888583571,-0.194870940739048,-1.49167997507541,0.213094069581582,-2.03747774560649,1.51459276314552,-0.712216747328051,-0.572795512934914,-1.44271849950645,0.474971489675403,-1.2524599168445},{0,-0.464849553651963,-0.384945784500547,-1.32979983221609,-0.194870940739048,-0.961283729308144,-0.0251586248109549,-1.5005143573061,1.15158253681767,-0.712216747328051,-0.0387279519075608,-1.03044138864931,0.191220650988004,-0.635748455049358},{0,-0.465108827570234,3.71115210085635,-1.52286412980001,-0.194870940739048,-1.36335830271236,-0.810087022090477,-1.88459233643763,3.46970218376097,-0.712216747328051,-0.590023498774506,1.59782519306496,0.333747104730386,-0.780857034295274},{0,-0.46579382286048,0.895084804673483,-1.09463880809132,-0.194870940739048,-1.25214618666439,0.232676482819324,-1.5005143573061,0.91893917588741,-0.712216747328051,-0.894384581940632,0.0517860273506843,0.474971489675403,-0.966428582753994},{0,0.79064011628295,-0.384945784500547,0.827294500187726,-0.194870940739048,1.24584903533628,1.08451145866113,0.151393844201361,-0.855378459695536,1.4404472143815,1.31654026747368,0.670201693636395,-3.01507368295518,1.26880164755329},{0,-0.457932381585509,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,0.483984119370358,-0.173021536230126,1.81665033051956,-0.281683954986141,-0.87715659610104,0.412528499350682,0.474971489675403,-0.965033307953552},{0,-0.459905210700251,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,0.418709408577882,0.434791188026567,-0.436089103550765,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.46094921031916,-0.642724829051566},{0,-0.460685166396777,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,-0.490240939207346,-0.139461324461352,-0.408736659339045,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.438213085934395,-0.559008341025075},{0,-0.463214954298916,-0.384945784500547,-0.0683496472504681,-0.194870940739048,0.00540620249348394,1.33255535967254,0.692086144920505,-0.671634972050256,-1.03511634158448,-0.940325877512877,1.08247880449354,0.474971489675403,-1.11711826120168},{0,-0.462587575434952,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,0.630852218653428,-1.46695414553732,-0.197001191915944,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.41547696154963,-1.16037178001536},{0,0.125786034906225,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.451346763974119,0.576489859939171,-0.598678722471153,1.4404472143815,1.31654026747368,0.670201693636395,-2.49685030160375,0.359082477665433},{0,0.668952090032891,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.488879722679792,0.833784816833109,-0.759989270259339,1.4404472143815,1.31654026747368,0.670201693636395,-3.06905945847671,1.44181572280804},{0,-0.463720698485172,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,2.72780230286172,-0.702527099693013,-0.164089707783496,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.432203537638862,-1.28315596245422},{0,-0.46266866522009,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,2.62009903005413,0.404959888676546,-0.389501397312457,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.461550165148714,-0.849225499516908},{0,-0.0191811615036216,-0.384945784500547,0.827294500187726,5.13160143945555,1.69069749952818,-0.581625534316812,0.617507896545451,-0.800919546489827,1.4404472143815,1.31654026747368,0.670201693636395,0.0356735092719675,0.138629059195676},{0,-0.457164162568411,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,-0.245460773735561,0.390044239001535,1.32529023557951,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.474971489675403,-0.0525235884648103},{0,-0.0777279863733562,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0909539840688493,0.248995160517444,-0.765918610811809,0.225781012320612,1.4404472143815,1.31654026747368,0.670201693636395,0.392039723197053,-0.427852509783574},{0,3.62232742243239,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-1.15277925375098,1.02768826260825,-1.00512817225035,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,2.36409236589987},{0,-0.375671062446298,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.852515584105588,0.830055904414356,-0.763924873743039,-0.712216747328051,0.00147068171815396,1.18554808220782,0.474971489675403,0.654880735359031},{0,-0.338196912003908,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.0284223603505783,0.718188531851775,0.218500145875765,-0.712216747328051,-0.745075371330834,1.08247880449354,0.474971489675403,0.707901177775808},{0,-0.465116296366234,1.04868847537437,0.383101454618702,-0.194870940739048,-0.927064616677998,0.146187491019294,0.181225143551382,0.0404632832818518,-0.712216747328051,-0.95755386335247,-0.360491083506457,0.474971489675403,-0.426457234983133},{0,-0.432417907480137,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.305839881218601,0.158851669038866,-0.211661314892729,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.468360986550317,-0.512964272610506},{0,-0.455765363774778,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.469026658199791,0.0246108219637678,-0.519130337056851,-0.496950351157096,-0.0272426280144994,-0.566629638935027,-0.108655808959075,0.240484119627905},{0,-0.462336837283538,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.472290393739415,-0.102172200273824,-0.62726104277153,-0.927483143499006,-1.42845214296799,0.103320666207828,0.397348157524773,0.100956639583755},{0,0.273143246035933,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-0.728493633599883,0.915820890045669,-0.790195026996742,1.4404472143815,1.31654026747368,0.670201693636395,0.450232182525461,0.483261934904726},{0,2.29808855229234,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,-1.39592755145295,0.621236808964204,-0.927449198490806,1.4404472143815,1.31654026747368,0.670201693636395,-2.22471792295438,1.81295881972548},{0,-0.157715590616128,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.0953289389128667,0.76666439329556,-0.614617916580141,-0.604583549242574,-0.193779824463889,-2.16420344350645,-1.09492284339424,-0.53528866941757},{0,0.452672829419196,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,0.0548028959098273,0.751748743620549,-0.856755920914831,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.212578623619075},{0,0.510530391115256,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.01733422885659,1.02768826260825,-0.960459072710346,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.38879528039126},{0,-0.215911382073883,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0909539840688493,-0.470658525969602,-1.13880985268708,0.0940858807472748,1.4404472143815,1.31654026747368,0.670201693636395,0.212855024851921,-0.0427566648617198},{0,0.0500673810626329,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,0.52967641692509,0.789037867808076,-0.603844202043511,1.4404472143815,1.31654026747368,0.670201693636395,0.46806050913554,0.702320078574042},{0,-0.317652388150818,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,0.572104978940199,1.02768826260825,-0.869202266932035,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.148552858089722,-0.872945171124413},{0,-0.459301305195143,-0.384945784500547,-0.934961569488072,-0.194870940739048,-0.627647381164219,-0.51961455906396,-0.411671931030301,-0.0761781649663299,-0.604583549242574,-0.905869905833693,0.154855305064969,0.281263716282734,-0.31204470134693},{0,-0.464985058950813,3.19913986518674,-1.47496095821904,-0.194870940739048,-1.47457041876034,1.16120924384229,-0.933719669655682,2.11295207779868,-0.604583549242574,-0.45219961205777,-2.11266880464931,0.414475370167041,-1.05712144478269},{0,-0.45654318552959,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.402120079637503,0.762935480876807,-0.58018138609776,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.455440457714922,0.357687202864991},{0,-0.454513806959422,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,0.154346829868353,0.43852010044532,-0.627851383294085,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.393241632856159,-0.445991082189314},{0,0.137595268352395,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0909539840688493,-0.0741146579053122,0.2744479540202,0.00646950819138634,1.4404472143815,1.31654026747368,0.670201693636395,0.432704333330157,0.186068402410687},{0,0.925377196115106,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0652896495962397,-0.728493633599883,-0.586930814711678,-0.348817096299701,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.155372356800973},{0,-0.362739375658479,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,0.839731293189351,0.554116385426655,0.347440355010512,-0.712216747328051,-0.745075371330834,1.08247880449354,0.308006206197855,-0.232514037721764},{0,-0.465113095453662,2.30311845276492,-1.02786469012996,-0.194870940739048,-1.43179652797265,0.661857706279854,-1.8473032122501,1.86176218545148,-0.496950351157096,-0.825472638582264,-1.18504530522074,0.22277077953955,-0.577146913430815},{0,0.151707024908145,-0.384945784500547,0.827294500187726,-0.194870940739048,-0.345339701965513,0.134764416630611,-0.288617821211461,-0.0534008598044117,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,-0.40552811297651},{0,0.333305464783287,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.420341276347693,0.964296751489454,-0.663025839429661,1.4404472143815,1.31654026747368,0.670201693636395,-0.453403562846131,0.790222391001857},{0,-0.357246609686227,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.366218988701642,-1.60865281744992,0.475150688056602,-0.712216747328051,-0.745075371330834,1.08247880449354,0.374311555725232,-0.985962429960175},{0,0.60392021629382,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,1.09919826858944,0.815140254739345,-0.71064664158244,1.4404472143815,1.31654026747368,0.670201693636395,-2.68575043635999,0.843242833418634},{0,-0.297614675454841,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.103488277761926,0.912091977626916,0.111697706336836,-0.712216747328051,-0.745075371330834,1.08247880449354,-1.01329314571325,0.933935695447331},{0,-0.46809634597006,3.71115210085635,-1.50834801719972,-0.194870940739048,-1.17515318324656,0.776088450166686,-1.59373716777491,2.36689689258447,-0.712216747328051,-0.900127243887163,-0.978906749792168,0.415276643273112,-1.06828364318622},{0,-0.443533609869204,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.615894757482862,-0.02759395189877,0.245459029739115,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.474971489675403,0.320014783253071}}
4 | {{18.6},{9.7},{21.4},{10.4},{16},{25},{20.8},{22.6},{20},{13.5},{21.2},{24.7},{19.4},{21.6},{24.5},{23.4},{27.5},{5.6},{8.8},{5},{22.6},{22.3},{13.1},{21.8},{22.2},{16.7},{19.7},{26.6},{12.1},{16.5},{34.9},{23.1},{18.7},{31.6},{21.4},{27.9},{8.4},{21.2},{37.3},{25},{23.2},{16.1},{19.6},{22.5},{23.2},{22.2},{18.2},{20.5},{22},{15.4}} | {{0,-0.461968732337845,2.68712762951712,-1.55479957752066,-0.194870940739048,-1.38046785902743,-0.449444244962048,-2.01137535867522,3.53099920801961,-0.712216747328051,-0.147838528891644,-0.308956444649314,0.429198763491096,-0.817134179106753},{0,0.765630319392977,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.83326811376254,0.915820890045669,-0.867185270146638,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.67901243888309},{0,1.05966614818729,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,0.113550135623056,0.580218772357924,-0.778043851240816,1.4404472143815,1.31654026747368,0.670201693636395,0.338955379919848,-0.0748479852718744},{0,9.02380336815224,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,1.31950041751405,0.72564635668928,-1.04108974908267,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.497214682909142},{0,-0.451376912639605,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,-0.315631087837472,0.781580042970571,1.61642650328628,-0.281683954986141,-0.87715659610104,0.412528499350682,0.286471991472196,0.110723563186845},{0,-0.463978905432585,0.690279910405638,-0.981413129809016,-0.194870940739048,-1.14093407061641,0.573736846710011,-1.91442363578765,1.61455709163152,-0.712216747328051,-1.1126057359088,-1.08197602750645,0.474971489675403,-1.16734815401757},{0,0.815809958801485,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,-0.834565038637657,0.565303122682913,-0.778043851240816,1.4404472143815,1.31654026747368,0.670201693636395,-0.580205031881869,0.0632842199718343},{0,-0.0150285109278633,-0.384945784500547,0.827294500187726,-0.194870940739048,1.69069749952818,-0.0773783934449356,0.330381640301491,-0.503584703296233,1.4404472143815,1.31654026747368,0.670201693636395,0.413273460507935,-0.1362400764913},{0,-0.458864914114597,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,0.195143524113651,0.0768155958263062,0.255544013666099,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.242201652361773,-0.233909312522205},{0,0.405280117889383,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,-0.36458712093183,0.293092516113964,-0.370708890677786,1.4404472143815,1.31654026747368,0.670201693636395,-3.46528900942883,0.459542263297221},{0,-0.456607203781014,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-0.147548707546847,-1.20965918864338,1.07646170532253,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.399751976842986,-0.571565814229049},{0,-0.452694621648099,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,0.0841765157664425,-2.45884484892555,1.07646170532253,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.450532659940237,-0.865968797122206},{0,-0.441569316521319,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.113550135623056,0.699543969758011,-0.48587448761958,-0.604583549242574,-0.302890401447972,1.03094416563639,0.41818125828262,0.265599066035852},{0,-0.466783971815851,-0.384945784500547,-0.773832719624799,-0.194870940739048,-0.884290725890315,0.426868747426941,0.240887742251426,0.705629467070828,-0.927483143499006,-1.11834839785533,-0.566629638935027,0.474971489675403,-0.62877208104715},{0,-0.439868564975132,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.380905798629948,-1.11270746575581,-0.566259188774168,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,-0.00787479485068223},{0,-0.448850325650038,-0.384945784500547,-0.230930108373771,-0.194870940739048,-1.36335830271236,0.139660019940047,-2.4700315861818,0.863151996505951,-0.712216747328051,-0.756560695223896,0.154855305064969,0.277357509890638,-0.852016049117791},{0,-0.453836280465176,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.926220284989382,0.278176866438953,-0.371397621287434,-0.604583549242574,-0.302890401447972,1.03094416563639,0.453537434088003,-0.589704386634788},{0,2.20264800912647,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-0.281361864671423,1.02768826260825,-0.956326689052461,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.83109739213122},{0,1.67330242751157,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-2.92335578399688,0.699543969758011,-1.02977488906703,1.4404472143815,1.31654026747368,0.670201693636395,-0.637496058965947,2.36967346510164},{0,6.77725354973445,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-0.77744966669424,1.02768826260825,-1.03671139020705,1.4404472143815,1.31654026747368,0.670201693636395,0.355481637732563,1.30228824276389},{0,-0.462523557183527,-0.384945784500547,-1.32979983221609,-0.194870940739048,-0.961283729308144,0.283264383683494,-2.059851220119,0.827387199847821,-0.712216747328051,-0.0387279519075608,-1.03044138864931,0.257726318791898,-0.879921545126621},{0,-0.464800472992538,2.30311845276492,-1.02786469012996,-0.194870940739048,-1.43179652797265,0.25389076382688,-1.00084009319323,1.86176218545148,-0.496950351157096,-0.825472638582264,-1.18504530522074,0.474971489675403,-0.843644400315142},{0,-0.208644243566307,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-1.44814732008693,0.803953517483087,-0.883714804778182,-0.604583549242574,-0.193779824463889,-2.16420344350645,-2.61263426543101,0.347920279261901},{0,-0.168984936808615,-0.384945784500547,0.827294500187726,-0.194870940739048,-0.345339701965513,-0.648532112879101,-1.19847245138713,0.278222928740924,1.4404472143815,1.31654026747368,0.670201693636395,0.43510815264837,-0.450176906590638},{0,-0.443980670658321,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,-0.12470255876948,-1.07168942914953,0.926416822506441,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-0.119496778886002},{0,0.713295398853167,-0.384945784500547,0.827294500187726,-0.194870940739048,1.24584903533628,0.410550069728821,1.02768826260825,-0.823450876434013,1.4404472143815,1.31654026747368,0.670201693636395,-0.307772175817723,0.191649501612452},{0,-0.460230636811661,0.690279910405638,-0.981413129809016,-0.194870940739048,-1.14093407061641,-0.320526691146908,-0.997111180774478,1.61455709163152,-0.712216747328051,-1.1126057359088,-1.08197602750645,0.461550165148714,-0.0274086420568633},{0,-0.46357879136118,-0.384945784500547,-1.14834842471241,-0.194870940739048,-1.05538628904105,0.767929111317627,-0.609304289224195,0.44519090653693,-0.819849945413529,-1.08963508812268,-0.205887166935029,0.42889828607632,-0.992938803962382},{0,0.554136423073289,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,0.399126995340138,1.02768826260825,-0.931630777192238,1.4404472143815,1.31654026747368,0.670201693636395,0.266740641235197,0.929749871046007},{0,-0.46703257602555,-0.384945784500547,-1.52576735232007,-0.194870940739048,-0.465106596171025,0.621061012034556,-0.475063442149097,1.34506664308511,-1.03511634158448,-0.0846692474798062,-1.54578777722074,0.405461047723742,-0.697140546268784},{0,-0.466113914117604,3.45514598302154,-1.37189655875695,-0.194870940739048,-1.23503663034931,1.41088501262351,-2.11205599398154,0.919135956061595,-0.819849945413529,-1.06092177839002,-0.308956444649314,0.462151119978267,-1.62778883816327},{0,-0.426803506830178,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,0.363225904404276,-0.195395010742642,-0.000122627643812377,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.458044595309653,-0.458548555393287},{0,-0.445998312549061,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.110015748841174,0.856158291345625,-0.484447831356738,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.474971489675403,0.480471385303843},{0,-0.468169966959199,4.73517657219557,-1.60850919414175,-0.194870940739048,-1.38046785902743,1.07145651650264,-1.19101462654962,2.35745144422359,-0.604583549242574,-1.0379511306039,-1.95806488807788,0.434907834371852,-1.35291970247629},{0,0.366734728706484,-0.384945784500547,0.827294500187726,-0.194870940739048,0.70689801141148,0.0809127802268177,-0.262515434280191,-0.280091620465576,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,-0.0594999624670177},{0,0.805449671779231,-0.384945784500547,0.827294500187726,-0.194870940739048,0.741117124041626,-0.899839749430133,1.02768826260825,-1.10568284125891,1.4404472143815,1.31654026747368,0.670201693636395,-0.174159885380381,-0.211584915715141},{0,0.989715538797076,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,-0.366218988701642,0.576489859939171,-0.842292578112231,1.4404472143815,1.31654026747368,0.670201693636395,-2.80974744952448,2.84267162245131},{0,-0.444184462092023,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.229142096037442,-0.266244346698944,-0.552779746842493,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,-0.101358206480263},{0,-0.4612837370476,3.71115210085635,-1.08157430675105,-0.194870940739048,-1.38046785902743,1.61323661608019,-1.66831541614997,0.779225252216032,-0.712216747328051,-1.10112041201574,0.154855305064969,0.474971489675403,-1.40733541969351},{0,0.14180020050015,-0.384945784500547,0.827294500187726,-0.194870940739048,-0.345339701965513,1.47126412010655,0.170038406295124,-0.0600913857267029,1.4404472143815,1.31654026747368,0.670201693636395,0.458745709277465,-0.92596561354119},{0,-0.0889301134018469,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0652896495962397,0.452978631743931,0.0954601579200698,-0.313003104598024,1.4404472143815,1.31654026747368,0.670201693636395,0.43961531387002,0.0995613647833133},{0,0.217863485930579,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,0.433396218506188,0.0880023330825642,-0.655449802723537,1.4404472143815,1.31654026747368,0.670201693636395,-2.51928594857373,-0.225537663719557},{0,-0.310044885939832,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-1.23274077447176,1.02768826260825,-0.954949227833165,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.0789085448961881,-0.0511283136643689},{0,-0.462798835664654,3.19913986518674,-1.47496095821904,-0.194870940739048,-1.47457041876034,0.302846796921236,-1.95171275997518,2.11295207779868,-0.604583549242574,-0.45219961205777,-2.11266880464931,0.187915399425461,-1.21060167283126},{0,0.0950551402805855,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-0.176922327403461,0.375128589326524,-0.671487386919617,1.4404472143815,1.31654026747368,0.670201693636395,0.289476765619962,0.713482276977574},{0,-0.464274456359997,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,0.255522631596691,-1.28050852459969,1.4392751514762,-0.604583549242574,-1.22171631289288,0.670201693636395,0.40295706926727,-1.11153716199991},{0,-0.392257124419618,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.705647484822516,-0.10963002511133,0.129752287318313,-0.712216747328051,-0.745075371330834,1.08247880449354,0.415376802411371,-0.330183273752669},{0,-0.465070416619379,0.690279910405638,-0.981413129809016,-0.194870940739048,-1.14093407061641,-0.0724827901354997,-0.352009332330257,1.61455709163152,-0.712216747328051,-1.1126057359088,-1.08197602750645,0.445624862165552,-0.588309111834347},{0,-0.45800493560379,-0.384945784500547,-0.0683496472504681,-0.194870940739048,0.00540620249348394,1.03555542556678,0.628694633801709,-0.562717145638837,-1.03511634158448,-0.940325877512877,1.08247880449354,0.44041658697609,-0.99991517796459},{0,-0.177991237813234,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-0.917790294898062,0.837513729251862,-0.987368761530151,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.0237545718191611,1.08881119829634}}
5 | {{20.6},{18.9},{12},{19.1},{14.5},{17.8},{19.5},{22.9},{13.4},{17.7},{23.6},{22.8},{24.6},{19.6},{23.8},{22.3},{36.1},{21.5},{33.4},{15.6},{14.5},{14.4},{50},{14.9},{26.6},{17},{29.8},{50},{17.5},{14.9},{10.8},{24},{19.4},{50},{43.8},{20.8},{18.4},{32.7},{11.7},{19.5},{36.2},{16.6},{22},{27.5},{11.8},{18.5},{13.1},{8.7},{27.1},{23.1}} | {{0,0.0462540272194264,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0909539840688493,-0.415175021795998,-0.717442749368024,-0.187162183206692,1.4404472143815,1.31654026747368,0.670201693636395,0.388033357666698,-0.306463602145164},{0,-0.462851117236651,-0.384945784500547,-0.934961569488072,-0.194870940739048,-0.627647381164219,-0.369482724241266,-0.158105886555115,-0.0848364926304715,-0.604583549242574,-0.905869905833693,0.154855305064969,0.474971489675403,-0.553427241823309},{0,1.13325512820015,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,-1.39592755145295,0.927007627301927,-0.704497261139158,1.4404472143815,1.31654026747368,0.670201693636395,1.68560518071625e-05,1.5715762792491},{0,0.00214651895856542,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,-0.255251980354432,0.822598079576851,-0.488235849709801,1.4404472143815,1.31654026747368,0.670201693636395,-0.182172616441091,1.0706726258906},{0,-0.364235268800106,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.565306856618694,1.02768826260825,0.276697882390991,-0.712216747328051,-0.745075371330834,1.08247880449354,0.451333933046308,0.869753054627022},{0,-0.220988029411874,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-1.58848794829075,0.796495692645582,-0.985450154831846,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.0752363688842239,2.04736498619965},{0,-0.466041360099322,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.473922261509227,-0.974737706261962,0.835504382032953,-0.604583549242574,-1.22171631289288,0.670201693636395,0.474971489675403,-0.536683944218011},{0,-0.46307091323321,1.6631031581779,-1.61867047296196,-0.194870940739048,-1.22648185219178,0.539467623543962,-1.04558704221826,2.58733988271526,-1.03511634158448,-0.584280836827975,0.412528499350682,0.474971489675403,-1.06967891798667},{0,0.282561397791384,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,-0.0920652033732432,0.472080312214095,-0.743312150497157,1.4404472143815,1.31654026747368,0.670201693636395,-3.4751046049782,1.34554176157757},{0,-0.0756537950271912,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.353434697785406,0.595134422032935,-0.475051578039403,1.4404472143815,1.31654026747368,0.670201693636395,0.420184441047797,0.140024333996117},{0,-0.463658814175461,-0.384945784500547,-1.30512244079559,-0.194870940739048,-0.713195162739584,1.38314326053671,0.516827261239127,-0.0546307358930682,-0.927483143499006,-0.95755386335247,-0.566629638935027,0.474971489675403,-1.13665210840786},{0,-0.458938535103736,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,0.906637871751638,0.341568377557749,-0.420740249964332,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.46185064256349,-0.486454051402117},{0,-0.449226966362587,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,0.44318742512506,-2.15307403058782,0.926416822506441,-0.604583549242574,-0.859928610261448,0.360993860493541,0.442720247156045,-1.1952536500264},{0,-0.458678194214608,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,-0.379273930860137,-0.941177494493187,1.67226287771128,-0.281683954986141,-0.87715659610104,0.412528499350682,0.474971489675403,-0.617609882643618},{0,-0.224251893263684,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,0.260418234906127,0.882260678276894,-0.704841626443982,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.524716869286451,-0.355298220160616},{0,-0.208340156872038,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,0.395863259800515,0.84870046650812,-0.62489968068131,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.19469250872345,-0.324602174550903},{0,-0.463813524949738,1.30469459320917,-1.48367062577922,-0.194870940739048,-0.858626391417706,1.75684097982364,-1.1686411520371,0.240687110515128,-0.389317153071619,-1.23320163678594,-0.257421805792172,0.442720247156045,-0.937127811944722},{0,-0.292943477042542,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-0.061059715746817,0.927007627301927,-0.941961736336953,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.233587966471509,0.0632842199718343},{0,-0.466244084562168,-0.384945784500547,-1.48367062577922,-0.194870940739048,-0.978393285623217,1.36845645060841,-0.993382268355725,1.24436438894592,-0.819849945413529,-1.23320163678594,-0.102817889220744,0.452235365290638,-1.49384245732088},{0,-0.239760314671352,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-0.867202394033894,1.02768826260825,-0.99184551049286,-0.604583549242574,-0.193779824463889,-2.16420344350645,-1.80495097451142,0.419079294084417},{0,0.436387653227572,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,0.307742400230672,0.509369436401622,-0.728110882041362,1.4404472143815,1.31654026747368,0.670201693636395,-2.66451669904911,0.557211499328126},{0,-0.29592672755894,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-1.86100986584934,1.02768826260825,-1.02982408411057,-0.712216747328051,0.00147068171815396,1.18554808220782,0.474971489675403,2.89708733966852},{0,-0.255216454507024,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,2.88772534430328,0.885989590695647,-0.731456145002508,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.198532268080902,-1.38780157248733},{0,0.54537872627837,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.927852152759193,0.80768242990184,-0.509980058957247,1.4404472143815,1.31654026747368,0.670201693636395,-3.43343840346251,0.706505902975367},{0,-0.466604720711861,1.6631031581779,-1.61867047296196,-0.194870940739048,-1.22648185219178,1.2721762521895,-1.41474937167478,2.58733988271526,-1.03511634158448,-0.584280836827975,0.412528499350682,0.404359297202895,-1.08223639119064},{0,-0.318844194598177,-0.384945784500547,1.04213296667209,5.13160143945555,2.55473009343937,-0.0496366413581342,0.878531765858142,-0.877319449117168,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.285036051432958,0.205602249616867},{0,-0.456276442815319,1.91910927601271,-1.3007676070155,-0.194870940739048,-1.15804362693148,0.647170896351547,-1.61611064228743,0.508652512711604,-0.604583549242574,-0.222493134196543,-1.90653024922074,0.334147741283421,-1.26780793964936},{0,-0.31356162188477,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,2.16970352558605,0.684628320083,-0.768352427662203,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.249913906007706,-1.6626707081743},{0,-0.466376388948446,-0.384945784500547,-1.1628645373127,-0.194870940739048,-1.1152697361438,-0.237301434886501,-0.892701633049402,2.20435646870763,-0.819849945413529,-0.486655583736954,-0.0512832503636006,0.362192299995907,-0.434828883785782},{0,0.201220874501834,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.296319325841989,0.893447415533153,-0.718616238636934,1.4404472143815,1.31654026747368,0.670201693636395,-0.31518395204888,0.578140621334748},{0,0.896270231133944,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,-0.498400278056405,0.900905240370658,-0.805396295452536,1.4404472143815,1.31654026747368,0.670201693636395,-1.09131711441692,1.41530550159965},{0,-0.469023543644863,0.536676239704754,-1.46479967939883,-0.194870940739048,-0.294011033020294,0.678176383977973,-0.269973259117697,0.274139740126585,-1.03511634158448,-0.808244652742672,-1.85499561036359,0.474971489675403,-1.20920639803082},{0,-0.446249050700475,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-0.909630956049003,-0.389298456517784,1.25690912505021,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.474971489675403,0.35629192806455},{0,0.13527247279653,-0.384945784500547,0.827294500187726,5.13160143945555,0.501583335630603,0.854418103117657,0.908363065208163,-1.07050838512333,1.4404472143815,1.31654026747368,0.670201693636395,0.258928228451005,-1.383615748086},{0,-0.460962578819618,-0.384945784500547,-1.38060622631712,-0.194870940739048,-1.08960540167119,2.70985175739379,-1.32525547362472,-0.0184723788865673,-0.927483143499006,-0.923097891673285,-0.463560361220742,0.441217860082161,-1.40594014489307},{0,-0.460407753973936,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,-0.0316860958902032,-0.993382268355725,0.274385715344316,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.375413306246079,-0.471106028597261},{0,-0.434507036418301,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.550620046690386,0.856158291345625,-0.522869160366367,-0.712216747328051,0.00147068171815396,1.18554808220782,0.392740837164865,0.193044776412894},{0,-0.468309740141476,1.40709704034309,-1.57947696894116,-0.194870940739048,-1.1152697361438,1.7650003186727,-0.86287033369938,1.72436042882677,-1.03511634158448,-0.87715659610104,-1.75192633264931,0.453337115811486,-1.1380473832083},{0,1.01482136306419,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.0792809124570067,0.841242641670614,-0.644725283230452,1.4404472143815,1.31654026747368,0.670201693636395,-2.49244329952035,0.212578623619075},{0,-0.451431328153316,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,-0.527773897913019,0.72564635668928,-0.650235128107633,-0.604583549242574,-0.302890401447972,1.03094416563639,0.462651915669561,0.699529528973159},{0,-0.462348573962966,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,-0.0251586248109549,-0.381840631680279,-0.459899504627155,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.474971489675403,-0.585518562233464},{0,-0.445235428386248,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-0.211191550569511,0.486995961889106,1.06096526660546,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.43330528815971,0.71906337617934},{0,-0.465923993305044,1.35589581677613,-0.916090623107689,-0.194870940739048,-1.19226273956163,0.702654400525151,-1.19474353896837,0.963706665514506,-0.389317153071619,-0.618736808507159,-1.44271849950645,0.463453188775632,-0.578542188231256},{0,1.07082666335235,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,1.13020375621587,1.02768826260825,-1.016984177745,1.4404472143815,1.31654026747368,0.670201693636395,-1.70389040400821,0.855800306622608},{0,-0.173107712200375,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-2.05030652714752,0.945652189395691,-1.07582144982633,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.474971489675403,2.18270664184248},{0,-0.466453210850156,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.431493699494118,-0.478792354567849,1.02436415420704,-0.604583549242574,-1.22171631289288,0.670201693636395,0.454038229779298,-0.430643059384457},{0,0.46035395261932,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,0.508462135917535,0.982941313583218,-0.888978674437631,1.4404472143815,1.31654026747368,0.670201693636395,0.425693193652036,0.484657209705168},{0,1.14966513998205,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,-0.0121036826524597,1.02768826260825,-0.796246017352932,1.4404472143815,1.31654026747368,0.670201693636395,-3.40699639096216,1.78644859851709},{0,-0.454274805487436,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,0.0205336727437776,0.882260678276894,1.18941352530475,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.474971489675403,0.767897994194793},{0,-0.450322745432809,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,0.353434697785406,-0.676424712761744,0.495714216258938,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-0.945499460747371}}
6 | {{18.7},{22.4},{34.7},{15.6},{15.6},{17.8},{13.1},{14.5},{8.3},{31.2},{33},{22.7},{10.5},{21},{17.1},{13.3},{12.8},{19.9},{23.4},{13.8},{12.5},{21.1},{25},{30.1},{32},{24.6},{20.4},{25.3},{24.7},{28.4},{19.9},{18.1},{50},{22.9},{23.8},{18.4},{23.9},{19.6},{12.7},{20.7},{22},{28.4},{17.8},{18.9},{22.8},{20.8},{19.6},{23.1},{26.5},{15.6}} | {{0,-0.463134931484635,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.312367352297849,-0.51981039117413,0.629426344617672,-0.604583549242574,-1.22171631289288,0.670201693636395,0.474971489675403,-0.607842959040528},{0,-0.463015430748641,-0.384945784500547,-0.0683496472504681,-0.194870940739048,0.00540620249348394,0.707550003834587,-0.124545674786341,-0.518589191577843,-1.03511634158448,-0.940325877512877,1.08247880449354,0.425793352790295,-0.554822516623751},{0,-0.466786105757565,-0.384945784500547,-0.773832719624799,-0.194870940739048,-0.884290725890315,1.67361572356323,-0.422858668286559,0.705629467070828,-0.927483143499006,-1.11834839785533,-0.566629638935027,0.43420672040404,-1.34175750407276},{0,-0.0325172302462738,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-1.1283012372038,1.02768826260825,-1.04340191612934,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.474971489675403,1.78226277411576},{0,-0.0925226042776378,-0.384945784500547,1.04213296667209,5.13160143945555,2.55473009343937,-0.0121036826524597,0.378857501745276,-0.879238055815472,-0.604583549242574,-0.193779824463889,-2.16420344350645,-2.61884413200306,0.191649501612452},{0,0.488757783805667,-0.384945784500547,0.827294500187726,5.13160143945555,1.69069749952818,0.0858083835362535,0.93073653972068,-0.693920326776712,1.4404472143815,1.31654026747368,0.670201693636395,0.282966421633136,0.55163040012636},{0,-0.346812701674835,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.748076046837626,0.841242641670614,0.125177148268511,-0.712216747328051,-0.745075371330834,1.08247880449354,0.0930646954943038,0.656276010159473},{0,-0.325153193276096,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.142653104237412,1.02768826260825,0.315955527140906,-0.712216747328051,-0.745075371330834,1.08247880449354,0.272950507807248,-0.0846149088749649},{0,1.22254991922924,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,-0.429861831724306,0.856158291345625,-0.79850898935606,1.4404472143815,1.31654026747368,0.670201693636395,-3.42342248963662,1.49902198962614},{0,-0.466444675083299,2.43112151168232,-1.2514128241745,-0.194870940739048,-0.755969053527267,1.16610484715173,-1.65339976647496,1.44271880452444,-0.604583549242574,-0.383287668699402,-0.669698916649312,0.385529379210226,-1.26083156564715},{0,-0.467616209084374,0.511075627921273,-1.59979952658158,-0.194870940739048,-1.336838490424,1.54143443420847,-0.482521266986602,2.79927213031254,-0.819849945413529,-1.26765760846513,-0.154352528077886,0.438313245072654,-0.780857034295274},{0,-0.23044459211818,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.498400278056405,0.721917444270527,-0.546433586225025,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.457043003927064,-0.279953380936775},{0,2.13304950011909,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-2.45990533737031,1.02768826260825,-1.01614786200471,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,2.04178388699788},{0,-0.461147164777893,-0.384945784500547,-0.934961569488072,-0.194870940739048,-0.627647381164219,-0.504927749135653,-1.15372550236209,0.197493862281513,-0.604583549242574,-0.905869905833693,0.154855305064969,0.474971489675403,-0.680397248663486},{0,-0.432105285019012,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.480720383830733,0.968025663908207,-0.827927625396723,-0.712216747328051,0.00147068171815396,1.18554808220782,0.4467266126864,0.131652685193468},{0,-0.443044937216661,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.493504674746969,0.960567839070702,-0.917069044302546,-0.712216747328051,0.00147068171815396,1.18554808220782,0.426294148481589,1.0706726258906},{0,0.532254984736277,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,-0.868834261803706,0.800224605064335,-0.843965209592804,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.28833549475947},{0,-0.00569464987012094,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0652896495962397,0.0123743338947183,0.431062275607815,-0.245655089983194,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.368849401268523},{0,-0.464383287387419,0.690279910405638,-0.981413129809016,-0.194870940739048,-1.14093407061641,-0.263411319203492,-1.90323689853139,1.61455709163152,-0.712216747328051,-1.1126057359088,-1.08197602750645,0.474971489675403,-0.727836591878497},{0,1.50400616161857,-0.384945784500547,0.827294500187726,-0.194870940739048,0.818110127459455,-3.29868537105362,1.02768826260825,-1.17858989579446,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,3.3938051686257},{0,0.156832752905561,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,0.400758863109951,0.878531765858142,-0.913035050731752,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.798594039804506},{0,-0.465471597661641,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.199768476180828,-1.41474937167478,1.20653340045884,-0.604583549242574,-1.22171631289288,0.670201693636395,0.474971489675403,-0.78643813349704},{0,-0.433304560262371,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,0.417077540808069,-1.20593027622463,0.584609659947029,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-1.05014507078048},{0,-0.467874416031787,4.22316433652596,-1.50689640593969,-0.194870940739048,-1.38902263718497,0.927852152759193,-1.35508677297474,4.22769941472174,-0.604583549242574,-1.43419480491452,-0.978906749792168,0.35037352168136,-1.27617958845201},{0,-0.461295473727027,1.91910927601271,-1.3007676070155,-0.194870940739048,-1.15804362693148,1.01597301232904,-1.1686411520371,0.125865878878159,-0.604583549242574,-0.222493134196543,-1.90653024922074,0.444623270782963,-0.97200968195576},{0,-0.463909552326875,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,0.25389076382688,0.0357975592200264,-0.105891971268271,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.461950801701749,-1.02642539917298},{0,-0.432232254551005,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,-0.19324100510158,-0.840496859186864,0.584609659947029,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-0.829691652310727},{0,-0.454600231598846,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,0.0156380694343417,-2.45511593650679,1.07646170532253,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.339456175611142,-1.09339858959417},{0,-0.467505244115237,3.96715821869115,-1.69270264722346,-0.194870940739048,-1.38902263718497,0.364857772174088,-1.37000242264975,2.78190627994072,-0.927483143499006,-0.71061939965165,-0.82430283322074,0.474971489675403,-1.09897968879594},{0,-0.456676556886725,-0.384945784500547,-1.38060622631712,-0.194870940739048,-1.08960540167119,0.759769772468567,-0.545912778105399,-0.0184723788865673,-0.927483143499006,-0.923097891673285,-0.463560361220742,0.0851521235718529,-0.976195506357084},{0,-0.0603182228983697,-0.384945784500547,0.827294500187726,-0.194870940739048,1.69069749952818,0.149451226558918,0.695815057339258,-0.608665316311044,1.4404472143815,1.31654026747368,0.670201693636395,0.0117354752280954,0.0758416931758078},{0,-0.410184368760288,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.286528119223117,0.960567839070702,-0.699577756784532,-0.712216747328051,0.00147068171815396,1.18554808220782,0.452636001843674,0.462332812898104},{0,-0.274039954367642,-0.384945784500547,1.04213296667209,5.13160143945555,0.279159103534653,2.68047813753717,0.960567839070702,-0.734014287266913,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.401955477884682,-1.63616048696591},{0,-0.465213390714228,1.04868847537437,0.383101454618702,-0.194870940739048,-0.927064616677998,0.461137970592991,-0.702527099693013,0.0655035604468979,-0.712216747328051,-0.95755386335247,-0.360491083506457,0.456041412544475,-0.765509011490418},{0,-0.430305305183117,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,0.665121441819478,0.554116385426655,0.0342155127514768,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.462852233946079,-0.60923823384097},{0,0.134887296317124,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.0972314579249377,1.02768826260825,-0.751675307900021,1.4404472143815,1.31654026747368,0.670201693636395,0.462852233946079,0.410707645281768},{0,-0.464300063660567,-0.384945784500547,-1.14834842471241,-0.194870940739048,-1.05538628904105,0.37464897879296,-0.911346195143165,0.613290370334499,-0.819849945413529,-1.08963508812268,-0.205887166935029,0.474971489675403,-0.561798890625959},{0,-0.37878768431983,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.317262955607285,0.624965721382957,0.235915191291141,-0.712216747328051,-0.745075371330834,1.08247880449354,0.431201946256274,0.0256118003599138},{0,-0.34904373773699,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.728493633599883,0.80768242990184,0.344488652397736,-0.712216747328051,-0.745075371330834,1.08247880449354,0.107086974850547,1.24926780034711},{0,-0.46570953216277,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,0.245731424977819,-1.26559287492467,1.4392751514762,-0.604583549242574,-1.22171631289288,0.670201693636395,0.399852135981245,-0.962242758352669},{0,-0.463521174934898,0.255069510086467,-0.918993845627748,-0.194870940739048,-1.39757741534251,-0.45923545158092,-1.90323689853139,1.45875638872052,-0.712216747328051,-0.526854217362669,0.000251388493540901,0.46806050913554,-0.773880660293067},{0,-0.463851935900593,1.30469459320917,-1.48367062577922,-0.194870940739048,-0.858626391417706,0.74508296254026,-0.53472604084914,-0.0800645734064843,-0.389317153071619,-1.23320163678594,-0.257421805792172,0.439515154731761,-0.658072851856422},{0,-0.411599172116777,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.0137355504222721,0.949381101814444,-0.917019849258999,-0.712216747328051,0.00147068171815396,1.18554808220782,0.474971489675403,0.671624032964329},{0,-0.468246788860908,3.45514598302154,-1.21947737645385,-0.194870940739048,-1.38902263718497,-0.442916773882801,-0.926261844818176,1.86299206154013,-0.819849945413529,0.185235864007136,1.13401344335068,0.474971489675403,0.16095345600274},{0,-0.45992014829225,-0.384945784500547,-0.230930108373771,-0.194870940739048,-1.36335830271236,-0.154076178626094,-2.41036898748176,0.863151996505951,-0.712216747328051,-0.756560695223896,0.154855305064969,0.414976165858336,-1.13386155880697},{0,-0.0772425146333845,-0.384945784500547,0.827294500187726,-0.194870940739048,1.69069749952818,-1.30127922080386,0.885989590695647,-0.703070604876316,1.4404472143815,1.31654026747368,0.670201693636395,0.313615117940352,-0.482268227000793},{0,-0.342414647801948,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.27184130929481,0.941923276976938,-0.620718101979878,-0.712216747328051,0.00147068171815396,1.18554808220782,0.474971489675403,-0.193446343309402},{0,0.973081463135187,-0.384945784500547,0.827294500187726,-0.194870940739048,0.501583335630603,-3.74744900775189,1.02768826260825,-0.994797213105636,1.4404472143815,1.31654026747368,0.670201693636395,-2.18405331282127,-0.0441519396621613},{0,-0.457500258388391,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,1.01434114455922,-0.0425096015737811,-0.332877902190713,-0.604583549242574,-0.302890401447972,1.03094416563639,0.461750483425231,-0.833877476712051},{0,-0.365543375070887,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.65669145172816,0.968025663908207,-0.583821819320183,-0.712216747328051,0.00147068171815396,1.18554808220782,-0.868563190929177,0.511167430913556}}
7 | {{18.2},{13.9},{20.1},{33.2},{19},{19.4},{10.5},{13.6},{26.4},{23.8},{38.7},{23.1},{11},{50},{17.8},{12.7},{8.8},{21.4},{21.4},{16.3},{16.1},{37.9},{20.3},{16.6},{7},{18.6},{14.8},{17.4},{19.4},{21.6},{21.9},{17.2},{11.9},{22.8},{13.1},{23.9},{25},{23.9},{7.2},{22.9},{21},{8.1},{13.3},{35.4},{22.6},{19.4},{33.1},{19.5},{13.4},{23.9}} | {{0,-0.401629396428215,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.103488277761926,0.449706837701578,0.457096107075124,-0.712216747328051,-0.745075371330834,1.08247880449354,0.305902864294418,-0.472501303397702},{0,-0.380014700805473,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.914526559358439,0.494453786726611,0.453504868896248,-0.712216747328051,-0.745075371330834,1.08247880449354,-0.461316134768582,0.399545446878237},{0,-0.454802956061691,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.0123743338947183,0.654797020732978,-0.546925536660488,-0.604583549242574,-0.302890401447972,1.03094416563639,0.432804492468416,-0.183679419706311},{0,-0.462378449146964,-0.384945784500547,-1.38060622631712,-0.194870940739048,-1.08960540167119,2.05057717838978,-0.370653894424021,-0.0184723788865673,-0.927483143499006,-0.923097891673285,-0.463560361220742,0.474971489675403,-1.04037814717739},{0,-0.463832730425165,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.284625600211046,-1.00829791803074,0.629426344617672,-0.604583549242574,-1.22171631289288,0.670201693636395,0.474971489675403,-0.54505559302066},{0,-0.441776308867592,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.222614624958195,0.669712670407989,-0.343750006814436,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.468961941379871,-0.268791182533243},{0,1.88309023743078,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,-0.557147517769634,0.744290918783044,-0.819859638255137,1.4404472143815,1.31654026747368,0.670201693636395,0.420384759324315,1.18089933512548},{0,-0.336135524308028,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.961850724682984,0.956838926651949,0.13044101792796,-0.712216747328051,-0.745075371330834,1.08247880449354,0.271347961595106,1.02881438187735},{0,-0.460833475345911,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,-0.906367220509379,0.647339195895473,-0.268038834796742,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.415877598102666,0.0465409223665364},{0,-0.451815437661865,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,0.435028086276,-0.751002961136798,0.495714216258938,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-0.899455392332802},{0,-0.456805660360432,-0.384945784500547,-1.38060622631712,-0.194870940739048,-1.08960540167119,3.11618683207695,0.132749282107597,-0.0184723788865673,-0.927483143499006,-0.923097891673285,-0.463560361220742,0.474971489675403,-1.31664255766481},{0,-0.45060015785565,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.798663947701794,-1.62729737954369,-0.361165052229812,-0.496950351157096,-0.262691767822257,0.154855305064969,0.438814040763949,0.55163040012636},{0,0.316351297864274,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,0.0548028959098273,0.211056442901404,-0.785718278034032,1.4404472143815,1.31654026747368,0.670201693636395,-2.53150536344132,1.09857812189943},{0,0.412393612593541,-0.384945784500547,0.827294500187726,5.13160143945555,0.818110127459455,-0.464131054890355,0.639881371057967,-1.18223032901688,1.4404472143815,1.31654026747368,0.670201693636395,-0.0160086060696134,-0.665049225858629},{0,-0.435739387758229,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.400488211867692,0.401230976257793,0.229175470325304,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.412872823954899,0.653485460558589},{0,0.955753856416195,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-0.444548641652613,0.830055904414356,-0.861232669877541,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.377221050071172},{0,7.37617630093958,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,-0.33031789776578,1.02768826260825,-0.851147685950558,1.4404472143815,1.31654026747368,0.670201693636395,-3.33558292538358,0.973003389859694},{0,-0.45166392780016,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.282993732441235,0.595134422032935,-0.757529518082026,-0.927483143499006,-1.42845214296799,0.103320666207828,0.355982433423857,0.162348730803181},{0,-0.457423436486681,-0.384945784500547,-1.38060622631712,-0.194870940739048,-1.08960540167119,0.0058468628154714,-0.105901112692577,-0.0184723788865673,-0.927483143499006,-0.923097891673285,-0.463560361220742,0.424190806578152,-0.32181162495002},{0,2.5877924794069,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,-1.63907584915492,1.02768826260825,-0.956031518791183,1.4404472143815,1.31654026747368,0.670201693636395,-1.3872873679719,0.897658550635852},{0,0.0734084355321313,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.224517143970265,0.721917444270527,-0.572900519652913,1.4404472143815,1.31654026747368,0.670201693636395,0.356683547391669,0.50558633171179},{0,-0.459985233514532,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,1.62465969046887,0.736833093945538,-0.409376194905146,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.447127249239435,-1.23153079483788},{0,-0.454650379229128,-0.384945784500547,0.2205209934954,-0.194870940739048,-1.15804362693148,-0.602839815324367,-0.538454953267893,1.37118921120817,-0.712216747328051,-0.848443286368387,-1.49425313836359,0.474971489675403,0.306062035248656},{0,-0.398007030368426,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.565306856618694,0.665983757989236,0.565374397920442,-0.712216747328051,-0.745075371330834,1.08247880449354,0.274452894881131,0.162348730803181},{0,-0.450132824620249,-0.384945784500547,2.22664775485615,-0.194870940739048,0.313378216164799,-1.21642209677364,0.964296751489454,-0.874367746504392,-0.712216747328051,1.57496005506756,0.618667054779254,-0.0543695560227633,1.4404204480076},{0,-0.445289843899959,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.400758863109951,0.483267049470353,-0.402439693765124,-0.604583549242574,-0.302890401447972,1.03094416563639,-2.79121800894659,-0.420876135781367},{0,-0.367719995619332,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.18344979848271,0.610050071707945,0.452914528373693,-0.712216747328051,-0.745075371330834,1.08247880449354,-0.431669029843954,0.506981606512232},{0,-0.435273121493685,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.354795914312958,0.785308955389324,-0.770320229404053,-0.712216747328051,0.00147068171815396,1.18554808220782,0.288174696822597,0.453961164095455},{0,-0.240386626564459,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-0.735021104679131,0.97175457632696,-0.939403594072547,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.876676081128146,0.299085661246448},{0,-0.440955808278497,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,0.173929243106096,0.386315326582782,-0.132801660088075,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.439815632146537,-0.801786156301897},{0,-0.0752440782180722,-0.384945784500547,0.827294500187726,-0.194870940739048,1.24584903533628,-1.95239446095881,0.707001794595517,-0.875892792854326,1.4404472143815,1.31654026747368,0.670201693636395,-0.335015461424138,0.0493314719674194},{0,1.0294708729319,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,0.811989541102548,1.02768826260825,-0.986483250746318,1.4404472143815,1.31654026747368,0.670201693636395,-3.14928692822207,1.05671987788618},{0,-0.464639360393118,-0.384945784500547,-0.0683496472504681,-0.194870940739048,0.00540620249348394,-0.211191550569511,0.311737078207728,-0.50560170008163,-1.03511634158448,-0.940325877512877,1.08247880449354,0.474971489675403,-0.80457670590278},{0,-0.417098339914172,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,0.776088450166686,0.375128589326524,-0.105891971268271,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.474971489675403,-1.27059848925024},{0,2.05349615301515,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,0.359962168864652,0.885989590695647,-1.05604504232073,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.40135275359523},{0,-0.466984562336982,2.43112151168232,-1.2514128241745,-0.194870940739048,-0.755969053527267,0.875632384125212,-0.598117551967937,1.08197155019971,-0.604583549242574,-0.383287668699402,-0.669698916649312,0.474971489675403,-0.902245941933685},{0,-0.456200687884467,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,0.983335656932797,-1.08287616640579,2.188269689468,-0.281683954986141,-0.87715659610104,0.412528499350682,0.461750483425231,-0.578542188231256},{0,-0.464937045262244,0.895084804673483,-1.09463880809132,-0.194870940739048,-1.25214618666439,0.749978565849696,-0.0760698133425552,0.91893917588741,-0.712216747328051,-0.894384581940632,0.0517860273506843,0.462251279116526,-0.896664842731919},{0,1.45987624696971,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,0.448083028434495,1.02768826260825,-0.835356076972208,1.4404472143815,1.31654026747368,0.670201693636395,-3.227411056064,2.14922004663188},{0,-0.460277583529372,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,-0.240565170426126,-0.217768485255159,0.997552855474333,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.461950801701749,-0.169726671701896},{0,-0.41896660588492,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.0757465256751232,-0.508623653917871,0.23079890676233,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.468260827412059,-0.127868427688651},{0,-0.447562491825541,-0.384945784500547,2.22664775485615,-0.194870940739048,0.313378216164799,-1.74025165088326,0.953110014233196,-0.841308677241306,-0.712216747328051,1.57496005506756,0.618667054779254,-0.310977268242007,2.23712235905969},{0,0.578439885255874,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,1.03555542556678,0.982941313583218,-1.06986884955723,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.05951042748707},{0,-0.468299070432905,4.22316433652596,-1.62302530674205,-0.194870940739048,-1.44890608428773,1.77805526083119,-1.88459233643763,2.54035861612858,-0.604583549242574,-1.21023098899982,-0.515095000077885,0.465256053264292,-1.23292606963832},{0,-0.464700177731972,-0.384945784500547,-1.30512244079559,-0.194870940739048,-0.713195162739584,0.420341276347693,-0.236413047348923,-0.216679209334447,-0.927483143499006,-0.95755386335247,-0.566629638935027,0.427696376417213,-0.67481614946172},{0,-0.465025603843382,3.71115210085635,-1.31092888583571,-0.194870940739048,-1.49167997507541,-0.607735418633803,-1.54153239391238,1.51459276314552,-0.712216747328051,-0.572795512934914,-1.44271849950645,0.474971489675403,-0.475291852998585},{0,-0.459028160655731,1.35589581677613,-0.916090623107689,-0.194870940739048,-1.19226273956163,1.34234656629142,-2.04120665802524,0.963706665514506,-0.389317153071619,-0.618736808507159,-1.44271849950645,0.41016852722191,-1.22594969563611},{0,-0.455547701719933,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,-0.503295881365841,0.904634152789411,-0.70144716843929,-0.604583549242574,-0.302890401447972,1.03094416563639,0.446426135271623,0.39396434767647},{0,0.247063277376308,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.962121375925242,0.751748743620549,-0.594841509074545,1.4404472143815,1.31654026747368,0.670201693636395,-3.49713961539515,0.529306003319296},{0,-0.460879355092766,-0.384945784500547,0.2205209934954,-0.194870940739048,-1.15804362693148,-0.0529003768977577,-2.01510427109397,0.969118120304595,-0.712216747328051,-0.848443286368387,-1.49425313836359,0.474971489675403,-0.706907469871875}}
8 | {{15.4},{13.8},{9.5},{10.9},{18.8},{23.3},{20.4},{21.8},{12.3},{22.5}} | {{0,0.593702903366415,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.531308284694902,1.02768826260825,-0.764662799396233,1.4404472143815,1.31654026747368,0.670201693636395,0.373109646066125,0.726039750181548},{0,-0.215829225317888,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-0.0480047735883218,1.02768826260825,-1.03981067795046,-0.604583549242574,-0.193779824463889,-2.16420344350645,-1.76849304818519,1.97481069657669},{0,0.526734477521742,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,0.359962168864652,0.86361611618313,-0.769680693837952,1.4404472143815,1.31654026747368,0.670201693636395,-2.89217842031153,1.45576847081245},{0,1.22405434813772,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,0.629220350883616,0.994128050839476,-0.990566439360657,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.03718603068},{0,-0.45918927325515,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.457603583811109,0.871073941020636,-0.750937382246827,-0.927483143499006,-1.42845214296799,0.103320666207828,0.29949267944585,0.548839850525477},{0,-0.453218504338926,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,-0.0235267570411439,-1.61238172986868,2.10655672213766,-0.281683954986141,-0.87715659610104,0.412528499350682,0.412672505678382,-0.946894735547813},{0,-0.45570241249421,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,-0.0529003768977577,0.475809224632848,-0.693821936689619,-0.604583549242574,-0.302890401447972,1.03094416563639,0.382724923338977,0.0618889451713929},{0,-0.451206197302472,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.738284840218754,-0.687611450018002,-0.566259188774168,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,-0.22832821332044},{0,0.383076454353533,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.04344411317358,1.02768826260825,-0.983728328307727,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.52274166123365},{0,-0.464162424420003,-0.384945784500547,-1.14834842471241,-0.194870940739048,-1.05538628904105,-0.23566956711669,-1.01948465528699,0.440025426964572,-0.819849945413529,-1.08963508812268,-0.205887166935029,0.465857008093845,-0.109729855282912}}
\.
-- Create the corresponding summary table for preprocessed data
CREATE TABLE lin_housing_wi_batch_summary(
source_table text,
output_table text,
dependent_varname text,
independent_varname text,
dependent_vartype text,
buffer_size integer,
class_values text[],
num_rows_processed integer,
num_rows_skipped integer,
grouping_cols text
);
INSERT INTO lin_housing_wi_batch_summary VALUES
('lin_housing_wi_does_not_exist','lin_housing_wi_batch','y','x','float8',50,NULL,410,0,'');
-- Create the corresponding standardization table for preprocessed data
CREATE TABLE lin_housing_wi_batch_standardization(
mean double precision[],
std double precision[]
);
INSERT INTO lin_housing_wi_batch_standardization VALUES
-- TODO get real numbers by running preprocessor
(ARRAY[1,4.40216212195,7.51829268293,12.4008536585,0.0365853658537,0.57236804878,6.125941707317,72.44,3.5327492689,10.6170731707,436.743902439,18.8995121951,349.478317073,13.6464390244], ARRAY[1,9.37232721366,19.5307832574,6.88889668698,0.187741516077,0.116893738398,0.612794748753,26.8174708253,2.03272510382,9.29081378039,174.135271989,1.94044243285,99.8411145886,7.16704694791]);
-- Create preprocessed data that can be used with minibatch MLP:
DROP TABLE IF EXISTS lin_housing_wi_batch_grp, lin_housing_wi_batch_grp_summary, lin_housing_wi_batch_grp_standardization;
CREATE TABLE lin_housing_wi_batch_grp(
grp int,
__id__ integer,
dependent_varname double precision[],
independent_varname double precision[]
);
COPY lin_housing_wi_batch_grp (grp, __id__, dependent_varname, independent_varname) FROM STDIN NULL '?' DELIMITER '|';
1 | 0 | {{15},{15.7},{19.6},{10.9},{21.4},{50},{30.8},{18},{23},{20.5},{15.6},{9.6},{20.6},{29.8},{22.7},{19.3},{16.2},{7.5},{13.6},{20.4},{26.6},{24.7},{27.1},{17.9},{6.3},{28.7},{18.5},{27.9},{20},{17.5},{37.2},{18.3},{10.2},{32.5},{17.1},{23.1},{21.9},{18.7},{19.4},{20.3},{18.3},{19.3},{21.2},{50},{17.3},{21.7},{19.8},{15.2},{27.5},{14.6}} | {{0,-0.445702761621649,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,0.355066565555217,0.815140254739345,1.38432428783503,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.431101787118015,0.949283718252188},{0,-0.428368753077516,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.891680410581072,0.86361611618313,-0.873482235720559,-0.927483143499006,-1.42845214296799,0.103320666207828,0.0982729706837658,1.89946585735285},{0,-0.0388112913321931,-0.384945784500547,0.827294500187726,-0.194870940739048,-0.345339701965513,0.113550135623056,0.680899407664247,-0.213235556286209,1.4404472143815,1.31654026747368,0.670201693636395,0.459246504968759,-0.10833458048247},{0,3.54871710300239,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,0.0694897058381349,0.233429917413921,-0.821483074692163,1.4404472143815,1.31654026747368,0.670201693636395,-3.31184520961623,0.121885761590377},{0,-0.459548842433986,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,0.206566598502334,-1.02321356770575,0.477118489798452,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.338053947675518,-0.656677577055981},{0,0.227968766917991,-0.384945784500547,0.827294500187726,5.13160143945555,0.501583335630603,1.39783007046502,0.934465452139432,-1.14641633731521,1.4404472143815,1.31654026747368,0.670201693636395,0.426394307619848,-1.49105190772},{0,-0.466749828748424,3.45514598302154,-1.37189655875695,-0.194870940739048,-1.23503663034931,0.71081373937421,-1.88832124885638,0.919135956061595,-0.819849945413529,-1.06092177839002,-0.308956444649314,0.462251279116526,-1.30129453485995},{0,-0.43497543662456,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.44318742512506,0.982941313583218,-0.846277376639478,-0.712216747328051,0.00147068171815396,1.18554808220782,0.474971489675403,0.243274669228788},{0,-0.406741253804489,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.346907226706157,0.949381101814444,-0.592972097419787,-0.712216747328051,0.00147068171815396,1.18554808220782,0.363394209655014,-0.352507670559733},{0,-0.459776107226544,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.323790426686532,0.762935480876807,-0.711286177148542,-0.927483143499006,-1.42845214296799,0.103320666207828,0.286572150610455,0.59767446854093},{0,-0.389647313703198,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.384169534169572,0.80768242990184,0.426447594945805,-0.712216747328051,-0.745075371330834,1.08247880449354,0.449230591142872,0.370244676068965},{0,1.06895946435246,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.492143458219417,0.777851130551818,-0.752757598858038,1.4404472143815,1.31654026747368,0.670201693636395,-3.22500723674578,0.614417766146228},{0,-0.464867692156534,-0.384945784500547,-0.0683496472504681,-0.194870940739048,0.00540620249348394,-0.0643234512864404,0.158851669038866,-0.612600919794745,-1.03511634158448,-0.940325877512877,1.08247880449354,0.474971489675403,-0.6371437298498},{0,0.026111751379456,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,1.33908283075179,-0.180479361067632,-0.491876282932224,1.4404472143815,1.31654026747368,0.670201693636395,0.252417884464178,-0.277162831335892},{0,0.0853158302971524,-0.384945784500547,0.827294500187726,5.13160143945555,1.69069749952818,-0.0529003768977577,0.408688801095299,-0.398504090281423,1.4404472143815,1.31654026747368,0.670201693636395,0.460248096351348,-0.302277777743839},{0,-0.454252399099437,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.699120013743269,-0.269973259117697,-0.380547899387038,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.420885555015609,-0.00508424524979929},{0,-0.442047319465291,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.761130988996121,0.878531765858142,-0.858182577177673,-0.712216747328051,0.00147068171815396,1.18554808220782,0.426995262449401,0.494424133308259},{0,0.686279696751882,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,1.01597301232904,0.684628320083,-0.84283372359124,1.4404472143815,1.31654026747368,0.670201693636395,-3.28430144659504,1.69436046168795},{0,-0.458415719383766,-0.384945784500547,2.22664775485615,-0.194870940739048,0.313378216164799,-0.287889335750671,0.982941313583218,-0.818924932427758,-0.712216747328051,1.57496005506756,0.618667054779254,0.406963434797626,0.617208315747111},{0,-0.402504312531021,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.343372839924275,-0.39675628135529,0.577919134024738,-0.712216747328051,-0.745075371330834,1.08247880449354,0.474971489675403,-0.751556263486003},{0,-0.456100392623901,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,0.996390599091292,-2.59308569600064,1.07646170532253,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.359888639815953,-1.228740245237},{0,-0.45102054437334,-0.384945784500547,-0.934961569488072,-0.194870940739048,-0.627647381164219,-0.315631087837472,-1.57509260568115,0.154743369439813,-0.604583549242574,-0.905869905833693,0.154855305064969,0.440216268699573,-0.490639875803442},{0,-0.4639661017823,-0.384945784500547,0.2205209934954,-0.194870940739048,-1.15804362693148,0.635747821962864,-0.799478822580584,1.19428383461582,-0.712216747328051,-0.848443286368387,-1.49425313836359,0.434407038680558,-0.872945171124413},{0,1.53738101002805,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,-2.49907016384579,1.02768826260825,-0.973495759250105,1.4404472143815,1.31654026747368,0.670201693636395,-3.21198654877213,2.89150624046676},{0,0.588369116051868,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-0.501664013596029,0.199869705645146,-0.999815107547354,1.4404472143815,1.31654026747368,0.670201693636395,-0.113363288457242,2.2775853282725},{0,-0.464040789742296,-0.384945784500547,-1.30512244079559,-0.194870940739048,-0.713195162739584,1.50063773996317,-0.348280419911504,-0.0581727790283989,-0.927483143499006,-0.95755386335247,-0.566629638935027,0.466558122061657,-1.10874661239903},{0,-0.439404432652302,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,-0.736652972448942,0.0693577709888006,0.584609659947029,-0.604583549242574,-0.859928610261448,0.360993860493541,0.417179666900031,-0.26600063293236},{0,-0.465840769578191,3.71115210085635,-1.08157430675105,-0.194870940739048,-1.38046785902743,0.767929111317627,-1.82865865015634,0.779225252216032,-0.712216747328051,-1.10112041201574,0.154855305064969,0.474971489675403,-1.24827409244318},{0,-0.449600406162565,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-0.609367286403615,-1.45949632069982,0.771206460117992,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.474971489675403,0.0702605939740419},{0,-0.450723926475071,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.963482592452796,0.0395264716387789,-0.557305690848749,-0.496950351157096,-0.262691767822257,0.154855305064969,0.46365350705215,0.202811700015985},{0,-0.463530777672611,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,1.33908283075179,-0.523539303592882,-0.346209758991749,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.474971489675403,-1.20083474922817},{0,-0.451416390561317,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.377642063090325,0.587676597195429,-0.526214423327513,-0.496950351157096,-0.0272426280144994,-0.566629638935027,-0.0457558701324997,0.294899836845124},{0,1.43662695199392,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,0.103758929004185,1.02768826260825,-1.05604504232073,1.4404472143815,1.31654026747368,0.670201693636395,0.443321201985598,1.13485526671091},{0,-0.459019624888874,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,0.658593970740229,0.86361611618313,-0.337354651153422,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.474971489675403,-1.11153716199991},{0,-0.464338474611422,1.40709704034309,-0.920445456887777,-0.194870940739048,-1.1503443265897,-0.739916707988565,-1.6422130292187,1.52895771586103,-1.03511634158448,-0.762303357170426,-1.03044138864931,0.446125657856846,-0.169726671701896},{0,-0.467702633723797,3.96715821869115,-1.19770320755341,-0.194870940739048,-1.22648185219178,0.581896185559071,-1.66831541614997,2.46100701088846,-0.712216747328051,-0.492398245683485,-0.515095000077885,0.430200354873685,-1.01665847556989},{0,-0.0990023182926892,-0.384945784500547,0.827294500187726,5.13160143945555,1.24584903533628,4.27644481641321,0.390044239001535,-0.800919546489827,1.4404472143815,1.31654026747368,0.670201693636395,0.0507975391490579,-1.16595287921713},{0,-0.453765860388608,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,-0.68280133604515,-0.23268413493017,1.81660113547601,-0.281683954986141,-0.87715659610104,0.412528499350682,0.457043003927064,-0.0692668860701082},{0,-0.465999748235896,1.40709704034309,-0.920445456887777,-0.194870940739048,-1.1503443265897,-0.2095596827997,-1.83238756257509,1.52895771586103,-1.03511634158448,-0.762303357170426,-1.03044138864931,0.127920075608393,-0.811553079904987},{0,-0.460749184648202,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,-0.465762922660168,-1.33644221088098,0.477118489798452,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.466558122061657,-0.634353180248917},{0,-0.441062505364205,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.59631234424512,-0.0686119885050502,-0.314872516252782,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,0.0632842199718343},{0,-0.462637723065235,-0.384945784500547,-1.32979983221609,-0.194870940739048,-0.961283729308144,-0.475554129279038,-1.73916475210627,0.827387199847821,-0.712216747328051,-0.0387279519075608,-1.03044138864931,0.330141375753067,-0.512964272610506},{0,-0.46367375176746,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,0.118445738932492,-0.69879818727426,0.72875113753757,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.369804394503582,-0.18228414490587},{0,0.515361635156118,-0.384945784500547,0.827294500187726,-0.194870940739048,0.501583335630603,0.0923358546155019,1.02768826260825,-1.16279828681611,1.4404472143815,1.31654026747368,0.670201693636395,0.166982139529355,-0.574356363829932},{0,-0.453652761477758,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.495136542516782,0.915820890045669,-0.781389114201962,-0.927483143499006,-1.42845214296799,0.103320666207828,0.208648341045048,1.64134001927117},{0,-0.452758639899524,-0.384945784500547,-0.230930108373771,-0.194870940739048,-1.36335830271236,-0.323790426686532,-2.04866448286275,0.863151996505951,-0.712216747328051,-0.756560695223896,0.154855305064969,0.275053849710684,-0.525521745814479},{0,-0.45603850831419,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.513357739226971,0.919549802464421,-0.541071326478483,-0.604583549242574,-0.302890401447972,1.03094416563639,0.45834507272443,-0.192051068508961},{0,0.110855911703094,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.808725805562925,0.960567839070702,-0.579295875313927,1.4404472143815,1.31654026747368,0.670201693636395,0.0582093153802149,0.5697689725321},{0,0.0164001826383071,-0.384945784500547,0.827294500187726,-0.194870940739048,1.24584903533628,-4.24027307423509,0.576489859939171,-0.944323098427173,1.4404472143815,1.31654026747368,0.670201693636395,0.0522999262229408,-0.910617590736334},{0,0.622133408824188,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,0.0417479537513321,0.904634152789411,-0.670159120743868,1.4404472143815,1.31654026747368,0.670201693636395,0.302697771870134,0.611627216545345}}
1 | 1 | {{20.2},{25},{14.1},{25},{36.2},{19.1},{18.9},{22.1},{29.9},{13.4},{24.2},{37},{22},{23.7},{17.2},{7.4},{15.3},{8.5},{23.1},{41.3},{50},{20.9},{17.2},{28.5},{7},{22.2},{29},{17.5},{13.4},{21.2},{23.2},{21.7},{34.9},{27},{28},{14.4},{16.8},{24.1},{20.6},{24.1},{23.8},{11.7},{28.7},{10.2},{19.2},{12.6},{15.2},{19.2},{24.3},{50}} | {{0,-0.38405105155781,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-1.14788365044154,-1.33644221088098,0.129752287318313,-0.712216747328051,-0.745075371330834,1.08247880449354,-0.605845771276142,-0.272977006934568},{0,-0.466630328012431,1.04868847537437,0.383101454618702,-0.194870940739048,-0.927064616677998,0.0841765157664425,-1.62356846712494,0.0655035604468979,-0.712216747328051,-0.95755386335247,-0.360491083506457,0.469262418794647,-1.03758759757651},{0,0.0373661599799437,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.596582995487378,0.524285086076633,-0.539644670215642,1.4404472143815,1.31654026747368,0.670201693636395,-2.99033437580523,0.62557996454976},{0,0.0149117582926795,-0.384945784500547,0.827294500187726,-0.194870940739048,1.69069749952818,0.389335788721266,0.580218772357924,-0.499107954333524,1.4404472143815,1.31654026747368,0.670201693636395,0.251215974805071,-0.817134179106753},{0,-0.462330435458396,-0.384945784500547,-1.48367062577922,-0.194870940739048,-0.978393285623217,1.61160474831038,-0.680153625180496,1.24436438894592,-0.819849945413529,-1.23320163678594,-0.102817889220744,0.474971489675403,-1.16037178001536},{0,-0.222811482606625,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.455971716041296,0.927007627301927,-0.56281553572593,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.0135046276131415,-0.225537663719557},{0,-0.451555096772737,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,-0.253620112584621,0.501911611564117,1.50504892469755,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.372909327789607,0.481866660104285},{0,-0.385363425712019,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.061059715746817,-0.732358399043035,-0.439040806163541,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.474971489675403,-1.06967891798667},{0,-0.462611048793808,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,1.14325869837436,0.0730866834075537,-0.303754436411327,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.418581894835655,-0.938523086745164},{0,-0.115351512735737,-0.384945784500547,1.04213296667209,5.13160143945555,2.55473009343937,-1.23437264224157,1.02768826260825,-1.08777584540807,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.474971489675403,1.83807376613342},{0,-0.460280784441944,-0.384945784500547,-0.230930108373771,-0.194870940739048,-1.36335830271236,0.420341276347693,-2.45511593650679,0.863151996505951,-0.712216747328051,-0.756560695223896,0.154855305064969,0.343061904588462,-0.966428582753994},{0,-0.46002257749453,1.91910927601271,-1.3007676070155,-0.194870940739048,-1.15804362693148,1.29175866542725,-1.89950798611264,1.4498028907951,-0.604583549242574,-0.222493134196543,-1.90653024922074,0.282465625941841,-1.19246310042552},{0,-0.465502539816497,-0.384945784500547,-1.30512244079559,-0.194870940739048,-0.713195162739584,0.400758863109951,0.0544421213137901,-0.21677759942154,-0.927483143499006,-0.95755386335247,-0.566629638935027,0.441418178358679,-0.759927912288652},{0,0.139348301470578,-0.384945784500547,0.827294500187726,-0.194870940739048,-0.345339701965513,0.963753243695055,0.0917312455013173,-0.0989062750847017,1.4404472143815,1.31654026747368,0.670201693636395,0.436610539722253,-0.824110553108961},{0,0.320275616676617,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,-0.885152939501825,0.949381101814444,-1.022297242448,1.4404472143815,1.31654026747368,0.670201693636395,-0.348937581642122,1.77947222451488},{0,1.94134684622739,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.89201535347577,0.636152458639215,-0.990959999709028,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,2.55943083796168},{0,-0.349495066409536,-0.384945784500547,1.04213296667209,5.13160143945555,2.55473009343937,-1.87243294023802,0.580218772357924,-0.945798949733561,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.0620818096686972,-0.212980190515583},{0,0.348884306267523,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-0.673010129426278,0.986670226001971,-0.934385699630829,1.4404472143815,1.31654026747368,0.670201693636395,0.43691101713703,0.875334153828789},{0,-0.454852036721117,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,-0.95858698914336,0.598863334451687,-0.460785015410988,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.474971489675403,0.145605433197883},{0,-0.339145449095852,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,1.27870372326875,0.93073653972068,-0.814398988421502,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.139738853922941,-1.26362211524803},{0,0.0529279299304664,-0.384945784500547,0.827294500187726,-0.194870940739048,0.501583335630603,-1.94097138657012,1.02768826260825,-1.08241358566152,1.4404472143815,1.31654026747368,0.670201693636395,0.260831252077923,-1.44919366370675},{0,-0.456023570722191,0.255069510086467,-0.918993845627748,-0.194870940739048,-1.39757741534251,-0.447812377192237,-1.47068305795607,1.45875638872052,-0.712216747328051,-0.526854217362669,0.000251388493540901,0.474971489675403,-0.677606699062603},{0,-0.463123194805207,-0.384945784500547,-1.1628645373127,-0.194870940739048,-1.1152697361438,-0.426598096184682,-0.751002961136798,2.20435646870763,-0.819849945413529,-0.486655583736954,-0.0512832503636006,0.151557632237488,-0.1362400764913},{0,-0.465961337285041,3.71115210085635,-1.08157430675105,-0.194870940739048,-1.38046785902743,1.14489056614417,-1.66085759131246,0.779225252216032,-0.712216747328051,-1.10112041201574,0.154855305064969,0.474971489675403,-1.43942674010366},{0,4.41127768328361,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-2.67694375075529,1.02768826260825,-0.922185328831357,1.4404472143815,1.31654026747368,0.670201693636395,-2.61623999440833,3.25567296338199},{0,-0.462067960627554,-0.384945784500547,-1.14834842471241,-0.194870940739048,-1.05538628904105,-0.062691583516628,-0.583201902292926,0.105695911024192,-0.819849945413529,-1.08963508812268,-0.205887166935029,0.457443640480099,-0.726441317078056},{0,-0.463764444290312,3.19913986518674,-1.47496095821904,-0.194870940739048,-1.47457041876034,1.43862676471032,-2.3283329142692,2.11295207779868,-0.604583549242574,-0.45219961205777,-2.11266880464931,0.221368551603926,-1.24269299324141},{0,-0.386026014614266,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.276466261361987,0.345297289976502,0.356738218240755,-0.712216747328051,-0.745075371330834,1.08247880449354,0.373309964342643,0.142814883597},{0,0.721084286109856,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.766297243547814,0.826326991995603,-0.692690450688055,1.4404472143815,1.31654026747368,0.670201693636395,-2.40009657404567,1.34275121197669},{0,-0.45565866668907,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,0.0270611438230259,0.00223734745125172,-0.394863657059,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.438914199902207,-0.224142388919115},{0,-0.462205599868117,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,-0.227510228267631,-0.941177494493187,0.0108970621105497,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.438213085934395,-0.493430425404325},{0,-0.458182052766066,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.0580666314494522,-0.672695800342991,-0.371397621287434,-0.604583549242574,-0.302890401447972,1.03094416563639,0.440817223529126,-0.0901960080767308},{0,-0.460767323152772,1.91910927601271,-1.3007676070155,-0.194870940739048,-1.15804362693148,1.67361572356323,-1.25067722524966,0.508652512711604,-0.604583549242574,-0.222493134196543,-1.90653024922074,0.474971489675403,-1.15200013121271},{0,-0.333823398460734,-0.384945784500547,1.04213296667209,5.13160143945555,0.279159103534653,0.147819358789106,0.751748743620549,-0.853213877779501,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.105751193949567,-1.13665210840786},{0,-0.465309418091365,0.895084804673483,-1.09463880809132,-0.194870940739048,-1.25214618666439,0.926220284989382,-1.45203849586231,0.91893917588741,-0.712216747328051,-0.894384581940632,0.0517860273506843,0.474971489675403,-1.16595287921713},{0,-0.442610680077829,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-1.24090011332082,0.852429378926872,1.14981151525001,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.474971489675403,2.39478841150958},{0,-0.44575717713536,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.216087153878947,0.270719041601448,-0.508946963042776,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,0.0953755403819889},{0,-0.461215450912746,2.68712762951712,-1.55479957752066,-0.194870940739048,-1.38046785902743,0.68470385505722,-1.36254459781225,3.53099920801961,-0.712216747328051,-0.147838528891644,-0.308956444649314,0.213355820543215,-1.1380473832083},{0,-0.466170463573029,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.163867385244966,-1.31033982394971,0.629426344617672,-0.604583549242574,-1.22171631289288,0.670201693636395,0.467359395167728,-0.716674393474965},{0,-0.461273067339029,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,0.185352317494779,-2.47748941101931,0.353589735453794,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.455139980300146,-0.958056933951345},{0,-0.277613239768006,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.460867319350732,0.252074479507684,-0.544514979526721,-0.604583549242574,-0.193779824463889,-2.16420344350645,-1.22062256190913,-0.2101896409147},{0,0.468395711969138,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,-0.970010063532043,-0.0686119885050502,-0.722797817338366,1.4404472143815,1.31654026747368,0.670201693636395,-3.46378662235495,0.490238308906934},{0,-0.466512961218152,-0.384945784500547,-1.48367062577922,-0.194870940739048,-0.978393285623217,0.441555557355247,-0.512352566336624,1.24436438894592,-0.819849945413529,-1.23320163678594,-0.102817889220744,0.447127249239435,-1.17711507762066},{0,0.837042678857392,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,-0.526142030143208,-0.475063442149097,-0.755217351035351,1.4404472143815,1.31654026747368,0.670201693636395,-3.2534524320113,0.285132913242033},{0,-0.453588743226333,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.225878360497819,0.378857501745276,-0.386352914525497,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.451033455631531,-0.466920204195936},{0,0.589254701863245,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.149451226558918,0.900905240370658,-0.656630483768647,1.4404472143815,1.31654026747368,0.670201693636395,0.391038131814464,0.389778523275146},{0,-0.453601546876618,-0.384945784500547,2.22664775485615,-0.194870940739048,0.313378216164799,-1.15114738598116,0.755477656039302,-0.842144992981592,-0.712216747328051,1.57496005506756,0.618667054779254,0.456842685650546,0.615813040946669},{0,-0.43341445826065,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.487247854909981,0.986670226001971,-0.695740543387923,-0.712216747328051,0.00147068171815396,1.18554808220782,0.456341889959252,-0.146007000094391},{0,-0.326420754654307,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.152444310856283,1.02768826260825,-0.873433040677013,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.0441870360239717,-1.0068915519668},{0,-0.307622862094259,-0.384945784500547,1.04213296667209,5.13160143945555,0.279159103534653,3.61553836963939,0.800224605064335,-0.674340699445301,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.390337017846652,-1.4408220149041}}
1 | 2 | {{7.2},{19},{21.7},{7.2},{13.2},{8.5},{16.1},{20},{23},{14.2},{13.9},{8.3},{13.3},{20.6},{20.1},{13.8},{30.5},{17.8},{18.4},{29.6},{19.3},{16.2},{11.9},{14.1},{21.7},{16.5},{19.5},{14.6},{26.4},{14},{28.6},{10.2},{17.1},{15},{19.9},{17.4},{28.2},{20.2},{19.1},{19.7},{11.5},{22.9},{19.3},{12.7},{17.4},{20.3},{15},{16.4},{21.7},{19.9}} | {{0,1.32407219628047,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.43998798123787,0.956838926651949,-1.03636702490223,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,2.39478841150958},{0,-0.0669185046202712,-0.384945784500547,0.827294500187726,-0.194870940739048,0.70689801141148,-0.338477236614839,0.457164662539084,-0.325301865484589,1.4404472143815,1.31654026747368,0.670201693636395,-3.27989444451165,0.488843034106492},{0,-0.460949775169333,-0.384945784500547,0.2205209934954,-0.194870940739048,-1.15804362693148,-0.245460773735561,-1.12389420301207,0.969118120304595,-0.712216747328051,-0.848443286368387,-1.49425313836359,0.474971489675403,-0.452967456191521},{0,1.04926318233075,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,0.299583061381612,1.02768826260825,-0.963558360453761,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.931145145846448},{0,-0.321603381234588,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.341740972154463,0.35648402723276,0.224944696580325,-0.712216747328051,-0.745075371330834,1.08247880449354,-1.17064315191795,1.96225322337272},{0,3.96134674256123,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-1.02549356770565,0.483267049470353,-0.947176410952856,1.4404472143815,1.31654026747368,0.670201693636395,-0.200501738742466,1.91620915495815},{0,-0.188499833784622,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-1.93607578326069,-1.29169526185594,-0.498517613810969,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.00973229246291796,-0.140425900892625},{0,0.255967149178647,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,-0.127966294309104,0.445977925282826,-0.401062232545828,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.147000707998324},{0,-0.437318504626709,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,0.248995160517444,-1.62356846712494,0.926416822506441,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-1.04595924637916},{0,0.279592017896129,-0.384945784500547,0.827294500187726,-0.194870940739048,1.24584903533628,-0.250356377044997,0.852429378926872,-0.815727254597251,1.4404472143815,1.31654026747368,0.670201693636395,-0.295452601811881,0.286528188042475},{0,1.1614871770785,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,0.798934598944053,0.777851130551818,-1.07631340026179,1.4404472143815,1.31654026747368,0.670201693636395,0.135632329254327,1.33856538757537},{0,2.17657124137941,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-1.32249350181141,0.878531765858142,-0.900244339409725,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.854405031822166},{0,0.212429403355467,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,0.00421499504565896,0.93073653972068,-0.652694880284946,1.4404472143815,1.31654026747368,0.670201693636395,-0.467926637893668,1.45855902041334},{0,-0.458325026860915,3.71115210085635,-1.52286412980001,-0.194870940739048,-1.36335830271236,-0.36458712093183,-1.97408623448769,3.46970218376097,-0.712216747328051,-0.590023498774506,1.59782519306496,0.266039527267385,-1.12688518480477},{0,-0.457820349645515,-0.384945784500547,2.22664775485615,-0.194870940739048,0.313378216164799,-0.287889335750671,0.412417713514051,-0.699971317132902,-0.712216747328051,1.57496005506756,0.618667054779254,0.474971489675403,-0.0413613900612783},{0,0.389831446849711,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,-1.19520781576609,0.856158291345625,-0.542596372828417,1.4404472143815,1.31654026747368,0.670201693636395,0.0310661889120588,0.626975239350201},{0,-0.462324033633253,1.91910927601271,-1.3007676070155,-0.194870940739048,-1.15804362693148,0.945802698227124,-1.55271913116863,1.4498028907951,-0.604583549242574,-0.222493134196543,-1.90653024922074,0.40295706926727,-1.24966936724362},{0,0.410349296431374,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,2.0130442196841,1.00158587567698,-0.531330707856324,1.4404472143815,1.31654026747368,0.670201693636395,0.264336821916984,0.431636767288391},{0,-0.387222088945054,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,0.547626962393021,0.818869167158098,0.453554063939794,-0.712216747328051,-0.745075371330834,1.08247880449354,0.385228901795449,-0.118101504085561},{0,-0.463245896453771,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,-0.0104718148826487,-0.135732412042599,-0.124487697728757,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.376915693319962,-0.0692668860701082},{0,-0.447119698919853,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,-0.0365816991996391,0.557845297845408,-0.402439693765124,-0.604583549242574,-0.302890401447972,1.03094416563639,0.450632819078496,-0.0288039168573048},{0,-0.442643756174399,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.741548575758378,0.196140793226393,0.202806926984508,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.470163851038977,-0.299487228142956},{0,1.74066029771907,-0.384945784500547,0.827294500187726,-0.194870940739048,0.741117124041626,-3.29868537105362,1.02768826260825,-1.15837073289695,1.4404472143815,1.31654026747368,0.670201693636395,0.207746908800719,1.35251813557978},{0,0.525688846081803,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.0417479537513321,0.979212401164465,-0.625342436073226,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.62557996454976},{0,-0.459691816528835,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,-0.441284906112988,-1.24694831283091,0.943635087747632,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.410869641189722,0.287923462842916},{0,-0.447159176841565,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,-0.862306790724458,1.02768826260825,1.25415420261162,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.372108054683536,2.27200422907073},{0,0.240362700393841,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.257154499366503,0.393773151420288,-0.392748270186511,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.0479361971669779},{0,-0.216973018076679,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-2.01277356844185,0.867345028601884,-1.01929634479167,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.422988896919046,2.21619323705307},{0,-0.459811317264828,1.35589581677613,-0.916090623107689,-0.194870940739048,-1.19226273956163,0.547626962393021,-2.01510427109397,0.963706665514506,-0.389317153071619,-0.618736808507159,-1.44271849950645,0.341859994929355,-0.694349996667901},{0,-0.438659686994059,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.0237974082834025,0.789037867808076,-0.944962633993275,-0.712216747328051,0.00147068171815396,1.18554808220782,0.386631129731073,1.46693066921599},{0,-0.45589980210277,-0.384945784500547,0.2205209934954,-0.194870940739048,-1.15804362693148,0.846258764268598,-1.54153239391238,1.19428383461582,-0.712216747328051,-0.848443286368387,-1.49425313836359,0.474971489675403,-1.02921594877386},{0,1.05966614818729,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-2.08783948585319,1.02768826260825,-0.955982323747637,1.4404472143815,1.31654026747368,0.670201693636395,0.234789876130616,2.3682781903012},{0,0.567843797674206,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.402390730879762,0.923278714883174,-0.722010696641626,1.4404472143815,1.31654026747368,0.670201693636395,0.365397392420191,0.819523161811128},{0,4.98634296612442,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,-0.65669145172816,1.02768826260825,-1.04281157560679,1.4404472143815,1.31654026747368,0.670201693636395,-3.47430333187213,-0.493430425404325},{0,-0.402757184624149,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.531037633452644,-0.594388639549184,0.475150688056602,-0.712216747328051,-0.745075371330834,1.08247880449354,0.462151119978267,-0.722255492676731},{0,-0.340869674000895,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.464131054890355,0.826326991995603,-0.544514979526721,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.572793255650712,0.109328288386404},{0,-0.464435568959416,1.30469459320917,-1.48367062577922,-0.194870940739048,-0.858626391417706,1.12530815290643,-0.0797987257613083,-0.172206889968629,-0.389317153071619,-1.23320163678594,-0.257421805792172,0.474971489675403,-0.853411323918232},{0,0.15140187124302,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.577000582249635,0.651068108314226,-0.359689200923424,1.4404472143815,1.31654026747368,0.670201693636395,0.444122475091669,-0.468315478996378},{0,1.19218392863672,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0652896495962397,-0.380905798629948,-0.0536963388300391,-0.307148894416019,1.4404472143815,1.31654026747368,0.670201693636395,0.192923356338405,0.62557996454976},{0,-0.43879839320548,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-1.25558692324913,0.0171529971262628,-0.361165052229812,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,1.04555767948265},{0,0.400069032223401,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.25558692324913,0.986670226001971,-0.887797993392521,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.00509471026985},{0,-0.465909055713044,0.895084804673483,-1.09463880809132,-0.194870940739048,-1.25214618666439,0.0123743338947183,-0.959822056586951,0.91893917588741,-0.712216747328051,-0.894384581940632,0.0517860273506843,0.412271869125346,-0.856201873519115},{0,-0.45140785479446,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-0.779081534464051,-1.44085175860605,0.771206460117992,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.474971489675403,-0.47947767739991},{0,0.0284526854398912,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,-0.299312410139354,0.576489859939171,-0.468410247160658,1.4404472143815,1.31654026747368,0.670201693636395,-3.39537793092413,0.748364146988612},{0,-0.455236146229666,0.255069510086467,-0.918993845627748,-0.194870940739048,-1.39757741534251,-0.922685898207498,-1.32898438604347,1.45875638872052,-0.712216747328051,-0.526854217362669,0.000251388493540901,0.474971489675403,-0.0776385348727573},{0,-0.462053023035555,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.253620112584621,0.434791188026567,-0.656925654029925,-0.927483143499006,-1.42845214296799,0.103320666207828,0.282365466803582,0.0870038915793399},{0,1.62253595413167,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,1.88249479809915,0.949381101814444,-1.09038318271602,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,-0.0288039168573048},{0,0.0437423778218583,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.883791722974271,0.654797020732978,-0.46009628480134,1.4404472143815,1.31654026747368,0.670201693636395,-0.943983022038112,0.386987973674263},{0,-0.0589460983761639,-0.384945784500547,0.827294500187726,5.13160143945555,1.69069749952818,0.38444018541183,0.692086144920505,-0.505503309994538,1.4404472143815,1.31654026747368,0.670201693636395,0.419283008803467,-0.0525235884648103},{0,-0.132150968880474,-0.384945784500547,0.827294500187726,-0.194870940739048,0.70689801141148,-0.653427716188535,-0.90388837030566,-0.229371530569382,1.4404472143815,1.31654026747368,0.670201693636395,-0.15102312444258,0.067470044373159}}
1 | 3 | {{14.9},{33.4},{13.8},{23.5},{19.8},{18.2},{24.8},{8.4},{22.2},{23.6},{22.6},{23.9},{29.4},{14.3},{11.8},{50},{39.8},{16.8},{18.9},{21.2},{5},{14.3},{15.2},{20.6},{20.3},{20.4},{22},{15.1},{10.4},{25},{13.8},{11.3},{20.6},{16.7},{23.3},{20},{24.8},{18.8},{18.5},{19.1},{20.1},{21},{24.8},{23},{13},{23.1},{14.1},{13.5},{24.5},{19.8}} | {{0,0.357442479512168,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.231044615049513,0.419875538351557,-0.368790283979482,1.4404472143815,1.31654026747368,0.670201693636395,-0.773912805274538,0.360477752465874},{0,-0.461692386885861,1.30469459320917,-1.48367062577922,-0.194870940739048,-0.858626391417706,2.05710464946903,-0.0201361270612644,-0.213284751329755,-0.389317153071619,-1.23320163678594,-0.257421805792172,0.474971489675403,-1.00131045276503},{0,0.715504028527324,-0.384945784500547,0.827294500187726,-0.194870940739048,0.818110127459455,-2.04541092383808,1.02768826260825,-1.16028933959525,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,2.94731723248442},{0,-0.465873845674761,3.71115210085635,-1.31092888583571,-0.194870940739048,-1.49167997507541,0.213094069581582,-2.03747774560649,1.51459276314552,-0.712216747328051,-0.572795512934914,-1.44271849950645,0.474971489675403,-1.2524599168445},{0,-0.464849553651963,-0.384945784500547,-1.32979983221609,-0.194870940739048,-0.961283729308144,-0.0251586248109549,-1.5005143573061,1.15158253681767,-0.712216747328051,-0.0387279519075608,-1.03044138864931,0.191220650988004,-0.635748455049358},{0,-0.465108827570234,3.71115210085635,-1.52286412980001,-0.194870940739048,-1.36335830271236,-0.810087022090477,-1.88459233643763,3.46970218376097,-0.712216747328051,-0.590023498774506,1.59782519306496,0.333747104730386,-0.780857034295274},{0,-0.46579382286048,0.895084804673483,-1.09463880809132,-0.194870940739048,-1.25214618666439,0.232676482819324,-1.5005143573061,0.91893917588741,-0.712216747328051,-0.894384581940632,0.0517860273506843,0.474971489675403,-0.966428582753994},{0,0.79064011628295,-0.384945784500547,0.827294500187726,-0.194870940739048,1.24584903533628,1.08451145866113,0.151393844201361,-0.855378459695536,1.4404472143815,1.31654026747368,0.670201693636395,-3.01507368295518,1.26880164755329},{0,-0.457932381585509,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,0.483984119370358,-0.173021536230126,1.81665033051956,-0.281683954986141,-0.87715659610104,0.412528499350682,0.474971489675403,-0.965033307953552},{0,-0.459905210700251,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,0.418709408577882,0.434791188026567,-0.436089103550765,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.46094921031916,-0.642724829051566},{0,-0.460685166396777,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,-0.490240939207346,-0.139461324461352,-0.408736659339045,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.438213085934395,-0.559008341025075},{0,-0.463214954298916,-0.384945784500547,-0.0683496472504681,-0.194870940739048,0.00540620249348394,1.33255535967254,0.692086144920505,-0.671634972050256,-1.03511634158448,-0.940325877512877,1.08247880449354,0.474971489675403,-1.11711826120168},{0,-0.462587575434952,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,0.630852218653428,-1.46695414553732,-0.197001191915944,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.41547696154963,-1.16037178001536},{0,0.125786034906225,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.451346763974119,0.576489859939171,-0.598678722471153,1.4404472143815,1.31654026747368,0.670201693636395,-2.49685030160375,0.359082477665433},{0,0.668952090032891,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.488879722679792,0.833784816833109,-0.759989270259339,1.4404472143815,1.31654026747368,0.670201693636395,-3.06905945847671,1.44181572280804},{0,-0.463720698485172,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,2.72780230286172,-0.702527099693013,-0.164089707783496,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.432203537638862,-1.28315596245422},{0,-0.46266866522009,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,2.62009903005413,0.404959888676546,-0.389501397312457,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.461550165148714,-0.849225499516908},{0,-0.0191811615036216,-0.384945784500547,0.827294500187726,5.13160143945555,1.69069749952818,-0.581625534316812,0.617507896545451,-0.800919546489827,1.4404472143815,1.31654026747368,0.670201693636395,0.0356735092719675,0.138629059195676},{0,-0.457164162568411,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,-0.245460773735561,0.390044239001535,1.32529023557951,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.474971489675403,-0.0525235884648103},{0,-0.0777279863733562,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0909539840688493,0.248995160517444,-0.765918610811809,0.225781012320612,1.4404472143815,1.31654026747368,0.670201693636395,0.392039723197053,-0.427852509783574},{0,3.62232742243239,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-1.15277925375098,1.02768826260825,-1.00512817225035,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,2.36409236589987},{0,-0.375671062446298,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.852515584105588,0.830055904414356,-0.763924873743039,-0.712216747328051,0.00147068171815396,1.18554808220782,0.474971489675403,0.654880735359031},{0,-0.338196912003908,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.0284223603505783,0.718188531851775,0.218500145875765,-0.712216747328051,-0.745075371330834,1.08247880449354,0.474971489675403,0.707901177775808},{0,-0.465116296366234,1.04868847537437,0.383101454618702,-0.194870940739048,-0.927064616677998,0.146187491019294,0.181225143551382,0.0404632832818518,-0.712216747328051,-0.95755386335247,-0.360491083506457,0.474971489675403,-0.426457234983133},{0,-0.432417907480137,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.305839881218601,0.158851669038866,-0.211661314892729,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.468360986550317,-0.512964272610506},{0,-0.455765363774778,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.469026658199791,0.0246108219637678,-0.519130337056851,-0.496950351157096,-0.0272426280144994,-0.566629638935027,-0.108655808959075,0.240484119627905},{0,-0.462336837283538,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.472290393739415,-0.102172200273824,-0.62726104277153,-0.927483143499006,-1.42845214296799,0.103320666207828,0.397348157524773,0.100956639583755},{0,0.273143246035933,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-0.728493633599883,0.915820890045669,-0.790195026996742,1.4404472143815,1.31654026747368,0.670201693636395,0.450232182525461,0.483261934904726},{0,2.29808855229234,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,-1.39592755145295,0.621236808964204,-0.927449198490806,1.4404472143815,1.31654026747368,0.670201693636395,-2.22471792295438,1.81295881972548},{0,-0.157715590616128,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.0953289389128667,0.76666439329556,-0.614617916580141,-0.604583549242574,-0.193779824463889,-2.16420344350645,-1.09492284339424,-0.53528866941757},{0,0.452672829419196,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,0.0548028959098273,0.751748743620549,-0.856755920914831,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.212578623619075},{0,0.510530391115256,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.01733422885659,1.02768826260825,-0.960459072710346,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.38879528039126},{0,-0.215911382073883,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0909539840688493,-0.470658525969602,-1.13880985268708,0.0940858807472748,1.4404472143815,1.31654026747368,0.670201693636395,0.212855024851921,-0.0427566648617198},{0,0.0500673810626329,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,0.52967641692509,0.789037867808076,-0.603844202043511,1.4404472143815,1.31654026747368,0.670201693636395,0.46806050913554,0.702320078574042},{0,-0.317652388150818,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,0.572104978940199,1.02768826260825,-0.869202266932035,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.148552858089722,-0.872945171124413},{0,-0.459301305195143,-0.384945784500547,-0.934961569488072,-0.194870940739048,-0.627647381164219,-0.51961455906396,-0.411671931030301,-0.0761781649663299,-0.604583549242574,-0.905869905833693,0.154855305064969,0.281263716282734,-0.31204470134693},{0,-0.464985058950813,3.19913986518674,-1.47496095821904,-0.194870940739048,-1.47457041876034,1.16120924384229,-0.933719669655682,2.11295207779868,-0.604583549242574,-0.45219961205777,-2.11266880464931,0.414475370167041,-1.05712144478269},{0,-0.45654318552959,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.402120079637503,0.762935480876807,-0.58018138609776,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.455440457714922,0.357687202864991},{0,-0.454513806959422,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,0.154346829868353,0.43852010044532,-0.627851383294085,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.393241632856159,-0.445991082189314},{0,0.137595268352395,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0909539840688493,-0.0741146579053122,0.2744479540202,0.00646950819138634,1.4404472143815,1.31654026747368,0.670201693636395,0.432704333330157,0.186068402410687},{0,0.925377196115106,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0652896495962397,-0.728493633599883,-0.586930814711678,-0.348817096299701,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.155372356800973},{0,-0.362739375658479,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,0.839731293189351,0.554116385426655,0.347440355010512,-0.712216747328051,-0.745075371330834,1.08247880449354,0.308006206197855,-0.232514037721764},{0,-0.465113095453662,2.30311845276492,-1.02786469012996,-0.194870940739048,-1.43179652797265,0.661857706279854,-1.8473032122501,1.86176218545148,-0.496950351157096,-0.825472638582264,-1.18504530522074,0.22277077953955,-0.577146913430815},{0,0.151707024908145,-0.384945784500547,0.827294500187726,-0.194870940739048,-0.345339701965513,0.134764416630611,-0.288617821211461,-0.0534008598044117,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,-0.40552811297651},{0,0.333305464783287,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.420341276347693,0.964296751489454,-0.663025839429661,1.4404472143815,1.31654026747368,0.670201693636395,-0.453403562846131,0.790222391001857},{0,-0.357246609686227,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.366218988701642,-1.60865281744992,0.475150688056602,-0.712216747328051,-0.745075371330834,1.08247880449354,0.374311555725232,-0.985962429960175},{0,0.60392021629382,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,1.09919826858944,0.815140254739345,-0.71064664158244,1.4404472143815,1.31654026747368,0.670201693636395,-2.68575043635999,0.843242833418634},{0,-0.297614675454841,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.103488277761926,0.912091977626916,0.111697706336836,-0.712216747328051,-0.745075371330834,1.08247880449354,-1.01329314571325,0.933935695447331},{0,-0.46809634597006,3.71115210085635,-1.50834801719972,-0.194870940739048,-1.17515318324656,0.776088450166686,-1.59373716777491,2.36689689258447,-0.712216747328051,-0.900127243887163,-0.978906749792168,0.415276643273112,-1.06828364318622},{0,-0.443533609869204,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.615894757482862,-0.02759395189877,0.245459029739115,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.474971489675403,0.320014783253071}}
2 | 4 | {{18.6},{9.7},{21.4},{10.4},{16},{25},{20.8},{22.6},{20},{13.5},{21.2},{24.7},{19.4},{21.6},{24.5},{23.4},{27.5},{5.6},{8.8},{5},{22.6},{22.3},{13.1},{21.8},{22.2},{16.7},{19.7},{26.6},{12.1},{16.5},{34.9},{23.1},{18.7},{31.6},{21.4},{27.9},{8.4},{21.2},{37.3},{25},{23.2},{16.1},{19.6},{22.5},{23.2},{22.2},{18.2},{20.5},{22},{15.4}} | {{0,-0.461968732337845,2.68712762951712,-1.55479957752066,-0.194870940739048,-1.38046785902743,-0.449444244962048,-2.01137535867522,3.53099920801961,-0.712216747328051,-0.147838528891644,-0.308956444649314,0.429198763491096,-0.817134179106753},{0,0.765630319392977,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.83326811376254,0.915820890045669,-0.867185270146638,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.67901243888309},{0,1.05966614818729,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,0.113550135623056,0.580218772357924,-0.778043851240816,1.4404472143815,1.31654026747368,0.670201693636395,0.338955379919848,-0.0748479852718744},{0,9.02380336815224,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,1.31950041751405,0.72564635668928,-1.04108974908267,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.497214682909142},{0,-0.451376912639605,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,-0.315631087837472,0.781580042970571,1.61642650328628,-0.281683954986141,-0.87715659610104,0.412528499350682,0.286471991472196,0.110723563186845},{0,-0.463978905432585,0.690279910405638,-0.981413129809016,-0.194870940739048,-1.14093407061641,0.573736846710011,-1.91442363578765,1.61455709163152,-0.712216747328051,-1.1126057359088,-1.08197602750645,0.474971489675403,-1.16734815401757},{0,0.815809958801485,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,-0.834565038637657,0.565303122682913,-0.778043851240816,1.4404472143815,1.31654026747368,0.670201693636395,-0.580205031881869,0.0632842199718343},{0,-0.0150285109278633,-0.384945784500547,0.827294500187726,-0.194870940739048,1.69069749952818,-0.0773783934449356,0.330381640301491,-0.503584703296233,1.4404472143815,1.31654026747368,0.670201693636395,0.413273460507935,-0.1362400764913},{0,-0.458864914114597,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,0.195143524113651,0.0768155958263062,0.255544013666099,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.242201652361773,-0.233909312522205},{0,0.405280117889383,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,-0.36458712093183,0.293092516113964,-0.370708890677786,1.4404472143815,1.31654026747368,0.670201693636395,-3.46528900942883,0.459542263297221},{0,-0.456607203781014,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-0.147548707546847,-1.20965918864338,1.07646170532253,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.399751976842986,-0.571565814229049},{0,-0.452694621648099,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,0.0841765157664425,-2.45884484892555,1.07646170532253,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.450532659940237,-0.865968797122206},{0,-0.441569316521319,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.113550135623056,0.699543969758011,-0.48587448761958,-0.604583549242574,-0.302890401447972,1.03094416563639,0.41818125828262,0.265599066035852},{0,-0.466783971815851,-0.384945784500547,-0.773832719624799,-0.194870940739048,-0.884290725890315,0.426868747426941,0.240887742251426,0.705629467070828,-0.927483143499006,-1.11834839785533,-0.566629638935027,0.474971489675403,-0.62877208104715},{0,-0.439868564975132,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.380905798629948,-1.11270746575581,-0.566259188774168,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,-0.00787479485068223},{0,-0.448850325650038,-0.384945784500547,-0.230930108373771,-0.194870940739048,-1.36335830271236,0.139660019940047,-2.4700315861818,0.863151996505951,-0.712216747328051,-0.756560695223896,0.154855305064969,0.277357509890638,-0.852016049117791},{0,-0.453836280465176,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.926220284989382,0.278176866438953,-0.371397621287434,-0.604583549242574,-0.302890401447972,1.03094416563639,0.453537434088003,-0.589704386634788},{0,2.20264800912647,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-0.281361864671423,1.02768826260825,-0.956326689052461,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.83109739213122},{0,1.67330242751157,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-2.92335578399688,0.699543969758011,-1.02977488906703,1.4404472143815,1.31654026747368,0.670201693636395,-0.637496058965947,2.36967346510164},{0,6.77725354973445,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-0.77744966669424,1.02768826260825,-1.03671139020705,1.4404472143815,1.31654026747368,0.670201693636395,0.355481637732563,1.30228824276389},{0,-0.462523557183527,-0.384945784500547,-1.32979983221609,-0.194870940739048,-0.961283729308144,0.283264383683494,-2.059851220119,0.827387199847821,-0.712216747328051,-0.0387279519075608,-1.03044138864931,0.257726318791898,-0.879921545126621},{0,-0.464800472992538,2.30311845276492,-1.02786469012996,-0.194870940739048,-1.43179652797265,0.25389076382688,-1.00084009319323,1.86176218545148,-0.496950351157096,-0.825472638582264,-1.18504530522074,0.474971489675403,-0.843644400315142},{0,-0.208644243566307,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-1.44814732008693,0.803953517483087,-0.883714804778182,-0.604583549242574,-0.193779824463889,-2.16420344350645,-2.61263426543101,0.347920279261901},{0,-0.168984936808615,-0.384945784500547,0.827294500187726,-0.194870940739048,-0.345339701965513,-0.648532112879101,-1.19847245138713,0.278222928740924,1.4404472143815,1.31654026747368,0.670201693636395,0.43510815264837,-0.450176906590638},{0,-0.443980670658321,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,-0.12470255876948,-1.07168942914953,0.926416822506441,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-0.119496778886002},{0,0.713295398853167,-0.384945784500547,0.827294500187726,-0.194870940739048,1.24584903533628,0.410550069728821,1.02768826260825,-0.823450876434013,1.4404472143815,1.31654026747368,0.670201693636395,-0.307772175817723,0.191649501612452},{0,-0.460230636811661,0.690279910405638,-0.981413129809016,-0.194870940739048,-1.14093407061641,-0.320526691146908,-0.997111180774478,1.61455709163152,-0.712216747328051,-1.1126057359088,-1.08197602750645,0.461550165148714,-0.0274086420568633},{0,-0.46357879136118,-0.384945784500547,-1.14834842471241,-0.194870940739048,-1.05538628904105,0.767929111317627,-0.609304289224195,0.44519090653693,-0.819849945413529,-1.08963508812268,-0.205887166935029,0.42889828607632,-0.992938803962382},{0,0.554136423073289,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,0.399126995340138,1.02768826260825,-0.931630777192238,1.4404472143815,1.31654026747368,0.670201693636395,0.266740641235197,0.929749871046007},{0,-0.46703257602555,-0.384945784500547,-1.52576735232007,-0.194870940739048,-0.465106596171025,0.621061012034556,-0.475063442149097,1.34506664308511,-1.03511634158448,-0.0846692474798062,-1.54578777722074,0.405461047723742,-0.697140546268784},{0,-0.466113914117604,3.45514598302154,-1.37189655875695,-0.194870940739048,-1.23503663034931,1.41088501262351,-2.11205599398154,0.919135956061595,-0.819849945413529,-1.06092177839002,-0.308956444649314,0.462151119978267,-1.62778883816327},{0,-0.426803506830178,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,0.363225904404276,-0.195395010742642,-0.000122627643812377,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.458044595309653,-0.458548555393287},{0,-0.445998312549061,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,-0.110015748841174,0.856158291345625,-0.484447831356738,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.474971489675403,0.480471385303843},{0,-0.468169966959199,4.73517657219557,-1.60850919414175,-0.194870940739048,-1.38046785902743,1.07145651650264,-1.19101462654962,2.35745144422359,-0.604583549242574,-1.0379511306039,-1.95806488807788,0.434907834371852,-1.35291970247629},{0,0.366734728706484,-0.384945784500547,0.827294500187726,-0.194870940739048,0.70689801141148,0.0809127802268177,-0.262515434280191,-0.280091620465576,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,-0.0594999624670177},{0,0.805449671779231,-0.384945784500547,0.827294500187726,-0.194870940739048,0.741117124041626,-0.899839749430133,1.02768826260825,-1.10568284125891,1.4404472143815,1.31654026747368,0.670201693636395,-0.174159885380381,-0.211584915715141},{0,0.989715538797076,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,-0.366218988701642,0.576489859939171,-0.842292578112231,1.4404472143815,1.31654026747368,0.670201693636395,-2.80974744952448,2.84267162245131},{0,-0.444184462092023,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.229142096037442,-0.266244346698944,-0.552779746842493,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,-0.101358206480263},{0,-0.4612837370476,3.71115210085635,-1.08157430675105,-0.194870940739048,-1.38046785902743,1.61323661608019,-1.66831541614997,0.779225252216032,-0.712216747328051,-1.10112041201574,0.154855305064969,0.474971489675403,-1.40733541969351},{0,0.14180020050015,-0.384945784500547,0.827294500187726,-0.194870940739048,-0.345339701965513,1.47126412010655,0.170038406295124,-0.0600913857267029,1.4404472143815,1.31654026747368,0.670201693636395,0.458745709277465,-0.92596561354119},{0,-0.0889301134018469,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0652896495962397,0.452978631743931,0.0954601579200698,-0.313003104598024,1.4404472143815,1.31654026747368,0.670201693636395,0.43961531387002,0.0995613647833133},{0,0.217863485930579,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,0.433396218506188,0.0880023330825642,-0.655449802723537,1.4404472143815,1.31654026747368,0.670201693636395,-2.51928594857373,-0.225537663719557},{0,-0.310044885939832,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-1.23274077447176,1.02768826260825,-0.954949227833165,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.0789085448961881,-0.0511283136643689},{0,-0.462798835664654,3.19913986518674,-1.47496095821904,-0.194870940739048,-1.47457041876034,0.302846796921236,-1.95171275997518,2.11295207779868,-0.604583549242574,-0.45219961205777,-2.11266880464931,0.187915399425461,-1.21060167283126},{0,0.0950551402805855,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-0.176922327403461,0.375128589326524,-0.671487386919617,1.4404472143815,1.31654026747368,0.670201693636395,0.289476765619962,0.713482276977574},{0,-0.464274456359997,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,0.255522631596691,-1.28050852459969,1.4392751514762,-0.604583549242574,-1.22171631289288,0.670201693636395,0.40295706926727,-1.11153716199991},{0,-0.392257124419618,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.705647484822516,-0.10963002511133,0.129752287318313,-0.712216747328051,-0.745075371330834,1.08247880449354,0.415376802411371,-0.330183273752669},{0,-0.465070416619379,0.690279910405638,-0.981413129809016,-0.194870940739048,-1.14093407061641,-0.0724827901354997,-0.352009332330257,1.61455709163152,-0.712216747328051,-1.1126057359088,-1.08197602750645,0.445624862165552,-0.588309111834347},{0,-0.45800493560379,-0.384945784500547,-0.0683496472504681,-0.194870940739048,0.00540620249348394,1.03555542556678,0.628694633801709,-0.562717145638837,-1.03511634158448,-0.940325877512877,1.08247880449354,0.44041658697609,-0.99991517796459},{0,-0.177991237813234,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-0.917790294898062,0.837513729251862,-0.987368761530151,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.0237545718191611,1.08881119829634}}
2 | 5 | {{20.6},{18.9},{12},{19.1},{14.5},{17.8},{19.5},{22.9},{13.4},{17.7},{23.6},{22.8},{24.6},{19.6},{23.8},{22.3},{36.1},{21.5},{33.4},{15.6},{14.5},{14.4},{50},{14.9},{26.6},{17},{29.8},{50},{17.5},{14.9},{10.8},{24},{19.4},{50},{43.8},{20.8},{18.4},{32.7},{11.7},{19.5},{36.2},{16.6},{22},{27.5},{11.8},{18.5},{13.1},{8.7},{27.1},{23.1}} | {{0,0.0462540272194264,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0909539840688493,-0.415175021795998,-0.717442749368024,-0.187162183206692,1.4404472143815,1.31654026747368,0.670201693636395,0.388033357666698,-0.306463602145164},{0,-0.462851117236651,-0.384945784500547,-0.934961569488072,-0.194870940739048,-0.627647381164219,-0.369482724241266,-0.158105886555115,-0.0848364926304715,-0.604583549242574,-0.905869905833693,0.154855305064969,0.474971489675403,-0.553427241823309},{0,1.13325512820015,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,-1.39592755145295,0.927007627301927,-0.704497261139158,1.4404472143815,1.31654026747368,0.670201693636395,1.68560518071625e-05,1.5715762792491},{0,0.00214651895856542,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,-0.255251980354432,0.822598079576851,-0.488235849709801,1.4404472143815,1.31654026747368,0.670201693636395,-0.182172616441091,1.0706726258906},{0,-0.364235268800106,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.565306856618694,1.02768826260825,0.276697882390991,-0.712216747328051,-0.745075371330834,1.08247880449354,0.451333933046308,0.869753054627022},{0,-0.220988029411874,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-1.58848794829075,0.796495692645582,-0.985450154831846,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.0752363688842239,2.04736498619965},{0,-0.466041360099322,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.473922261509227,-0.974737706261962,0.835504382032953,-0.604583549242574,-1.22171631289288,0.670201693636395,0.474971489675403,-0.536683944218011},{0,-0.46307091323321,1.6631031581779,-1.61867047296196,-0.194870940739048,-1.22648185219178,0.539467623543962,-1.04558704221826,2.58733988271526,-1.03511634158448,-0.584280836827975,0.412528499350682,0.474971489675403,-1.06967891798667},{0,0.282561397791384,-0.384945784500547,0.827294500187726,-0.194870940739048,0.356152106952482,-0.0920652033732432,0.472080312214095,-0.743312150497157,1.4404472143815,1.31654026747368,0.670201693636395,-3.4751046049782,1.34554176157757},{0,-0.0756537950271912,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.353434697785406,0.595134422032935,-0.475051578039403,1.4404472143815,1.31654026747368,0.670201693636395,0.420184441047797,0.140024333996117},{0,-0.463658814175461,-0.384945784500547,-1.30512244079559,-0.194870940739048,-0.713195162739584,1.38314326053671,0.516827261239127,-0.0546307358930682,-0.927483143499006,-0.95755386335247,-0.566629638935027,0.474971489675403,-1.13665210840786},{0,-0.458938535103736,-0.384945784500547,-0.34705900917613,-0.194870940739048,-0.217018029602465,0.906637871751638,0.341568377557749,-0.420740249964332,-0.496950351157096,-0.0272426280144994,-0.566629638935027,0.46185064256349,-0.486454051402117},{0,-0.449226966362587,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,0.44318742512506,-2.15307403058782,0.926416822506441,-0.604583549242574,-0.859928610261448,0.360993860493541,0.442720247156045,-1.1952536500264},{0,-0.458678194214608,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,-0.379273930860137,-0.941177494493187,1.67226287771128,-0.281683954986141,-0.87715659610104,0.412528499350682,0.474971489675403,-0.617609882643618},{0,-0.224251893263684,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,0.260418234906127,0.882260678276894,-0.704841626443982,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.524716869286451,-0.355298220160616},{0,-0.208340156872038,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,0.395863259800515,0.84870046650812,-0.62489968068131,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.19469250872345,-0.324602174550903},{0,-0.463813524949738,1.30469459320917,-1.48367062577922,-0.194870940739048,-0.858626391417706,1.75684097982364,-1.1686411520371,0.240687110515128,-0.389317153071619,-1.23320163678594,-0.257421805792172,0.442720247156045,-0.937127811944722},{0,-0.292943477042542,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-0.061059715746817,0.927007627301927,-0.941961736336953,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.233587966471509,0.0632842199718343},{0,-0.466244084562168,-0.384945784500547,-1.48367062577922,-0.194870940739048,-0.978393285623217,1.36845645060841,-0.993382268355725,1.24436438894592,-0.819849945413529,-1.23320163678594,-0.102817889220744,0.452235365290638,-1.49384245732088},{0,-0.239760314671352,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-0.867202394033894,1.02768826260825,-0.99184551049286,-0.604583549242574,-0.193779824463889,-2.16420344350645,-1.80495097451142,0.419079294084417},{0,0.436387653227572,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0995087622263859,0.307742400230672,0.509369436401622,-0.728110882041362,1.4404472143815,1.31654026747368,0.670201693636395,-2.66451669904911,0.557211499328126},{0,-0.29592672755894,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-1.86100986584934,1.02768826260825,-1.02982408411057,-0.712216747328051,0.00147068171815396,1.18554808220782,0.474971489675403,2.89708733966852},{0,-0.255216454507024,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,2.88772534430328,0.885989590695647,-0.731456145002508,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.198532268080902,-1.38780157248733},{0,0.54537872627837,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.927852152759193,0.80768242990184,-0.509980058957247,1.4404472143815,1.31654026747368,0.670201693636395,-3.43343840346251,0.706505902975367},{0,-0.466604720711861,1.6631031581779,-1.61867047296196,-0.194870940739048,-1.22648185219178,1.2721762521895,-1.41474937167478,2.58733988271526,-1.03511634158448,-0.584280836827975,0.412528499350682,0.404359297202895,-1.08223639119064},{0,-0.318844194598177,-0.384945784500547,1.04213296667209,5.13160143945555,2.55473009343937,-0.0496366413581342,0.878531765858142,-0.877319449117168,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.285036051432958,0.205602249616867},{0,-0.456276442815319,1.91910927601271,-1.3007676070155,-0.194870940739048,-1.15804362693148,0.647170896351547,-1.61611064228743,0.508652512711604,-0.604583549242574,-0.222493134196543,-1.90653024922074,0.334147741283421,-1.26780793964936},{0,-0.31356162188477,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,2.16970352558605,0.684628320083,-0.768352427662203,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.249913906007706,-1.6626707081743},{0,-0.466376388948446,-0.384945784500547,-1.1628645373127,-0.194870940739048,-1.1152697361438,-0.237301434886501,-0.892701633049402,2.20435646870763,-0.819849945413529,-0.486655583736954,-0.0512832503636006,0.362192299995907,-0.434828883785782},{0,0.201220874501834,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.296319325841989,0.893447415533153,-0.718616238636934,1.4404472143815,1.31654026747368,0.670201693636395,-0.31518395204888,0.578140621334748},{0,0.896270231133944,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,-0.498400278056405,0.900905240370658,-0.805396295452536,1.4404472143815,1.31654026747368,0.670201693636395,-1.09131711441692,1.41530550159965},{0,-0.469023543644863,0.536676239704754,-1.46479967939883,-0.194870940739048,-0.294011033020294,0.678176383977973,-0.269973259117697,0.274139740126585,-1.03511634158448,-0.808244652742672,-1.85499561036359,0.474971489675403,-1.20920639803082},{0,-0.446249050700475,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-0.909630956049003,-0.389298456517784,1.25690912505021,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.474971489675403,0.35629192806455},{0,0.13527247279653,-0.384945784500547,0.827294500187726,5.13160143945555,0.501583335630603,0.854418103117657,0.908363065208163,-1.07050838512333,1.4404472143815,1.31654026747368,0.670201693636395,0.258928228451005,-1.383615748086},{0,-0.460962578819618,-0.384945784500547,-1.38060622631712,-0.194870940739048,-1.08960540167119,2.70985175739379,-1.32525547362472,-0.0184723788865673,-0.927483143499006,-0.923097891673285,-0.463560361220742,0.441217860082161,-1.40594014489307},{0,-0.460407753973936,-0.384945784500547,0.0622953661521859,-0.194870940739048,-1.15804362693148,-0.0316860958902032,-0.993382268355725,0.274385715344316,-0.604583549242574,-0.222493134196543,-0.102817889220744,0.375413306246079,-0.471106028597261},{0,-0.434507036418301,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.550620046690386,0.856158291345625,-0.522869160366367,-0.712216747328051,0.00147068171815396,1.18554808220782,0.392740837164865,0.193044776412894},{0,-0.468309740141476,1.40709704034309,-1.57947696894116,-0.194870940739048,-1.1152697361438,1.7650003186727,-0.86287033369938,1.72436042882677,-1.03511634158448,-0.87715659610104,-1.75192633264931,0.453337115811486,-1.1380473832083},{0,1.01482136306419,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.0792809124570067,0.841242641670614,-0.644725283230452,1.4404472143815,1.31654026747368,0.670201693636395,-2.49244329952035,0.212578623619075},{0,-0.451431328153316,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,-0.527773897913019,0.72564635668928,-0.650235128107633,-0.604583549242574,-0.302890401447972,1.03094416563639,0.462651915669561,0.699529528973159},{0,-0.462348573962966,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,-0.0251586248109549,-0.381840631680279,-0.459899504627155,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.474971489675403,-0.585518562233464},{0,-0.445235428386248,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,-0.211191550569511,0.486995961889106,1.06096526660546,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.43330528815971,0.71906337617934},{0,-0.465923993305044,1.35589581677613,-0.916090623107689,-0.194870940739048,-1.19226273956163,0.702654400525151,-1.19474353896837,0.963706665514506,-0.389317153071619,-0.618736808507159,-1.44271849950645,0.463453188775632,-0.578542188231256},{0,1.07082666335235,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,1.13020375621587,1.02768826260825,-1.016984177745,1.4404472143815,1.31654026747368,0.670201693636395,-1.70389040400821,0.855800306622608},{0,-0.173107712200375,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-2.05030652714752,0.945652189395691,-1.07582144982633,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.474971489675403,2.18270664184248},{0,-0.466453210850156,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.431493699494118,-0.478792354567849,1.02436415420704,-0.604583549242574,-1.22171631289288,0.670201693636395,0.454038229779298,-0.430643059384457},{0,0.46035395261932,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,0.508462135917535,0.982941313583218,-0.888978674437631,1.4404472143815,1.31654026747368,0.670201693636395,0.425693193652036,0.484657209705168},{0,1.14966513998205,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,-0.0121036826524597,1.02768826260825,-0.796246017352932,1.4404472143815,1.31654026747368,0.670201693636395,-3.40699639096216,1.78644859851709},{0,-0.454274805487436,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,0.0205336727437776,0.882260678276894,1.18941352530475,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.474971489675403,0.767897994194793},{0,-0.450322745432809,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,0.353434697785406,-0.676424712761744,0.495714216258938,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-0.945499460747371}}
2 | 6 | {{18.7},{22.4},{34.7},{15.6},{15.6},{17.8},{13.1},{14.5},{8.3},{31.2},{33},{22.7},{10.5},{21},{17.1},{13.3},{12.8},{19.9},{23.4},{13.8},{12.5},{21.1},{25},{30.1},{32},{24.6},{20.4},{25.3},{24.7},{28.4},{19.9},{18.1},{50},{22.9},{23.8},{18.4},{23.9},{19.6},{12.7},{20.7},{22},{28.4},{17.8},{18.9},{22.8},{20.8},{19.6},{23.1},{26.5},{15.6}} | {{0,-0.463134931484635,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.312367352297849,-0.51981039117413,0.629426344617672,-0.604583549242574,-1.22171631289288,0.670201693636395,0.474971489675403,-0.607842959040528},{0,-0.463015430748641,-0.384945784500547,-0.0683496472504681,-0.194870940739048,0.00540620249348394,0.707550003834587,-0.124545674786341,-0.518589191577843,-1.03511634158448,-0.940325877512877,1.08247880449354,0.425793352790295,-0.554822516623751},{0,-0.466786105757565,-0.384945784500547,-0.773832719624799,-0.194870940739048,-0.884290725890315,1.67361572356323,-0.422858668286559,0.705629467070828,-0.927483143499006,-1.11834839785533,-0.566629638935027,0.43420672040404,-1.34175750407276},{0,-0.0325172302462738,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-1.1283012372038,1.02768826260825,-1.04340191612934,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.474971489675403,1.78226277411576},{0,-0.0925226042776378,-0.384945784500547,1.04213296667209,5.13160143945555,2.55473009343937,-0.0121036826524597,0.378857501745276,-0.879238055815472,-0.604583549242574,-0.193779824463889,-2.16420344350645,-2.61884413200306,0.191649501612452},{0,0.488757783805667,-0.384945784500547,0.827294500187726,5.13160143945555,1.69069749952818,0.0858083835362535,0.93073653972068,-0.693920326776712,1.4404472143815,1.31654026747368,0.670201693636395,0.282966421633136,0.55163040012636},{0,-0.346812701674835,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.748076046837626,0.841242641670614,0.125177148268511,-0.712216747328051,-0.745075371330834,1.08247880449354,0.0930646954943038,0.656276010159473},{0,-0.325153193276096,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.142653104237412,1.02768826260825,0.315955527140906,-0.712216747328051,-0.745075371330834,1.08247880449354,0.272950507807248,-0.0846149088749649},{0,1.22254991922924,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,-0.429861831724306,0.856158291345625,-0.79850898935606,1.4404472143815,1.31654026747368,0.670201693636395,-3.42342248963662,1.49902198962614},{0,-0.466444675083299,2.43112151168232,-1.2514128241745,-0.194870940739048,-0.755969053527267,1.16610484715173,-1.65339976647496,1.44271880452444,-0.604583549242574,-0.383287668699402,-0.669698916649312,0.385529379210226,-1.26083156564715},{0,-0.467616209084374,0.511075627921273,-1.59979952658158,-0.194870940739048,-1.336838490424,1.54143443420847,-0.482521266986602,2.79927213031254,-0.819849945413529,-1.26765760846513,-0.154352528077886,0.438313245072654,-0.780857034295274},{0,-0.23044459211818,-0.384945784500547,1.04213296667209,-0.194870940739048,0.279159103534653,-0.498400278056405,0.721917444270527,-0.546433586225025,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.457043003927064,-0.279953380936775},{0,2.13304950011909,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-2.45990533737031,1.02768826260825,-1.01614786200471,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,2.04178388699788},{0,-0.461147164777893,-0.384945784500547,-0.934961569488072,-0.194870940739048,-0.627647381164219,-0.504927749135653,-1.15372550236209,0.197493862281513,-0.604583549242574,-0.905869905833693,0.154855305064969,0.474971489675403,-0.680397248663486},{0,-0.432105285019012,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.480720383830733,0.968025663908207,-0.827927625396723,-0.712216747328051,0.00147068171815396,1.18554808220782,0.4467266126864,0.131652685193468},{0,-0.443044937216661,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.493504674746969,0.960567839070702,-0.917069044302546,-0.712216747328051,0.00147068171815396,1.18554808220782,0.426294148481589,1.0706726258906},{0,0.532254984736277,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,-0.868834261803706,0.800224605064335,-0.843965209592804,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.28833549475947},{0,-0.00569464987012094,-0.384945784500547,0.827294500187726,-0.194870940739048,0.0652896495962397,0.0123743338947183,0.431062275607815,-0.245655089983194,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.368849401268523},{0,-0.464383287387419,0.690279910405638,-0.981413129809016,-0.194870940739048,-1.14093407061641,-0.263411319203492,-1.90323689853139,1.61455709163152,-0.712216747328051,-1.1126057359088,-1.08197602750645,0.474971489675403,-0.727836591878497},{0,1.50400616161857,-0.384945784500547,0.827294500187726,-0.194870940739048,0.818110127459455,-3.29868537105362,1.02768826260825,-1.17858989579446,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,3.3938051686257},{0,0.156832752905561,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,0.400758863109951,0.878531765858142,-0.913035050731752,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.798594039804506},{0,-0.465471597661641,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.199768476180828,-1.41474937167478,1.20653340045884,-0.604583549242574,-1.22171631289288,0.670201693636395,0.474971489675403,-0.78643813349704},{0,-0.433304560262371,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,0.417077540808069,-1.20593027622463,0.584609659947029,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-1.05014507078048},{0,-0.467874416031787,4.22316433652596,-1.50689640593969,-0.194870940739048,-1.38902263718497,0.927852152759193,-1.35508677297474,4.22769941472174,-0.604583549242574,-1.43419480491452,-0.978906749792168,0.35037352168136,-1.27617958845201},{0,-0.461295473727027,1.91910927601271,-1.3007676070155,-0.194870940739048,-1.15804362693148,1.01597301232904,-1.1686411520371,0.125865878878159,-0.604583549242574,-0.222493134196543,-1.90653024922074,0.444623270782963,-0.97200968195576},{0,-0.463909552326875,-0.384945784500547,-1.2122193201537,-0.194870940739048,-0.533544821431317,0.25389076382688,0.0357975592200264,-0.105891971268271,-0.604583549242574,-0.808244652742672,-1.18504530522074,0.461950801701749,-1.02642539917298},{0,-0.432232254551005,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,-0.19324100510158,-0.840496859186864,0.584609659947029,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-0.829691652310727},{0,-0.454600231598846,-0.384945784500547,-0.797058499785271,-0.194870940739048,-1.06394106719858,0.0156380694343417,-2.45511593650679,1.07646170532253,-0.819849945413529,-1.1700323553741,-0.515095000077885,0.339456175611142,-1.09339858959417},{0,-0.467505244115237,3.96715821869115,-1.69270264722346,-0.194870940739048,-1.38902263718497,0.364857772174088,-1.37000242264975,2.78190627994072,-0.927483143499006,-0.71061939965165,-0.82430283322074,0.474971489675403,-1.09897968879594},{0,-0.456676556886725,-0.384945784500547,-1.38060622631712,-0.194870940739048,-1.08960540167119,0.759769772468567,-0.545912778105399,-0.0184723788865673,-0.927483143499006,-0.923097891673285,-0.463560361220742,0.0851521235718529,-0.976195506357084},{0,-0.0603182228983697,-0.384945784500547,0.827294500187726,-0.194870940739048,1.69069749952818,0.149451226558918,0.695815057339258,-0.608665316311044,1.4404472143815,1.31654026747368,0.670201693636395,0.0117354752280954,0.0758416931758078},{0,-0.410184368760288,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.286528119223117,0.960567839070702,-0.699577756784532,-0.712216747328051,0.00147068171815396,1.18554808220782,0.452636001843674,0.462332812898104},{0,-0.274039954367642,-0.384945784500547,1.04213296667209,5.13160143945555,0.279159103534653,2.68047813753717,0.960567839070702,-0.734014287266913,-0.604583549242574,-0.193779824463889,-2.16420344350645,0.401955477884682,-1.63616048696591},{0,-0.465213390714228,1.04868847537437,0.383101454618702,-0.194870940739048,-0.927064616677998,0.461137970592991,-0.702527099693013,0.0655035604468979,-0.712216747328051,-0.95755386335247,-0.360491083506457,0.456041412544475,-0.765509011490418},{0,-0.430305305183117,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,0.665121441819478,0.554116385426655,0.0342155127514768,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.462852233946079,-0.60923823384097},{0,0.134887296317124,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.0972314579249377,1.02768826260825,-0.751675307900021,1.4404472143815,1.31654026747368,0.670201693636395,0.462852233946079,0.410707645281768},{0,-0.464300063660567,-0.384945784500547,-1.14834842471241,-0.194870940739048,-1.05538628904105,0.37464897879296,-0.911346195143165,0.613290370334499,-0.819849945413529,-1.08963508812268,-0.205887166935029,0.474971489675403,-0.561798890625959},{0,-0.37878768431983,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.317262955607285,0.624965721382957,0.235915191291141,-0.712216747328051,-0.745075371330834,1.08247880449354,0.431201946256274,0.0256118003599138},{0,-0.34904373773699,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.728493633599883,0.80768242990184,0.344488652397736,-0.712216747328051,-0.745075371330834,1.08247880449354,0.107086974850547,1.24926780034711},{0,-0.46570953216277,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,0.245731424977819,-1.26559287492467,1.4392751514762,-0.604583549242574,-1.22171631289288,0.670201693636395,0.399852135981245,-0.962242758352669},{0,-0.463521174934898,0.255069510086467,-0.918993845627748,-0.194870940739048,-1.39757741534251,-0.45923545158092,-1.90323689853139,1.45875638872052,-0.712216747328051,-0.526854217362669,0.000251388493540901,0.46806050913554,-0.773880660293067},{0,-0.463851935900593,1.30469459320917,-1.48367062577922,-0.194870940739048,-0.858626391417706,0.74508296254026,-0.53472604084914,-0.0800645734064843,-0.389317153071619,-1.23320163678594,-0.257421805792172,0.439515154731761,-0.658072851856422},{0,-0.411599172116777,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.0137355504222721,0.949381101814444,-0.917019849258999,-0.712216747328051,0.00147068171815396,1.18554808220782,0.474971489675403,0.671624032964329},{0,-0.468246788860908,3.45514598302154,-1.21947737645385,-0.194870940739048,-1.38902263718497,-0.442916773882801,-0.926261844818176,1.86299206154013,-0.819849945413529,0.185235864007136,1.13401344335068,0.474971489675403,0.16095345600274},{0,-0.45992014829225,-0.384945784500547,-0.230930108373771,-0.194870940739048,-1.36335830271236,-0.154076178626094,-2.41036898748176,0.863151996505951,-0.712216747328051,-0.756560695223896,0.154855305064969,0.414976165858336,-1.13386155880697},{0,-0.0772425146333845,-0.384945784500547,0.827294500187726,-0.194870940739048,1.69069749952818,-1.30127922080386,0.885989590695647,-0.703070604876316,1.4404472143815,1.31654026747368,0.670201693636395,0.313615117940352,-0.482268227000793},{0,-0.342414647801948,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,0.27184130929481,0.941923276976938,-0.620718101979878,-0.712216747328051,0.00147068171815396,1.18554808220782,0.474971489675403,-0.193446343309402},{0,0.973081463135187,-0.384945784500547,0.827294500187726,-0.194870940739048,0.501583335630603,-3.74744900775189,1.02768826260825,-0.994797213105636,1.4404472143815,1.31654026747368,0.670201693636395,-2.18405331282127,-0.0441519396621613},{0,-0.457500258388391,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,1.01434114455922,-0.0425096015737811,-0.332877902190713,-0.604583549242574,-0.302890401447972,1.03094416563639,0.461750483425231,-0.833877476712051},{0,-0.365543375070887,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.65669145172816,0.968025663908207,-0.583821819320183,-0.712216747328051,0.00147068171815396,1.18554808220782,-0.868563190929177,0.511167430913556}}
2 | 7 | {{18.2},{13.9},{20.1},{33.2},{19},{19.4},{10.5},{13.6},{26.4},{23.8},{38.7},{23.1},{11},{50},{17.8},{12.7},{8.8},{21.4},{21.4},{16.3},{16.1},{37.9},{20.3},{16.6},{7},{18.6},{14.8},{17.4},{19.4},{21.6},{21.9},{17.2},{11.9},{22.8},{13.1},{23.9},{25},{23.9},{7.2},{22.9},{21},{8.1},{13.3},{35.4},{22.6},{19.4},{33.1},{19.5},{13.4},{23.9}} | {{0,-0.401629396428215,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.103488277761926,0.449706837701578,0.457096107075124,-0.712216747328051,-0.745075371330834,1.08247880449354,0.305902864294418,-0.472501303397702},{0,-0.380014700805473,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.914526559358439,0.494453786726611,0.453504868896248,-0.712216747328051,-0.745075371330834,1.08247880449354,-0.461316134768582,0.399545446878237},{0,-0.454802956061691,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.0123743338947183,0.654797020732978,-0.546925536660488,-0.604583549242574,-0.302890401447972,1.03094416563639,0.432804492468416,-0.183679419706311},{0,-0.462378449146964,-0.384945784500547,-1.38060622631712,-0.194870940739048,-1.08960540167119,2.05057717838978,-0.370653894424021,-0.0184723788865673,-0.927483143499006,-0.923097891673285,-0.463560361220742,0.474971489675403,-1.04037814717739},{0,-0.463832730425165,-0.384945784500547,-1.04673563651034,-0.194870940739048,-0.490770930643634,-0.284625600211046,-1.00829791803074,0.629426344617672,-0.604583549242574,-1.22171631289288,0.670201693636395,0.474971489675403,-0.54505559302066},{0,-0.441776308867592,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.222614624958195,0.669712670407989,-0.343750006814436,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.468961941379871,-0.268791182533243},{0,1.88309023743078,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,-0.557147517769634,0.744290918783044,-0.819859638255137,1.4404472143815,1.31654026747368,0.670201693636395,0.420384759324315,1.18089933512548},{0,-0.336135524308028,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.961850724682984,0.956838926651949,0.13044101792796,-0.712216747328051,-0.745075371330834,1.08247880449354,0.271347961595106,1.02881438187735},{0,-0.460833475345911,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,-0.906367220509379,0.647339195895473,-0.268038834796742,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.415877598102666,0.0465409223665364},{0,-0.451815437661865,-0.384945784500547,-0.728832770563885,-0.194870940739048,-0.678976050109438,0.435028086276,-0.751002961136798,0.495714216258938,-0.604583549242574,-0.859928610261448,0.360993860493541,0.474971489675403,-0.899455392332802},{0,-0.456805660360432,-0.384945784500547,-1.38060622631712,-0.194870940739048,-1.08960540167119,3.11618683207695,0.132749282107597,-0.0184723788865673,-0.927483143499006,-0.923097891673285,-0.463560361220742,0.474971489675403,-1.31664255766481},{0,-0.45060015785565,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.798663947701794,-1.62729737954369,-0.361165052229812,-0.496950351157096,-0.262691767822257,0.154855305064969,0.438814040763949,0.55163040012636},{0,0.316351297864274,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,0.0548028959098273,0.211056442901404,-0.785718278034032,1.4404472143815,1.31654026747368,0.670201693636395,-2.53150536344132,1.09857812189943},{0,0.412393612593541,-0.384945784500547,0.827294500187726,5.13160143945555,0.818110127459455,-0.464131054890355,0.639881371057967,-1.18223032901688,1.4404472143815,1.31654026747368,0.670201693636395,-0.0160086060696134,-0.665049225858629},{0,-0.435739387758229,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.400488211867692,0.401230976257793,0.229175470325304,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.412872823954899,0.653485460558589},{0,0.955753856416195,-0.384945784500547,0.827294500187726,-0.194870940739048,1.03197958139787,-0.444548641652613,0.830055904414356,-0.861232669877541,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,0.377221050071172},{0,7.37617630093958,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,-0.33031789776578,1.02768826260825,-0.851147685950558,1.4404472143815,1.31654026747368,0.670201693636395,-3.33558292538358,0.973003389859694},{0,-0.45166392780016,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.282993732441235,0.595134422032935,-0.757529518082026,-0.927483143499006,-1.42845214296799,0.103320666207828,0.355982433423857,0.162348730803181},{0,-0.457423436486681,-0.384945784500547,-1.38060622631712,-0.194870940739048,-1.08960540167119,0.0058468628154714,-0.105901112692577,-0.0184723788865673,-0.927483143499006,-0.923097891673285,-0.463560361220742,0.424190806578152,-0.32181162495002},{0,2.5877924794069,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,-1.63907584915492,1.02768826260825,-0.956031518791183,1.4404472143815,1.31654026747368,0.670201693636395,-1.3872873679719,0.897658550635852},{0,0.0734084355321313,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.224517143970265,0.721917444270527,-0.572900519652913,1.4404472143815,1.31654026747368,0.670201693636395,0.356683547391669,0.50558633171179},{0,-0.459985233514532,-0.384945784500547,-1.44302551049839,-0.194870940739048,-0.721749940897121,1.62465969046887,0.736833093945538,-0.409376194905146,-0.819849945413529,-1.39973883323533,-0.566629638935027,0.447127249239435,-1.23153079483788},{0,-0.454650379229128,-0.384945784500547,0.2205209934954,-0.194870940739048,-1.15804362693148,-0.602839815324367,-0.538454953267893,1.37118921120817,-0.712216747328051,-0.848443286368387,-1.49425313836359,0.474971489675403,0.306062035248656},{0,-0.398007030368426,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.565306856618694,0.665983757989236,0.565374397920442,-0.712216747328051,-0.745075371330834,1.08247880449354,0.274452894881131,0.162348730803181},{0,-0.450132824620249,-0.384945784500547,2.22664775485615,-0.194870940739048,0.313378216164799,-1.21642209677364,0.964296751489454,-0.874367746504392,-0.712216747328051,1.57496005506756,0.618667054779254,-0.0543695560227633,1.4404204480076},{0,-0.445289843899959,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,0.400758863109951,0.483267049470353,-0.402439693765124,-0.604583549242574,-0.302890401447972,1.03094416563639,-2.79121800894659,-0.420876135781367},{0,-0.367719995619332,-0.384945784500547,-0.618510314801644,-0.194870940739048,-0.294011033020294,-0.18344979848271,0.610050071707945,0.452914528373693,-0.712216747328051,-0.745075371330834,1.08247880449354,-0.431669029843954,0.506981606512232},{0,-0.435273121493685,-0.384945784500547,1.3774551677389,-0.194870940739048,0.441699888527848,-0.354795914312958,0.785308955389324,-0.770320229404053,-0.712216747328051,0.00147068171815396,1.18554808220782,0.288174696822597,0.453961164095455},{0,-0.240386626564459,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-0.735021104679131,0.97175457632696,-0.939403594072547,-0.604583549242574,-0.193779824463889,-2.16420344350645,-0.876676081128146,0.299085661246448},{0,-0.440955808278497,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,0.173929243106096,0.386315326582782,-0.132801660088075,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.439815632146537,-0.801786156301897},{0,-0.0752440782180722,-0.384945784500547,0.827294500187726,-0.194870940739048,1.24584903533628,-1.95239446095881,0.707001794595517,-0.875892792854326,1.4404472143815,1.31654026747368,0.670201693636395,-0.335015461424138,0.0493314719674194},{0,1.0294708729319,-0.384945784500547,0.827294500187726,-0.194870940739048,0.210720878274361,0.811989541102548,1.02768826260825,-0.986483250746318,1.4404472143815,1.31654026747368,0.670201693636395,-3.14928692822207,1.05671987788618},{0,-0.464639360393118,-0.384945784500547,-0.0683496472504681,-0.194870940739048,0.00540620249348394,-0.211191550569511,0.311737078207728,-0.50560170008163,-1.03511634158448,-0.940325877512877,1.08247880449354,0.474971489675403,-0.80457670590278},{0,-0.417098339914172,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,0.776088450166686,0.375128589326524,-0.105891971268271,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.474971489675403,-1.27059848925024},{0,2.05349615301515,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,0.359962168864652,0.885989590695647,-1.05604504232073,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.40135275359523},{0,-0.466984562336982,2.43112151168232,-1.2514128241745,-0.194870940739048,-0.755969053527267,0.875632384125212,-0.598117551967937,1.08197155019971,-0.604583549242574,-0.383287668699402,-0.669698916649312,0.474971489675403,-0.902245941933685},{0,-0.456200687884467,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,0.983335656932797,-1.08287616640579,2.188269689468,-0.281683954986141,-0.87715659610104,0.412528499350682,0.461750483425231,-0.578542188231256},{0,-0.464937045262244,0.895084804673483,-1.09463880809132,-0.194870940739048,-1.25214618666439,0.749978565849696,-0.0760698133425552,0.91893917588741,-0.712216747328051,-0.894384581940632,0.0517860273506843,0.462251279116526,-0.896664842731919},{0,1.45987624696971,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,0.448083028434495,1.02768826260825,-0.835356076972208,1.4404472143815,1.31654026747368,0.670201693636395,-3.227411056064,2.14922004663188},{0,-0.460277583529372,0.255069510086467,-0.65770381882244,-0.194870940739048,-0.413777927225806,-0.240565170426126,-0.217768485255159,0.997552855474333,-0.604583549242574,-0.722104723544712,-1.90653024922074,0.461950801701749,-0.169726671701896},{0,-0.41896660588492,-0.384945784500547,-0.363026733036454,-0.194870940739048,-0.242682364075075,-0.0757465256751232,-0.508623653917871,0.23079890676233,-0.712216747328051,-0.762303357170426,-0.257421805792172,0.468260827412059,-0.127868427688651},{0,-0.447562491825541,-0.384945784500547,2.22664775485615,-0.194870940739048,0.313378216164799,-1.74025165088326,0.953110014233196,-0.841308677241306,-0.712216747328051,1.57496005506756,0.618667054779254,-0.310977268242007,2.23712235905969},{0,0.578439885255874,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,1.03555542556678,0.982941313583218,-1.06986884955723,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.05951042748707},{0,-0.468299070432905,4.22316433652596,-1.62302530674205,-0.194870940739048,-1.44890608428773,1.77805526083119,-1.88459233643763,2.54035861612858,-0.604583549242574,-1.21023098899982,-0.515095000077885,0.465256053264292,-1.23292606963832},{0,-0.464700177731972,-0.384945784500547,-1.30512244079559,-0.194870940739048,-0.713195162739584,0.420341276347693,-0.236413047348923,-0.216679209334447,-0.927483143499006,-0.95755386335247,-0.566629638935027,0.427696376417213,-0.67481614946172},{0,-0.465025603843382,3.71115210085635,-1.31092888583571,-0.194870940739048,-1.49167997507541,-0.607735418633803,-1.54153239391238,1.51459276314552,-0.712216747328051,-0.572795512934914,-1.44271849950645,0.474971489675403,-0.475291852998585},{0,-0.459028160655731,1.35589581677613,-0.916090623107689,-0.194870940739048,-1.19226273956163,1.34234656629142,-2.04120665802524,0.963706665514506,-0.389317153071619,-0.618736808507159,-1.44271849950645,0.41016852722191,-1.22594969563611},{0,-0.455547701719933,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,-0.503295881365841,0.904634152789411,-0.70144716843929,-0.604583549242574,-0.302890401447972,1.03094416563639,0.446426135271623,0.39396434767647},{0,0.247063277376308,-0.384945784500547,0.827294500187726,-0.194870940739048,1.2030751445486,0.962121375925242,0.751748743620549,-0.594841509074545,1.4404472143815,1.31654026747368,0.670201693636395,-3.49713961539515,0.529306003319296},{0,-0.460879355092766,-0.384945784500547,0.2205209934954,-0.194870940739048,-1.15804362693148,-0.0529003768977577,-2.01510427109397,0.969118120304595,-0.712216747328051,-0.848443286368387,-1.49425313836359,0.474971489675403,-0.706907469871875}}
2 | 8 | {{15.4},{13.8},{9.5},{10.9},{18.8},{23.3},{20.4},{21.8},{12.3},{22.5}} | {{0,0.593702903366415,-0.384945784500547,0.827294500187726,-0.194870940739048,1.43405415480209,0.531308284694902,1.02768826260825,-0.764662799396233,1.4404472143815,1.31654026747368,0.670201693636395,0.373109646066125,0.726039750181548},{0,-0.215829225317888,-0.384945784500547,1.04213296667209,-0.194870940739048,2.55473009343937,-0.0480047735883218,1.02768826260825,-1.03981067795046,-0.604583549242574,-0.193779824463889,-2.16420344350645,-1.76849304818519,1.97481069657669},{0,0.526734477521742,-0.384945784500547,0.827294500187726,-0.194870940739048,0.912212687192357,0.359962168864652,0.86361611618313,-0.769680693837952,1.4404472143815,1.31654026747368,0.670201693636395,-2.89217842031153,1.45576847081245},{0,1.22405434813772,-0.384945784500547,0.827294500187726,-0.194870940739048,0.843774461932065,0.629220350883616,0.994128050839476,-0.990566439360657,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.03718603068},{0,-0.45918927325515,-0.384945784500547,1.92326100150999,-0.194870940739048,0.0738444277537763,-0.457603583811109,0.871073941020636,-0.750937382246827,-0.927483143499006,-1.42845214296799,0.103320666207828,0.29949267944585,0.548839850525477},{0,-0.453218504338926,0.895084804673483,-1.05544530407052,-0.194870940739048,-1.0211671764109,-0.0235267570411439,-1.61238172986868,2.10655672213766,-0.281683954986141,-0.87715659610104,0.412528499350682,0.412672505678382,-0.946894735547813},{0,-0.45570241249421,-0.384945784500547,-0.557542641880405,-0.194870940739048,-0.447997039855952,-0.0529003768977577,0.475809224632848,-0.693821936689619,-0.604583549242574,-0.302890401447972,1.03094416563639,0.382724923338977,0.0618889451713929},{0,-0.451206197302472,-0.384945784500547,-0.393510569497073,-0.194870940739048,0.108063540383922,-0.738284840218754,-0.687611450018002,-0.566259188774168,-0.496950351157096,-0.262691767822257,0.154855305064969,0.474971489675403,-0.22832821332044},{0,0.383076454353533,-0.384945784500547,0.827294500187726,-0.194870940739048,1.09186302850062,-1.04344411317358,1.02768826260825,-0.983728328307727,1.4404472143815,1.31654026747368,0.670201693636395,0.474971489675403,1.52274166123365},{0,-0.464162424420003,-0.384945784500547,-1.14834842471241,-0.194870940739048,-1.05538628904105,-0.23566956711669,-1.01948465528699,0.440025426964572,-0.819849945413529,-1.08963508812268,-0.205887166935029,0.465857008093845,-0.109729855282912}}
\.
-- Create the corresponding summary table for preprocessed data
CREATE TABLE lin_housing_wi_batch_grp_summary(
source_table text,
output_table text,
dependent_varname text,
independent_varname text,
dependent_vartype text,
buffer_size integer,
class_values text[],
num_rows_processed integer,
num_rows_skipped integer,
grouping_cols text
);
INSERT INTO lin_housing_wi_batch_grp_summary VALUES
('lin_housing_wi_does_not_exist','lin_housing_wi_batch_grp','y','x','float8',50,NULL,410,0,'grp');
-- Create the corresponding standardization table for preprocessed data
CREATE TABLE lin_housing_wi_batch_grp_standardization(
grp int,
mean double precision[],
std double precision[]
);
INSERT INTO lin_housing_wi_batch_grp_standardization VALUES
-- TODO get real numbers by running preprocessor
(1,ARRAY[1,4.40216212195,7.51829268293,12.4008536585,0.0365853658537,0.57236804878,6.125941707317,72.44,3.5327492689,10.6170731707,436.743902439,18.8995121951,349.478317073,13.6464390244], ARRAY[1,9.37232721366,19.5307832574,6.88889668698,0.187741516077,0.116893738398,0.612794748753,26.8174708253,2.03272510382,9.29081378039,174.135271989,1.94044243285,99.8411145886,7.16704694791]),
(2,ARRAY[1,4.40216212195,7.51829268293,12.4008536585,0.0365853658537,0.57236804878,6.15941707317,72.44,3.53274926829,10.6170731707,436.743902439,18.8995121951,349.478317073,13.6464390244], ARRAY[1,9.37232721366,19.5307832574,6.88889668698,0.187741516077,0.116893738398,0.612794748753,26.8174708253,2.03272510382,9.29081378039,174.135271989,1.94044243285,99.8411145886,7.16704694791]);
SELECT setseed(0);
-- without minibatch with grouping without warm start
DROP TABLE IF EXISTS mlp_regress, mlp_regress_summary, mlp_regress_standardization;
SELECT mlp_regression(
'lin_housing_wi', -- Source table
'mlp_regress', -- Destination table
'x', -- Input features
'y', -- Dependent variable
ARRAY[40], -- Number of units per layer
'learning_rate_init=0.015,
learning_rate_policy=inv,
n_iterations=5, n_tries=3,
tolerance=0',
'sigmoid',
'',
False,
False,
'grp');
DROP TABLE IF EXISTS mlp_prediction_regress;
SELECT mlp_predict(
'mlp_regress',
'lin_housing_wi',
'id',
'mlp_prediction_regress',
'output');
SELECT assert(
__to_char(pg_typeof(estimated_y)) = 'double precision[]',
'Estimated y should be an array. Actual ' || __to_char(pg_typeof(estimated_y))
)
FROM mlp_prediction_regress LIMIT 1;
-- with weights with grouping without minibatch without warm start
CREATE TABLE lin_housing_wi_with_row_weight AS SELECT *, (id%3) +1 AS row_weight FROM lin_housing_wi;
DROP TABLE IF EXISTS mlp_regress, mlp_regress_summary, mlp_regress_standardization;
SELECT mlp_regression(
'lin_housing_wi_with_row_weight', -- Source table
'mlp_regress', -- Destination table
'x', -- Input features
'y', -- Dependent variable
ARRAY[40], -- Number of units per layer
'learning_rate_init=0.015,
learning_rate_policy=inv,
n_iterations=5, n_tries=3,
tolerance=0',
'sigmoid',
'row_weight',
False,
False,
'grp');
DROP TABLE IF EXISTS mlp_prediction_regress;
SELECT mlp_predict(
'mlp_regress',
'lin_housing_wi',
'id',
'mlp_prediction_regress',
'output');
SELECT assert(
__to_char(pg_typeof(estimated_y)) = 'double precision[]',
'Estimated y should be an array. Actual ' || __to_char(pg_typeof(estimated_y))
)
FROM mlp_prediction_regress LIMIT 1;
-- with weights without grouping without minibatch without warm start
DROP TABLE IF EXISTS mlp_regress, mlp_regress_summary, mlp_regress_standardization;
SELECT mlp_regression(
'lin_housing_wi_with_row_weight', -- Source table
'mlp_regress', -- Destination table
'x', -- Input features
'y', -- Dependent variable
ARRAY[40], -- Number of units per layer
'learning_rate_init=0.015,
learning_rate_policy=inv,
n_iterations=5, n_tries=3,
tolerance=0',
'sigmoid',
'row_weight',
False,
False);
DROP TABLE IF EXISTS mlp_prediction_regress;
SELECT mlp_predict(
'mlp_regress',
'lin_housing_wi',
'id',
'mlp_prediction_regress',
'output');
SELECT assert(
__to_char(pg_typeof(estimated_y)) = 'double precision[]',
'Estimated y should be an array. Actual ' || __to_char(pg_typeof(estimated_y))
)
FROM mlp_prediction_regress LIMIT 1;
-- minibatch without grouping and without warm start
DROP TABLE IF EXISTS mlp_regress_batch, mlp_regress_batch_summary, mlp_regress_batch_standardization;
SELECT mlp_regression(
'lin_housing_wi_batch', -- Source table
'mlp_regress_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Dependent variable
ARRAY[10], -- Number of units per layer
'learning_rate_init=0.025,
learning_rate_policy=step,
lambda=0.001,
n_iterations=5,
tolerance=0,
batch_size=25, n_epochs=10',
'sigmoid',
'',
False,
TRUE);
DROP TABLE IF EXISTS mlp_prediction_regress_batch;
SELECT mlp_predict(
'mlp_regress_batch',
'lin_housing_wi',
'id',
'mlp_prediction_regress_batch',
'output');
SELECT assert(
__to_char(pg_typeof(estimated_y)) = 'double precision',
'Estimated y should be a scalar. Actual ' || __to_char(pg_typeof(estimated_y))
)
FROM mlp_prediction_regress_batch LIMIT 1;
-- minibatch with grouping and without warm start
DROP TABLE IF EXISTS mlp_regress_batch, mlp_regress_batch_summary, mlp_regress_batch_standardization;
SELECT mlp_regression(
'lin_housing_wi_batch_grp', -- Source table
'mlp_regress_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Dependent variable
ARRAY[10], -- Number of units per layer
'learning_rate_init=0.025,
learning_rate_policy=step,
lambda=0.001,
n_iterations=5,
tolerance=0,
batch_size=25, n_epochs=10',
'sigmoid',
'',
False,
TRUE,
'grp');
DROP TABLE IF EXISTS mlp_prediction_regress_batch;
SELECT mlp_predict(
'mlp_regress_batch',
'lin_housing_wi',
'id',
'mlp_prediction_regress_batch',
'output');
------------------------------------------------ Momentum ------------------------------------------------------------
-- regression momentum without nesterov momentum
DROP TABLE IF EXISTS mlp_regress, mlp_regress_summary, mlp_regress_standardization;
SELECT mlp_regression(
'lin_housing_wi', -- Source table
'mlp_regress', -- Destination table
'x', -- Input features
'y', -- Dependent variable
ARRAY[40], -- Number of units per layer
'learning_rate_init=0.015,
momentum = 0.5, nesterov = False,
learning_rate_policy=inv,
n_iterations=5, tolerance=0', 'sigmoid',
'',
False,
False,
'grp');
DROP TABLE IF EXISTS mlp_prediction_regress;
SELECT mlp_predict(
'mlp_regress',
'lin_housing_wi',
'id',
'mlp_prediction_regress',
'output');
-- assert that the summary table has momentum and nesterov
SELECT assert
(
source_table = 'lin_housing_wi' AND
independent_varname = 'x' AND
dependent_varname = 'y' AND
dependent_vartype = 'double precision[]' AND
tolerance = 0 AND
learning_rate_init = 0.015 AND
learning_rate_policy = 'inv' AND
momentum = 0.5 AND
nesterov = False AND
n_iterations = 5 AND
n_tries = 1 AND
layer_sizes = '{14,40,1}' AND
activation = 'sigmoid' AND
is_classification = False AND
classes = '{}' AND
weights = '1' AND
grouping_col = 'grp',
'Summary Validation failed. Actual:' || __to_char(summary)
) from (select * from mlp_regress_summary) summary;
-- regression momentum with nesterov momentum
DROP TABLE IF EXISTS mlp_regress_batch, mlp_regress_batch_summary, mlp_regress_batch_standardization;
SELECT mlp_regression(
'lin_housing_wi_batch', -- Source table
'mlp_regress_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Dependent variable
ARRAY[10], -- Number of units per layer
'learning_rate_init=0.025,
momentum = 0.5, nesterov = True,
learning_rate_policy=step,
lambda=0.001,
n_iterations=5,
tolerance=0,
batch_size=25, n_epochs=10',
'sigmoid',
'',
False,
TRUE);
DROP TABLE IF EXISTS mlp_prediction_regress_batch;
SELECT mlp_predict(
'mlp_regress_batch',
'lin_housing_wi',
'id',
'mlp_prediction_regress_batch',
'output');
-- classification momentum without nesterov momentum
DROP TABLE IF EXISTS mlp_class_batch, mlp_class_batch_summary, mlp_class_batch_standardization;
SELECT mlp_classification(
'iris_data_batch', -- Source table
'mlp_class_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
momentum = 0.1, nesterov = False,
learning_rate_policy=constant,
n_iterations=5,
n_tries=3,
tolerance=0,
n_epochs=20',
'sigmoid',
'',
False,
False
);
DROP TABLE IF EXISTS mlp_prediction_batch_output, mlp_prediction_output;
-- See prediction accuracy for training data
SELECT mlp_predict(
'mlp_class_batch',
'iris_data',
'id',
'mlp_prediction_batch_output',
'output');
-- classification momentum with nesterov momentum
DROP TABLE IF EXISTS mlp_class_batch, mlp_class_batch_summary, mlp_class_batch_standardization;
SELECT mlp_classification(
'iris_data_batch_grp', -- Source table
'mlp_class_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
momentum = 0.1, nesterov = True,
learning_rate_policy=constant,
n_iterations=5,
n_tries=3,
tolerance=0,
n_epochs=20',
'sigmoid',
'',
False,
False,
'grp'
);
DROP TABLE IF EXISTS mlp_prediction_batch_output, mlp_prediction_output;
-- See prediction accuracy for training data
SELECT mlp_predict(
'mlp_class_batch',
'iris_data',
'id',
'mlp_prediction_batch_output',
'output');
-- Assert of all input tables still exist, to make sure we have not dropped
-- anything in the code.
-- Classification minibatch tables
SELECT assert(
count(*)=1,
'Input table iris_data_batch is dropped.'
)
FROM
pg_catalog.pg_class c
JOIN pg_catalog.pg_namespace n
ON n.oid=c.relnamespace
WHERE c.relname = 'iris_data_batch' AND c.relkind='r' AND nspname=current_schema();
SELECT assert(
count(*)=1,
'Input table iris_data_batch_summary is dropped.'
)
FROM
pg_catalog.pg_class c
JOIN pg_catalog.pg_namespace n
ON n.oid=c.relnamespace
WHERE c.relname = 'iris_data_batch_summary' AND c.relkind='r' AND nspname=current_schema();
SELECT assert(
count(*)=1,
'Input table iris_data_batch_standardization is dropped.'
)
FROM
pg_catalog.pg_class c
JOIN pg_catalog.pg_namespace n
ON n.oid=c.relnamespace
WHERE c.relname = 'iris_data_batch_standardization' AND c.relkind='r' AND nspname=current_schema();
-- Regression minibatch tables
SELECT assert(
count(*)=1,
'Input table lin_housing_wi_batch is dropped.'
)
FROM
pg_catalog.pg_class c
JOIN pg_catalog.pg_namespace n
ON n.oid=c.relnamespace
WHERE c.relname = 'lin_housing_wi_batch' AND c.relkind='r' AND nspname=current_schema();
SELECT assert(
count(*)=1,
'Input table lin_housing_wi_batch_summary is dropped.'
)
FROM
pg_catalog.pg_class c
JOIN pg_catalog.pg_namespace n
ON n.oid=c.relnamespace
WHERE c.relname = 'lin_housing_wi_batch_summary' AND c.relkind='r' AND nspname=current_schema();
SELECT assert(
count(*)=1,
'Input table lin_housing_wi_batch_standardization is dropped.'
)
FROM
pg_catalog.pg_class c
JOIN pg_catalog.pg_namespace n
ON n.oid=c.relnamespace
WHERE c.relname = 'lin_housing_wi_batch_standardization' AND c.relkind='r' AND nspname=current_schema();
------------------------ Test special characters --------------------------------
DROP TABLE IF EXISTS iris_data_special_char;
CREATE TABLE iris_data_special_char(
id INTEGER,
"se$$''x" TEXT,
"len$$'%*Ж!#'()gth" DOUBLE PRECISION[],
"rinЖ!#'gs" INTEGER);
INSERT INTO iris_data_special_char VALUES
(1, 'M''M',ARRAY[0.66, 0.5],6),
(2, '''M''M''',ARRAY[0.66, 0.5],6),
(3, 'M|$$M',ARRAY[0.66, 0.5],6),
(4, 'M,M',ARRAY[0.66, 0.5],6),
(5, 'M@[}(:*;M',ARRAY[0.66, 0.5],6),
(6, 'M"M',ARRAY[0.66, 0.5],6),
(7, 'MЖM',ARRAY[0.66, 0.5],6);
DROP TABLE IF EXISTS mlp_model, mlp_model_summary, mlp_model_standardization;
-- Set seed so results are reproducible
SELECT setseed(0);
SELECT mlp_classification(
'iris_data_special_char', -- Source table
'mlp_model_special_char', -- Destination table
'"len$$''%*Ж!#''()gth"', -- Input features
'"se$$''''x"', -- Dependent variable
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.003,
n_iterations=10,
tolerance=0', -- Optimizer params
'tanh', -- Activation function
NULL, -- Default weight (1)
FALSE, -- No warm start
FALSE -- Not verbose
);
SELECT assert
(
source_table = 'iris_data_special_char' AND
independent_varname = '"len$$''%*Ж!#''()gth"' AND
dependent_varname = '"se$$''''x"' AND
tolerance = 0 AND
learning_rate_init = 0.003 AND
learning_rate_policy = 'constant' AND
n_iterations = 10 AND
n_tries = 1 AND
layer_sizes = ARRAY[2,5,7] AND
activation = 'tanh' AND
is_classification = 't' AND
classes = $__madlib__${ 'M'M', M\"M, M'M, "M,M", "M@[}(:*;M", "M|$$M", MЖM }$__madlib__$ AND
weights = '1' AND
grouping_col = NULL,
'Summary Validation failed for special chars. Actual:' || __to_char(summary)
) from (select * from mlp_model_special_char_summary order by classes) summary;
DROP TABLE IF EXISTS mlp_prediction_batch_output, mlp_prediction_batch_output_summary, mlp_prediction_batch_output_standardization;
SELECT mlp_predict(
'mlp_model_special_char',
'iris_data_special_char',
'id',
'mlp_prediction_batch_output',
'output');
-- Test special chars with minibatch enabled
DROP TABLE IF EXISTS iris_data_special_char_batch, iris_data_special_char_batch_summary, iris_data_special_char_batch_standardization;
CREATE TABLE iris_data_special_char_batch(
__id__ integer,
dependent_varname double precision[],
independent_varname double precision[]
);
COPY iris_data_special_char_batch (__id__, dependent_varname, independent_varname) FROM STDIN NULL '?' DELIMITER '|';
0 | {{0,0,0,1,0,0,0},{0,1,0,0,0,0,0},{0,0,1,0,0,0,0},{0,0,0,0,1,0,0}} | {{0,0},{0,0},{0,0},{0,0}}
1 | {{0,0,0,0,0,0,1},{1,0,0,0,0,0,0},{0,0,0,0,0,1,0}} | {{0,0},{0,0},{0,0}}
\.
-- Create the corresponding summary table for preprocessed data
CREATE TABLE iris_data_special_char_batch_summary(
source_table text,
output_table text,
dependent_varname text,
independent_varname text,
dependent_vartype text,
buffer_size integer,
class_values text[],
num_rows_processed integer,
num_rows_skipped integer,
grouping_cols text
);
-- The availability of the original source table should not be a condition for
-- MLP to work correctly. It should work fine even the original source table is
-- deleted (this basically ensures that all the necessary info is captured in
-- the summary table). So name the original source table as
-- 'iris_data_does_not_exist' instead of the original 'iris_data', to mimic the
-- scenario where the original source table is deleted and MLP is trained with
-- the preprocessed table.
INSERT INTO iris_data_special_char_batch_summary VALUES
('minibatch_preprocessing_input', 'minibatch_preprocessing_out', '"se$$''x"', '"len$$''%*Ж!#''()gth"',
'text', 4, $__madlib__${'M'M',"M\"M",M'M,"M,M","M@[}(:*;M",M|$$M,MЖM}$__madlib__$, 7, 0, '');
-- Create the corresponding standardization table for preprocessed data
CREATE TABLE iris_data_special_char_batch_standardization(
mean double precision[],
std double precision[]
);
INSERT INTO iris_data_special_char_batch_standardization VALUES
(ARRAY[0.66,0.5], ARRAY[1,1]);
DROP TABLE IF EXISTS mlp_class_batch, mlp_class_batch_summary, mlp_class_batch_standardization;
SELECT mlp_classification(
'iris_data_special_char_batch', -- Source table
'mlp_class_special_char_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
learning_rate_policy=constant,
n_iterations=1,
n_tries=1,
tolerance=0,
n_epochs=20,
solver=sgd',
'sigmoid',
'',
False,
False
);
SELECT assert
(
source_table = 'iris_data_special_char_batch' AND
independent_varname = 'independent_varname' AND
dependent_varname = 'dependent_varname' AND
original_source_table = 'minibatch_preprocessing_input' AND
original_independent_varname = '"len$$''%*Ж!#''()gth"' AND
original_dependent_varname = '"se$$''x"' AND
original_dependent_vartype = 'text' AND
tolerance = 0 AND
learning_rate_init = 0.1 AND
learning_rate_policy = 'constant' AND
n_iterations = 1 AND
n_tries = 1 AND
layer_sizes = ARRAY[2,5,7] AND
activation = 'sigmoid' AND
is_classification = 't' AND
classes = $__madlib__${ 'M'M', M\"M, M'M, "M,M", "M@[}(:*;M", "M|$$M", MЖM }$__madlib__$ AND
weights = '1' AND
grouping_col = NULL,
'Summary Validation failed for special chars. Actual:' || __to_char(summary)
) from (select * from mlp_class_special_char_batch_summary order by classes) summary;
DROP TABLE IF EXISTS mlp_prediction_batch_output, mlp_prediction_batch_output_summary, mlp_prediction_batch_output_standardization;
SELECT mlp_predict(
'mlp_class_special_char_batch',
'iris_data_special_char',
'id',
'mlp_prediction_batch_output',
'output');
-- Test rmsprop
DROP TABLE IF EXISTS mlp_class_batch, mlp_class_batch_summary, mlp_class_batch_standardization;
SELECT mlp_classification(
'iris_data_batch', -- Source table
'mlp_class_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
learning_rate_policy=constant,
n_iterations=5,
tolerance=0,
batch_size=5,
n_epochs=15,
rho=0.9,
solver=rmsprop,
eps=0.00000001',
'sigmoid',
'',
FALSE, -- Warm start
FALSE
);
SELECT assert
(
source_table = 'iris_data_batch' AND
independent_varname = 'independent_varname' AND
dependent_varname = 'dependent_varname' AND
original_source_table = 'iris_data_does_not_exist' AND
original_independent_varname = 'attributes' AND
original_dependent_varname = 'class::TEXT' AND
original_dependent_vartype = 'text' AND
tolerance = 0 AND
learning_rate_init = 0.1 AND
learning_rate_policy = 'constant' AND
layer_sizes = ARRAY[4,5,3] AND
activation = 'sigmoid' AND
is_classification = 't' AND
classes = '{1,2,3}' AND
weights = '1' AND
grouping_col = NULL AND
solver = 'rmsprop' AND
rho = 0.9 AND
eps = 0.00000001,
'Summary Validation failed for special chars. Actual:' || __to_char(summary)
) from (select * from mlp_class_batch_summary order by classes) summary;
DROP TABLE IF EXISTS mlp_prediction_batch_output, mlp_prediction_batch_output_summary, mlp_prediction_batch_output_standardization;
SELECT mlp_predict(
'mlp_class_batch',
'iris_data',
'id',
'mlp_prediction_batch_output',
'output');
DROP TABLE IF EXISTS mlp_regress_batch, mlp_regress_batch_summary, mlp_regress_batch_standardization;
SELECT mlp_regression(
'lin_housing_wi_batch', -- Source table
'mlp_regress_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Dependent variable
ARRAY[10], -- Number of units per layer
'learning_rate_init=0.025,
learning_rate_policy=step,
lambda=0.001,
n_iterations=5,
tolerance=0,
batch_size=25,
n_epochs=10,
rho=0.9,
solver=rmsprop,
eps=0.00000001',
'sigmoid',
'',
False,
TRUE);
DROP TABLE IF EXISTS mlp_prediction_regress_batch;
SELECT mlp_predict(
'mlp_regress_batch',
'lin_housing_wi',
'id',
'mlp_prediction_regress_batch',
'output');
-- Test Adam
DROP TABLE IF EXISTS mlp_class_batch, mlp_class_batch_summary, mlp_class_batch_standardization;
SELECT mlp_classification(
'iris_data_batch', -- Source table
'mlp_class_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Label
ARRAY[5], -- Number of units per layer
'learning_rate_init=0.1,
learning_rate_policy=constant,
n_iterations=5,
tolerance=0,
batch_size=5,
n_epochs=15,
solver=adam,
beta1=0.9,
beta2=0.999',
'sigmoid',
'',
FALSE, -- Warm start
FALSE
);
SELECT assert
(
source_table = 'iris_data_batch' AND
independent_varname = 'independent_varname' AND
dependent_varname = 'dependent_varname' AND
original_source_table = 'iris_data_does_not_exist' AND
original_independent_varname = 'attributes' AND
original_dependent_varname = 'class::TEXT' AND
original_dependent_vartype = 'text' AND
tolerance = 0 AND
learning_rate_init = 0.1 AND
learning_rate_policy = 'constant' AND
layer_sizes = ARRAY[4,5,3] AND
activation = 'sigmoid' AND
is_classification = 't' AND
classes = '{1,2,3}' AND
weights = '1' AND
grouping_col = NULL AND
solver = 'adam' AND
beta1 = 0.9 AND
beta2 = 0.999,
'Summary Validation failed for special chars. Actual:' || __to_char(summary)
) from (select * from mlp_class_batch_summary order by classes) summary;
DROP TABLE IF EXISTS mlp_prediction_batch_output, mlp_prediction_batch_output_summary, mlp_prediction_batch_output_standardization;
SELECT mlp_predict(
'mlp_class_batch',
'iris_data',
'id',
'mlp_prediction_batch_output',
'output');
DROP TABLE IF EXISTS mlp_regress_batch, mlp_regress_batch_summary, mlp_regress_batch_standardization;
SELECT mlp_regression(
'lin_housing_wi_batch', -- Source table
'mlp_regress_batch', -- Destination table
'independent_varname', -- Input features
'dependent_varname', -- Dependent variable
ARRAY[10], -- Number of units per layer
'learning_rate_init=0.025,
learning_rate_policy=step,
lambda=0.001,
n_iterations=5,
tolerance=0,
batch_size=25,
n_epochs=10,
solver=adam,
beta1=0.9,
beta2=0.999',
'sigmoid',
'',
False,
TRUE);
DROP TABLE IF EXISTS mlp_prediction_regress_batch;
SELECT mlp_predict(
'mlp_regress_batch',
'lin_housing_wi',
'id',
'mlp_prediction_regress_batch',
'output');