You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@madlib.apache.org by GitBox <gi...@apache.org> on 2020/03/03 23:52:18 UTC

[GitHub] [madlib] orhankislal commented on a change in pull request #484: MFVSketch: Remove duplicate results on GPDB

orhankislal commented on a change in pull request #484: MFVSketch: Remove duplicate results on GPDB
URL: https://github.com/apache/madlib/pull/484#discussion_r387364453
 
 

 ##########
 File path: methods/sketch/src/pg_gp/sql/mfv.sql_in
 ##########
 @@ -22,3 +22,4207 @@ select mfvsketch_top_histogram(NULL::bytea,5) from generate_series(1,100);
 select mfvsketch_quick_histogram(i,5) from "MFV_TEST";
 select mfvsketch_quick_histogram(utc_offset,5) from pg_timezone_names;
 select mfvsketch_quick_histogram(NULL::bytea,5) from generate_series(1,100);
+
+DROP TABLE IF EXISTS abalone;
+CREATE TABLE abalone (
+        id integer,
+        sex char(1),
+        length float,
+        diameter float,
+        height float,
+        whole_weight float,
+        shucked_weight float,
+        viscera_weight float,
+        shell_weight float,
+        rings integer
+    );
+
+
+INSERT INTO abalone VALUES
+(1,'M',0.455,0.365,0.095,0.514,0.2245,0.101,0.15,15),
+(2,'M',0.35,0.265,0.09,0.2255,0.0995,0.0485,0.07,7),
+(3,'F',0.53,0.42,0.135,0.677,0.2565,0.1415,0.21,9),
+(4,'M',0.44,0.365,0.125,0.516,0.2155,0.114,0.155,10),
+(5,'I',0.33,0.255,0.08,0.205,0.0895,0.0395,0.055,7),
+(6,'I',0.425,0.3,0.095,0.3515,0.141,0.0775,0.12,8),
+(7,'F',0.53,0.415,0.15,0.7775,0.237,0.1415,0.33,20),
+(8,'F',0.545,0.425,0.125,0.768,0.294,0.1495,0.26,16),
+(9,'M',0.475,0.37,0.125,0.5095,0.2165,0.1125,0.165,9),
+(10,'F',0.55,0.44,0.15,0.8945,0.3145,0.151,0.32,19),
+(11,'F',0.525,0.38,0.14,0.6065,0.194,0.1475,0.21,14),
+(12,'M',0.43,0.35,0.11,0.406,0.1675,0.081,0.135,10),
+(13,'M',0.49,0.38,0.135,0.5415,0.2175,0.095,0.19,11),
+(14,'F',0.535,0.405,0.145,0.6845,0.2725,0.171,0.205,10),
+(15,'F',0.47,0.355,0.1,0.4755,0.1675,0.0805,0.185,10),
+(16,'M',0.5,0.4,0.13,0.6645,0.258,0.133,0.24,12),
+(17,'I',0.355,0.28,0.085,0.2905,0.095,0.0395,0.115,7),
+(18,'F',0.44,0.34,0.1,0.451,0.188,0.087,0.13,10),
+(19,'M',0.365,0.295,0.08,0.2555,0.097,0.043,0.1,7),
+(20,'M',0.45,0.32,0.1,0.381,0.1705,0.075,0.115,9),
+(21,'M',0.355,0.28,0.095,0.2455,0.0955,0.062,0.075,11),
+(22,'I',0.38,0.275,0.1,0.2255,0.08,0.049,0.085,10),
+(23,'F',0.565,0.44,0.155,0.9395,0.4275,0.214,0.27,12),
+(24,'F',0.55,0.415,0.135,0.7635,0.318,0.21,0.2,9),
+(25,'F',0.615,0.48,0.165,1.1615,0.513,0.301,0.305,10),
+(26,'F',0.56,0.44,0.14,0.9285,0.3825,0.188,0.3,11),
+(27,'F',0.58,0.45,0.185,0.9955,0.3945,0.272,0.285,11),
+(28,'M',0.59,0.445,0.14,0.931,0.356,0.234,0.28,12),
+(29,'M',0.605,0.475,0.18,0.9365,0.394,0.219,0.295,15),
+(30,'M',0.575,0.425,0.14,0.8635,0.393,0.227,0.2,11),
+(31,'M',0.58,0.47,0.165,0.9975,0.3935,0.242,0.33,10),
+(32,'F',0.68,0.56,0.165,1.639,0.6055,0.2805,0.46,15),
+(33,'M',0.665,0.525,0.165,1.338,0.5515,0.3575,0.35,18),
+(34,'F',0.68,0.55,0.175,1.798,0.815,0.3925,0.455,19),
+(35,'F',0.705,0.55,0.2,1.7095,0.633,0.4115,0.49,13),
+(36,'M',0.465,0.355,0.105,0.4795,0.227,0.124,0.125,8),
+(37,'F',0.54,0.475,0.155,1.217,0.5305,0.3075,0.34,16),
+(38,'F',0.45,0.355,0.105,0.5225,0.237,0.1165,0.145,8),
+(39,'F',0.575,0.445,0.135,0.883,0.381,0.2035,0.26,11),
+(40,'M',0.355,0.29,0.09,0.3275,0.134,0.086,0.09,9),
+(41,'F',0.45,0.335,0.105,0.425,0.1865,0.091,0.115,9),
+(42,'F',0.55,0.425,0.135,0.8515,0.362,0.196,0.27,14),
+(43,'I',0.24,0.175,0.045,0.07,0.0315,0.0235,0.02,5),
+(44,'I',0.205,0.15,0.055,0.042,0.0255,0.015,0.012,5),
+(45,'I',0.21,0.15,0.05,0.042,0.0175,0.0125,0.015,4),
+(46,'I',0.39,0.295,0.095,0.203,0.0875,0.045,0.075,7),
+(47,'M',0.47,0.37,0.12,0.5795,0.293,0.227,0.14,9),
+(48,'F',0.46,0.375,0.12,0.4605,0.1775,0.11,0.15,7),
+(49,'I',0.325,0.245,0.07,0.161,0.0755,0.0255,0.045,6),
+(50,'F',0.525,0.425,0.16,0.8355,0.3545,0.2135,0.245,9),
+(51,'I',0.52,0.41,0.12,0.595,0.2385,0.111,0.19,8),
+(52,'M',0.4,0.32,0.095,0.303,0.1335,0.06,0.1,7),
+(53,'M',0.485,0.36,0.13,0.5415,0.2595,0.096,0.16,10),
+(54,'F',0.47,0.36,0.12,0.4775,0.2105,0.1055,0.15,10),
+(55,'M',0.405,0.31,0.1,0.385,0.173,0.0915,0.11,7),
+(56,'F',0.5,0.4,0.14,0.6615,0.2565,0.1755,0.22,8),
+(57,'M',0.445,0.35,0.12,0.4425,0.192,0.0955,0.135,8),
+(58,'M',0.47,0.385,0.135,0.5895,0.2765,0.12,0.17,8),
+(59,'I',0.245,0.19,0.06,0.086,0.042,0.014,0.025,4),
+(60,'F',0.505,0.4,0.125,0.583,0.246,0.13,0.175,7),
+(61,'M',0.45,0.345,0.105,0.4115,0.18,0.1125,0.135,7),
+(62,'M',0.505,0.405,0.11,0.625,0.305,0.16,0.175,9),
+(63,'F',0.53,0.41,0.13,0.6965,0.302,0.1935,0.2,10),
+(64,'M',0.425,0.325,0.095,0.3785,0.1705,0.08,0.1,7),
+(65,'M',0.52,0.4,0.12,0.58,0.234,0.1315,0.185,8),
+(66,'M',0.475,0.355,0.12,0.48,0.234,0.1015,0.135,8),
+(67,'F',0.565,0.44,0.16,0.915,0.354,0.1935,0.32,12),
+(68,'F',0.595,0.495,0.185,1.285,0.416,0.224,0.485,13),
+(69,'F',0.475,0.39,0.12,0.5305,0.2135,0.1155,0.17,10),
+(70,'I',0.31,0.235,0.07,0.151,0.063,0.0405,0.045,6),
+(71,'M',0.555,0.425,0.13,0.7665,0.264,0.168,0.275,13),
+(72,'F',0.4,0.32,0.11,0.353,0.1405,0.0985,0.1,8),
+(73,'F',0.595,0.475,0.17,1.247,0.48,0.225,0.425,20),
+(74,'M',0.57,0.48,0.175,1.185,0.474,0.261,0.38,11),
+(75,'F',0.605,0.45,0.195,1.098,0.481,0.2895,0.315,13),
+(76,'F',0.6,0.475,0.15,1.0075,0.4425,0.221,0.28,15),
+(77,'M',0.595,0.475,0.14,0.944,0.3625,0.189,0.315,9),
+(78,'F',0.6,0.47,0.15,0.922,0.363,0.194,0.305,10),
+(79,'F',0.555,0.425,0.14,0.788,0.282,0.1595,0.285,11),
+(80,'F',0.615,0.475,0.17,1.1025,0.4695,0.2355,0.345,14),
+(81,'F',0.575,0.445,0.14,0.941,0.3845,0.252,0.285,9),
+(82,'M',0.62,0.51,0.175,1.615,0.5105,0.192,0.675,12),
+(83,'F',0.52,0.425,0.165,0.9885,0.396,0.225,0.32,16),
+(84,'M',0.595,0.475,0.16,1.3175,0.408,0.234,0.58,21),
+(85,'M',0.58,0.45,0.14,1.013,0.38,0.216,0.36,14),
+(86,'F',0.57,0.465,0.18,1.295,0.339,0.2225,0.44,12),
+(87,'M',0.625,0.465,0.14,1.195,0.4825,0.205,0.4,13),
+(88,'M',0.56,0.44,0.16,0.8645,0.3305,0.2075,0.26,10),
+(89,'F',0.46,0.355,0.13,0.517,0.2205,0.114,0.165,9),
+(90,'F',0.575,0.45,0.16,0.9775,0.3135,0.231,0.33,12),
+(91,'M',0.565,0.425,0.135,0.8115,0.341,0.1675,0.255,15),
+(92,'M',0.555,0.44,0.15,0.755,0.307,0.1525,0.26,12),
+(93,'M',0.595,0.465,0.175,1.115,0.4015,0.254,0.39,13),
+(94,'F',0.625,0.495,0.165,1.262,0.507,0.318,0.39,10),
+(95,'M',0.695,0.56,0.19,1.494,0.588,0.3425,0.485,15),
+(96,'M',0.665,0.535,0.195,1.606,0.5755,0.388,0.48,14),
+(97,'M',0.535,0.435,0.15,0.725,0.269,0.1385,0.25,9),
+(98,'M',0.47,0.375,0.13,0.523,0.214,0.132,0.145,8),
+(99,'M',0.47,0.37,0.13,0.5225,0.201,0.133,0.165,7),
+(100,'F',0.475,0.375,0.125,0.5785,0.2775,0.085,0.155,10),
+(101,'I',0.36,0.265,0.095,0.2315,0.105,0.046,0.075,7),
+(102,'M',0.55,0.435,0.145,0.843,0.328,0.1915,0.255,15),
+(103,'M',0.53,0.435,0.16,0.883,0.316,0.164,0.335,15),
+(104,'M',0.53,0.415,0.14,0.724,0.3105,0.1675,0.205,10),
+(105,'M',0.605,0.47,0.16,1.1735,0.4975,0.2405,0.345,12),
+(106,'F',0.52,0.41,0.155,0.727,0.291,0.1835,0.235,12),
+(107,'F',0.545,0.43,0.165,0.802,0.2935,0.183,0.28,11),
+(108,'F',0.5,0.4,0.125,0.6675,0.261,0.1315,0.22,10),
+(109,'F',0.51,0.39,0.135,0.6335,0.231,0.179,0.2,9),
+(110,'F',0.435,0.395,0.105,0.3635,0.136,0.098,0.13,9),
+(111,'M',0.495,0.395,0.125,0.5415,0.2375,0.1345,0.155,9),
+(112,'M',0.465,0.36,0.105,0.431,0.172,0.107,0.175,9),
+(113,'I',0.435,0.32,0.08,0.3325,0.1485,0.0635,0.105,9),
+(114,'M',0.425,0.35,0.105,0.393,0.13,0.063,0.165,9),
+(115,'F',0.545,0.41,0.125,0.6935,0.2975,0.146,0.21,11),
+(116,'F',0.53,0.415,0.115,0.5915,0.233,0.1585,0.18,11),
+(117,'F',0.49,0.375,0.135,0.6125,0.2555,0.102,0.22,11),
+(118,'M',0.44,0.34,0.105,0.402,0.1305,0.0955,0.165,10),
+(119,'F',0.56,0.43,0.15,0.8825,0.3465,0.172,0.31,9),
+(120,'M',0.405,0.305,0.085,0.2605,0.1145,0.0595,0.085,8),
+(121,'F',0.47,0.365,0.105,0.4205,0.163,0.1035,0.14,9),
+(122,'I',0.385,0.295,0.085,0.2535,0.103,0.0575,0.085,7),
+(123,'F',0.515,0.425,0.14,0.766,0.304,0.1725,0.255,14),
+(124,'M',0.37,0.265,0.075,0.214,0.09,0.051,0.07,6),
+(125,'I',0.36,0.28,0.08,0.1755,0.081,0.0505,0.07,6),
+(126,'I',0.27,0.195,0.06,0.073,0.0285,0.0235,0.03,5),
+(127,'I',0.375,0.275,0.09,0.238,0.1075,0.0545,0.07,6),
+(128,'I',0.385,0.29,0.085,0.2505,0.112,0.061,0.08,8),
+(129,'M',0.7,0.535,0.16,1.7255,0.63,0.2635,0.54,19),
+(130,'M',0.71,0.54,0.165,1.959,0.7665,0.261,0.78,18),
+(131,'M',0.595,0.48,0.165,1.262,0.4835,0.283,0.41,17),
+(132,'F',0.44,0.35,0.125,0.4035,0.175,0.063,0.129,9),
+(133,'F',0.325,0.26,0.09,0.1915,0.085,0.036,0.062,7),
+(134,'I',0.35,0.26,0.095,0.211,0.086,0.056,0.068,7),
+(135,'I',0.265,0.2,0.065,0.0975,0.04,0.0205,0.028,7),
+(136,'F',0.425,0.33,0.115,0.406,0.1635,0.081,0.1355,8),
+(137,'F',0.305,0.23,0.08,0.156,0.0675,0.0345,0.048,7),
+(138,'M',0.345,0.255,0.09,0.2005,0.094,0.0295,0.063,9),
+(139,'F',0.405,0.325,0.11,0.3555,0.151,0.063,0.117,9),
+(140,'M',0.375,0.285,0.095,0.253,0.096,0.0575,0.0925,9),
+(141,'F',0.565,0.445,0.155,0.826,0.341,0.2055,0.2475,10),
+(142,'F',0.55,0.45,0.145,0.741,0.295,0.1435,0.2665,10),
+(143,'M',0.65,0.52,0.19,1.3445,0.519,0.306,0.4465,16),
+(144,'M',0.56,0.455,0.155,0.797,0.34,0.19,0.2425,11),
+(145,'M',0.475,0.375,0.13,0.5175,0.2075,0.1165,0.17,10),
+(146,'F',0.49,0.38,0.125,0.549,0.245,0.1075,0.174,10),
+(147,'M',0.46,0.35,0.12,0.515,0.224,0.108,0.1565,10),
+(148,'I',0.28,0.205,0.08,0.127,0.052,0.039,0.042,9),
+(149,'I',0.175,0.13,0.055,0.0315,0.0105,0.0065,0.0125,5),
+(150,'I',0.17,0.13,0.095,0.03,0.013,0.008,0.01,4),
+(151,'M',0.59,0.475,0.145,1.053,0.4415,0.262,0.325,15),
+(152,'F',0.605,0.5,0.185,1.1185,0.469,0.2585,0.335,9),
+(153,'F',0.635,0.515,0.19,1.3715,0.5065,0.305,0.45,10),
+(154,'F',0.605,0.485,0.16,1.0565,0.37,0.2355,0.355,10),
+(155,'F',0.565,0.45,0.135,0.9885,0.387,0.1495,0.31,12),
+(156,'M',0.515,0.405,0.13,0.722,0.32,0.131,0.21,10),
+(157,'F',0.575,0.46,0.19,0.994,0.392,0.2425,0.34,13),
+(158,'M',0.645,0.485,0.215,1.514,0.546,0.2615,0.635,16),
+(159,'F',0.58,0.455,0.17,0.9075,0.374,0.2135,0.285,13),
+(160,'F',0.575,0.46,0.165,1.124,0.2985,0.1785,0.44,13),
+(161,'M',0.605,0.465,0.165,1.056,0.4215,0.2475,0.34,13),
+(162,'F',0.605,0.485,0.16,1.222,0.53,0.2575,0.28,13),
+(163,'M',0.61,0.485,0.175,1.2445,0.544,0.297,0.345,12),
+(164,'F',0.725,0.56,0.21,2.141,0.65,0.398,1.005,18),
+(165,'F',0.65,0.545,0.23,1.752,0.5605,0.2895,0.815,16),
+(166,'M',0.725,0.57,0.19,2.55,1.0705,0.483,0.725,14),
+(167,'F',0.725,0.575,0.175,2.124,0.765,0.4515,0.85,20),
+(168,'F',0.68,0.57,0.205,1.842,0.625,0.408,0.65,20),
+(169,'M',0.705,0.56,0.22,1.981,0.8175,0.3085,0.76,14),
+(170,'F',0.68,0.515,0.175,1.6185,0.5125,0.409,0.62,12),
+(171,'M',0.695,0.55,0.215,1.9565,0.7125,0.541,0.59,14),
+(172,'F',0.53,0.395,0.145,0.775,0.308,0.169,0.255,7),
+(173,'M',0.525,0.435,0.155,1.065,0.486,0.233,0.285,8),
+(174,'F',0.52,0.405,0.115,0.776,0.32,0.1845,0.22,8),
+(175,'I',0.235,0.16,0.04,0.048,0.0185,0.018,0.015,5),
+(176,'I',0.36,0.26,0.09,0.1785,0.0645,0.037,0.075,7),
+(177,'I',0.315,0.21,0.06,0.125,0.06,0.0375,0.035,5),
+(178,'I',0.315,0.245,0.085,0.1435,0.053,0.0475,0.05,8),
+(179,'I',0.225,0.16,0.045,0.0465,0.025,0.015,0.015,4),
+(180,'M',0.58,0.475,0.15,0.97,0.385,0.2165,0.35,11),
+(181,'M',0.57,0.48,0.18,0.9395,0.399,0.2,0.295,14),
+(182,'M',0.64,0.51,0.175,1.368,0.515,0.266,0.57,21),
+(183,'F',0.56,0.45,0.16,1.0235,0.429,0.268,0.3,10),
+(184,'F',0.62,0.475,0.175,1.0165,0.4355,0.214,0.325,10),
+(185,'F',0.645,0.51,0.2,1.5675,0.621,0.367,0.46,12),
+(186,'M',0.62,0.49,0.19,1.218,0.5455,0.2965,0.355,13),
+(187,'F',0.63,0.48,0.15,1.0525,0.392,0.336,0.285,12),
+(188,'F',0.63,0.5,0.185,1.383,0.54,0.3315,0.38,10),
+(189,'F',0.63,0.48,0.16,1.199,0.5265,0.335,0.315,11),
+(190,'F',0.585,0.46,0.17,0.9325,0.365,0.271,0.29,9),
+(191,'M',0.615,0.48,0.18,1.1595,0.4845,0.2165,0.325,13),
+(192,'M',0.61,0.485,0.17,1.0225,0.419,0.2405,0.36,12),
+(193,'M',0.58,0.45,0.15,0.927,0.276,0.1815,0.36,14),
+(194,'I',0.355,0.275,0.085,0.22,0.092,0.06,0.15,8),
+(195,'F',0.51,0.4,0.14,0.8145,0.459,0.1965,0.195,10),
+(196,'M',0.5,0.405,0.155,0.772,0.346,0.1535,0.245,12),
+(197,'F',0.505,0.41,0.15,0.644,0.285,0.145,0.21,11),
+(198,'M',0.64,0.5,0.185,1.3035,0.4445,0.2635,0.465,16),
+(199,'M',0.56,0.45,0.16,0.922,0.432,0.178,0.26,15),
+(200,'M',0.585,0.46,0.185,0.922,0.3635,0.213,0.285,10),
+(201,'F',0.45,0.345,0.12,0.4165,0.1655,0.095,0.135,9),
+(202,'M',0.5,0.4,0.165,0.825,0.254,0.205,0.285,13),
+(203,'F',0.5,0.4,0.145,0.63,0.234,0.1465,0.23,12),
+(204,'F',0.53,0.435,0.17,0.8155,0.2985,0.155,0.275,13),
+(205,'M',0.42,0.335,0.115,0.369,0.171,0.071,0.12,8),
+(206,'F',0.44,0.34,0.14,0.482,0.186,0.1085,0.16,9),
+(207,'I',0.4,0.3,0.11,0.315,0.109,0.067,0.12,9),
+(208,'I',0.435,0.34,0.11,0.3795,0.1495,0.085,0.12,8),
+(209,'F',0.525,0.415,0.17,0.8325,0.2755,0.1685,0.31,13),
+(210,'I',0.37,0.28,0.095,0.2655,0.122,0.052,0.08,7),
+(211,'F',0.49,0.365,0.145,0.6345,0.1995,0.1625,0.22,10),
+(212,'M',0.335,0.25,0.09,0.181,0.0755,0.0415,0.06,7),
+(213,'F',0.415,0.325,0.105,0.38,0.1595,0.0785,0.12,12),
+(214,'M',0.5,0.405,0.14,0.6155,0.241,0.1355,0.205,9),
+(215,'F',0.485,0.395,0.16,0.66,0.2475,0.128,0.235,14),
+(216,'M',0.55,0.405,0.14,0.8025,0.244,0.1635,0.255,10),
+(217,'M',0.45,0.35,0.13,0.46,0.174,0.111,0.135,8),
+(218,'I',0.405,0.3,0.12,0.324,0.1265,0.07,0.11,7),
+(219,'M',0.47,0.36,0.135,0.501,0.1665,0.115,0.165,10),
+(220,'F',0.415,0.305,0.13,0.32,0.1305,0.0755,0.105,8),
+(221,'F',0.445,0.325,0.125,0.455,0.1785,0.1125,0.14,9),
+(222,'F',0.47,0.35,0.145,0.5175,0.187,0.1235,0.18,11),
+(223,'F',0.49,0.375,0.15,0.5755,0.22,0.144,0.19,9),
+(224,'F',0.445,0.355,0.15,0.485,0.181,0.125,0.155,11),
+(225,'I',0.425,0.38,0.105,0.3265,0.1285,0.0785,0.1,10),
+(226,'F',0.5,0.37,0.135,0.45,0.1715,0.1055,0.155,9),
+(227,'F',0.39,0.29,0.125,0.3055,0.121,0.082,0.09,7),
+(228,'I',0.365,0.27,0.085,0.205,0.078,0.0485,0.07,7),
+(229,'F',0.58,0.465,0.165,1.1015,0.404,0.2095,0.35,11),
+(230,'F',0.53,0.415,0.16,0.783,0.2935,0.158,0.245,15),
+(231,'M',0.555,0.445,0.135,0.836,0.336,0.1625,0.275,13),
+(232,'M',0.565,0.44,0.175,0.9025,0.31,0.193,0.325,14),
+(233,'M',0.625,0.505,0.215,1.4455,0.496,0.287,0.435,22),
+(234,'I',0.275,0.215,0.075,0.1155,0.0485,0.029,0.035,7),
+(235,'I',0.44,0.35,0.135,0.435,0.1815,0.083,0.125,12),
+(236,'I',0.295,0.225,0.08,0.124,0.0485,0.032,0.04,9),
+(237,'I',0.075,0.055,0.01,0.002,0.001,0.0005,0.0015,1),
+(238,'I',0.13,0.1,0.03,0.013,0.0045,0.003,0.004,3),
+(239,'I',0.11,0.09,0.03,0.008,0.0025,0.002,0.003,3),
+(240,'I',0.16,0.12,0.035,0.021,0.0075,0.0045,0.005,5),
+(241,'M',0.565,0.425,0.16,0.9425,0.3495,0.2185,0.275,17),
+(242,'I',0.27,0.2,0.07,0.1,0.034,0.0245,0.035,5),
+(243,'I',0.23,0.175,0.065,0.0645,0.026,0.0105,0.02,5),
+(244,'I',0.3,0.23,0.08,0.1275,0.0435,0.0265,0.04,8),
+(245,'I',0.33,0.255,0.085,0.1655,0.063,0.039,0.06,8),
+(246,'I',0.35,0.26,0.085,0.174,0.0705,0.0345,0.06,10),
+(247,'I',0.32,0.245,0.08,0.1585,0.0635,0.0325,0.05,13),
+(248,'I',0.36,0.275,0.085,0.1975,0.0745,0.0415,0.07,9),
+(249,'I',0.305,0.245,0.075,0.156,0.0675,0.038,0.045,7),
+(250,'I',0.345,0.27,0.11,0.2135,0.082,0.0545,0.07,7),
+(251,'I',0.33,0.25,0.105,0.1715,0.0655,0.035,0.06,7),
+(252,'M',0.59,0.47,0.18,1.1235,0.4205,0.2805,0.36,13),
+(253,'F',0.595,0.455,0.155,1.0605,0.5135,0.2165,0.3,12),
+(254,'F',0.575,0.46,0.185,1.094,0.4485,0.217,0.345,15),
+(255,'M',0.6,0.495,0.165,1.2415,0.485,0.2775,0.34,15),
+(256,'M',0.56,0.45,0.175,1.011,0.3835,0.2065,0.37,15),
+(257,'M',0.56,0.45,0.185,1.07,0.3805,0.175,0.41,19),
+(258,'M',0.545,0.46,0.16,0.8975,0.341,0.1655,0.345,10),
+(259,'F',0.635,0.505,0.17,1.415,0.605,0.297,0.365,15),
+(260,'F',0.59,0.475,0.16,1.1015,0.4775,0.2555,0.295,13),
+(261,'F',0.54,0.475,0.155,0.928,0.394,0.194,0.26,11),
+(262,'F',0.57,0.44,0.125,0.865,0.3675,0.1725,0.27,12),
+(263,'M',0.53,0.42,0.165,0.8945,0.319,0.239,0.245,11),
+(264,'I',0.245,0.195,0.06,0.095,0.0445,0.0245,0.026,4),
+(265,'M',0.27,0.2,0.08,0.1205,0.0465,0.028,0.04,6),
+(266,'F',0.46,0.38,0.13,0.639,0.3,0.1525,0.16,11),
+(267,'M',0.52,0.45,0.15,0.895,0.3615,0.186,0.235,14),
+(268,'M',0.35,0.275,0.11,0.2925,0.1225,0.0635,0.0905,8),
+(269,'M',0.47,0.39,0.15,0.6355,0.2185,0.0885,0.255,9),
+(270,'F',0.45,0.36,0.125,0.4995,0.2035,0.1,0.17,13),
+(271,'F',0.64,0.525,0.215,1.779,0.4535,0.2855,0.55,22),
+(272,'M',0.59,0.5,0.2,1.187,0.412,0.2705,0.37,16),
+(273,'M',0.62,0.485,0.205,1.219,0.3875,0.2505,0.385,14),
+(274,'M',0.63,0.505,0.225,1.525,0.56,0.3335,0.45,15),
+(275,'M',0.63,0.515,0.155,1.259,0.4105,0.197,0.41,13),
+(276,'M',0.655,0.54,0.215,1.844,0.7425,0.327,0.585,22),
+(277,'F',0.66,0.53,0.185,1.3485,0.493,0.245,0.49,12),
+(278,'M',0.61,0.5,0.24,1.642,0.532,0.3345,0.69,18),
+(279,'M',0.635,0.525,0.205,1.484,0.55,0.3115,0.43,20),
+(280,'F',0.515,0.425,0.135,0.712,0.2665,0.1605,0.25,11),
+(281,'F',0.535,0.415,0.185,0.8415,0.314,0.1585,0.3,15),
+(282,'I',0.36,0.285,0.105,0.2415,0.0915,0.057,0.075,7),
+(283,'F',0.455,0.355,0.12,0.4495,0.177,0.104,0.15,9),
+(284,'M',0.485,0.395,0.14,0.6295,0.2285,0.127,0.225,14),
+(285,'M',0.515,0.38,0.175,0.9565,0.325,0.158,0.31,14),
+(286,'F',0.535,0.415,0.17,0.879,0.295,0.1965,0.285,10),
+(287,'M',0.53,0.435,0.155,0.699,0.288,0.1595,0.205,10),
+(288,'F',0.495,0.4,0.155,0.6445,0.242,0.1325,0.205,17),
+(289,'M',0.44,0.355,0.125,0.4775,0.132,0.0815,0.19,9),
+(290,'F',0.535,0.435,0.16,0.8105,0.3155,0.1795,0.24,10),
+(291,'M',0.54,0.435,0.18,0.996,0.3835,0.226,0.325,17),
+(292,'F',0.565,0.505,0.21,1.2765,0.501,0.279,0.355,12),
+(293,'M',0.61,0.475,0.165,1.116,0.428,0.2205,0.315,15),
+(294,'F',0.565,0.455,0.175,1.013,0.342,0.207,0.35,19),
+(295,'M',0.6,0.495,0.195,1.0575,0.384,0.19,0.375,26),
+(296,'I',0.295,0.215,0.085,0.128,0.049,0.034,0.04,6),
+(297,'I',0.275,0.205,0.075,0.1105,0.045,0.0285,0.035,6),
+(298,'I',0.28,0.21,0.085,0.1065,0.039,0.0295,0.03,4),
+(299,'M',0.49,0.395,0.14,0.549,0.2215,0.1275,0.15,11),
+(300,'M',0.37,0.28,0.105,0.234,0.0905,0.0585,0.075,9),
+(301,'F',0.405,0.305,0.095,0.3485,0.1455,0.0895,0.1,9),
+(302,'F',0.54,0.435,0.175,0.892,0.322,0.174,0.335,13),
+(303,'M',0.37,0.28,0.1,0.252,0.1065,0.0595,0.074,8),
+(304,'M',0.36,0.27,0.1,0.217,0.0885,0.0495,0.0715,6),
+(305,'F',0.47,0.36,0.13,0.472,0.182,0.114,0.15,10),
+(306,'I',0.2,0.145,0.06,0.037,0.0125,0.0095,0.011,4),
+(307,'I',0.165,0.12,0.03,0.0215,0.007,0.005,0.005,3),
+(308,'M',0.645,0.515,0.24,1.5415,0.471,0.369,0.535,13),
+(309,'M',0.55,0.41,0.125,0.7605,0.2505,0.1635,0.195,14),
+(310,'M',0.57,0.435,0.145,0.9055,0.3925,0.2355,0.275,10),
+(311,'F',0.63,0.485,0.19,1.2435,0.4635,0.3055,0.39,21),
+(312,'M',0.56,0.44,0.14,0.971,0.443,0.2045,0.265,14),
+(313,'M',0.595,0.455,0.195,1.3305,0.4595,0.3235,0.345,19),
+(314,'F',0.62,0.47,0.2,1.2255,0.381,0.27,0.435,23),
+(315,'M',0.63,0.485,0.175,1.3,0.4335,0.2945,0.46,23),
+(316,'I',0.45,0.355,0.11,0.4585,0.194,0.067,0.14,8),
+(317,'F',0.635,0.535,0.19,1.242,0.576,0.2475,0.39,14),
+(318,'M',0.45,0.35,0.1,0.3675,0.1465,0.1015,0.12,10),
+(319,'F',0.58,0.455,0.155,0.8365,0.315,0.1385,0.32,18),
+(320,'I',0.33,0.255,0.095,0.172,0.066,0.0255,0.06,6),
+(321,'I',0.265,0.21,0.06,0.0965,0.0425,0.022,0.03,5),
+(322,'I',0.19,0.145,0.04,0.038,0.0165,0.0065,0.015,4),
+(323,'M',0.385,0.31,0.1,0.2845,0.1065,0.075,0.1,11),
+(324,'I',0.265,0.205,0.07,0.1055,0.039,0.041,0.035,5),
+(325,'M',0.335,0.265,0.105,0.222,0.0935,0.056,0.075,7),
+(326,'I',0.355,0.275,0.09,0.251,0.097,0.053,0.08,7),
+(327,'I',0.32,0.255,0.1,0.1755,0.073,0.0415,0.065,7),
+(328,'M',0.51,0.4,0.13,0.6435,0.27,0.1665,0.205,12),
+(329,'M',0.36,0.295,0.105,0.241,0.0865,0.053,0.095,8),
+(330,'I',0.36,0.28,0.09,0.2255,0.0885,0.04,0.09,8),
+(331,'M',0.5,0.38,0.155,0.5955,0.2135,0.161,0.2,12),
+(332,'F',0.4,0.325,0.12,0.3185,0.134,0.0565,0.095,8),
+(333,'I',0.3,0.22,0.08,0.121,0.0475,0.042,0.035,5),
+(334,'I',0.235,0.175,0.04,0.0705,0.0335,0.015,0.02,5),
+(335,'F',0.74,0.6,0.195,1.974,0.598,0.4085,0.71,16),
+(336,'M',0.62,0.465,0.19,1.3415,0.5705,0.3175,0.355,11),
+(337,'M',0.6,0.475,0.19,1.0875,0.403,0.2655,0.325,14),
+(338,'M',0.59,0.45,0.185,1.283,0.473,0.276,0.425,16),
+(339,'M',0.62,0.475,0.185,1.325,0.6045,0.325,0.33,13),
+(340,'F',0.565,0.45,0.195,1.0035,0.406,0.2505,0.285,15),
+(341,'M',0.575,0.455,0.145,1.165,0.581,0.2275,0.3,14),
+(342,'F',0.62,0.51,0.205,1.3475,0.4775,0.2565,0.48,14),
+(343,'M',0.62,0.465,0.185,1.274,0.579,0.3065,0.32,12),
+(344,'F',0.505,0.375,0.18,0.568,0.2325,0.1495,0.17,12),
+(345,'F',0.46,0.425,0.155,0.746,0.3005,0.152,0.24,8),
+(346,'M',0.49,0.39,0.14,0.707,0.2795,0.2185,0.18,13),
+(347,'F',0.525,0.42,0.16,0.756,0.2745,0.173,0.275,9),
+(348,'I',0.34,0.26,0.08,0.2,0.08,0.0555,0.055,6),
+(349,'I',0.375,0.305,0.115,0.2715,0.092,0.074,0.09,8),
+(350,'M',0.61,0.48,0.15,1.2,0.56,0.2455,0.28,14),
+(351,'F',0.61,0.495,0.185,1.153,0.536,0.2905,0.245,8),
+(352,'F',0.585,0.45,0.17,0.8685,0.3325,0.1635,0.27,22),
+(353,'M',0.57,0.46,0.14,0.9535,0.4465,0.2065,0.245,12),
+(354,'M',0.58,0.455,0.17,0.93,0.408,0.259,0.22,9),
+(355,'M',0.635,0.515,0.17,1.275,0.509,0.286,0.34,16),
+(356,'M',0.7,0.58,0.205,2.13,0.7415,0.49,0.58,20),
+(357,'M',0.675,0.525,0.185,1.587,0.6935,0.336,0.395,13),
+(358,'F',0.645,0.525,0.19,1.8085,0.7035,0.3885,0.395,18),
+(359,'M',0.745,0.585,0.215,2.499,0.9265,0.472,0.7,17),
+(360,'F',0.685,0.545,0.18,1.768,0.7495,0.392,0.485,16),
+(361,'M',0.605,0.49,0.18,1.227,0.48,0.287,0.35,18),
+(362,'F',0.59,0.465,0.15,0.997,0.392,0.246,0.34,12),
+(363,'F',0.65,0.525,0.175,1.4225,0.61,0.2995,0.445,20),
+(364,'F',0.6,0.48,0.15,1.029,0.4085,0.2705,0.295,16),
+(365,'F',0.62,0.5,0.175,1.186,0.4985,0.3015,0.35,12),
+(366,'M',0.63,0.515,0.16,1.016,0.4215,0.244,0.355,19),
+(367,'M',0.58,0.465,0.145,0.887,0.4405,0.1655,0.265,11),
+(368,'F',0.58,0.455,0.12,1.0735,0.479,0.2735,0.265,10),
+(369,'M',0.63,0.49,0.18,1.13,0.458,0.2765,0.315,12),
+(370,'F',0.69,0.56,0.215,1.719,0.68,0.299,0.47,17),
+(371,'F',0.65,0.545,0.165,1.566,0.6645,0.3455,0.415,16),
+(372,'F',0.66,0.565,0.195,1.7605,0.692,0.3265,0.5,16),
+(373,'F',0.68,0.58,0.2,1.787,0.585,0.453,0.6,19),
+(374,'F',0.7,0.575,0.17,1.31,0.5095,0.314,0.42,14),
+(375,'M',0.685,0.52,0.15,1.343,0.4635,0.292,0.4,13),
+(376,'F',0.675,0.545,0.195,1.7345,0.6845,0.3695,0.605,20),
+(377,'M',0.63,0.49,0.19,1.1775,0.4935,0.3365,0.285,11),
+(378,'F',0.585,0.45,0.16,1.077,0.4995,0.2875,0.25,10),
+(379,'M',0.565,0.465,0.175,0.995,0.3895,0.183,0.37,15),
+(380,'F',0.61,0.495,0.185,1.1085,0.3705,0.3135,0.33,12),
+(381,'M',0.605,0.47,0.18,1.1405,0.3755,0.2805,0.385,15),
+(382,'M',0.535,0.42,0.145,0.791,0.33,0.189,0.25,10),
+(383,'M',0.485,0.4,0.135,0.663,0.313,0.137,0.2,10),
+(384,'M',0.47,0.375,0.12,0.5565,0.226,0.122,0.195,12),
+(385,'M',0.545,0.425,0.135,0.8445,0.373,0.21,0.235,10),
+(386,'F',0.455,0.37,0.105,0.4925,0.216,0.1245,0.135,9),
+(387,'M',0.54,0.42,0.155,0.7385,0.3515,0.152,0.215,12),
+(388,'M',0.46,0.38,0.135,0.482,0.207,0.1225,0.145,10),
+(389,'M',0.49,0.42,0.125,0.609,0.239,0.1435,0.22,14),
+(390,'I',0.465,0.375,0.12,0.471,0.222,0.119,0.14,9),
+(391,'I',0.415,0.325,0.1,0.3215,0.1535,0.0595,0.105,10),
+(392,'M',0.475,0.375,0.125,0.593,0.277,0.115,0.18,10),
+(393,'F',0.47,0.375,0.125,0.5615,0.252,0.137,0.18,10),
+(394,'I',0.365,0.295,0.095,0.25,0.1075,0.0545,0.08,9),
+(395,'I',0.345,0.275,0.095,0.1995,0.0755,0.0535,0.07,6),
+(396,'I',0.39,0.31,0.1,0.302,0.116,0.064,0.115,11),
+(397,'F',0.5,0.395,0.14,0.7155,0.3165,0.176,0.24,10),
+(398,'M',0.47,0.38,0.145,0.5865,0.2385,0.144,0.185,8),
+(399,'M',0.535,0.44,0.15,0.6765,0.256,0.139,0.26,12),
+(400,'M',0.585,0.455,0.15,0.987,0.4355,0.2075,0.31,11),
+(401,'F',0.485,0.365,0.12,0.5885,0.27,0.131,0.175,9),
+(402,'M',0.515,0.455,0.135,0.7225,0.295,0.1625,0.235,9),
+(403,'F',0.435,0.325,0.11,0.4335,0.178,0.0985,0.155,7),
+(404,'F',0.515,0.415,0.14,0.6935,0.3115,0.152,0.2,10),
+(405,'I',0.44,0.345,0.12,0.365,0.1655,0.083,0.11,7),
+(406,'F',0.525,0.44,0.15,0.8425,0.3685,0.1985,0.24,12),
+(407,'M',0.45,0.355,0.115,0.479,0.2125,0.1045,0.15,8),
+(408,'M',0.59,0.485,0.12,0.911,0.39,0.182,0.29,16),
+(409,'M',0.555,0.45,0.145,0.915,0.4,0.246,0.285,11),
+(410,'M',0.57,0.44,0.095,0.827,0.3395,0.2215,0.235,8),
+(411,'M',0.59,0.5,0.165,1.1045,0.4565,0.2425,0.34,15),
+(412,'M',0.585,0.475,0.12,0.945,0.41,0.2115,0.28,14),
+(413,'F',0.58,0.46,0.12,0.9935,0.4625,0.2385,0.28,11),
+(414,'M',0.545,0.44,0.12,0.8565,0.3475,0.1715,0.24,12),
+(415,'F',0.605,0.495,0.17,1.2385,0.528,0.2465,0.39,14),
+(416,'F',0.62,0.47,0.14,1.0325,0.3605,0.224,0.36,15),
+(417,'F',0.63,0.5,0.17,1.3135,0.5595,0.267,0.4,20),
+(418,'M',0.63,0.515,0.165,1.352,0.488,0.349,0.45,20),
+(419,'F',0.63,0.5,0.155,1.005,0.367,0.199,0.36,16),
+(420,'M',0.545,0.41,0.14,0.625,0.223,0.16,0.235,13),
+(421,'F',0.67,0.54,0.165,1.5015,0.518,0.358,0.505,14),
+(422,'I',0.49,0.38,0.12,0.529,0.2165,0.139,0.155,11),
+(423,'F',0.49,0.39,0.135,0.5785,0.2465,0.123,0.2,13),
+(424,'I',0.29,0.225,0.07,0.101,0.036,0.0235,0.035,8),
+(425,'I',0.26,0.2,0.07,0.092,0.037,0.02,0.03,6),
+(426,'M',0.58,0.45,0.175,1.068,0.425,0.203,0.32,13),
+(427,'F',0.61,0.485,0.165,1.0915,0.3935,0.2435,0.33,18),
+(428,'M',0.6,0.5,0.16,1.015,0.3995,0.1735,0.33,19),
+(429,'F',0.56,0.455,0.125,0.943,0.344,0.129,0.375,21),
+(430,'F',0.575,0.45,0.17,1.0475,0.3775,0.1705,0.385,18),
+(431,'F',0.57,0.45,0.175,0.9555,0.38,0.1665,0.295,18),
+(432,'M',0.6,0.47,0.155,1.036,0.4375,0.196,0.325,20),
+(433,'M',0.565,0.455,0.17,0.9065,0.342,0.156,0.32,18),
+(434,'M',0.545,0.42,0.14,0.7505,0.2475,0.13,0.255,22),
+(435,'I',0.44,0.345,0.1,0.366,0.122,0.0905,0.12,13),
+(436,'M',0.5,0.41,0.15,0.662,0.2815,0.137,0.22,11),
+(437,'I',0.36,0.275,0.095,0.217,0.084,0.0435,0.09,7),
+(438,'I',0.385,0.305,0.095,0.252,0.0915,0.055,0.09,14),
+(439,'M',0.39,0.3,0.09,0.3055,0.143,0.0645,0.085,9),
+(440,'M',0.5,0.415,0.165,0.6885,0.249,0.138,0.25,13),
+(441,'I',0.36,0.275,0.11,0.2335,0.095,0.0525,0.085,10),
+(442,'I',0.335,0.26,0.1,0.192,0.0785,0.0585,0.07,8),
+(443,'F',0.505,0.425,0.14,0.85,0.275,0.1625,0.285,19),
+(444,'I',0.395,0.295,0.1,0.2715,0.134,0.0325,0.085,10),
+(445,'F',0.41,0.325,0.105,0.3635,0.159,0.077,0.12,10),
+(446,'F',0.56,0.455,0.19,0.714,0.283,0.129,0.275,9),
+(447,'M',0.565,0.435,0.185,0.9815,0.329,0.136,0.39,13),
+(448,'M',0.565,0.455,0.185,0.9265,0.354,0.1575,0.375,16),
+(449,'M',0.605,0.5,0.175,1.098,0.4765,0.232,0.375,12),
+(450,'F',0.565,0.455,0.15,0.8205,0.365,0.159,0.26,18),
+(451,'M',0.725,0.565,0.215,1.891,0.6975,0.4725,0.58,16),
+(452,'F',0.675,0.535,0.16,1.41,0.592,0.3175,0.42,16),
+(453,'F',0.665,0.555,0.195,1.4385,0.581,0.354,0.36,17),
+(454,'F',0.565,0.49,0.155,0.9245,0.405,0.2195,0.255,11),
+(455,'F',0.645,0.55,0.175,1.2915,0.57,0.3045,0.33,14),
+(456,'M',0.575,0.47,0.14,0.8375,0.3485,0.1735,0.24,11),
+(457,'F',0.64,0.54,0.175,1.221,0.51,0.259,0.39,15),
+(458,'I',0.36,0.28,0.105,0.199,0.0695,0.045,0.08,9),
+(459,'I',0.415,0.31,0.11,0.2965,0.123,0.057,0.0995,10),
+(460,'F',0.525,0.41,0.135,0.7085,0.293,0.1525,0.235,11),
+(461,'M',0.38,0.285,0.1,0.2665,0.115,0.061,0.075,11),
+(462,'F',0.585,0.465,0.17,0.9915,0.3865,0.224,0.265,12),
+(463,'I',0.24,0.185,0.07,0.0715,0.026,0.018,0.025,6),
+(464,'I',0.22,0.165,0.055,0.0545,0.0215,0.012,0.02,5),
+(465,'I',0.255,0.195,0.07,0.0735,0.0255,0.02,0.025,6),
+(466,'I',0.175,0.125,0.05,0.0235,0.008,0.0035,0.008,5),
+(467,'F',0.67,0.55,0.19,1.3905,0.5425,0.3035,0.4,12),
+(468,'M',0.655,0.53,0.195,1.388,0.567,0.2735,0.41,13),
+(469,'F',0.68,0.55,0.21,1.7445,0.5975,0.305,0.625,17),
+(470,'M',0.675,0.555,0.2,1.4385,0.545,0.2665,0.465,21),
+(471,'F',0.53,0.44,0.135,0.7835,0.313,0.1715,0.2185,9),
+(472,'F',0.515,0.405,0.12,0.646,0.2895,0.1405,0.177,10),
+(473,'I',0.43,0.34,0.12,0.3575,0.151,0.0645,0.1045,9),
+(474,'F',0.52,0.405,0.12,0.627,0.2645,0.1415,0.181,11),
+(475,'F',0.545,0.415,0.16,0.7715,0.272,0.1455,0.2765,10),
+(476,'M',0.53,0.415,0.175,0.7395,0.261,0.1395,0.2645,17),
+(477,'F',0.465,0.35,0.115,0.421,0.1565,0.091,0.1345,9),
+(478,'M',0.665,0.54,0.175,1.347,0.4955,0.254,0.415,17),
+(479,'M',0.735,0.59,0.225,1.756,0.637,0.3405,0.58,21),
+(480,'M',0.66,0.545,0.185,1.32,0.5305,0.2635,0.455,16),
+(481,'F',0.7,0.585,0.185,1.8075,0.7055,0.3215,0.475,29),
+(482,'M',0.575,0.4,0.155,0.9325,0.3605,0.2445,0.3,17),
+(483,'M',0.57,0.465,0.125,0.849,0.3785,0.1765,0.24,15),
+(484,'F',0.58,0.46,0.15,0.9955,0.429,0.212,0.26,19),
+(485,'M',0.63,0.48,0.145,1.0115,0.4235,0.237,0.305,12),
+(486,'F',0.585,0.465,0.14,0.908,0.381,0.1615,0.315,13),
+(487,'M',0.55,0.45,0.13,0.92,0.378,0.2385,0.29,11),
+(488,'F',0.625,0.515,0.15,1.2415,0.5235,0.3065,0.36,15),
+(489,'M',0.54,0.42,0.135,0.8075,0.3485,0.1795,0.235,11),
+(490,'F',0.57,0.455,0.165,1.0595,0.44,0.2195,0.285,14),
+(491,'M',0.59,0.455,0.145,1.073,0.475,0.19,0.285,14),
+(492,'M',0.58,0.46,0.13,0.921,0.357,0.181,0.29,13),
+(493,'F',0.655,0.51,0.155,1.2895,0.5345,0.2855,0.41,11),
+(494,'M',0.655,0.53,0.175,1.2635,0.486,0.2635,0.415,15),
+(495,'M',0.625,0.5,0.195,1.369,0.5875,0.2185,0.37,17),
+(496,'F',0.625,0.5,0.15,0.953,0.3445,0.2235,0.305,15),
+(497,'F',0.64,0.52,0.175,1.248,0.4245,0.2595,0.48,12),
+(498,'F',0.605,0.485,0.165,1.0105,0.435,0.209,0.3,19),
+(499,'F',0.615,0.525,0.155,1.0385,0.427,0.2315,0.345,11),
+(500,'M',0.555,0.45,0.175,0.874,0.3275,0.202,0.305,10),
+(501,'F',0.58,0.44,0.18,0.854,0.3665,0.1635,0.245,12),
+(502,'F',0.62,0.52,0.225,1.1835,0.378,0.27,0.395,23),
+(503,'F',0.62,0.47,0.225,1.115,0.378,0.2145,0.36,15),
+(504,'F',0.6,0.505,0.19,1.129,0.4385,0.256,0.36,13),
+(505,'F',0.625,0.485,0.19,1.1745,0.4385,0.2305,0.42,17),
+(506,'M',0.6,0.47,0.175,1.105,0.4865,0.247,0.315,15),
+(507,'M',0.56,0.46,0.235,0.8395,0.3325,0.157,0.305,12),
+(508,'M',0.585,0.455,0.225,1.055,0.3815,0.221,0.365,15),
+(509,'M',0.56,0.435,0.18,0.889,0.36,0.204,0.25,11),
+(510,'I',0.56,0.445,0.155,0.8735,0.3005,0.209,0.275,16),
+(511,'I',0.68,0.53,0.185,1.1095,0.439,0.245,0.34,10),
+(512,'F',0.455,0.35,0.14,0.5185,0.221,0.1265,0.135,10),
+(513,'F',0.49,0.38,0.145,0.6725,0.249,0.181,0.21,10),
+(514,'M',0.31,0.22,0.085,0.146,0.061,0.0365,0.045,6),
+(515,'F',0.275,0.195,0.07,0.08,0.031,0.0215,0.025,5),
+(516,'M',0.27,0.195,0.08,0.1,0.0385,0.0195,0.03,6),
+(517,'M',0.4,0.29,0.115,0.2795,0.1115,0.0575,0.075,9),
+(518,'M',0.28,0.2,0.08,0.0915,0.033,0.0215,0.03,5),
+(519,'M',0.325,0.23,0.09,0.147,0.06,0.034,0.045,4),
+(520,'F',0.345,0.25,0.09,0.203,0.078,0.059,0.055,6),
+(521,'M',0.21,0.15,0.05,0.0385,0.0155,0.0085,0.01,3),
+(522,'F',0.36,0.27,0.09,0.1885,0.0845,0.0385,0.055,5),
+(523,'I',0.365,0.26,0.115,0.218,0.0935,0.0445,0.07,9),
+(524,'M',0.2,0.14,0.055,0.035,0.0145,0.008,0.01,5),
+(525,'M',0.235,0.16,0.06,0.0545,0.0265,0.0095,0.015,4),
+(526,'M',0.175,0.125,0.04,0.024,0.0095,0.006,0.005,4),
+(527,'M',0.155,0.11,0.04,0.0155,0.0065,0.003,0.005,3),
+(528,'F',0.57,0.445,0.155,0.733,0.282,0.159,0.235,14),
+(529,'F',0.57,0.45,0.16,0.9715,0.3965,0.255,0.26,12),
+(530,'M',0.385,0.3,0.095,0.24,0.0885,0.059,0.085,9),
+(531,'I',0.53,0.42,0.185,0.752,0.299,0.156,0.205,20),
+(532,'F',0.46,0.355,0.13,0.458,0.192,0.1055,0.13,13),
+(533,'I',0.47,0.37,0.12,0.4705,0.1845,0.1055,0.155,12),
+(534,'F',0.435,0.335,0.11,0.38,0.1695,0.086,0.11,9),
+(535,'I',0.47,0.37,0.14,0.4985,0.2095,0.1225,0.145,10),
+(536,'I',0.465,0.38,0.13,0.454,0.1895,0.08,0.155,11),
+(537,'I',0.52,0.405,0.14,0.5775,0.2,0.145,0.179,11),
+(538,'M',0.29,0.23,0.075,0.1165,0.043,0.0255,0.04,7),
+(539,'M',0.275,0.205,0.07,0.094,0.0335,0.02,0.0325,5),
+(540,'F',0.375,0.29,0.115,0.2705,0.093,0.066,0.0885,10),
+(541,'F',0.5,0.375,0.14,0.604,0.242,0.1415,0.179,15),
+(542,'F',0.44,0.355,0.115,0.415,0.1585,0.0925,0.131,11),
+(543,'M',0.42,0.325,0.115,0.2885,0.1,0.057,0.1135,15),
+(544,'M',0.445,0.35,0.115,0.3615,0.1565,0.0695,0.117,8),
+(545,'F',0.38,0.29,0.105,0.257,0.099,0.051,0.085,10),
+(546,'M',0.32,0.245,0.075,0.1555,0.0585,0.038,0.049,11),
+(547,'M',0.255,0.195,0.065,0.08,0.0315,0.018,0.027,8),
+(548,'M',0.205,0.155,0.045,0.0425,0.017,0.0055,0.0155,7),
+(549,'F',0.565,0.45,0.16,0.795,0.3605,0.1555,0.23,12),
+(550,'I',0.555,0.425,0.18,0.875,0.3695,0.2005,0.255,11),
+(551,'I',0.65,0.515,0.16,1.1625,0.495,0.203,0.33,17),
+(552,'I',0.615,0.49,0.155,0.9885,0.4145,0.195,0.345,13),
+(553,'I',0.56,0.44,0.165,0.8,0.335,0.1735,0.25,12),
+(554,'I',0.48,0.37,0.12,0.514,0.2075,0.131,0.155,13),
+(555,'I',0.485,0.39,0.125,0.591,0.287,0.141,0.12,9),
+(556,'I',0.5,0.385,0.15,0.6265,0.2605,0.1665,0.16,10),
+(557,'I',0.525,0.405,0.15,0.795,0.3075,0.205,0.255,14),
+(558,'F',0.66,0.5,0.165,1.1905,0.4585,0.298,0.37,12),
+(559,'F',0.66,0.53,0.17,1.326,0.519,0.2625,0.44,13),
+(560,'I',0.52,0.4,0.145,0.66,0.267,0.1055,0.22,13),
+(561,'F',0.44,0.34,0.105,0.364,0.148,0.0805,0.1175,8),
+(562,'I',0.515,0.4,0.12,0.659,0.2705,0.179,0.17,13),
+(563,'F',0.475,0.35,0.115,0.452,0.1715,0.092,0.155,11),
+(564,'F',0.545,0.415,0.15,0.7335,0.2795,0.163,0.2185,11),
+(565,'F',0.47,0.355,0.13,0.5465,0.2005,0.126,0.185,14),
+(566,'M',0.35,0.255,0.065,0.179,0.0705,0.0385,0.06,10),
+(567,'I',0.485,0.355,0.13,0.581,0.245,0.132,0.168,12),
+(568,'I',0.435,0.33,0.125,0.406,0.1685,0.1055,0.096,12),
+(569,'M',0.28,0.21,0.08,0.1085,0.041,0.0265,0.0345,7),
+(570,'F',0.41,0.32,0.115,0.387,0.165,0.1005,0.0985,11),
+(571,'I',0.45,0.35,0.14,0.474,0.21,0.109,0.1275,16),
+(572,'I',0.45,0.345,0.135,0.443,0.1975,0.0875,0.1175,14),
+(573,'F',0.59,0.455,0.155,1.066,0.382,0.2275,0.415,20),
+(574,'F',0.57,0.44,0.14,0.9535,0.3785,0.201,0.305,17),
+(575,'I',0.61,0.475,0.15,0.9665,0.4145,0.2,0.345,10),
+(576,'F',0.61,0.475,0.14,1.133,0.5275,0.2355,0.35,11),
+(577,'I',0.56,0.425,0.14,0.9175,0.4005,0.1975,0.26,10),
+(578,'F',0.585,0.435,0.175,0.982,0.4055,0.2495,0.27,10),
+(579,'I',0.58,0.445,0.15,0.8865,0.383,0.209,0.255,11),
+(580,'F',0.63,0.48,0.175,1.3675,0.5015,0.3035,0.515,17),
+(581,'F',0.625,0.49,0.175,1.233,0.5565,0.247,0.365,11),
+(582,'I',0.55,0.425,0.15,0.806,0.376,0.171,0.245,14),
+(583,'F',0.645,0.525,0.19,1.4635,0.6615,0.3435,0.435,19),
+(584,'I',0.46,0.355,0.14,0.4935,0.216,0.133,0.115,13),
+(585,'F',0.41,0.305,0.1,0.363,0.1735,0.065,0.11,11),
+(586,'I',0.495,0.39,0.125,0.6655,0.284,0.162,0.2,11),
+(587,'I',0.52,0.425,0.17,0.6805,0.28,0.174,0.195,10),
+(588,'F',0.55,0.41,0.145,0.8285,0.3095,0.1905,0.25,13),
+(589,'M',0.45,0.335,0.14,0.4625,0.164,0.076,0.15,14),
+(590,'F',0.405,0.31,0.12,0.3095,0.138,0.058,0.095,13),
+(591,'I',0.51,0.4,0.15,0.745,0.2865,0.1675,0.235,13),
+(592,'F',0.37,0.29,0.115,0.25,0.111,0.057,0.075,9),
+(593,'I',0.525,0.41,0.175,0.874,0.3585,0.207,0.205,18),
+(594,'F',0.66,0.52,0.18,1.514,0.526,0.2975,0.42,19),
+(595,'M',0.535,0.42,0.15,0.6995,0.2575,0.153,0.24,12),
+(596,'I',0.575,0.455,0.18,0.8525,0.3015,0.1825,0.3,13),
+(597,'F',0.55,0.43,0.14,0.7135,0.2565,0.186,0.225,9),
+(598,'I',0.605,0.47,0.14,0.939,0.3385,0.201,0.32,13),
+(599,'I',0.605,0.495,0.145,1.054,0.369,0.2255,0.36,12),
+(600,'F',0.56,0.445,0.195,0.981,0.305,0.2245,0.335,16),
+(601,'I',0.535,0.42,0.145,0.926,0.398,0.1965,0.25,17),
+(602,'F',0.385,0.315,0.11,0.286,0.1225,0.0635,0.0835,10),
+(603,'F',0.39,0.3,0.1,0.265,0.1075,0.06,0.0865,13),
+(604,'I',0.47,0.345,0.115,0.4885,0.2005,0.108,0.166,11),
+(605,'I',0.515,0.39,0.14,0.5555,0.2,0.1135,0.2235,12),
+(606,'I',0.425,0.345,0.125,0.425,0.16,0.0795,0.154,13),
+(607,'M',0.345,0.27,0.09,0.195,0.078,0.0455,0.059,9),
+(608,'I',0.485,0.37,0.13,0.458,0.181,0.113,0.136,10),
+(609,'M',0.37,0.285,0.1,0.228,0.0675,0.0675,0.081,10),
+(610,'M',0.35,0.265,0.09,0.1775,0.0575,0.042,0.068,12),
+(611,'F',0.44,0.345,0.17,0.4085,0.15,0.0825,0.1515,12),
+(612,'M',0.195,0.145,0.05,0.032,0.01,0.008,0.012,4),
+(613,'M',0.325,0.24,0.075,0.155,0.0475,0.0355,0.06,9),
+(614,'I',0.495,0.37,0.125,0.4775,0.185,0.0705,0.169,18),
+(615,'I',0.45,0.35,0.145,0.525,0.2085,0.1,0.1655,15),
+(616,'M',0.415,0.345,0.135,0.3865,0.128,0.07,0.148,13),
+(617,'F',0.47,0.355,0.14,0.433,0.1525,0.095,0.152,12),
+(618,'M',0.32,0.24,0.085,0.17,0.0655,0.047,0.049,7),
+(619,'M',0.31,0.225,0.075,0.1295,0.0455,0.0335,0.044,9),
+(620,'M',0.235,0.17,0.055,0.0515,0.018,0.0105,0.0195,7),
+(621,'M',0.345,0.255,0.08,0.169,0.06,0.0425,0.054,10),
+(622,'I',0.485,0.38,0.14,0.673,0.2175,0.13,0.195,18),
+(623,'F',0.5,0.385,0.115,0.6785,0.2945,0.138,0.195,12),
+(624,'F',0.5,0.385,0.105,0.498,0.1795,0.1095,0.17,17),
+(625,'I',0.465,0.36,0.105,0.498,0.214,0.116,0.14,15),
+(626,'F',0.525,0.405,0.16,0.658,0.2655,0.1125,0.225,12),
+(627,'F',0.425,0.335,0.095,0.322,0.1205,0.061,0.125,10),
+(628,'F',0.38,0.305,0.095,0.2815,0.1255,0.0525,0.09,8),
+(629,'I',0.53,0.415,0.145,0.944,0.3845,0.185,0.265,21),
+(630,'M',0.34,0.265,0.085,0.1835,0.077,0.046,0.065,10),
+(631,'I',0.475,0.365,0.115,0.49,0.223,0.1235,0.1335,9),
+(632,'F',0.43,0.34,0.12,0.391,0.1555,0.095,0.1405,7),
+(633,'M',0.46,0.365,0.125,0.467,0.1895,0.0945,0.158,10),
+(634,'I',0.47,0.36,0.13,0.5225,0.198,0.1065,0.165,9),
+(635,'M',0.36,0.295,0.1,0.2105,0.066,0.0525,0.075,9),
+(636,'M',0.355,0.265,0.09,0.168,0.05,0.041,0.063,8),
+(637,'M',0.38,0.235,0.1,0.258,0.1055,0.054,0.08,7),
+(638,'M',0.355,0.26,0.085,0.1905,0.081,0.0485,0.055,6),
+(639,'I',0.44,0.345,0.12,0.487,0.1965,0.108,0.16,14),
+(640,'F',0.51,0.4,0.13,0.5735,0.219,0.1365,0.195,13),
+(641,'M',0.325,0.24,0.085,0.173,0.0795,0.038,0.05,7),
+(642,'I',0.62,0.485,0.18,1.1785,0.4675,0.2655,0.39,13),
+(643,'F',0.59,0.45,0.16,0.9,0.358,0.156,0.315,19),
+(644,'M',0.33,0.255,0.095,0.1875,0.0735,0.045,0.06,7),
+(645,'M',0.45,0.34,0.13,0.3715,0.1605,0.0795,0.105,9),
+(646,'I',0.445,0.33,0.12,0.347,0.12,0.084,0.105,11),
+(647,'M',0.33,0.215,0.075,0.1145,0.045,0.0265,0.035,6),
+(648,'M',0.48,0.375,0.145,0.777,0.216,0.13,0.17,9),
+(649,'I',0.46,0.35,0.12,0.4885,0.193,0.105,0.155,11),
+(650,'F',0.475,0.36,0.125,0.447,0.1695,0.081,0.14,9),
+(651,'M',0.255,0.18,0.065,0.079,0.034,0.014,0.025,5),
+(652,'I',0.335,0.245,0.09,0.1665,0.0595,0.04,0.06,6),
+(653,'I',0.47,0.35,0.13,0.466,0.1845,0.099,0.145,11),
+(654,'M',0.31,0.225,0.08,0.1345,0.054,0.024,0.05,7),
+(655,'F',0.37,0.28,0.11,0.2305,0.0945,0.0465,0.075,10),
+(656,'M',0.295,0.215,0.075,0.129,0.05,0.0295,0.04,7),
+(657,'F',0.555,0.435,0.165,0.97,0.336,0.2315,0.295,17),
+(658,'F',0.615,0.515,0.17,1.14,0.4305,0.2245,0.42,16),
+(659,'I',0.58,0.49,0.195,1.3165,0.5305,0.254,0.41,18),
+(660,'F',0.585,0.475,0.185,0.9585,0.4145,0.1615,0.33,11),
+(661,'I',0.65,0.525,0.18,1.626,0.597,0.3445,0.53,18),
+(662,'I',0.535,0.45,0.17,0.781,0.3055,0.1555,0.295,11),
+(663,'F',0.415,0.34,0.13,0.3675,0.146,0.0885,0.12,10),
+(664,'F',0.38,0.305,0.105,0.281,0.1045,0.0615,0.09,12),
+(665,'I',0.45,0.355,0.12,0.412,0.1145,0.0665,0.16,19),
+(666,'F',0.395,0.295,0.095,0.2245,0.078,0.054,0.08,10),
+(667,'M',0.455,0.35,0.12,0.4835,0.1815,0.144,0.16,11),
+(668,'F',0.485,0.38,0.15,0.605,0.2155,0.14,0.18,15),
+(669,'M',0.55,0.425,0.155,0.9175,0.2775,0.243,0.335,13),
+(670,'F',0.45,0.35,0.145,0.5425,0.1765,0.123,0.175,13),
+(671,'M',0.475,0.385,0.145,0.6175,0.235,0.108,0.215,14),
+(672,'F',0.5,0.38,0.155,0.655,0.2405,0.143,0.205,17),
+(673,'F',0.53,0.41,0.165,0.8115,0.24,0.169,0.24,19),
+(674,'M',0.49,0.39,0.15,0.573,0.225,0.124,0.17,21),
+(675,'F',0.49,0.385,0.15,0.7865,0.241,0.14,0.24,23),
+(676,'F',0.52,0.395,0.18,0.64,0.158,0.11,0.245,22),
+(677,'M',0.54,0.415,0.145,0.74,0.2635,0.168,0.245,12),
+(678,'F',0.5,0.375,0.115,0.5945,0.185,0.148,0.19,11),
+(679,'F',0.45,0.38,0.165,0.8165,0.25,0.1915,0.265,23),
+(680,'F',0.37,0.275,0.1,0.2225,0.093,0.026,0.08,8),
+(681,'I',0.37,0.275,0.1,0.2295,0.0885,0.0465,0.07,7),
+(682,'M',0.485,0.37,0.14,0.5725,0.204,0.1415,0.175,10),
+(683,'F',0.435,0.325,0.115,0.3915,0.154,0.094,0.12,7),
+(684,'M',0.535,0.405,0.185,0.8345,0.3175,0.1725,0.29,16),
+(685,'M',0.51,0.4,0.14,0.6515,0.2455,0.1665,0.185,10),
+(686,'M',0.565,0.44,0.185,0.909,0.344,0.2325,0.255,15),
+(687,'F',0.535,0.4,0.15,0.8045,0.3345,0.2125,0.21,13),
+(688,'F',0.535,0.405,0.125,0.927,0.26,0.1425,0.345,16),
+(689,'M',0.525,0.4,0.17,0.7305,0.279,0.2055,0.195,11),
+(690,'M',0.59,0.44,0.15,0.9555,0.366,0.2425,0.295,11),
+(691,'M',0.5,0.375,0.15,0.636,0.2535,0.145,0.19,10),
+(692,'I',0.255,0.19,0.075,0.0865,0.0345,0.0205,0.025,5),
+(693,'F',0.43,0.325,0.115,0.3865,0.1475,0.1065,0.11,11),
+(694,'M',0.38,0.29,0.12,0.283,0.1175,0.0655,0.085,9),
+(695,'I',0.165,0.11,0.02,0.019,0.0065,0.0025,0.005,4),
+(696,'I',0.315,0.23,0.09,0.1285,0.043,0.04,0.04,7),
+(697,'I',0.155,0.105,0.05,0.0175,0.005,0.0035,0.005,4),
+(698,'M',0.28,0.205,0.1,0.1165,0.0545,0.0285,0.03,5),
+(699,'F',0.43,0.335,0.12,0.444,0.155,0.1145,0.14,13),
+(700,'F',0.395,0.315,0.105,0.3515,0.1185,0.091,0.1195,16),
+(701,'M',0.385,0.285,0.105,0.2905,0.1215,0.0685,0.0875,12),
+(702,'F',0.48,0.385,0.135,0.536,0.1895,0.142,0.173,14),
+(703,'F',0.445,0.33,0.105,0.4525,0.18,0.103,0.123,9),
+(704,'M',0.395,0.295,0.115,0.316,0.1205,0.0595,0.1105,12),
+(705,'M',0.4,0.3,0.125,0.417,0.191,0.09,0.1175,9),
+(706,'M',0.415,0.325,0.14,0.417,0.1535,0.1015,0.144,10),
+(707,'M',0.315,0.25,0.09,0.203,0.0615,0.037,0.0795,11),
+(708,'F',0.345,0.26,0.09,0.207,0.0775,0.0435,0.0765,10),
+(709,'M',0.36,0.295,0.13,0.2765,0.0895,0.057,0.1005,10),
+(710,'I',0.295,0.225,0.09,0.1105,0.0405,0.0245,0.032,7),
+(711,'I',0.325,0.25,0.08,0.176,0.0595,0.0355,0.063,7),
+(712,'M',0.375,0.3,0.1,0.2465,0.104,0.0475,0.083,11),
+(713,'I',0.28,0.205,0.055,0.1135,0.045,0.0275,0.0335,7),
+(714,'M',0.355,0.265,0.085,0.201,0.069,0.053,0.0695,8),
+(715,'M',0.35,0.255,0.08,0.1915,0.08,0.0385,0.063,9),
+(716,'I',0.275,0.2,0.065,0.1035,0.0475,0.0205,0.03,7),
+(717,'I',0.29,0.205,0.07,0.0975,0.036,0.019,0.035,8),
+(718,'I',0.25,0.19,0.06,0.0765,0.036,0.0115,0.0245,6),
+(719,'I',0.18,0.125,0.035,0.0265,0.0095,0.0055,0.0085,4),
+(720,'I',0.15,0.1,0.025,0.015,0.0045,0.004,0.005,2),
+(721,'I',0.16,0.11,0.025,0.018,0.0065,0.0055,0.005,3),
+(722,'M',0.555,0.455,0.16,1.0575,0.3925,0.228,0.293,13),
+(723,'M',0.555,0.44,0.15,1.092,0.416,0.212,0.4405,15),
+(724,'M',0.525,0.41,0.13,0.99,0.3865,0.243,0.295,15),
+(725,'M',0.465,0.36,0.08,0.488,0.191,0.125,0.155,11),
+(726,'F',0.49,0.36,0.11,0.5005,0.161,0.107,0.195,17),
+(727,'M',0.4,0.305,0.085,0.297,0.108,0.0705,0.1,10),
+(728,'F',0.48,0.375,0.105,0.525,0.2185,0.1195,0.155,12),
+(729,'M',0.505,0.4,0.125,0.77,0.2735,0.159,0.255,13),
+(730,'F',0.52,0.4,0.12,0.6515,0.261,0.2015,0.165,15),
+(731,'M',0.525,0.4,0.13,0.8295,0.2405,0.1825,0.275,11),
+(732,'M',0.545,0.42,0.13,0.879,0.374,0.1695,0.23,13),
+(733,'M',0.52,0.4,0.12,0.823,0.298,0.1805,0.265,15),
+(734,'M',0.505,0.38,0.13,0.656,0.227,0.1785,0.22,13),
+(735,'M',0.525,0.425,0.12,0.8665,0.2825,0.176,0.29,18),
+(736,'M',0.51,0.39,0.125,0.6565,0.262,0.1835,0.175,10),
+(737,'M',0.52,0.385,0.115,0.669,0.2385,0.172,0.205,12),
+(738,'F',0.52,0.405,0.125,0.6435,0.2415,0.1735,0.21,12),
+(739,'M',0.535,0.41,0.135,0.862,0.2855,0.1525,0.32,14),
+(740,'M',0.445,0.345,0.09,0.3795,0.143,0.074,0.125,10),
+(741,'M',0.53,0.44,0.205,0.835,0.32,0.2175,0.245,14),
+(742,'F',0.36,0.265,0.09,0.2065,0.078,0.057,0.06,8),
+(743,'F',0.535,0.42,0.15,0.7365,0.2785,0.186,0.215,14),
+(744,'F',0.52,0.405,0.14,0.8175,0.2795,0.183,0.26,17),
+(745,'M',0.53,0.415,0.13,0.8425,0.275,0.1945,0.265,20),
+(746,'F',0.53,0.42,0.13,1.001,0.34,0.226,0.265,17),
+(747,'F',0.66,0.52,0.2,1.676,0.673,0.4805,0.45,17),
+(748,'M',0.52,0.385,0.14,0.6595,0.2485,0.2035,0.16,9),
+(749,'M',0.535,0.42,0.13,0.8055,0.301,0.181,0.28,14),
+(750,'M',0.695,0.515,0.175,1.5165,0.578,0.4105,0.39,15),
+(751,'F',0.51,0.39,0.105,0.612,0.187,0.15,0.195,13),
+(752,'M',0.485,0.355,0.12,0.547,0.215,0.1615,0.14,10),
+(753,'F',0.605,0.46,0.17,1.122,0.347,0.3045,0.315,13),
+(754,'F',0.58,0.455,0.165,1.1365,0.369,0.3005,0.275,13),
+(755,'M',0.65,0.515,0.175,1.4805,0.5295,0.272,0.525,20),
+(756,'M',0.62,0.505,0.185,1.5275,0.69,0.368,0.35,13),
+(757,'M',0.615,0.525,0.155,1.1375,0.367,0.236,0.37,20),
+(758,'F',0.605,0.495,0.19,1.437,0.469,0.2655,0.41,15),
+(759,'M',0.57,0.44,0.155,1.116,0.4775,0.2315,0.27,13),
+(760,'M',0.57,0.43,0.12,1.0615,0.348,0.167,0.31,15),
+(761,'M',0.585,0.405,0.15,1.2565,0.435,0.202,0.325,15),
+(762,'F',0.55,0.44,0.155,0.946,0.313,0.1825,0.335,16),
+(763,'F',0.54,0.44,0.135,0.959,0.2385,0.221,0.3,17),
+(764,'M',0.64,0.51,0.19,1.613,0.6215,0.361,0.47,14),
+(765,'F',0.61,0.47,0.145,1.153,0.403,0.296,0.32,14),
+(766,'M',0.545,0.45,0.15,0.978,0.3365,0.1905,0.3,11),
+(767,'F',0.59,0.445,0.13,1.1325,0.3825,0.234,0.32,13),
+(768,'M',0.345,0.27,0.095,0.197,0.0665,0.05,0.07,9),
+(769,'F',0.55,0.43,0.155,0.785,0.289,0.227,0.233,11),
+(770,'F',0.53,0.425,0.17,0.949,0.3485,0.2395,0.278,17),
+(771,'F',0.53,0.455,0.165,0.9805,0.3155,0.2815,0.2965,11),
+(772,'I',0.485,0.375,0.14,0.521,0.2,0.123,0.17,8),
+(773,'M',0.385,0.275,0.115,0.2685,0.0975,0.0825,0.085,8),
+(774,'M',0.455,0.34,0.135,0.462,0.1675,0.158,0.12,9),
+(775,'M',0.49,0.38,0.14,0.7605,0.245,0.167,0.185,10),
+(776,'M',0.53,0.41,0.165,0.732,0.189,0.17,0.31,11),
+(777,'M',0.505,0.385,0.145,0.6775,0.236,0.179,0.2,15),
+(778,'M',0.49,0.38,0.14,0.6385,0.2305,0.142,0.195,13),
+(779,'M',0.465,0.35,0.14,0.5755,0.2015,0.1505,0.19,15),
+(780,'F',0.47,0.36,0.145,0.537,0.1725,0.1375,0.195,15),
+(781,'M',0.56,0.41,0.165,0.93,0.3505,0.237,0.3,13),
+(782,'M',0.505,0.385,0.15,0.6415,0.246,0.152,0.215,12),
+(783,'M',0.515,0.435,0.145,0.8815,0.292,0.206,0.255,10),
+(784,'I',0.385,0.28,0.125,0.244,0.102,0.038,0.085,6),
+(785,'I',0.215,0.155,0.06,0.0525,0.021,0.0165,0.015,5),
+(786,'M',0.55,0.415,0.175,1.042,0.3295,0.2325,0.2905,15),
+(787,'F',0.515,0.39,0.13,0.5755,0.1975,0.13,0.1845,9),
+(788,'M',0.495,0.385,0.135,0.709,0.211,0.1375,0.262,12),
+(789,'F',0.505,0.39,0.16,0.644,0.2475,0.2025,0.1635,9),
+(790,'F',0.6,0.465,0.165,0.8875,0.309,0.246,0.262,12),
+(791,'F',0.57,0.465,0.16,0.8935,0.3145,0.2575,0.263,10),
+(792,'F',0.485,0.375,0.135,0.556,0.1925,0.1315,0.1685,10),
+(793,'M',0.47,0.37,0.18,0.51,0.1915,0.1285,0.1625,9),
+(794,'M',0.575,0.45,0.165,0.9215,0.3275,0.225,0.256,12),
+(795,'M',0.58,0.465,0.16,1.0345,0.315,0.26,0.3635,12),
+(796,'M',0.515,0.405,0.145,0.695,0.215,0.1635,0.234,15),
+(797,'M',0.53,0.41,0.155,0.7155,0.2805,0.1685,0.214,11),
+(798,'M',0.44,0.335,0.11,0.394,0.157,0.096,0.122,9),
+(799,'M',0.52,0.42,0.16,0.745,0.255,0.157,0.2885,11),
+(800,'F',0.425,0.345,0.11,0.3665,0.125,0.081,0.117,11),
+(801,'M',0.46,0.34,0.135,0.495,0.1655,0.117,0.185,10),
+(802,'M',0.45,0.335,0.125,0.349,0.119,0.1055,0.115,10),
+(803,'M',0.425,0.33,0.13,0.4405,0.152,0.0935,0.155,9),
+(804,'I',0.37,0.275,0.1,0.22,0.094,0.045,0.065,7),
+(805,'M',0.515,0.38,0.135,0.6615,0.2875,0.2095,0.155,10),
+(806,'M',0.405,0.305,0.12,0.3185,0.1235,0.0905,0.095,7),
+(807,'I',0.28,0.205,0.07,0.1015,0.041,0.03,0.03,6),
+(808,'F',0.48,0.4,0.125,0.759,0.2125,0.179,0.24,15),
+(809,'F',0.44,0.34,0.13,0.4195,0.153,0.1155,0.13,10),
+(810,'F',0.52,0.41,0.115,0.807,0.2855,0.179,0.235,12),
+(811,'M',0.505,0.405,0.14,0.875,0.2665,0.174,0.285,12),
+(812,'F',0.49,0.365,0.13,0.6835,0.165,0.1315,0.205,21),
+(813,'I',0.235,0.175,0.055,0.067,0.027,0.0125,0.018,6),
+(814,'I',0.255,0.185,0.06,0.088,0.0365,0.021,0.023,5),
+(815,'I',0.315,0.24,0.085,0.1715,0.071,0.0345,0.0535,7),
+(816,'I',0.325,0.25,0.08,0.1735,0.0765,0.0345,0.049,7),
+(817,'I',0.335,0.25,0.08,0.183,0.0735,0.04,0.0575,6),
+(818,'I',0.35,0.27,0.09,0.2055,0.075,0.0575,0.062,6),
+(819,'I',0.35,0.25,0.07,0.18,0.0655,0.048,0.054,6),
+(820,'I',0.36,0.3,0.085,0.27,0.1185,0.064,0.0745,7),
+(821,'I',0.365,0.275,0.135,0.24,0.108,0.0445,0.0735,7),
+(822,'I',0.37,0.275,0.14,0.2215,0.097,0.0455,0.0615,6),
+(823,'I',0.38,0.275,0.095,0.1375,0.086,0.0585,0.0605,7),
+(824,'I',0.385,0.29,0.095,0.312,0.143,0.0635,0.086,6),
+(825,'I',0.385,0.3,0.1,0.2895,0.1215,0.063,0.09,7),
+(826,'I',0.395,0.29,0.095,0.319,0.138,0.08,0.082,7),
+(827,'I',0.395,0.29,0.095,0.304,0.127,0.084,0.077,6),
+(828,'I',0.4,0.31,0.1,0.306,0.13,0.06,0.094,6),
+(829,'I',0.41,0.325,0.1,0.394,0.208,0.0655,0.106,6),
+(830,'I',0.415,0.32,0.11,0.3735,0.175,0.0755,0.109,7),
+(831,'M',0.415,0.305,0.1,0.325,0.156,0.0505,0.091,6),
+(832,'I',0.425,0.325,0.1,0.398,0.1185,0.0645,0.0945,6),
+(833,'I',0.44,0.365,0.115,0.501,0.2435,0.084,0.1465,9),
+(834,'I',0.445,0.335,0.1,0.4895,0.2745,0.086,0.1105,7),
+(835,'I',0.445,0.325,0.1,0.378,0.1795,0.1,0.089,7),
+(836,'I',0.45,0.35,0.13,0.547,0.245,0.1405,0.1405,8),
+(837,'M',0.47,0.375,0.12,0.5805,0.266,0.0935,0.169,8),
+(838,'I',0.475,0.365,0.125,0.5465,0.229,0.1185,0.172,9),
+(839,'F',0.48,0.365,0.135,0.6395,0.2945,0.113,0.175,8),
+(840,'I',0.485,0.355,0.105,0.498,0.2175,0.096,0.1525,9),
+(841,'M',0.49,0.385,0.125,0.609,0.3065,0.096,0.1775,8),
+(842,'F',0.495,0.41,0.125,0.7555,0.3355,0.129,0.214,9),
+(843,'M',0.5,0.4,0.125,0.5975,0.27,0.1275,0.166,9),
+(844,'M',0.505,0.44,0.14,0.8275,0.3415,0.1855,0.239,8),
+(845,'M',0.525,0.395,0.13,0.7635,0.3375,0.1425,0.225,8),
+(846,'M',0.54,0.405,0.125,0.891,0.4815,0.1915,0.202,9),
+(847,'F',0.54,0.42,0.14,0.805,0.369,0.1725,0.21,11),
+(848,'F',0.545,0.44,0.135,0.9185,0.429,0.2015,0.2375,10),
+(849,'F',0.55,0.43,0.125,0.923,0.4035,0.175,0.283,8),
+(850,'M',0.55,0.45,0.15,1.0145,0.407,0.2015,0.2875,10),
+(851,'F',0.55,0.45,0.15,0.875,0.362,0.1755,0.2765,10),
+(852,'M',0.555,0.435,0.145,0.9685,0.4985,0.168,0.2385,9),
+(853,'M',0.565,0.45,0.155,1.0595,0.4735,0.24,0.265,10),
+(854,'M',0.57,0.455,0.15,0.952,0.3895,0.2155,0.2745,9),
+(855,'M',0.57,0.435,0.13,0.7535,0.349,0.1755,0.194,10),
+(856,'F',0.575,0.465,0.14,0.958,0.442,0.1815,0.2705,9),
+(857,'M',0.59,0.475,0.165,1.077,0.4545,0.244,0.3095,9),
+(858,'M',0.59,0.46,0.13,1.102,0.455,0.2055,0.33,12),
+(859,'F',0.595,0.48,0.15,1.11,0.498,0.228,0.33,10),
+(860,'F',0.595,0.48,0.16,1.2095,0.5225,0.296,0.32,8),
+(861,'F',0.595,0.475,0.16,1.1405,0.547,0.231,0.271,6),
+(862,'F',0.595,0.465,0.14,1.113,0.5175,0.244,0.305,12),
+(863,'M',0.6,0.475,0.175,1.3445,0.549,0.2875,0.36,11),
+(864,'F',0.6,0.475,0.155,1.21,0.653,0.1695,0.3205,10),
+(865,'M',0.6,0.495,0.175,1.29,0.606,0.276,0.3445,11),
+(866,'F',0.605,0.475,0.175,1.382,0.609,0.2325,0.3985,10),
+(867,'M',0.605,0.455,0.16,1.1035,0.421,0.3015,0.325,9),
+(868,'F',0.615,0.5,0.175,1.377,0.5585,0.33,0.292,12),
+(869,'F',0.615,0.52,0.15,1.3435,0.629,0.2605,0.345,10),
+(870,'M',0.615,0.51,0.15,1.296,0.545,0.3315,0.32,9),
+(871,'M',0.615,0.505,0.165,1.34,0.5315,0.2815,0.41,12),
+(872,'F',0.62,0.505,0.16,1.3725,0.6285,0.275,0.3685,11),
+(873,'M',0.62,0.5,0.165,1.307,0.6355,0.2545,0.315,9),
+(874,'F',0.625,0.49,0.155,1.2085,0.465,0.162,0.411,11),
+(875,'F',0.625,0.49,0.2,1.3825,0.5895,0.285,0.381,11),
+(876,'M',0.63,0.505,0.165,1.26,0.4525,0.2755,0.406,14),
+(877,'M',0.635,0.51,0.17,1.3555,0.619,0.305,0.39,9),
+(878,'F',0.635,0.5,0.15,1.376,0.6495,0.361,0.31,10),
+(879,'F',0.635,0.485,0.165,1.2945,0.668,0.2605,0.2715,9),
+(880,'F',0.64,0.51,0.165,1.486,0.7595,0.332,0.321,8),
+(881,'M',0.65,0.525,0.175,1.4715,0.675,0.315,0.399,11),
+(882,'M',0.655,0.52,0.165,1.4095,0.586,0.291,0.405,9),
+(883,'M',0.655,0.58,0.205,2.0805,0.959,0.3415,0.601,17),
+(884,'M',0.66,0.53,0.17,1.3905,0.5905,0.212,0.453,15),
+(885,'M',0.66,0.52,0.19,1.558,0.755,0.298,0.4,10),
+(886,'F',0.67,0.585,0.16,1.309,0.5445,0.2945,0.413,10),
+(887,'F',0.675,0.525,0.17,1.8095,0.784,0.391,0.455,12),
+(888,'F',0.675,0.525,0.155,1.4785,0.628,0.3405,0.42,9),
+(889,'F',0.68,0.56,0.195,1.7775,0.861,0.322,0.415,11),
+(890,'F',0.685,0.54,0.16,1.6675,0.833,0.3775,0.475,11),
+(891,'F',0.695,0.56,0.22,1.834,0.8455,0.422,0.455,11),
+(892,'M',0.73,0.595,0.23,2.8255,1.1465,0.419,0.897,17),
+(893,'I',0.205,0.14,0.05,0.046,0.0165,0.012,0.0135,6),
+(894,'I',0.24,0.175,0.055,0.0705,0.025,0.014,0.021,5),
+(895,'I',0.24,0.175,0.065,0.0665,0.031,0.0135,0.017,3),
+(896,'I',0.255,0.19,0.05,0.083,0.0295,0.0215,0.027,6),
+(897,'I',0.255,0.18,0.055,0.083,0.031,0.0215,0.02,4),
+(898,'I',0.265,0.195,0.06,0.092,0.0345,0.025,0.0245,6),
+(899,'I',0.28,0.12,0.075,0.117,0.0455,0.029,0.0345,4),
+(900,'I',0.295,0.23,0.08,0.1625,0.065,0.05,0.0385,5),
+(901,'I',0.3,0.235,0.08,0.131,0.05,0.0265,0.043,4),
+(902,'I',0.3,0.23,0.095,0.1385,0.056,0.0365,0.037,6),
+(903,'I',0.305,0.22,0.07,0.141,0.062,0.031,0.037,5),
+(904,'I',0.315,0.235,0.075,0.1485,0.0585,0.0375,0.0425,6),
+(905,'I',0.315,0.23,0.07,0.144,0.053,0.0305,0.04,8),
+(906,'I',0.32,0.24,0.09,0.1575,0.07,0.0265,0.0425,5),
+(907,'I',0.325,0.24,0.075,0.187,0.0825,0.0445,0.05,6),
+(908,'I',0.33,0.265,0.085,0.196,0.0775,0.0305,0.0445,6),
+(909,'I',0.335,0.25,0.075,0.1825,0.0705,0.044,0.055,7),
+(910,'I',0.335,0.25,0.075,0.186,0.0945,0.038,0.0445,7),
+(911,'I',0.34,0.25,0.075,0.1785,0.0665,0.0455,0.045,5),
+(912,'I',0.34,0.25,0.07,0.2225,0.104,0.0425,0.055,7),
+(913,'I',0.345,0.265,0.1,0.2455,0.111,0.0535,0.065,7),
+(914,'I',0.37,0.29,0.095,0.249,0.1045,0.058,0.067,6),
+(915,'I',0.37,0.28,0.095,0.2865,0.1505,0.069,0.0795,7),
+(916,'I',0.375,0.28,0.09,0.215,0.084,0.06,0.055,6),
+(917,'I',0.385,0.265,0.08,0.251,0.124,0.037,0.07,6),
+(918,'I',0.41,0.31,0.09,0.339,0.155,0.0695,0.09,7),
+(919,'I',0.41,0.305,0.09,0.3535,0.157,0.0745,0.1,7),
+(920,'I',0.41,0.31,0.09,0.3335,0.1635,0.061,0.091,6),
+(921,'I',0.415,0.33,0.09,0.3595,0.17,0.081,0.09,6),
+(922,'I',0.42,0.32,0.115,0.376,0.169,0.092,0.1,5),
+(923,'I',0.42,0.315,0.1,0.3435,0.157,0.0795,0.09,6),
+(924,'I',0.425,0.34,0.1,0.382,0.164,0.096,0.1,6),
+(925,'I',0.425,0.315,0.1,0.377,0.1645,0.072,0.105,6),
+(926,'I',0.43,0.325,0.1,0.3645,0.1575,0.0825,0.105,7),
+(927,'I',0.43,0.325,0.09,0.425,0.217,0.087,0.095,7),
+(928,'I',0.435,0.325,0.12,0.3995,0.1815,0.061,0.1125,8),
+(929,'I',0.435,0.34,0.115,0.3925,0.1825,0.078,0.1145,6),
+(930,'I',0.44,0.345,0.13,0.4495,0.209,0.0835,0.134,6),
+(931,'I',0.44,0.325,0.09,0.35,0.148,0.067,0.105,7),
+(932,'F',0.445,0.335,0.11,0.4355,0.2025,0.1095,0.1195,6),
+(933,'I',0.445,0.35,0.13,0.4195,0.1695,0.0945,0.1195,7),
+(934,'I',0.45,0.36,0.13,0.478,0.191,0.127,0.137,7),
+(935,'I',0.45,0.355,0.105,0.4445,0.197,0.093,0.1335,8),
+(936,'I',0.45,0.345,0.11,0.47,0.2355,0.0855,0.1135,7),
+(937,'I',0.45,0.335,0.105,0.447,0.2335,0.153,0.119,7),
+(938,'I',0.455,0.355,0.125,0.5325,0.225,0.126,0.1465,7),
+(939,'I',0.455,0.375,0.12,0.497,0.2355,0.1055,0.1295,6),
+(940,'I',0.46,0.36,0.1,0.4635,0.2325,0.093,0.115,7),
+(941,'I',0.46,0.345,0.105,0.449,0.196,0.0945,0.1265,7),
+(942,'I',0.465,0.365,0.115,0.467,0.2315,0.0925,0.113,7),
+(943,'I',0.465,0.37,0.115,0.534,0.261,0.098,0.143,7),
+(944,'I',0.465,0.345,0.11,0.4415,0.1755,0.0905,0.12,7),
+(945,'F',0.465,0.35,0.125,0.482,0.23,0.106,0.1095,6),
+(946,'M',0.47,0.365,0.12,0.612,0.327,0.15,0.14,8),
+(947,'F',0.47,0.365,0.12,0.582,0.29,0.092,0.146,8),
+(948,'M',0.475,0.37,0.125,0.537,0.222,0.1215,0.15,9),
+(949,'F',0.475,0.36,0.12,0.5915,0.3245,0.11,0.127,6),
+(950,'M',0.48,0.375,0.115,0.6765,0.3205,0.1065,0.17,6),
+(951,'M',0.48,0.385,0.145,0.64,0.2925,0.1405,0.1575,6),
+(952,'M',0.48,0.36,0.1,0.439,0.194,0.099,0.115,8),
+(953,'M',0.48,0.365,0.12,0.6015,0.312,0.117,0.14,7),
+(954,'F',0.485,0.37,0.115,0.4785,0.1995,0.0955,0.129,7),
+(955,'M',0.49,0.385,0.125,0.649,0.32,0.124,0.1695,8),
+(956,'M',0.495,0.395,0.135,0.6335,0.3035,0.1295,0.1495,8),
+(957,'M',0.495,0.4,0.135,0.61,0.272,0.1435,0.144,7),
+(958,'M',0.5,0.39,0.135,0.6595,0.3145,0.1535,0.1565,6),
+(959,'I',0.5,0.385,0.12,0.56,0.2835,0.103,0.135,8),
+(960,'M',0.5,0.385,0.135,0.6425,0.3195,0.129,0.1535,7),
+(961,'M',0.5,0.4,0.125,0.6725,0.336,0.12,0.1825,7),
+(962,'F',0.505,0.39,0.13,0.674,0.3165,0.141,0.1785,9),
+(963,'I',0.505,0.39,0.15,0.685,0.362,0.131,0.156,8),
+(964,'M',0.505,0.41,0.125,0.642,0.289,0.133,0.155,9),
+(965,'I',0.505,0.355,0.125,0.601,0.25,0.1205,0.185,8),
+(966,'M',0.51,0.39,0.135,0.769,0.3935,0.1455,0.19,8),
+(967,'I',0.51,0.375,0.1,0.5785,0.238,0.1225,0.175,7),
+(968,'I',0.51,0.405,0.135,0.769,0.3655,0.1585,0.18,7),
+(969,'M',0.51,0.405,0.15,0.7035,0.347,0.134,0.1885,8),
+(970,'M',0.51,0.41,0.145,0.796,0.3865,0.1815,0.1955,8),
+(971,'F',0.515,0.43,0.14,0.834,0.367,0.2,0.23,8),
+(972,'M',0.515,0.39,0.155,0.7125,0.3695,0.137,0.155,7),
+(973,'F',0.525,0.415,0.14,0.724,0.3475,0.173,0.175,8),
+(974,'M',0.525,0.4,0.14,0.7325,0.334,0.1575,0.17,11),
+(975,'F',0.53,0.425,0.13,0.7585,0.325,0.197,0.205,8),
+(976,'F',0.53,0.425,0.15,0.8495,0.328,0.232,0.202,8),
+(977,'M',0.53,0.405,0.125,0.6515,0.2715,0.1605,0.186,7),
+(978,'F',0.535,0.4,0.135,0.8215,0.3935,0.196,0.205,8),
+(979,'M',0.535,0.43,0.14,0.7165,0.2855,0.1595,0.2155,8),
+(980,'M',0.535,0.435,0.14,0.874,0.3735,0.229,0.2195,8),
+(981,'F',0.55,0.445,0.155,0.9905,0.544,0.178,0.218,9),
+(982,'F',0.55,0.43,0.14,0.8105,0.368,0.161,0.275,9),
+(983,'F',0.56,0.455,0.16,0.967,0.4525,0.207,0.274,9),
+(984,'F',0.565,0.4,0.13,0.6975,0.3075,0.1665,0.18,8),
+(985,'M',0.57,0.45,0.155,1.195,0.5625,0.2565,0.295,10),
+(986,'M',0.57,0.45,0.155,1.1935,0.513,0.21,0.343,10),
+(987,'F',0.57,0.455,0.15,1.107,0.54,0.255,0.27,8),
+(988,'M',0.57,0.445,0.14,1.0635,0.5265,0.2195,0.24,8),
+(989,'M',0.57,0.46,0.17,0.9035,0.4075,0.1935,0.214,7),
+(990,'M',0.575,0.475,0.16,1.114,0.4955,0.2745,0.29,9),
+(991,'F',0.575,0.46,0.16,1.103,0.538,0.221,0.249,9),
+(992,'F',0.58,0.46,0.15,1.1155,0.5575,0.2255,0.29,7),
+(993,'F',0.58,0.46,0.18,1.0515,0.4095,0.2595,0.276,8),
+(994,'M',0.58,0.455,0.15,1.012,0.4985,0.2115,0.2835,10),
+(995,'F',0.58,0.45,0.145,1.137,0.5585,0.22,0.29,8),
+(996,'M',0.58,0.49,0.13,1.1335,0.586,0.2565,0.237,9),
+(997,'M',0.59,0.465,0.155,1.136,0.5245,0.2615,0.275,11),
+(998,'M',0.59,0.47,0.16,1.206,0.479,0.2425,0.309,8),
+(999,'F',0.59,0.455,0.145,1.063,0.5155,0.2445,0.25,8),
+(1000,'F',0.595,0.47,0.155,1.121,0.4515,0.178,0.155,11),
+(1001,'F',0.595,0.45,0.15,1.114,0.5865,0.2205,0.25,11),
+(1002,'M',0.595,0.475,0.165,1.213,0.621,0.2435,0.274,9),
+(1003,'F',0.595,0.46,0.14,1.0045,0.4655,0.2095,0.2515,9),
+(1004,'M',0.595,0.455,0.15,1.044,0.518,0.2205,0.27,9),
+(1005,'F',0.605,0.49,0.15,1.1345,0.5265,0.2645,0.295,9),
+(1006,'M',0.605,0.475,0.155,1.161,0.572,0.2455,0.275,9),
+(1007,'M',0.605,0.47,0.165,1.2315,0.6025,0.262,0.2925,11),
+(1008,'M',0.61,0.47,0.15,1.1625,0.565,0.258,0.3085,11),
+(1009,'M',0.61,0.475,0.155,1.168,0.554,0.239,0.3295,10),
+(1010,'F',0.615,0.48,0.16,1.2525,0.585,0.2595,0.33,8),
+(1011,'F',0.62,0.51,0.18,1.3315,0.594,0.276,0.388,11),
+(1012,'F',0.625,0.48,0.17,1.3525,0.6235,0.278,0.365,10),
+(1013,'M',0.625,0.49,0.175,1.3325,0.5705,0.271,0.405,10),
+(1014,'F',0.625,0.475,0.175,1.1435,0.4755,0.2475,0.349,10),
+(1015,'F',0.625,0.5,0.165,1.288,0.573,0.3035,0.315,9),
+(1016,'F',0.625,0.485,0.2,1.38,0.5845,0.302,0.401,9),
+(1017,'M',0.63,0.485,0.155,1.278,0.637,0.275,0.31,8),
+(1018,'F',0.63,0.495,0.165,1.3075,0.599,0.284,0.315,11),
+(1019,'M',0.63,0.48,0.15,1.1785,0.5185,0.248,0.3235,8),
+(1020,'M',0.635,0.49,0.175,1.375,0.623,0.2705,0.395,11),
+(1021,'M',0.635,0.525,0.185,1.4065,0.684,0.3,0.3745,10),
+(1022,'M',0.64,0.505,0.155,1.4025,0.705,0.2655,0.335,10),
+(1023,'F',0.64,0.5,0.17,1.5175,0.693,0.326,0.409,11),
+(1024,'F',0.64,0.5,0.175,1.394,0.4935,0.291,0.4,10),
+(1025,'F',0.645,0.5,0.155,1.2205,0.6145,0.236,0.3185,10),
+(1026,'M',0.645,0.52,0.175,1.636,0.779,0.342,0.432,11),
+(1027,'M',0.645,0.52,0.175,1.561,0.709,0.3555,0.4,8),
+(1028,'F',0.645,0.505,0.165,1.4325,0.684,0.308,0.336,8),
+(1029,'M',0.645,0.5,0.175,1.3385,0.633,0.299,0.349,11),
+(1030,'F',0.645,0.5,0.16,1.2465,0.5475,0.327,0.3,10),
+(1031,'F',0.645,0.515,0.15,1.212,0.515,0.2055,0.385,10),
+(1032,'M',0.65,0.495,0.16,1.304,0.57,0.312,0.3725,9),
+(1033,'M',0.65,0.52,0.21,1.6785,0.6665,0.308,0.46,11),
+(1034,'M',0.65,0.525,0.185,1.622,0.6645,0.3225,0.477,10),
+(1035,'F',0.655,0.46,0.16,1.494,0.6895,0.331,0.1825,9),
+(1036,'F',0.655,0.51,0.175,1.6525,0.8515,0.3365,0.403,10),
+(1037,'F',0.66,0.505,0.185,1.528,0.69,0.3025,0.441,11),
+(1038,'M',0.66,0.535,0.19,1.5905,0.6425,0.297,0.5175,9),
+(1039,'M',0.66,0.495,0.195,1.6275,0.594,0.3595,0.485,10),
+(1040,'F',0.66,0.475,0.18,1.3695,0.641,0.294,0.335,6),
+(1041,'M',0.67,0.525,0.165,1.6085,0.682,0.3145,0.4005,11),
+(1042,'F',0.675,0.57,0.225,1.587,0.739,0.2995,0.435,10),
+(1043,'F',0.675,0.565,0.195,1.8375,0.7645,0.3615,0.553,12),
+(1044,'M',0.68,0.535,0.185,1.607,0.7245,0.3215,0.498,12),
+(1045,'M',0.69,0.525,0.175,1.7005,0.8255,0.362,0.405,8),
+(1046,'M',0.69,0.505,0.2,1.872,0.893,0.4015,0.48,10),
+(1047,'F',0.695,0.535,0.175,1.8385,0.8035,0.396,0.503,10),
+(1048,'F',0.705,0.535,0.18,1.685,0.693,0.42,0.4045,12),
+(1049,'M',0.71,0.565,0.205,2.198,1.012,0.5225,0.5475,11),
+(1050,'M',0.715,0.565,0.175,1.9525,0.7645,0.4185,0.4135,10),
+(1051,'F',0.715,0.525,0.185,1.56,0.6655,0.383,0.405,11),
+(1052,'F',0.735,0.6,0.22,2.555,1.1335,0.44,0.6,11),
+(1053,'M',0.765,0.6,0.22,2.302,1.007,0.509,0.6205,12),
+(1054,'I',0.185,0.13,0.045,0.029,0.012,0.0075,0.0095,4),
+(1055,'I',0.195,0.15,0.045,0.0375,0.018,0.006,0.011,3),
+(1056,'I',0.195,0.135,0.04,0.0325,0.0135,0.005,0.0095,4),
+(1057,'I',0.2,0.155,0.04,0.0435,0.0155,0.009,0.007,4),
+(1058,'I',0.225,0.165,0.055,0.059,0.027,0.0125,0.015,4),
+(1059,'I',0.245,0.18,0.065,0.071,0.03,0.013,0.0215,4),
+(1060,'I',0.25,0.18,0.065,0.0685,0.0245,0.0155,0.0225,5),
+(1061,'I',0.265,0.195,0.055,0.084,0.0365,0.0175,0.025,7),
+(1062,'I',0.275,0.195,0.065,0.106,0.054,0.02,0.028,6),
+(1063,'I',0.28,0.21,0.085,0.1075,0.0415,0.024,0.034,5),
+(1064,'I',0.285,0.22,0.065,0.096,0.0405,0.0205,0.03,5),
+(1065,'I',0.3,0.22,0.08,0.1255,0.055,0.0265,0.039,6),
+(1066,'I',0.315,0.235,0.055,0.151,0.065,0.027,0.039,6),
+(1067,'I',0.32,0.225,0.085,0.1415,0.0675,0.0295,0.0405,6),
+(1068,'I',0.34,0.265,0.08,0.2015,0.09,0.0475,0.055,5),
+(1069,'I',0.37,0.28,0.1,0.221,0.1165,0.0265,0.0635,6),
+(1070,'I',0.375,0.28,0.08,0.2345,0.1125,0.0455,0.067,6),
+(1071,'I',0.375,0.275,0.1,0.2325,0.1165,0.042,0.065,6),
+(1072,'I',0.385,0.29,0.08,0.2485,0.122,0.0495,0.065,7),
+(1073,'I',0.4,0.32,0.095,0.348,0.194,0.053,0.087,6),
+(1074,'I',0.405,0.3,0.11,0.32,0.172,0.044,0.093,7),
+(1075,'I',0.41,0.3,0.1,0.282,0.1255,0.057,0.0875,7),
+(1076,'I',0.41,0.325,0.1,0.3245,0.132,0.072,0.106,6),
+(1077,'I',0.42,0.3,0.105,0.316,0.1255,0.07,0.1035,7),
+(1078,'I',0.42,0.32,0.11,0.3625,0.174,0.0635,0.105,7),
+(1079,'I',0.42,0.31,0.095,0.279,0.1255,0.051,0.088,6),
+(1080,'I',0.425,0.325,0.115,0.3685,0.162,0.0865,0.1045,7),
+(1081,'M',0.43,0.335,0.12,0.397,0.1985,0.0865,0.1035,7),
+(1082,'I',0.435,0.33,0.11,0.413,0.2055,0.096,0.096,6),
+(1083,'I',0.435,0.345,0.115,0.418,0.222,0.0735,0.106,7),
+(1084,'I',0.44,0.33,0.11,0.3705,0.1545,0.084,0.12,7),
+(1085,'I',0.445,0.345,0.105,0.409,0.1675,0.1015,0.117,7),
+(1086,'I',0.445,0.34,0.145,0.434,0.1945,0.0905,0.13,7),
+(1087,'I',0.445,0.335,0.11,0.411,0.1985,0.0935,0.109,8),
+(1088,'I',0.45,0.365,0.125,0.462,0.2135,0.0985,0.1315,8),
+(1089,'I',0.45,0.34,0.12,0.4925,0.241,0.1075,0.12,6),
+(1090,'I',0.45,0.33,0.105,0.3715,0.1865,0.0785,0.0975,7),
+(1091,'I',0.45,0.33,0.1,0.411,0.1945,0.1,0.098,6),
+(1092,'I',0.45,0.33,0.11,0.3685,0.16,0.0885,0.102,6),
+(1093,'I',0.46,0.35,0.115,0.4155,0.18,0.098,0.1175,7),
+(1094,'M',0.47,0.36,0.105,0.544,0.27,0.1395,0.129,7),
+(1095,'I',0.47,0.38,0.125,0.4845,0.211,0.1075,0.142,6),
+(1096,'I',0.475,0.35,0.11,0.4565,0.206,0.099,0.13,6),
+(1097,'I',0.475,0.35,0.1,0.4545,0.2165,0.111,0.115,7),
+(1098,'I',0.48,0.38,0.125,0.6245,0.3395,0.1085,0.1665,8),
+(1099,'M',0.49,0.465,0.125,0.5225,0.235,0.13,0.141,7),
+(1100,'I',0.5,0.375,0.14,0.5495,0.248,0.112,0.1585,7),
+(1101,'I',0.5,0.375,0.12,0.542,0.215,0.116,0.17,9),
+(1102,'I',0.5,0.38,0.125,0.519,0.2485,0.1135,0.134,8),
+(1103,'M',0.5,0.39,0.125,0.5215,0.2485,0.117,0.131,6),
+(1104,'F',0.505,0.39,0.125,0.5445,0.246,0.15,0.1405,7),
+(1105,'I',0.51,0.405,0.125,0.6795,0.3465,0.1395,0.182,8),
+(1106,'F',0.51,0.4,0.125,0.545,0.261,0.115,0.1385,6),
+(1107,'I',0.51,0.4,0.125,0.5575,0.2615,0.1195,0.1525,9),
+(1108,'I',0.51,0.38,0.115,0.5155,0.215,0.1135,0.166,8),
+(1109,'I',0.515,0.385,0.125,0.6115,0.3175,0.1265,0.15,8),
+(1110,'M',0.52,0.4,0.145,0.7765,0.3525,0.1845,0.185,9),
+(1111,'I',0.52,0.38,0.135,0.5395,0.2295,0.133,0.157,8),
+(1112,'I',0.52,0.38,0.125,0.5545,0.288,0.1295,0.167,8),
+(1113,'F',0.52,0.46,0.15,1.019,0.523,0.1985,0.254,7),
+(1114,'I',0.525,0.4,0.13,0.6455,0.325,0.1245,0.17,8),
+(1115,'I',0.525,0.4,0.14,0.601,0.2625,0.1285,0.1835,9),
+(1116,'M',0.525,0.405,0.12,0.7555,0.3755,0.1555,0.201,9),
+(1117,'I',0.525,0.395,0.12,0.608,0.297,0.1395,0.1405,8),
+(1118,'I',0.53,0.4,0.125,0.617,0.279,0.127,0.19,8),
+(1119,'I',0.535,0.39,0.125,0.599,0.2595,0.149,0.169,9),
+(1120,'I',0.54,0.42,0.14,0.6665,0.3125,0.138,0.1895,10),
+(1121,'M',0.545,0.39,0.135,0.7835,0.4225,0.1815,0.156,7),
+(1122,'M',0.545,0.41,0.12,0.793,0.434,0.1405,0.19,9),
+(1123,'M',0.545,0.415,0.14,0.82,0.4615,0.127,0.218,9),
+(1124,'F',0.55,0.415,0.135,0.8145,0.427,0.1855,0.175,8),
+(1125,'F',0.55,0.43,0.15,0.84,0.395,0.195,0.223,8),
+(1126,'M',0.55,0.425,0.15,0.8315,0.411,0.1765,0.2165,10),
+(1127,'M',0.56,0.43,0.145,0.8995,0.464,0.1775,0.234,9),
+(1128,'M',0.56,0.445,0.16,0.8965,0.42,0.2175,0.2215,8),
+(1129,'F',0.56,0.44,0.155,0.6405,0.336,0.1765,0.245,8),
+(1130,'M',0.56,0.415,0.145,0.852,0.43,0.1885,0.205,8),
+(1131,'M',0.565,0.455,0.15,0.9595,0.4565,0.2395,0.23,9),
+(1132,'M',0.565,0.435,0.15,0.99,0.5795,0.1825,0.206,8),
+(1133,'F',0.565,0.45,0.175,1.0095,0.447,0.2375,0.2645,9),
+(1134,'M',0.57,0.46,0.15,1.0375,0.5415,0.2035,0.25,9),
+(1135,'F',0.57,0.445,0.145,0.8775,0.412,0.217,0.22,8),
+(1136,'I',0.57,0.44,0.15,0.755,0.3425,0.16,0.224,8),
+(1137,'F',0.575,0.46,0.145,0.9945,0.466,0.229,0.265,7),
+(1138,'F',0.575,0.45,0.16,1.068,0.556,0.214,0.2575,10),
+(1139,'M',0.575,0.435,0.14,0.8455,0.401,0.191,0.222,9),
+(1140,'F',0.575,0.47,0.165,0.869,0.435,0.197,0.238,9),
+(1141,'M',0.575,0.455,0.135,0.907,0.4245,0.197,0.26,9),
+(1142,'I',0.575,0.435,0.13,0.805,0.3155,0.2155,0.245,10),
+(1143,'M',0.575,0.445,0.17,1.0225,0.549,0.2175,0.228,9),
+(1144,'M',0.575,0.445,0.145,0.847,0.415,0.1945,0.22,9),
+(1145,'M',0.58,0.455,0.15,1.114,0.4765,0.2155,0.265,8),
+(1146,'M',0.58,0.455,0.195,1.859,0.945,0.426,0.441,9),
+(1147,'M',0.58,0.445,0.135,0.814,0.3775,0.1915,0.22,9),
+(1148,'M',0.58,0.45,0.14,0.9615,0.486,0.1815,0.253,9),
+(1149,'M',0.58,0.45,0.145,1.0025,0.547,0.1975,0.2295,8),
+(1150,'F',0.58,0.45,0.155,0.93,0.385,0.246,0.265,9),
+(1151,'M',0.585,0.46,0.145,0.9335,0.478,0.1825,0.235,9),
+(1152,'M',0.585,0.465,0.16,0.9555,0.4595,0.236,0.265,7),
+(1153,'M',0.59,0.47,0.15,0.9955,0.481,0.232,0.24,8),
+(1154,'F',0.6,0.475,0.16,1.0265,0.485,0.2495,0.2565,9),
+(1155,'M',0.6,0.455,0.17,1.1915,0.696,0.2395,0.24,8),
+(1156,'F',0.6,0.465,0.15,1.1025,0.5455,0.262,0.25,8),
+(1157,'M',0.6,0.465,0.155,1.0165,0.512,0.2465,0.225,10),
+(1158,'F',0.605,0.47,0.165,1.1775,0.611,0.2275,0.292,9),
+(1159,'M',0.605,0.475,0.14,1.1175,0.555,0.257,0.274,9),
+(1160,'M',0.605,0.48,0.17,1.1835,0.582,0.2365,0.317,10),
+(1161,'F',0.605,0.475,0.165,1.056,0.433,0.2195,0.357,9),
+(1162,'M',0.61,0.485,0.16,1.014
 
 Review comment:
   This issue doesn't apply to `mfvsketch_top_histogram` since it does not have a merge function.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services