aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOvahlord <dreadkiller@gmx.de>2023-11-28 02:00:51 +0100
committerOvahlord <dreadkiller@gmx.de>2023-11-28 02:00:51 +0100
commit00c1f57c8bcd22bbf202f921d9670b1af9c3b3fd (patch)
tree05e305cea0fb7a8f0075056f69e32a4e542f4153
parentbbb320f39013bb540d69a36fe7be72c1ac6ba9d3 (diff)
Core/Items: restore item random properties handling
-rw-r--r--sql/updates/characters/3.4.x/2023_11_27_00_characters.sql11
-rw-r--r--sql/updates/world/3.4.x/2023_11_27_00_world.sql28620
-rw-r--r--src/server/database/Database/Implementation/CharacterDatabase.cpp14
-rw-r--r--src/server/game/AuctionHouse/AuctionHouseMgr.cpp4
-rw-r--r--src/server/game/DataStores/DB2Stores.cpp2
-rw-r--r--src/server/game/Entities/Item/Item.cpp88
-rw-r--r--src/server/game/Entities/Item/Item.h2
-rw-r--r--src/server/game/Entities/Item/ItemEnchantmentMgr.cpp151
-rw-r--r--src/server/game/Entities/Item/ItemEnchantmentMgr.h31
-rw-r--r--src/server/game/Entities/Item/ItemTemplate.h3
-rw-r--r--src/server/game/Entities/Player/Player.cpp94
-rw-r--r--src/server/game/Entities/Player/Player.h9
-rw-r--r--src/server/game/Globals/ObjectMgr.cpp4
-rw-r--r--src/server/game/Guilds/GuildMgr.cpp2
-rw-r--r--src/server/game/Handlers/LootHandler.cpp2
-rw-r--r--src/server/game/Handlers/QuestHandler.cpp2
-rw-r--r--src/server/game/Handlers/VoidStorageHandler.cpp5
-rw-r--r--src/server/game/Loot/Loot.cpp3
-rw-r--r--src/server/game/Loot/Loot.h1
-rw-r--r--src/server/game/Loot/LootItemStorage.cpp13
-rw-r--r--src/server/game/Loot/LootItemStorage.h1
-rw-r--r--src/server/game/Spells/SpellEffects.cpp2
-rw-r--r--src/server/game/Spells/SpellInfo.cpp7
-rw-r--r--src/server/game/World/World.cpp3
-rw-r--r--src/server/scripts/Commands/cs_misc.cpp6
25 files changed, 28935 insertions, 145 deletions
diff --git a/sql/updates/characters/3.4.x/2023_11_27_00_characters.sql b/sql/updates/characters/3.4.x/2023_11_27_00_characters.sql
new file mode 100644
index 00000000000..12c5f735bf0
--- /dev/null
+++ b/sql/updates/characters/3.4.x/2023_11_27_00_characters.sql
@@ -0,0 +1,11 @@
+ALTER TABLE `item_instance`
+ ADD COLUMN `randomPropertiesId` INT DEFAULT 0 NOT NULL AFTER `battlePetDisplayId`,
+ ADD COLUMN `randomPropertiesSeed` INT DEFAULT 0 NOT NULL AFTER `randomPropertiesId`;
+
+ALTER TABLE `item_loot_items`
+ ADD COLUMN `random_properties_id` INT DEFAULT 0 NOT NULL AFTER `needs_quest`,
+ ADD COLUMN `random_properties_seed` INT DEFAULT 0 NOT NULL AFTER `random_properties_id`;
+
+ALTER TABLE `character_void_storage`
+ ADD COLUMN `randomPropertiesId` INT DEFAULT 0 NOT NULL AFTER `fixedScalingLevel`,
+ ADD COLUMN `randomPropertiesSeed` INT DEFAULT 0 NOT NULL AFTER `randomPropertiesId`;
diff --git a/sql/updates/world/3.4.x/2023_11_27_00_world.sql b/sql/updates/world/3.4.x/2023_11_27_00_world.sql
new file mode 100644
index 00000000000..5b6606a34a8
--- /dev/null
+++ b/sql/updates/world/3.4.x/2023_11_27_00_world.sql
@@ -0,0 +1,28620 @@
+ALTER TABLE `item_template_addon`
+ DROP COLUMN `RandomBonusListTemplateId`;
+
+DROP TABLE IF EXISTS `item_enchantment_template`;
+
+CREATE TABLE `item_random_enchantment_template` (
+ `Id` int unsigned NOT NULL DEFAULT '0',
+ `EnchantmentId` int unsigned NOT NULL DEFAULT '0',
+ `Chance` float unsigned NOT NULL DEFAULT '0',
+ PRIMARY KEY (`Id`,`EnchantmentId`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Item Random Enchantment System';
+
+INSERT INTO `item_random_enchantment_template`(`Id`,`EnchantmentId`,`Chance`) VALUES
+(61,6,7.73),
+(61,8,7.31),
+(61,9,8.02),
+(61,15,3.01),
+(61,16,3.39),
+(61,19,3.74),
+(61,21,0.9),
+(61,22,1.01),
+(61,23,0.95),
+(61,25,0.82),
+(61,26,0.98),
+(61,31,1.69),
+(61,32,2.12),
+(61,33,1.79),
+(61,34,1.84),
+(61,35,1.8),
+(61,36,14.32),
+(61,37,10.77),
+(61,38,10.6),
+(61,39,17.48),
+(63,5,3.09),
+(63,6,3.32),
+(63,7,3.46),
+(63,8,2.84),
+(63,9,2.86),
+(63,10,3.5),
+(63,11,3.34),
+(63,12,2.81),
+(63,13,2.88),
+(63,14,3.41),
+(63,15,1.13),
+(63,16,1.33),
+(63,17,1.55),
+(63,18,1.62),
+(63,19,1.36),
+(63,21,0.91),
+(63,24,0.97),
+(63,26,1.08),
+(63,27,0.92),
+(63,31,1.44),
+(63,32,1.82),
+(63,33,1.61),
+(63,34,1.49),
+(63,35,1.46),
+(63,39,8.03),
+(63,40,27.31),
+(63,41,7.03),
+(63,42,8.02),
+(64,5,2.8),
+(64,6,3.07),
+(64,7,3.5),
+(64,8,3.04),
+(64,9,3.16),
+(64,10,3.41),
+(64,11,2.74),
+(64,12,3.08),
+(64,13,2.69),
+(64,14,3.4),
+(64,15,1.25),
+(64,16,1.49),
+(64,17,1.66),
+(64,18,1.42),
+(64,19,1.43),
+(64,24,1.32),
+(64,26,1.53),
+(64,27,1.31),
+(64,31,2.1),
+(64,32,2.3),
+(64,33,1.93),
+(64,34,1.7),
+(64,35,1.78),
+(64,39,10.09),
+(64,40,19.63),
+(64,43,9.12),
+(64,44,9.72),
+(65,5,2.99),
+(65,6,3.32),
+(65,7,2.49),
+(65,8,3.08),
+(65,9,3.45),
+(65,10,3.66),
+(65,11,3.6),
+(65,12,3.21),
+(65,13,3.23),
+(65,14,3.46),
+(65,15,1.37),
+(65,16,1.37),
+(65,17,1.69),
+(65,18,1.84),
+(65,19,1.57),
+(65,26,2.32),
+(65,27,2.32),
+(65,31,1.89),
+(65,32,1.97),
+(65,33,1.86),
+(65,34,2.17),
+(65,35,1.71),
+(65,36,10.06),
+(65,41,10.92),
+(65,44,11.82),
+(65,45,13.08),
+(66,5,3.19),
+(66,6,2.29),
+(66,7,3.16),
+(66,8,2.6),
+(66,9,2.91),
+(66,10,3.52),
+(66,11,3.17),
+(66,12,3.58),
+(66,13,3.19),
+(66,14,3.83),
+(66,15,1.4),
+(66,16,1.15),
+(66,17,1.99),
+(66,18,1.95),
+(66,19,1.35),
+(66,21,0.79),
+(66,22,0.9),
+(66,23,0.79),
+(66,24,0.7),
+(66,25,0.6),
+(66,26,0.75),
+(66,27,0.73),
+(66,31,1.65),
+(66,32,1.98),
+(66,33,1.66),
+(66,34,1.79),
+(66,35,1.51),
+(66,36,4.36),
+(66,37,1.89),
+(66,38,2.23),
+(66,39,6.37),
+(66,40,13.99),
+(66,41,5.51),
+(66,42,2.13),
+(66,43,2.09),
+(66,44,4.21),
+(66,45,4.05),
+(81,5,2.91),
+(81,6,2.74),
+(81,7,2.98),
+(81,8,2.98),
+(81,9,3.36),
+(81,10,3.64),
+(81,11,3.19),
+(81,12,3.25),
+(81,13,3.17),
+(81,14,3.68),
+(81,15,1.39),
+(81,16,1.24),
+(81,17,1.87),
+(81,18,1.65),
+(81,19,1.56),
+(81,28,1.45),
+(81,29,3.93),
+(81,30,1.65),
+(81,31,1.55),
+(81,32,1.94),
+(81,33,1.76),
+(81,34,1.73),
+(81,35,1.59),
+(81,36,5),
+(81,37,2.34),
+(81,38,2.59),
+(81,39,7.28),
+(81,40,10.15),
+(81,41,4.64),
+(81,42,2.4),
+(81,43,1.77),
+(81,44,4.95),
+(81,45,3.66),
+(82,5,3.02),
+(82,6,2.8),
+(82,7,2.52),
+(82,8,3.04),
+(82,9,3.3),
+(82,10,3.55),
+(82,11,3.53),
+(82,12,3.42),
+(82,13,3.31),
+(82,14,3.49),
+(82,15,1.49),
+(82,16,1.31),
+(82,17,1.69),
+(82,18,1.7),
+(82,19,1.58),
+(82,24,1.15),
+(82,26,1.04),
+(82,27,1.14),
+(82,31,1.94),
+(82,32,1.89),
+(82,33,1.84),
+(82,34,1.79),
+(82,35,1.85),
+(82,36,5.63),
+(82,39,5.21),
+(82,41,8.78),
+(82,43,5.09),
+(82,44,11.81),
+(82,45,8.77),
+(82,47,2.32),
+(83,6,7.41),
+(83,8,8.74),
+(83,9,8.84),
+(83,15,4.2),
+(83,16,4.12),
+(83,19,4.16),
+(83,21,1.07),
+(83,22,1.08),
+(83,23,1.05),
+(83,24,0.98),
+(83,25,0.77),
+(83,26,0.81),
+(83,31,2.26),
+(83,32,2.49),
+(83,33,2.45),
+(83,34,2.48),
+(83,35,2.19),
+(83,36,8.84),
+(83,37,6.98),
+(83,38,7.11),
+(83,39,15.31),
+(83,42,6.69),
+(84,6,12.23),
+(84,8,12.25),
+(84,9,12.64),
+(84,15,5.83),
+(84,16,6.22),
+(84,19,6.29),
+(84,44,44.51),
+(85,7,17.67),
+(85,14,17.89),
+(85,16,8.57),
+(85,17,8.84),
+(85,41,47.03),
+(86,5,3.89),
+(86,6,4.81),
+(86,7,3.98),
+(86,8,4.18),
+(86,9,4.54),
+(86,10,4.21),
+(86,11,3.94),
+(86,12,3.84),
+(86,13,3.69),
+(86,14,4.23),
+(86,15,1.85),
+(86,16,1.92),
+(86,17,2.06),
+(86,18,2.03),
+(86,19,2.44),
+(86,39,5.46),
+(86,40,20.54),
+(86,41,6.58),
+(86,43,3.62),
+(86,44,4.75),
+(86,45,7.41),
+(87,5,3.81),
+(87,6,4.34),
+(87,7,3.6),
+(87,8,3.95),
+(87,9,4.51),
+(87,10,4.21),
+(87,11,4.21),
+(87,12,3.8),
+(87,13,4.01),
+(87,14,3.87),
+(87,15,1.81),
+(87,16,1.81),
+(87,17,1.89),
+(87,18,1.95),
+(87,19,2.16),
+(87,36,5.14),
+(87,39,4.56),
+(87,40,12.84),
+(87,41,6.34),
+(87,43,3.63),
+(87,44,10.15),
+(87,45,7.37),
+(88,5,4.33),
+(88,6,4.11),
+(88,7,4.24),
+(88,8,3.61),
+(88,9,3.71),
+(88,10,3.84),
+(88,11,3.81),
+(88,12,3.48),
+(88,13,3.54),
+(88,14,4.39),
+(88,15,1.44),
+(88,16,1.97),
+(88,17,2.01),
+(88,18,1.9),
+(88,19,1.81),
+(88,36,7.07),
+(88,39,5.9),
+(88,41,10.33),
+(88,43,6.12),
+(88,44,12.21),
+(88,45,10.22),
+(89,5,3.59),
+(89,6,5.04),
+(89,7,3.84),
+(89,8,4.06),
+(89,9,4.94),
+(89,10,4.82),
+(89,11,4.61),
+(89,12,4.18),
+(89,13,3.91),
+(89,14,3.88),
+(89,15,1.92),
+(89,16,1.77),
+(89,17,2.05),
+(89,18,1.88),
+(89,19,2.52),
+(89,36,6.37),
+(89,40,20.61),
+(89,41,5.98),
+(89,44,6.1),
+(89,45,7.94),
+(90,5,4.04),
+(90,6,4.37),
+(90,7,4.31),
+(90,8,3.58),
+(90,9,3.74),
+(90,10,4.19),
+(90,11,3.82),
+(90,12,3.63),
+(90,13,3.62),
+(90,14,4.52),
+(90,15,1.41),
+(90,16,2.04),
+(90,17,2.09),
+(90,18,2.04),
+(90,19,1.88),
+(90,36,7.34),
+(90,40,15.52),
+(90,41,10.16),
+(90,44,6.93),
+(90,45,10.82),
+(91,5,4.15),
+(91,6,3.73),
+(91,7,4.41),
+(91,8,3.55),
+(91,9,3.58),
+(91,10,3.85),
+(91,11,3.73),
+(91,12,3.58),
+(91,13,3.58),
+(91,14,4.28),
+(91,15,1.46),
+(91,16,1.64),
+(91,17,1.72),
+(91,18,1.82),
+(91,19,1.82),
+(91,39,5.37),
+(91,40,16.3),
+(91,41,10.75),
+(91,43,5.56),
+(91,44,5.12),
+(91,45,9.92),
+(92,5,3.98),
+(92,6,4.21),
+(92,7,3.96),
+(92,8,3.86),
+(92,9,4.13),
+(92,10,4.09),
+(92,11,4.01),
+(92,12,3.89),
+(92,13,3.75),
+(92,14,4.12),
+(92,15,1.71),
+(92,16,1.94),
+(92,17,2.04),
+(92,18,2.09),
+(92,19,2.05),
+(92,36,5.58),
+(92,39,4.82),
+(92,40,10.92),
+(92,41,6.84),
+(92,43,4.06),
+(92,44,10.16),
+(92,45,7.84),
+(93,5,4.11),
+(93,6,4.29),
+(93,7,4.04),
+(93,8,4.11),
+(93,9,4.12),
+(93,10,4.36),
+(93,11,4.24),
+(93,12,4.1),
+(93,13,3.91),
+(93,14,4.25),
+(93,15,1.81),
+(93,16,1.91),
+(93,17,2.1),
+(93,18,2.13),
+(93,19,2.06),
+(93,39,4.79),
+(93,40,21.55),
+(93,41,6.58),
+(93,43,3.69),
+(93,44,4.33),
+(93,45,7.49),
+(94,5,4.16),
+(94,6,4.32),
+(94,7,4.59),
+(94,8,3.91),
+(94,9,3.86),
+(94,10,3.95),
+(94,11,4),
+(94,12,3.83),
+(94,13,3.78),
+(94,14,4.74),
+(94,15,1.58),
+(94,16,2.04),
+(94,17,2.13),
+(94,18,2.07),
+(94,19,1.84),
+(94,36,2.99),
+(94,40,22.18),
+(94,41,15.06),
+(94,44,4.78),
+(94,45,4.27),
+(95,5,3.75),
+(95,6,4.45),
+(95,7,4.52),
+(95,8,3.69),
+(95,9,4.18),
+(95,10,4.14),
+(95,11,3.96),
+(95,12,4.15),
+(95,13,3.99),
+(95,14,4.54),
+(95,15,1.86),
+(95,16,1.76),
+(95,17,2.41),
+(95,18,2.1),
+(95,19,1.94),
+(95,40,30.48),
+(95,41,8.33),
+(95,45,9.74),
+(96,6,8.08),
+(96,8,7.96),
+(96,9,8.19),
+(96,15,3.6),
+(96,16,4.06),
+(96,19,4.22),
+(96,21,2.11),
+(96,22,2.28),
+(96,23,2.27),
+(96,25,1.8),
+(96,26,2.35),
+(96,36,14.74),
+(96,37,11.18),
+(96,38,10.86),
+(96,39,16.34),
+(141,51,30.8),
+(141,53,32.75),
+(141,55,36.4),
+(142,49,51.65),
+(142,57,48.35),
+(143,50,44.1),
+(143,54,55.9),
+(144,52,60.55),
+(144,56,39.45),
+(161,79,51.35),
+(161,83,48.65),
+(162,80,48.65),
+(162,83,51.35),
+(163,80,44.6),
+(163,83,55.4),
+(181,61,18),
+(181,62,12),
+(181,63,18),
+(181,64,42),
+(181,65,10),
+(201,36,29.9),
+(201,37,15.7),
+(201,38,27.6),
+(201,39,26.8),
+(202,39,21.8),
+(202,40,17.3),
+(202,41,24.8),
+(202,42,36.1),
+(203,39,25),
+(203,40,15),
+(203,43,34.5),
+(203,44,25.5),
+(204,37,29.4),
+(204,41,16.5),
+(204,45,29.4),
+(204,66,24.6),
+(205,36,5.7),
+(205,37,7),
+(205,38,11.8),
+(205,39,9.6),
+(205,40,4.9),
+(205,41,7.5),
+(205,42,11.3),
+(205,43,7.1),
+(205,44,12.7),
+(205,45,11.8),
+(205,66,10.5),
+(221,49,11.8),
+(221,50,10.6),
+(221,51,11.2),
+(221,52,10.6),
+(221,53,9.8),
+(221,54,11.4),
+(221,55,12.4),
+(221,56,9.7),
+(221,57,12.5),
+(222,40,20.7),
+(222,41,24.5),
+(222,43,34),
+(222,45,20.8),
+(241,5,2.5),
+(241,6,3.7),
+(241,7,1.4),
+(241,8,3.5),
+(241,9,5),
+(241,10,4),
+(241,11,4),
+(241,12,4.4),
+(241,13,4.1),
+(241,14,2.3),
+(241,15,3.4),
+(241,16,2.8),
+(241,17,2.4),
+(241,18,3.6),
+(241,19,3.7),
+(241,20,3.3),
+(241,26,6.3),
+(241,27,4.3),
+(241,31,1.8),
+(241,32,2.5),
+(241,33,1.9),
+(241,34,2.1),
+(241,35,1.9),
+(241,37,7.4),
+(241,43,4.4),
+(241,45,5.8),
+(241,67,7.4),
+(242,5,2.9),
+(242,6,3.6),
+(242,7,3.3),
+(242,8,3),
+(242,9,3.1),
+(242,10,3.8),
+(242,11,3.9),
+(242,12,3),
+(242,13,2.9),
+(242,14,3.7),
+(242,15,3.2),
+(242,16,3.4),
+(242,17,3.2),
+(242,18,2.8),
+(242,19,3.3),
+(242,20,3.3),
+(242,26,2.6),
+(242,27,2.8),
+(242,31,1.6),
+(242,32,1.5),
+(242,33,1.5),
+(242,34,1.7),
+(242,35,1.5),
+(242,37,6),
+(242,40,12.8),
+(242,44,5.8),
+(242,67,6.3),
+(243,5,3.5),
+(243,6,3.3),
+(243,7,3.8),
+(243,8,2.7),
+(243,9,2.9),
+(243,10,3.4),
+(243,11,3.6),
+(243,12,3.3),
+(243,13,2.9),
+(243,14,3.5),
+(243,15,2.7),
+(243,16,3),
+(243,17,3.3),
+(243,18,3.5),
+(243,19,3.7),
+(243,20,3.4),
+(243,26,1.9),
+(243,27,2),
+(243,31,2),
+(243,32,2.1),
+(243,33,2),
+(243,34,1.5),
+(243,35,2.1),
+(243,37,4.6),
+(243,38,4.1),
+(243,40,15.7),
+(243,42,5.4),
+(261,9,9),
+(261,15,9.7),
+(261,30,8.5),
+(261,39,11.4),
+(261,69,9.9),
+(261,73,11.4),
+(261,79,9.2),
+(261,81,8.7),
+(261,84,9.7),
+(261,85,12.6),
+(281,14,18.7),
+(281,18,24.1),
+(281,20,17.2),
+(281,71,21.2),
+(281,78,18.7),
+(282,14,20.9),
+(282,20,18.4),
+(282,68,24.3),
+(282,72,19.4),
+(282,86,17),
+(306,36,13.7),
+(306,39,20.3),
+(306,42,20.9),
+(306,88,23.2),
+(306,90,21.9),
+(307,36,10.5),
+(307,39,12.7),
+(307,40,7.7),
+(307,42,11.3),
+(307,88,10.9),
+(307,89,20.4),
+(307,90,13.4),
+(307,91,13.2),
+(308,36,12.6),
+(308,40,13.3),
+(308,88,10.5),
+(308,89,21.9),
+(308,90,14.9),
+(308,91,13.7),
+(308,93,13),
+(309,37,7.7),
+(309,41,23.1),
+(309,43,19.1),
+(309,45,9.3),
+(309,88,10.5),
+(309,92,20.8),
+(309,93,9.5),
+(310,36,10.2),
+(310,39,11.3),
+(310,40,12.9),
+(310,42,9.3),
+(310,43,4.3),
+(310,75,3.9),
+(310,88,12.1),
+(310,90,7.9),
+(310,91,13.2),
+(310,92,7.4),
+(310,93,7.4),
+(321,6,9.3),
+(321,15,9.6),
+(321,36,18.3),
+(321,39,16.5),
+(321,42,18.2),
+(321,88,16.5),
+(321,99,11.7),
+(361,5,15),
+(361,18,7.8),
+(361,20,17.5),
+(361,26,8.6),
+(361,40,16.4),
+(361,51,16.7),
+(361,89,18.1),
+(362,5,14.1),
+(362,18,12.4),
+(362,20,13.4),
+(362,26,10.3),
+(362,36,11.7),
+(362,40,13.3),
+(362,50,13.5),
+(362,67,11.5),
+(363,5,12.5),
+(363,14,11.9),
+(363,17,20.4),
+(363,41,21.4),
+(363,56,20.5),
+(363,99,13.3),
+(381,68,8.1),
+(381,71,14.5),
+(381,72,7.7),
+(381,73,7.3),
+(381,75,7.7),
+(381,78,14.9),
+(381,79,8.8),
+(381,83,14.3),
+(381,84,8.2),
+(381,85,8.5),
+(382,69,18.7),
+(382,79,12.5),
+(382,82,18.8),
+(382,83,17.4),
+(382,84,12.8),
+(382,85,19.8),
+(383,71,35.5),
+(383,78,11.5),
+(383,79,11),
+(383,80,26.3),
+(383,82,15.7),
+(384,71,28.8),
+(384,78,24.1),
+(384,80,22.9),
+(384,83,13.6),
+(384,85,10.6),
+(385,17,13.2),
+(385,68,22.4),
+(385,75,17.6),
+(385,84,12.7),
+(385,85,10.2),
+(385,86,23.9),
+(454,5,4.53),
+(454,15,3.32),
+(454,16,4.17),
+(454,19,3.32),
+(454,25,4.53),
+(454,27,4.17),
+(454,29,0.1),
+(454,754,24.75),
+(454,839,18.3),
+(454,1009,16.35),
+(454,1799,2.92),
+(454,1800,2.92),
+(454,1837,2.48),
+(454,1838,2.48),
+(454,1913,0.1),
+(454,1951,2.85),
+(454,1952,2.85),
+(455,14,0.1),
+(455,22,3.48),
+(455,26,4.4),
+(455,28,4.32),
+(455,94,4.4),
+(455,95,4.32),
+(455,96,3.48),
+(455,590,0.1),
+(455,754,5.18),
+(455,755,5.18),
+(455,756,5.18),
+(455,757,5.18),
+(455,758,3.46),
+(455,759,3.46),
+(455,760,3.46),
+(455,839,4.56),
+(455,840,4.56),
+(455,841,4.56),
+(455,842,4.56),
+(455,927,0.1),
+(455,1009,4.24),
+(455,1010,4.24),
+(455,1011,4.24),
+(455,1012,4.24),
+(455,1098,0.1),
+(455,1183,0.1),
+(455,1704,0.1),
+(455,1801,3.14),
+(455,1802,3.14),
+(455,1839,2.35),
+(455,1840,2.35),
+(455,1875,0.1),
+(455,1913,0.1),
+(455,1953,3.04),
+(455,1954,3.04),
+(455,1991,0.1),
+(456,15,1.48),
+(456,19,1.48),
+(456,22,1.48),
+(456,94,4.35),
+(456,95,4.72),
+(456,96,2.41),
+(456,112,4.35),
+(456,113,4.72),
+(456,114,2.41),
+(456,197,0.1),
+(456,757,5.79),
+(456,758,5.79),
+(456,759,5.79),
+(456,760,5.79),
+(456,842,3.9),
+(456,843,3.9),
+(456,844,3.9),
+(456,845,3.9),
+(456,1012,4.4),
+(456,1013,4.4),
+(456,1014,4.4),
+(456,1015,4.4),
+(456,1307,0.1),
+(456,1802,3.48),
+(456,1803,3.48),
+(456,1840,2.42),
+(456,1841,2.42),
+(456,1954,3.33),
+(456,1955,3.33),
+(457,14,0.1),
+(457,29,0.1),
+(457,133,4.56),
+(457,134,4.97),
+(457,135,3.51),
+(457,152,4.56),
+(457,153,4.97),
+(457,154,3.51),
+(457,506,0.1),
+(457,510,0.1),
+(457,760,5.82),
+(457,761,5.82),
+(457,762,5.82),
+(457,763,5.82),
+(457,845,3.84),
+(457,846,3.84),
+(457,847,3.84),
+(457,848,3.84),
+(457,1015,4.49),
+(457,1016,4.49),
+(457,1017,4.49),
+(457,1018,4.49),
+(457,1804,3.25),
+(457,1805,3.25),
+(457,1842,2.1),
+(457,1843,2.1),
+(457,1956,3.24),
+(457,1957,3.24),
+(458,31,0.1),
+(458,152,4.44),
+(458,153,5.24),
+(458,154,3.4),
+(458,174,4.44),
+(458,179,5.24),
+(458,184,3.4),
+(458,683,0.1),
+(458,763,6.15),
+(458,764,6.15),
+(458,765,6.15),
+(458,766,6.15),
+(458,848,3.32),
+(458,849,3.32),
+(458,850,3.32),
+(458,851,3.32),
+(458,1018,4.41),
+(458,1019,4.41),
+(458,1020,4.41),
+(458,1021,4.41),
+(458,1022,3.58),
+(458,1805,3.4),
+(458,1806,3.4),
+(458,1843,2.11),
+(458,1844,2.11),
+(458,1957,3.2),
+(458,1958,3.2),
+(459,175,4.62),
+(459,176,4.62),
+(459,180,5.18),
+(459,181,5.18),
+(459,185,3.42),
+(459,186,3.42),
+(459,766,6.23),
+(459,767,6.23),
+(459,768,6.23),
+(459,769,6.23),
+(459,851,3.44),
+(459,852,3.44),
+(459,853,3.44),
+(459,854,3.44),
+(459,1021,4.65),
+(459,1022,4.65),
+(459,1023,4.65),
+(459,1024,4.65),
+(459,1807,3.18),
+(459,1808,3.18),
+(459,1845,1.84),
+(459,1846,1.84),
+(459,1959,3.09),
+(459,1960,3.09),
+(460,176,4.72),
+(460,177,4.72),
+(460,181,4.77),
+(460,182,4.77),
+(460,186,3.2),
+(460,187,3.2),
+(460,769,6.64),
+(460,770,6.64),
+(460,771,6.64),
+(460,772,6.64),
+(460,854,3.69),
+(460,855,3.69),
+(460,856,3.69),
+(460,857,3.69),
+(460,1024,4.58),
+(460,1025,4.58),
+(460,1026,4.58),
+(460,1027,4.58),
+(460,1704,0.1),
+(460,1808,2.9),
+(460,1809,2.9),
+(460,1846,1.56),
+(460,1847,1.56),
+(460,1960,3.02),
+(460,1961,3.02),
+(461,178,4.8),
+(461,183,4.99),
+(461,188,3.34),
+(461,213,4.8),
+(461,215,4.99),
+(461,217,3.34),
+(461,772,6.58),
+(461,773,6.58),
+(461,774,6.58),
+(461,775,6.58),
+(461,857,3.53),
+(461,858,3.53),
+(461,859,3.53),
+(461,860,3.53),
+(461,1027,4.46),
+(461,1028,4.46),
+(461,1029,4.46),
+(461,1030,4.46),
+(461,1810,3.19),
+(461,1811,3.19),
+(461,1848,1.59),
+(461,1849,1.59),
+(461,1962,2.91),
+(461,1963,2.91),
+(462,5,0.74),
+(462,25,0.74),
+(462,26,0.74),
+(462,94,0.74),
+(462,112,0.74),
+(462,133,0.74),
+(462,152,0.74),
+(462,174,0.74),
+(462,175,0.74),
+(462,176,0.74),
+(462,177,0.74),
+(462,178,0.74),
+(462,213,3.71),
+(462,214,3.71),
+(462,215,4.66),
+(462,216,4.66),
+(462,217,3.34),
+(462,218,3.34),
+(462,775,6.82),
+(462,776,6.82),
+(462,777,6.82),
+(462,778,6.82),
+(462,860,3.83),
+(462,861,3.83),
+(462,862,3.83),
+(462,863,3.83),
+(462,1030,4.55),
+(462,1031,4.55),
+(462,1032,4.55),
+(462,1033,4.55),
+(462,1811,2.93),
+(462,1812,2.93),
+(462,1849,1.58),
+(462,1850,1.58),
+(462,1963,2.61),
+(462,1964,2.61),
+(463,287,3.64),
+(463,333,3.64),
+(463,383,4.09),
+(463,384,4.09),
+(463,409,5.22),
+(463,410,5.22),
+(463,778,7.04),
+(463,779,7.04),
+(463,780,7.04),
+(463,781,7.04),
+(463,863,3.31),
+(463,864,3.31),
+(463,865,3.31),
+(463,866,3.31),
+(463,1033,4.67),
+(463,1034,4.67),
+(463,1035,4.67),
+(463,1036,4.67),
+(463,1813,2.86),
+(463,1814,2.86),
+(463,1851,1.71),
+(463,1852,1.71),
+(463,1965,2.44),
+(463,1966,2.44),
+(464,333,3.51),
+(464,334,3.51),
+(464,384,4),
+(464,385,4),
+(464,410,4.49),
+(464,411,4.49),
+(464,781,7.3),
+(464,782,7.3),
+(464,783,7.3),
+(464,784,7.3),
+(464,866,3.34),
+(464,867,3.34),
+(464,868,3.34),
+(464,869,3.34),
+(464,1036,4.68),
+(464,1037,4.68),
+(464,1038,4.68),
+(464,1039,4.68),
+(464,1799,0.4),
+(464,1800,0.4),
+(464,1801,0.4),
+(464,1802,0.4),
+(464,1803,0.4),
+(464,1804,0.4),
+(464,1805,0.4),
+(464,1806,0.4),
+(464,1807,0.4),
+(464,1808,0.4),
+(464,1809,0.4),
+(464,1810,0.4),
+(464,1811,0.4),
+(464,1812,0.4),
+(464,1813,0.4),
+(464,1814,2.29),
+(464,1815,2.29),
+(464,1852,1.98),
+(464,1853,1.98),
+(464,1966,2.58),
+(464,1967,2.58),
+(465,335,3.49),
+(465,336,3.49),
+(465,386,3.93),
+(465,387,3.93),
+(465,412,5.09),
+(465,413,5.09),
+(465,784,7.01),
+(465,785,7.01),
+(465,786,7.01),
+(465,787,7.01),
+(465,869,3.03),
+(465,870,3.03),
+(465,871,3.03),
+(465,872,3.03),
+(465,1039,4.84),
+(465,1040,4.84),
+(465,1041,4.84),
+(465,1042,4.84),
+(465,1816,3.15),
+(465,1817,3.15),
+(465,1854,1.99),
+(465,1855,1.99),
+(465,1968,2.64),
+(465,1969,2.64),
+(466,336,3.7),
+(466,337,3.7),
+(466,387,3.6),
+(466,388,3.6),
+(466,413,4.78),
+(466,414,4.78),
+(466,787,6.67),
+(466,788,6.67),
+(466,789,6.67),
+(466,790,6.67),
+(466,872,3.18),
+(466,873,3.18),
+(466,874,3.18),
+(466,875,3.18),
+(466,1042,5.1),
+(466,1043,5.1),
+(466,1044,5.1),
+(466,1045,5.1),
+(466,1817,3.14),
+(466,1818,3.14),
+(466,1855,2.03),
+(466,1856,2.03),
+(466,1969,2.82),
+(466,1970,2.82),
+(467,338,3.62),
+(467,339,3.62),
+(467,363,0.1),
+(467,389,3.44),
+(467,390,3.44),
+(467,415,4.94),
+(467,416,4.94),
+(467,536,0.03),
+(467,538,0.03),
+(467,539,0.03),
+(467,790,7.16),
+(467,791,7.16),
+(467,792,7.16),
+(467,793,7.16),
+(467,875,3.04),
+(467,876,3.04),
+(467,877,3.04),
+(467,878,3.04),
+(467,961,0.1),
+(467,1045,4.79),
+(467,1046,4.79),
+(467,1047,4.79),
+(467,1048,4.79),
+(467,1819,3.45),
+(467,1820,3.45),
+(467,1857,1.77),
+(467,1858,1.77),
+(467,1971,2.82),
+(467,1972,2.82),
+(467,2147,0.1),
+(467,2149,0.1),
+(468,339,3.24),
+(468,340,3.24),
+(468,390,3.07),
+(468,391,3.07),
+(468,416,4.5),
+(468,417,4.5),
+(468,793,6.34),
+(468,794,6.34),
+(468,795,6.34),
+(468,796,6.34),
+(468,878,2.38),
+(468,879,2.38),
+(468,880,2.38),
+(468,881,2.38),
+(468,1048,4.38),
+(468,1049,4.38),
+(468,1050,4.38),
+(468,1051,4.38),
+(468,1328,0.19),
+(468,1329,0.19),
+(468,1374,0.11),
+(468,1375,0.11),
+(468,1420,0.26),
+(468,1421,0.26),
+(468,1466,0.1),
+(468,1467,0.1),
+(468,1512,0.16),
+(468,1513,0.16),
+(468,1820,5.09),
+(468,1821,5.09),
+(468,1858,2.89),
+(468,1859,2.89),
+(468,1972,4.15),
+(468,1973,4.15),
+(468,2154,0.1),
+(469,341,2.88),
+(469,342,2.88),
+(469,392,3.22),
+(469,393,3.22),
+(469,418,3.93),
+(469,419,3.93),
+(469,461,0.1),
+(469,796,6.27),
+(469,797,6.27),
+(469,798,6.27),
+(469,799,6.27),
+(469,881,2.73),
+(469,882,2.73),
+(469,883,2.73),
+(469,884,2.73),
+(469,1051,4.33),
+(469,1052,4.33),
+(469,1053,4.33),
+(469,1054,4.33),
+(469,1140,0.1),
+(469,1330,0.17),
+(469,1331,0.17),
+(469,1376,0.2),
+(469,1377,0.2),
+(469,1422,0.33),
+(469,1423,0.33),
+(469,1468,0.22),
+(469,1469,0.22),
+(469,1514,0.19),
+(469,1515,0.21),
+(469,1822,4.67),
+(469,1823,4.67),
+(469,1860,3.2),
+(469,1861,3.2),
+(469,1900,0.1),
+(469,1974,4.33),
+(469,1975,4.33),
+(470,342,2.92),
+(470,343,2.92),
+(470,393,3.56),
+(470,394,3.56),
+(470,419,3.67),
+(470,420,3.67),
+(470,464,0.1),
+(470,549,0.1),
+(470,631,0.1),
+(470,799,6.09),
+(470,800,6.09),
+(470,801,6.09),
+(470,802,6.09),
+(470,884,2.92),
+(470,885,2.92),
+(470,886,2.92),
+(470,887,2.92),
+(470,1054,3.94),
+(470,1055,3.94),
+(470,1056,3.94),
+(470,1057,3.94),
+(470,1140,0.07),
+(470,1141,0.1),
+(470,1142,0.07),
+(470,1144,0.07),
+(470,1331,0.2),
+(470,1332,0.16),
+(470,1377,0.24),
+(470,1378,0.24),
+(470,1379,0.37),
+(470,1423,0.33),
+(470,1424,0.35),
+(470,1469,0.2),
+(470,1470,0.38),
+(470,1515,0.25),
+(470,1516,0.25),
+(470,1730,0.1),
+(470,1731,0.1),
+(470,1823,4.64),
+(470,1824,4.64),
+(470,1861,3.71),
+(470,1862,3.71),
+(470,1939,0.1),
+(470,1975,4.17),
+(470,1976,4.17),
+(470,1977,3.13),
+(470,2015,0.1),
+(471,344,3.21),
+(471,345,3.21),
+(471,395,3.38),
+(471,396,3.38),
+(471,421,3.04),
+(471,422,3.04),
+(471,802,6.15),
+(471,803,6.15),
+(471,804,6.15),
+(471,805,6.15),
+(471,887,3.56),
+(471,888,3.56),
+(471,889,3.56),
+(471,890,3.56),
+(471,975,0.8),
+(471,1057,3.58),
+(471,1058,3.58),
+(471,1059,3.58),
+(471,1060,3.58),
+(471,1333,0.27),
+(471,1334,0.43),
+(471,1335,0.43),
+(471,1379,0.48),
+(471,1380,0.13),
+(471,1425,0.42),
+(471,1426,0.55),
+(471,1427,0.8),
+(471,1471,0.21),
+(471,1472,0.43),
+(471,1517,0.18),
+(471,1518,0.13),
+(471,1519,0.8),
+(471,1825,4.49),
+(471,1826,4.49),
+(471,1863,4.36),
+(471,1864,4.8),
+(471,1903,1.6),
+(471,1977,4.9),
+(471,1978,4.56),
+(471,2016,0.1),
+(472,320,0.1),
+(472,345,2.48),
+(472,346,2.53),
+(472,371,0.1),
+(472,396,3.01),
+(472,397,3.21),
+(472,398,0.67),
+(472,422,2.73),
+(472,423,3.42),
+(472,637,0.1),
+(472,638,0.1),
+(472,805,6.29),
+(472,806,6.29),
+(472,807,7.78),
+(472,808,7.78),
+(472,890,3.87),
+(472,891,3.87),
+(472,892,3.87),
+(472,893,3.87),
+(472,1060,3.78),
+(472,1061,3.78),
+(472,1062,4.47),
+(472,1063,4.47),
+(472,1149,0.1),
+(472,1230,0.1),
+(472,1334,0.13),
+(472,1335,0.13),
+(472,1380,0.1),
+(472,1381,0.1),
+(472,1426,0.17),
+(472,1427,0.17),
+(472,1428,0.07),
+(472,1472,0.85),
+(472,1473,0.06),
+(472,1518,0.67),
+(472,1519,0.14),
+(472,1734,0.1),
+(472,1826,3.79),
+(472,1827,4.54),
+(472,1864,4.36),
+(472,1865,4.36),
+(472,1904,0.1),
+(472,1941,0.1),
+(472,1978,5.73),
+(472,1979,5.73),
+(472,2018,0.1),
+(472,2056,0.1),
+(472,2095,0.03),
+(472,2096,0.03),
+(472,2097,0.03),
+(475,5,3.8),
+(475,14,4.95),
+(475,15,3.9),
+(475,16,3.5),
+(475,17,4.95),
+(475,19,3.9),
+(475,25,3.8),
+(475,27,3.5),
+(475,118,0.1),
+(475,227,4.6),
+(475,228,4.4),
+(475,584,18.2),
+(475,754,14.8),
+(475,839,9.8),
+(475,1009,10.2),
+(475,1547,1.6),
+(475,1548,1.6),
+(475,1839,0.1),
+(475,1989,1.25),
+(475,1990,1.25),
+(476,18,4.55),
+(476,22,3.9),
+(476,26,3.9),
+(476,28,3.82),
+(476,93,4.55),
+(476,94,3.9),
+(476,95,3.82),
+(476,96,3.9),
+(476,227,1.04),
+(476,228,1.13),
+(476,229,1.04),
+(476,231,1.04),
+(476,238,1.04),
+(476,256,1.13),
+(476,501,1.13),
+(476,502,1.13),
+(476,584,4.34),
+(476,585,4.34),
+(476,586,4.34),
+(476,587,4.34),
+(476,754,3.47),
+(476,755,3.47),
+(476,756,3.47),
+(476,757,3.47),
+(476,758,3.02),
+(476,839,2.51),
+(476,840,2.51),
+(476,841,2.51),
+(476,842,2.51),
+(476,1009,2.61),
+(476,1010,2.61),
+(476,1011,2.61),
+(476,1012,2.61),
+(476,1549,1.55),
+(476,1550,1.55),
+(476,1991,1.38),
+(476,1992,1.38),
+(477,29,0.1),
+(477,93,4.1),
+(477,94,4.2),
+(477,95,4.35),
+(477,96,4),
+(477,111,4.1),
+(477,112,4.2),
+(477,113,4.35),
+(477,114,4),
+(477,232,1.13),
+(477,233,1.13),
+(477,234,1.13),
+(477,238,1.13),
+(477,502,0.9),
+(477,503,0.9),
+(477,504,0.9),
+(477,505,0.9),
+(477,507,0.9),
+(477,587,3.72),
+(477,588,3.72),
+(477,589,3.72),
+(477,590,3.72),
+(477,757,3.95),
+(477,758,3.95),
+(477,759,3.95),
+(477,760,3.95),
+(477,842,1.4),
+(477,843,1.4),
+(477,844,1.4),
+(477,845,1.4),
+(477,846,1.4),
+(477,847,1.4),
+(477,848,1.4),
+(477,1012,2.75),
+(477,1013,2.75),
+(477,1014,2.75),
+(477,1015,2.75),
+(477,1445,0.1),
+(477,1550,1.55),
+(477,1551,1.55),
+(477,1992,1.5),
+(477,1993,1.5),
+(478,130,0.1),
+(478,132,4.7),
+(478,133,4.2),
+(478,134,4.63),
+(478,135,4.1),
+(478,151,4.7),
+(478,152,4.2),
+(478,153,4.63),
+(478,154,4.1),
+(478,234,0.97),
+(478,235,0.97),
+(478,236,0.97),
+(478,248,0.97),
+(478,505,1.18),
+(478,506,1.18),
+(478,507,1.18),
+(478,508,1.18),
+(478,590,3.22),
+(478,591,3.22),
+(478,592,3.22),
+(478,593,3.22),
+(478,595,3.24),
+(478,760,3.95),
+(478,761,3.95),
+(478,762,3.95),
+(478,763,3.95),
+(478,845,2.24),
+(478,846,2.24),
+(478,847,2.24),
+(478,848,2.24),
+(478,1015,2.76),
+(478,1016,2.76),
+(478,1017,2.76),
+(478,1018,2.76),
+(478,1497,0.1),
+(478,1552,1.55),
+(478,1553,1.55),
+(478,1710,0.1),
+(478,1951,0.1),
+(478,1994,1.06),
+(478,1995,1.06),
+(478,1996,0.63),
+(478,1997,0.63),
+(479,151,4.02),
+(479,152,4.57),
+(479,153,5.05),
+(479,154,4.17),
+(479,167,4.02),
+(479,174,4.57),
+(479,179,5.05),
+(479,184,4.17),
+(479,237,0.93),
+(479,247,0.93),
+(479,248,0.93),
+(479,249,0.93),
+(479,508,1.01),
+(479,509,1.01),
+(479,510,1.01),
+(479,511,1.01),
+(479,593,3.11),
+(479,594,3.11),
+(479,595,3.11),
+(479,596,3.11),
+(479,681,0.1),
+(479,763,4.35),
+(479,764,4.35),
+(479,765,4.35),
+(479,766,4.35),
+(479,848,2.27),
+(479,849,2.27),
+(479,850,2.27),
+(479,851,2.27),
+(479,1018,2.8),
+(479,1019,2.8),
+(479,1020,2.8),
+(479,1021,2.8),
+(479,1553,1.6),
+(479,1554,1.6),
+(479,1807,0.1),
+(479,1995,1.6),
+(479,1996,1.6),
+(480,138,0.1),
+(480,168,4.15),
+(480,171,4.15),
+(480,175,5.15),
+(480,176,5.15),
+(480,180,5.08),
+(480,181,5.08),
+(480,185,4.38),
+(480,186,4.38),
+(480,247,0.86),
+(480,250,0.86),
+(480,251,0.86),
+(480,252,0.86),
+(480,511,0.91),
+(480,512,0.91),
+(480,513,0.91),
+(480,514,0.91),
+(480,596,3.2),
+(480,597,3.2),
+(480,598,3.2),
+(480,599,3.2),
+(480,766,3.94),
+(480,767,3.94),
+(480,768,3.94),
+(480,769,3.94),
+(480,851,2.46),
+(480,852,2.46),
+(480,853,2.46),
+(480,854,2.46),
+(480,1021,2.61),
+(480,1022,2.61),
+(480,1023,2.61),
+(480,1024,2.61),
+(480,1555,1.5),
+(480,1556,1.5),
+(480,1922,0.1),
+(480,1997,1.75),
+(480,1998,1.75),
+(481,171,4.28),
+(481,172,4.28),
+(481,176,4.57),
+(481,177,4.57),
+(481,181,5.12),
+(481,182,5.12),
+(481,186,4.37),
+(481,187,4.37),
+(481,251,0.93),
+(481,253,0.93),
+(481,254,0.93),
+(481,255,0.93),
+(481,514,1.02),
+(481,515,1.02),
+(481,516,1.02),
+(481,517,1.02),
+(481,599,3.1),
+(481,600,3.1),
+(481,601,3.1),
+(481,602,3.1),
+(481,689,0.1),
+(481,769,4.1),
+(481,770,4.1),
+(481,771,4.1),
+(481,772,4.1),
+(481,854,2.34),
+(481,855,2.34),
+(481,856,2.34),
+(481,857,2.34),
+(481,1024,2.78),
+(481,1025,2.78),
+(481,1026,2.78),
+(481,1027,2.78),
+(481,1556,1.47),
+(481,1557,1.47),
+(481,1998,1.63),
+(481,1999,1.63),
+(482,173,3.08),
+(482,178,4.68),
+(482,183,5.45),
+(482,188,4.65),
+(482,211,3.08),
+(482,213,4.68),
+(482,215,5.45),
+(482,217,4.65),
+(482,254,0.88),
+(482,435,0.88),
+(482,436,0.88),
+(482,437,0.88),
+(482,517,1.15),
+(482,518,1.15),
+(482,519,1.15),
+(482,520,1.15),
+(482,602,2.41),
+(482,603,2.41),
+(482,604,2.41),
+(482,605,2.41),
+(482,772,4.42),
+(482,773,4.42),
+(482,774,4.42),
+(482,775,4.42),
+(482,857,2.41),
+(482,858,2.41),
+(482,859,2.41),
+(482,860,2.41),
+(482,1027,3.18),
+(482,1028,3.18),
+(482,1029,3.18),
+(482,1030,3.18),
+(482,1558,1.48),
+(482,1559,1.48),
+(482,2000,1.72),
+(482,2001,1.72),
+(483,211,3.03),
+(483,212,3.03),
+(483,213,4.4),
+(483,214,4.4),
+(483,215,5.35),
+(483,216,5.35),
+(483,217,5.03),
+(483,218,5.03),
+(483,437,0.93),
+(483,438,0.93),
+(483,439,0.93),
+(483,440,0.93),
+(483,520,1.03),
+(483,521,1.03),
+(483,522,1.03),
+(483,523,1.03),
+(483,605,2.31),
+(483,606,2.31),
+(483,607,2.31),
+(483,608,2.31),
+(483,775,4.31),
+(483,776,4.31),
+(483,777,4.31),
+(483,778,4.31),
+(483,860,2.48),
+(483,861,2.48),
+(483,862,2.48),
+(483,863,2.48),
+(483,1030,3.43),
+(483,1031,3.43),
+(483,1032,3.43),
+(483,1033,3.43),
+(483,1559,1.45),
+(483,1560,1.45),
+(483,2001,1.8),
+(483,2002,1.8),
+(484,267,3.25),
+(484,287,4.95),
+(484,333,4.95),
+(484,358,3.25),
+(484,383,4.58),
+(484,384,4.58),
+(484,409,5.85),
+(484,410,5.85),
+(484,440,0.91),
+(484,441,0.91),
+(484,442,0.91),
+(484,443,0.91),
+(484,523,1.1),
+(484,524,1.1),
+(484,525,1.1),
+(484,526,1.1),
+(484,608,2.26),
+(484,609,2.26),
+(484,610,2.26),
+(484,611,2.26),
+(484,778,4.15),
+(484,779,4.15),
+(484,780,4.15),
+(484,781,4.15),
+(484,863,2.35),
+(484,864,2.35),
+(484,865,2.35),
+(484,866,2.35),
+(484,1033,3.39),
+(484,1034,3.39),
+(484,1035,3.39),
+(484,1036,3.39),
+(484,1561,1.45),
+(484,1562,1.45),
+(484,2003,1.63),
+(484,2004,1.63),
+(485,333,5.47),
+(485,334,5.47),
+(485,358,4.47),
+(485,359,4.47),
+(485,384,3.33),
+(485,385,3.33),
+(485,410,3.98),
+(485,411,3.98),
+(485,611,4.43),
+(485,612,4.43),
+(485,613,4.43),
+(485,614,4.43),
+(485,781,3.73),
+(485,782,3.73),
+(485,783,3.73),
+(485,784,3.73),
+(485,866,2.28),
+(485,867,2.28),
+(485,868,2.28),
+(485,869,2.28),
+(485,1036,3.01),
+(485,1037,3.01),
+(485,1038,3.01),
+(485,1039,3.01),
+(485,1206,1.26),
+(485,1207,1.26),
+(485,1208,1.26),
+(485,1209,1.26),
+(485,1562,1.82),
+(485,1563,1.82),
+(485,2004,1.5),
+(485,2005,1.5),
+(486,335,5.63),
+(486,336,5.63),
+(486,360,3.62),
+(486,361,3.62),
+(486,386,3.43),
+(486,387,3.43),
+(486,412,3.92),
+(486,413,3.92),
+(486,614,4.06),
+(486,615,4.06),
+(486,616,4.06),
+(486,617,4.06),
+(486,784,3.94),
+(486,785,3.94),
+(486,786,3.94),
+(486,787,3.94),
+(486,869,2.46),
+(486,870,2.46),
+(486,871,2.46),
+(486,872,2.46),
+(486,1039,2.92),
+(486,1040,2.92),
+(486,1041,2.92),
+(486,1042,2.92),
+(486,1043,2.38),
+(486,1209,1.38),
+(486,1210,1.38),
+(486,1211,1.38),
+(486,1212,1.38),
+(486,1491,0.1),
+(486,1564,1.92),
+(486,1565,1.92),
+(486,2006,1.62),
+(486,2007,1.62),
+(487,336,5.73),
+(487,337,5.73),
+(487,361,3.2),
+(487,362,3.2),
+(487,387,3.08),
+(487,388,3.08),
+(487,413,3.57),
+(487,414,3.57),
+(487,617,4.26),
+(487,618,4.26),
+(487,619,4.26),
+(487,620,4.26),
+(487,787,3.86),
+(487,788,3.86),
+(487,789,3.86),
+(487,790,3.86),
+(487,872,2.71),
+(487,873,2.71),
+(487,874,2.71),
+(487,875,2.71),
+(487,1042,3.05),
+(487,1043,3.05),
+(487,1044,3.05),
+(487,1045,3.05),
+(487,1212,1.61),
+(487,1213,1.61),
+(487,1214,1.61),
+(487,1215,1.61),
+(487,1565,1.85),
+(487,1566,1.85),
+(487,2007,1.63),
+(487,2008,1.63),
+(488,338,6),
+(488,339,6),
+(488,363,3.08),
+(488,364,3.08),
+(488,389,2.88),
+(488,390,2.88),
+(488,415,3.3),
+(488,416,3.3),
+(488,620,3.97),
+(488,621,3.97),
+(488,622,3.97),
+(488,623,3.97),
+(488,790,4.04),
+(488,791,4.04),
+(488,792,4.04),
+(488,793,4.04),
+(488,875,2.86),
+(488,876,2.86),
+(488,877,2.86),
+(488,878,2.86),
+(488,1045,3.24),
+(488,1046,3.24),
+(488,1047,3.24),
+(488,1048,3.24),
+(488,1215,1.48),
+(488,1216,1.48),
+(488,1217,1.48),
+(488,1218,1.48),
+(488,1513,0.1),
+(488,1567,1.93),
+(488,1568,1.93),
+(488,1933,0.1),
+(488,1973,0.1),
+(488,2009,1.65),
+(488,2010,1.65),
+(488,2147,0.1),
+(489,339,5.08),
+(489,340,5.08),
+(489,364,2.88),
+(489,365,2.88),
+(489,390,2.85),
+(489,391,2.85),
+(489,416,3.17),
+(489,417,3.17),
+(489,623,3.26),
+(489,624,3.26),
+(489,625,3.26),
+(489,626,3.26),
+(489,793,3.41),
+(489,794,3.41),
+(489,795,3.41),
+(489,796,3.41),
+(489,878,2.34),
+(489,879,2.34),
+(489,880,2.34),
+(489,881,2.34),
+(489,1048,2.98),
+(489,1049,2.98),
+(489,1050,2.98),
+(489,1051,2.98),
+(489,1218,1.44),
+(489,1219,1.44),
+(489,1220,1.44),
+(489,1221,1.44),
+(489,1328,0.08),
+(489,1329,0.08),
+(489,1374,0.15),
+(489,1375,0.15),
+(489,1420,0.23),
+(489,1421,0.23),
+(489,1466,0.05),
+(489,1467,0.13),
+(489,1512,0.13),
+(489,1513,0.13),
+(489,1568,4.6),
+(489,1569,4.6),
+(489,2010,3.82),
+(489,2011,3.82),
+(490,341,4.67),
+(490,342,4.67),
+(490,366,3.38),
+(490,367,3.38),
+(490,392,2.8),
+(490,393,2.8),
+(490,418,2.82),
+(490,419,2.82),
+(490,626,4),
+(490,627,4),
+(490,628,4),
+(490,629,4),
+(490,796,3.46),
+(490,797,3.46),
+(490,798,3.46),
+(490,799,3.46),
+(490,881,2.46),
+(490,882,2.46),
+(490,883,2.46),
+(490,884,2.46),
+(490,1051,2.51),
+(490,1052,2.51),
+(490,1053,2.51),
+(490,1054,2.51),
+(490,1221,1.44),
+(490,1222,1.44),
+(490,1223,1.44),
+(490,1224,1.44),
+(490,1330,0.08),
+(490,1331,0.08),
+(490,1376,0.08),
+(490,1377,0.08),
+(490,1422,0.13),
+(490,1423,0.13),
+(490,1468,0.07),
+(490,1469,0.07),
+(490,1514,0.08),
+(490,1515,0.08),
+(490,1570,4.88),
+(490,1571,4.88),
+(490,1938,0.1),
+(490,2012,3.22),
+(490,2013,3.22),
+(491,319,0.1),
+(491,342,3.38),
+(491,343,3.38),
+(491,344,2.15),
+(491,345,2.15),
+(491,367,3.9),
+(491,368,3.9),
+(491,393,2.58),
+(491,394,2.58),
+(491,419,2.48),
+(491,420,2.48),
+(491,546,0.1),
+(491,629,4.54),
+(491,630,4.54),
+(491,631,4.54),
+(491,632,4.54),
+(491,718,0.1),
+(491,799,3.26),
+(491,800,3.26),
+(491,801,3.26),
+(491,802,3.26),
+(491,884,2.48),
+(491,885,2.48),
+(491,886,2.48),
+(491,887,2.48),
+(491,971,0.05),
+(491,972,0.05),
+(491,1054,2.27),
+(491,1055,2.27),
+(491,1056,2.27),
+(491,1057,2.27),
+(491,1142,0.1),
+(491,1224,1.64),
+(491,1225,1.64),
+(491,1226,1.64),
+(491,1227,1.64),
+(491,1331,0.08),
+(491,1332,0.08),
+(491,1377,0.13),
+(491,1378,0.13),
+(491,1423,0.18),
+(491,1424,0.18),
+(491,1469,0.2),
+(491,1470,0.2),
+(491,1515,0.1),
+(491,1516,0.1),
+(491,1571,4.65),
+(491,1572,4.65),
+(491,1939,0.1),
+(491,2013,2.98),
+(491,2014,2.98),
+(492,320,0.1),
+(492,344,4.18),
+(492,345,4.18),
+(492,369,4.33),
+(492,370,4.33),
+(492,395,2.26),
+(492,396,2.26),
+(492,397,1.17),
+(492,421,1.83),
+(492,422,1.83),
+(492,632,5.04),
+(492,633,5.04),
+(492,634,5.04),
+(492,635,5.04),
+(492,636,4.88),
+(492,802,2.54),
+(492,803,2.54),
+(492,804,2.54),
+(492,805,2.54),
+(492,887,2.36),
+(492,888,2.36),
+(492,889,2.36),
+(492,890,2.36),
+(492,1057,2.11),
+(492,1058,2.11),
+(492,1059,2.11),
+(492,1060,2.11),
+(492,1062,1.42),
+(492,1145,0.05),
+(492,1147,0.05),
+(492,1227,1.49),
+(492,1228,1.49),
+(492,1229,1.49),
+(492,1230,1.49),
+(492,1333,0.15),
+(492,1334,0.15),
+(492,1379,0.1),
+(492,1380,0.1),
+(492,1425,0.25),
+(492,1426,0.27),
+(492,1471,0.17),
+(492,1472,0.1),
+(492,1517,0.13),
+(492,1566,1.26),
+(492,1567,1.26),
+(492,1568,1.26),
+(492,1569,1.26),
+(492,1570,1.26),
+(492,1571,1.26),
+(492,1572,1.26),
+(492,1573,3.69),
+(492,1574,3.69),
+(492,1941,0.1),
+(492,2015,3.42),
+(492,2016,3.42),
+(492,2095,0.03),
+(492,2096,0.03),
+(492,2097,0.03),
+(493,345,4.1),
+(493,346,4.43),
+(493,370,4.63),
+(493,371,4.63),
+(493,396,1.68),
+(493,397,1.68),
+(493,422,1.38),
+(493,423,1.73),
+(493,635,5.73),
+(493,636,5.73),
+(493,637,5.73),
+(493,638,5.73),
+(493,805,2.97),
+(493,806,2.97),
+(493,807,2.97),
+(493,808,2.97),
+(493,890,2.15),
+(493,891,2.27),
+(493,892,2.15),
+(493,893,2.27),
+(493,1060,1.64),
+(493,1061,2.29),
+(493,1062,1.64),
+(493,1063,2.29),
+(493,1230,1.51),
+(493,1231,1.51),
+(493,1232,1.51),
+(493,1233,6.81),
+(493,1334,0.08),
+(493,1335,0.08),
+(493,1380,0.1),
+(493,1381,0.1),
+(493,1426,0.08),
+(493,1427,0.08),
+(493,1472,0.37),
+(493,1473,0.08),
+(493,1518,1),
+(493,1519,0.05),
+(493,1574,5.83),
+(493,1575,5.83),
+(493,2016,2.63),
+(493,2017,2.63),
+(493,2056,0.7),
+(496,6,4.55),
+(496,15,4.4),
+(496,19,4.4),
+(496,23,4.55),
+(496,584,3.8),
+(496,669,3.5),
+(496,839,5),
+(496,924,5),
+(496,1009,6.9),
+(496,1094,6.3),
+(496,1179,46.5),
+(496,1547,2.5),
+(496,1548,2.5),
+(497,14,0.1),
+(497,22,4.35),
+(497,24,4.45),
+(497,91,0.1),
+(497,93,0.1),
+(497,96,4.35),
+(497,97,4.45),
+(497,112,0.1),
+(497,236,0.1),
+(497,584,0.74),
+(497,585,0.74),
+(497,586,0.74),
+(497,587,0.74),
+(497,588,0.57),
+(497,589,0.57),
+(497,590,0.57),
+(497,669,0.89),
+(497,670,0.89),
+(497,671,0.89),
+(497,672,0.89),
+(497,762,0.1),
+(497,839,1.16),
+(497,840,1.16),
+(497,841,1.16),
+(497,842,1.16),
+(497,924,1.21),
+(497,925,1.21),
+(497,926,1.21),
+(497,927,1.21),
+(497,1009,1.71),
+(497,1010,1.71),
+(497,1011,1.71),
+(497,1012,1.71),
+(497,1094,1.65),
+(497,1095,1.65),
+(497,1096,1.65),
+(497,1097,1.65),
+(497,1179,11.69),
+(497,1180,11.69),
+(497,1181,11.69),
+(497,1182,11.69),
+(497,1401,0.1),
+(497,1402,0.1),
+(497,1493,0.1),
+(497,1549,2.63),
+(497,1550,2.63),
+(497,1916,0.1),
+(498,96,4.88),
+(498,97,4.85),
+(498,114,4.88),
+(498,115,4.85),
+(498,587,1),
+(498,588,1),
+(498,589,1),
+(498,590,1),
+(498,672,0.95),
+(498,673,0.95),
+(498,674,0.95),
+(498,675,0.95),
+(498,842,1.26),
+(498,843,1.26),
+(498,844,1.26),
+(498,845,1.26),
+(498,927,1.24),
+(498,928,1.24),
+(498,929,1.24),
+(498,930,1.24),
+(498,1012,1.5),
+(498,1013,1.5),
+(498,1014,1.5),
+(498,1015,1.5),
+(498,1016,1.06),
+(498,1017,1.06),
+(498,1018,1.06),
+(498,1097,1.83),
+(498,1098,1.83),
+(498,1099,1.83),
+(498,1100,1.83),
+(498,1182,10.5),
+(498,1183,10.5),
+(498,1184,10.5),
+(498,1185,10.5),
+(498,1495,0.1),
+(498,1550,2.9),
+(498,1551,2.9),
+(499,14,0.1),
+(499,135,5.15),
+(499,136,5.15),
+(499,154,5.15),
+(499,155,5.15),
+(499,590,1.04),
+(499,591,1.04),
+(499,592,1.04),
+(499,593,1.04),
+(499,675,0.94),
+(499,676,0.94),
+(499,677,0.94),
+(499,678,0.94),
+(499,845,1.26),
+(499,846,1.26),
+(499,847,1.26),
+(499,848,1.26),
+(499,930,1.24),
+(499,931,1.24),
+(499,932,1.24),
+(499,933,1.24),
+(499,1015,2.06),
+(499,1016,2.06),
+(499,1017,2.06),
+(499,1018,2.06),
+(499,1100,2.06),
+(499,1101,2.06),
+(499,1102,2.06),
+(499,1103,2.06),
+(499,1185,9.72),
+(499,1186,9.72),
+(499,1187,9.72),
+(499,1188,9.72),
+(499,1552,2.98),
+(499,1553,2.98),
+(500,154,4.9),
+(500,155,5.22),
+(500,184,4.9),
+(500,189,5.22),
+(500,593,0.97),
+(500,594,0.97),
+(500,595,0.97),
+(500,596,0.97),
+(500,678,0.99),
+(500,679,0.99),
+(500,680,0.99),
+(500,681,0.99),
+(500,848,1.32),
+(500,849,1.32),
+(500,850,1.32),
+(500,851,1.32),
+(500,933,1.38),
+(500,934,1.38),
+(500,935,1.38),
+(500,936,1.38),
+(500,1018,2.2),
+(500,1019,2.2),
+(500,1020,2.2),
+(500,1021,2.2),
+(500,1103,2.11),
+(500,1104,2.11),
+(500,1105,2.11),
+(500,1106,2.11),
+(500,1188,9.25),
+(500,1189,9.25),
+(500,1190,9.25),
+(500,1191,9.25),
+(500,1553,3.35),
+(500,1554,3.35),
+(501,185,5.47),
+(501,186,5.47),
+(501,190,5.35),
+(501,191,5.35),
+(501,596,1.11),
+(501,597,1.11),
+(501,598,1.11),
+(501,599,1.11),
+(501,681,0.97),
+(501,682,0.97),
+(501,683,0.97),
+(501,684,0.97),
+(501,851,1.35),
+(501,852,1.35),
+(501,853,1.35),
+(501,854,1.35),
+(501,936,1.29),
+(501,937,1.29),
+(501,938,1.29),
+(501,939,1.29),
+(501,1021,2.27),
+(501,1022,2.27),
+(501,1023,2.27),
+(501,1024,2.27),
+(501,1106,2.17),
+(501,1107,2.17),
+(501,1108,2.17),
+(501,1109,2.17),
+(501,1191,8.77),
+(501,1192,8.77),
+(501,1193,8.77),
+(501,1194,8.77),
+(501,1555,3.35),
+(501,1556,3.35),
+(502,30,0.1),
+(502,186,5.38),
+(502,187,5.38),
+(502,191,5.33),
+(502,192,5.33),
+(502,599,1.04),
+(502,600,1.04),
+(502,601,1.04),
+(502,602,1.04),
+(502,684,1.05),
+(502,685,1.05),
+(502,686,1.05),
+(502,687,1.05),
+(502,854,1.13),
+(502,855,1.13),
+(502,856,1.13),
+(502,857,1.13),
+(502,939,1.19),
+(502,940,1.19),
+(502,941,1.19),
+(502,942,1.19),
+(502,1024,2.01),
+(502,1025,2.01),
+(502,1026,2.01),
+(502,1027,2.01),
+(502,1109,1.94),
+(502,1110,1.94),
+(502,1111,1.94),
+(502,1112,1.94),
+(502,1194,9.71),
+(502,1195,9.71),
+(502,1196,9.71),
+(502,1197,9.71),
+(502,1556,3.27),
+(502,1557,3.27),
+(502,1847,0.1),
+(503,188,5.27),
+(503,193,5.4),
+(503,217,5.27),
+(503,219,5.4),
+(503,602,1.04),
+(503,603,1.04),
+(503,604,1.04),
+(503,605,1.04),
+(503,687,0.95),
+(503,688,0.95),
+(503,689,0.95),
+(503,690,0.95),
+(503,857,0.96),
+(503,858,0.96),
+(503,859,0.96),
+(503,860,0.96),
+(503,942,1.15),
+(503,943,1.15),
+(503,944,1.15),
+(503,945,1.15),
+(503,1027,1.96),
+(503,1028,1.96),
+(503,1029,1.96),
+(503,1030,1.96),
+(503,1112,2.16),
+(503,1113,2.16),
+(503,1114,2.16),
+(503,1115,2.16),
+(503,1197,9.89),
+(503,1198,9.89),
+(503,1199,9.89),
+(503,1200,9.89),
+(503,1558,3.17),
+(503,1559,3.17),
+(504,217,4.9),
+(504,218,4.9),
+(504,219,5.85),
+(504,220,5.85),
+(504,605,0.85),
+(504,606,0.85),
+(504,607,0.85),
+(504,608,0.85),
+(504,690,0.82),
+(504,691,0.82),
+(504,692,0.82),
+(504,693,0.82),
+(504,860,0.97),
+(504,861,0.97),
+(504,862,0.97),
+(504,863,0.97),
+(504,945,1.1),
+(504,946,1.1),
+(504,947,1.1),
+(504,948,1.1),
+(504,1030,1.97),
+(504,1031,1.97),
+(504,1032,1.97),
+(504,1033,1.97),
+(504,1115,2.01),
+(504,1116,2.01),
+(504,1117,2.01),
+(504,1118,2.01),
+(504,1200,10.41),
+(504,1201,10.41),
+(504,1202,10.41),
+(504,1203,10.41),
+(504,1559,3),
+(504,1560,3),
+(505,287,5.75),
+(505,307,5.98),
+(505,308,5.98),
+(505,333,5.75),
+(505,608,0.68),
+(505,609,0.68),
+(505,610,0.68),
+(505,611,0.68),
+(505,693,0.72),
+(505,694,0.72),
+(505,695,0.72),
+(505,696,0.72),
+(505,863,0.99),
+(505,864,0.99),
+(505,865,0.99),
+(505,866,0.99),
+(505,948,1.14),
+(505,949,1.14),
+(505,950,1.14),
+(505,951,1.14),
+(505,1033,2.02),
+(505,1034,2.02),
+(505,1035,2.02),
+(505,1036,2.02),
+(505,1118,2.22),
+(505,1119,2.22),
+(505,1120,2.22),
+(505,1121,2.22),
+(505,1203,9.85),
+(505,1204,9.85),
+(505,1205,9.85),
+(505,1206,9.85),
+(505,1445,0.1),
+(505,1561,2.98),
+(505,1562,2.98),
+(506,333,2.77),
+(506,334,2.77),
+(506,358,2.75),
+(506,359,2.75),
+(506,384,2.8),
+(506,385,2.8),
+(506,410,3.27),
+(506,411,3.27),
+(506,443,2.63),
+(506,444,2.63),
+(506,445,2.63),
+(506,446,2.63),
+(506,526,3.24),
+(506,527,3.24),
+(506,528,3.24),
+(506,529,3.24),
+(506,611,2.12),
+(506,612,2.12),
+(506,613,2.12),
+(506,614,2.12),
+(506,781,2.96),
+(506,782,2.96),
+(506,783,2.96),
+(506,784,2.96),
+(506,866,2.62),
+(506,867,2.62),
+(506,868,2.62),
+(506,869,2.62),
+(506,1036,3.99),
+(506,1037,3.99),
+(506,1038,3.99),
+(506,1039,3.99),
+(506,1562,1.67),
+(506,1563,1.67),
+(506,2004,1.65),
+(506,2005,1.65),
+(507,335,3.05),
+(507,336,3.05),
+(507,360,2.4),
+(507,361,2.4),
+(507,386,2.83),
+(507,387,2.83),
+(507,412,4),
+(507,413,4),
+(507,446,2.17),
+(507,447,2.17),
+(507,448,2.17),
+(507,449,2.17),
+(507,529,3.09),
+(507,530,3.09),
+(507,531,3.09),
+(507,532,3.09),
+(507,614,1.83),
+(507,615,1.83),
+(507,616,1.83),
+(507,617,1.83),
+(507,784,3.29),
+(507,785,3.29),
+(507,786,3.29),
+(507,787,3.29),
+(507,869,2.5),
+(507,870,2.5),
+(507,871,2.5),
+(507,872,2.5),
+(507,1039,4.06),
+(507,1040,4.06),
+(507,1041,4.06),
+(507,1042,4.06),
+(507,1564,1.83),
+(507,1565,1.83),
+(507,1893,0.1),
+(507,2006,1.93),
+(507,2007,1.93),
+(508,336,3.13),
+(508,337,3.13),
+(508,361,2.18),
+(508,362,2.18),
+(508,387,2.72),
+(508,388,2.72),
+(508,413,3.92),
+(508,414,3.92),
+(508,449,2.17),
+(508,450,2.17),
+(508,451,2.17),
+(508,452,2.17),
+(508,532,3.28),
+(508,533,3.28),
+(508,534,3.28),
+(508,535,3.28),
+(508,617,1.75),
+(508,618,1.75),
+(508,619,1.75),
+(508,620,1.75),
+(508,707,0.1),
+(508,787,3.2),
+(508,788,3.2),
+(508,789,3.2),
+(508,790,3.2),
+(508,872,2.6),
+(508,873,2.6),
+(508,874,2.6),
+(508,875,2.6),
+(508,1042,4.36),
+(508,1043,4.36),
+(508,1044,4.36),
+(508,1045,4.36),
+(508,1565,1.58),
+(508,1566,1.58),
+(508,2007,1.78),
+(508,2008,1.78),
+(509,338,3.38),
+(509,339,3.38),
+(509,363,2.07),
+(509,364,2.07),
+(509,389,2.98),
+(509,390,2.98),
+(509,415,3.5),
+(509,416,3.5),
+(509,452,2.29),
+(509,453,2.29),
+(509,454,2.29),
+(509,455,2.29),
+(509,535,3.13),
+(509,536,3.13),
+(509,537,3.13),
+(509,538,3.13),
+(509,620,1.8),
+(509,621,1.8),
+(509,622,1.8),
+(509,623,1.8),
+(509,790,3.26),
+(509,791,3.26),
+(509,792,3.26),
+(509,793,3.26),
+(509,875,2.54),
+(509,876,2.54),
+(509,877,2.54),
+(509,878,2.54),
+(509,1045,4.31),
+(509,1046,4.31),
+(509,1047,4.31),
+(509,1048,4.31),
+(509,1328,0.1),
+(509,1567,1.55),
+(509,1568,1.55),
+(509,2009,1.85),
+(509,2010,1.85),
+(510,339,2.77),
+(510,340,2.77),
+(510,364,1.78),
+(510,365,1.78),
+(510,390,2.33),
+(510,391,2.33),
+(510,416,3.57),
+(510,417,3.57),
+(510,455,1.89),
+(510,456,1.89),
+(510,457,1.89),
+(510,458,1.89),
+(510,538,2.69),
+(510,539,2.69),
+(510,540,2.69),
+(510,541,2.69),
+(510,623,1.51),
+(510,624,1.51),
+(510,625,1.51),
+(510,626,1.51),
+(510,793,2.88),
+(510,794,2.88),
+(510,795,2.88),
+(510,796,2.88),
+(510,878,2.2),
+(510,879,2.2),
+(510,880,2.2),
+(510,881,2.2),
+(510,1048,4.07),
+(510,1049,4.07),
+(510,1050,4.07),
+(510,1051,4.07),
+(510,1328,0.27),
+(510,1329,0.27),
+(510,1374,0.33),
+(510,1375,0.33),
+(510,1420,0.5),
+(510,1421,0.5),
+(510,1466,0.33),
+(510,1467,0.33),
+(510,1512,0.35),
+(510,1513,0.35),
+(510,1568,3.6),
+(510,1569,3.6),
+(510,2010,3.73),
+(510,2011,3.73),
+(511,341,2.77),
+(511,342,2.77),
+(511,366,2.17),
+(511,367,2.17),
+(511,392,2.37),
+(511,393,2.37),
+(511,418,2.85),
+(511,419,2.85),
+(511,458,2.01),
+(511,459,2.01),
+(511,460,2.01),
+(511,461,2.01),
+(511,541,2.72),
+(511,542,2.72),
+(511,543,2.72),
+(511,544,2.72),
+(511,626,1.95),
+(511,627,1.95),
+(511,628,1.95),
+(511,629,1.95),
+(511,796,2.79),
+(511,797,2.79),
+(511,798,2.79),
+(511,799,2.79),
+(511,881,2.49),
+(511,882,2.49),
+(511,883,2.49),
+(511,884,2.49),
+(511,1051,3.45),
+(511,1052,3.45),
+(511,1053,3.45),
+(511,1054,3.45),
+(511,1330,0.3),
+(511,1331,0.3),
+(511,1376,0.2),
+(511,1377,0.2),
+(511,1422,0.6),
+(511,1423,0.6),
+(511,1468,0.27),
+(511,1469,0.27),
+(511,1514,0.32),
+(511,1515,0.32),
+(511,1570,3.83),
+(511,1571,3.83),
+(511,2012,3.52),
+(511,2013,3.52),
+(512,342,2.5),
+(512,343,2.5),
+(512,367,2.97),
+(512,368,2.97),
+(512,393,2.68),
+(512,394,2.68),
+(512,419,2.3),
+(512,420,2.3),
+(512,461,2.51),
+(512,462,2.51),
+(512,463,2.51),
+(512,464,2.51),
+(512,544,2.78),
+(512,545,2.78),
+(512,546,2.78),
+(512,547,2.78),
+(512,629,2.12),
+(512,630,2.12),
+(512,631,2.12),
+(512,632,2.12),
+(512,799,2.79),
+(512,800,2.79),
+(512,801,2.79),
+(512,802,2.79),
+(512,884,2.47),
+(512,885,2.47),
+(512,886,2.47),
+(512,887,2.47),
+(512,972,0.1),
+(512,1054,2.61),
+(512,1055,2.61),
+(512,1056,2.61),
+(512,1057,2.61),
+(512,1059,2.18),
+(512,1331,0.32),
+(512,1332,0.32),
+(512,1377,0.38),
+(512,1378,0.38),
+(512,1423,0.52),
+(512,1424,0.45),
+(512,1470,0.45),
+(512,1515,0.25),
+(512,1516,0.43),
+(512,1571,4.5),
+(512,1572,4.5),
+(512,2013,2.7),
+(512,2014,2.7),
+(512,2053,0.1),
+(512,2160,0.1),
+(513,344,2.8),
+(513,345,2.8),
+(513,369,3.15),
+(513,370,3.15),
+(513,395,1.93),
+(513,396,1.93),
+(513,421,1.6),
+(513,422,1.2),
+(513,464,2.84),
+(513,465,2.84),
+(513,466,2.84),
+(513,467,2.84),
+(513,547,2.5),
+(513,548,2.5),
+(513,549,2.5),
+(513,550,2.5),
+(513,632,3.59),
+(513,633,3.59),
+(513,634,3.59),
+(513,635,3.59),
+(513,802,2.05),
+(513,803,2.05),
+(513,804,2.05),
+(513,805,2.05),
+(513,887,2.44),
+(513,888,2.44),
+(513,889,2.44),
+(513,890,2.44),
+(513,1057,2.21),
+(513,1058,2.21),
+(513,1059,2.21),
+(513,1060,2.21),
+(513,1143,0.1),
+(513,1333,0.2),
+(513,1379,0.2),
+(513,1380,0.2),
+(513,1425,0.3),
+(513,1426,0.1),
+(513,1471,1),
+(513,1472,1),
+(513,1517,0.93),
+(513,1518,1.35),
+(513,1573,4.85),
+(513,1574,4.85),
+(513,1825,0.2),
+(513,1864,0.2),
+(513,2015,2.67),
+(513,2016,2.67),
+(514,345,2.2),
+(514,346,2.57),
+(514,370,4.4),
+(514,371,4.4),
+(514,396,2.38),
+(514,397,2.38),
+(514,422,1.68),
+(514,423,3.05),
+(514,467,3.01),
+(514,468,3.01),
+(514,469,2.98),
+(514,470,2.98),
+(514,550,2.63),
+(514,551,2.63),
+(514,552,2.63),
+(514,553,2.63),
+(514,635,3.07),
+(514,636,3.07),
+(514,637,3.07),
+(514,638,3.07),
+(514,639,2.84),
+(514,805,2.04),
+(514,806,3.29),
+(514,807,2.04),
+(514,808,3.29),
+(514,890,3.13),
+(514,891,3.13),
+(514,892,3.13),
+(514,893,3.13),
+(514,1060,2.21),
+(514,1061,2.31),
+(514,1062,2.21),
+(514,1063,2.31),
+(514,1334,0.33),
+(514,1335,0.1),
+(514,1380,0.1),
+(514,1381,0.1),
+(514,1426,0.25),
+(514,1427,0.25),
+(514,1472,0.18),
+(514,1473,0.18),
+(514,1518,0.2),
+(514,1519,0.4),
+(514,1574,3.73),
+(514,1575,3.73),
+(514,1733,0.8),
+(514,2016,2.27),
+(514,2017,4.02),
+(514,2057,0.1),
+(527,308,5.5),
+(527,309,5.5),
+(527,333,5.35),
+(527,334,5.35),
+(527,611,0.88),
+(527,612,0.88),
+(527,613,0.88),
+(527,614,0.88),
+(527,696,0.85),
+(527,697,0.85),
+(527,698,0.85),
+(527,699,0.85),
+(527,866,1.13),
+(527,867,1.13),
+(527,868,1.13),
+(527,869,1.13),
+(527,951,1.1),
+(527,952,1.1),
+(527,953,1.1),
+(527,954,1.1),
+(527,1036,2.22),
+(527,1037,2.22),
+(527,1038,2.22),
+(527,1039,2.22),
+(527,1121,2),
+(527,1122,2),
+(527,1123,2),
+(527,1124,2),
+(527,1206,9.6),
+(527,1207,9.6),
+(527,1208,9.6),
+(527,1209,9.6),
+(527,1562,3.45),
+(527,1563,3.45),
+(528,310,5.43),
+(528,311,5.43),
+(528,335,5.8),
+(528,336,5.8),
+(528,614,1.09),
+(528,615,1.09),
+(528,616,1.09),
+(528,617,1.09),
+(528,699,0.89),
+(528,700,0.89),
+(528,701,0.89),
+(528,702,0.89),
+(528,869,1.09),
+(528,870,1.09),
+(528,871,1.09),
+(528,872,1.09),
+(528,954,1.38),
+(528,955,1.38),
+(528,956,1.38),
+(528,957,1.38),
+(528,1039,2.16),
+(528,1040,2.16),
+(528,1041,2.16),
+(528,1042,2.16),
+(528,1124,2.27),
+(528,1125,2.27),
+(528,1126,2.27),
+(528,1127,2.27),
+(528,1209,8.59),
+(528,1210,8.59),
+(528,1211,8.59),
+(528,1212,8.59),
+(528,1564,3.92),
+(528,1565,3.92),
+(529,311,5.15),
+(529,312,5.15),
+(529,336,6.8),
+(529,337,6.8),
+(529,617,1.02),
+(529,618,1.02),
+(529,619,1.02),
+(529,620,1.02),
+(529,702,0.85),
+(529,703,0.85),
+(529,704,0.85),
+(529,705,0.85),
+(529,872,1.05),
+(529,873,1.05),
+(529,874,1.05),
+(529,875,1.05),
+(529,957,1.25),
+(529,958,1.25),
+(529,959,1.25),
+(529,960,1.25),
+(529,1042,2.4),
+(529,1043,2.4),
+(529,1044,2.4),
+(529,1045,2.4),
+(529,1127,2.47),
+(529,1128,2.47),
+(529,1129,2.47),
+(529,1130,2.47),
+(529,1212,8.05),
+(529,1213,8.05),
+(529,1214,8.05),
+(529,1215,8.05),
+(529,1565,3.9),
+(529,1566,3.9),
+(530,313,6),
+(530,314,6),
+(530,338,5.63),
+(530,339,5.63),
+(530,620,0.96),
+(530,621,0.96),
+(530,622,0.96),
+(530,623,0.96),
+(530,705,0.88),
+(530,706,0.88),
+(530,707,0.88),
+(530,708,0.88),
+(530,875,0.93),
+(530,876,0.93),
+(530,877,0.93),
+(530,878,0.93),
+(530,960,1.24),
+(530,961,1.24),
+(530,962,1.24),
+(530,963,1.24),
+(530,1045,2.55),
+(530,1046,2.55),
+(530,1047,2.55),
+(530,1048,2.55),
+(530,1130,2.24),
+(530,1131,2.24),
+(530,1132,2.24),
+(530,1133,2.24),
+(530,1215,8.59),
+(530,1216,8.59),
+(530,1217,8.59),
+(530,1218,8.59),
+(530,1567,3.55),
+(530,1568,3.55),
+(531,314,4.73),
+(531,315,4.73),
+(531,339,4.62),
+(531,340,4.62),
+(531,623,0.9),
+(531,624,0.9),
+(531,625,0.9),
+(531,626,0.9),
+(531,708,0.73),
+(531,709,0.73),
+(531,710,0.73),
+(531,711,0.73),
+(531,878,0.84),
+(531,879,0.84),
+(531,880,0.84),
+(531,881,0.84),
+(531,963,1.07),
+(531,964,1.07),
+(531,965,1.07),
+(531,966,1.07),
+(531,1048,2.21),
+(531,1049,2.21),
+(531,1050,2.21),
+(531,1051,2.21),
+(531,1133,2.13),
+(531,1134,2.13),
+(531,1135,2.13),
+(531,1136,2.13),
+(531,1218,7.34),
+(531,1219,7.34),
+(531,1220,7.34),
+(531,1221,7.34),
+(531,1328,0.38),
+(531,1329,0.38),
+(531,1374,0.33),
+(531,1375,0.33),
+(531,1420,0.42),
+(531,1421,0.42),
+(531,1466,0.28),
+(531,1467,0.28),
+(531,1512,0.37),
+(531,1513,0.37),
+(531,1568,8.4),
+(531,1569,8.4),
+(531,1935,0.1),
+(532,316,5.3),
+(532,317,5.3),
+(532,341,4.33),
+(532,342,4.33),
+(532,626,0.84),
+(532,627,0.84),
+(532,628,0.84),
+(532,629,0.84),
+(532,711,0.78),
+(532,712,0.78),
+(532,713,0.78),
+(532,714,0.78),
+(532,881,0.77),
+(532,882,0.77),
+(532,883,0.77),
+(532,884,0.77),
+(532,966,1.04),
+(532,967,1.04),
+(532,968,1.04),
+(532,969,1.04),
+(532,1051,1.81),
+(532,1052,1.81),
+(532,1053,1.81),
+(532,1054,1.81),
+(532,1136,1.94),
+(532,1137,1.94),
+(532,1138,1.94),
+(532,1139,1.94),
+(532,1221,7.94),
+(532,1222,7.94),
+(532,1223,7.94),
+(532,1224,7.94),
+(532,1330,0.2),
+(532,1331,0.2),
+(532,1376,0.32),
+(532,1377,0.32),
+(532,1422,0.28),
+(532,1423,0.28),
+(532,1468,0.23),
+(532,1469,0.23),
+(532,1514,0.32),
+(532,1515,0.32),
+(532,1570,8.72),
+(532,1571,8.72),
+(533,317,4.9),
+(533,318,4.9),
+(533,342,4.88),
+(533,343,4.88),
+(533,629,0.85),
+(533,630,0.85),
+(533,631,0.85),
+(533,632,0.85),
+(533,714,0.72),
+(533,715,0.72),
+(533,716,0.72),
+(533,717,0.72),
+(533,802,0.1),
+(533,804,0.1),
+(533,884,0.88),
+(533,885,0.88),
+(533,886,0.88),
+(533,887,0.88),
+(533,969,1.01),
+(533,970,1.01),
+(533,971,1.01),
+(533,972,1.01),
+(533,1054,1.73),
+(533,1055,1.73),
+(533,1056,1.73),
+(533,1057,1.73),
+(533,1139,1.88),
+(533,1140,1.88),
+(533,1141,1.88),
+(533,1142,1.88),
+(533,1224,8.44),
+(533,1225,8.44),
+(533,1226,8.44),
+(533,1227,8.44),
+(533,1331,0.2),
+(533,1332,0.2),
+(533,1377,0.3),
+(533,1378,0.3),
+(533,1423,0.4),
+(533,1424,0.4),
+(533,1469,0.6),
+(533,1470,0.6),
+(533,1515,0.42),
+(533,1516,0.42),
+(533,1571,7.68),
+(533,1572,7.68),
+(533,2093,0.05),
+(533,2094,0.05),
+(534,319,4.05),
+(534,320,4.05),
+(534,344,3.88),
+(534,345,3.88),
+(534,396,0.2),
+(534,423,0.1),
+(534,548,0.1),
+(534,632,1.15),
+(534,633,1.15),
+(534,634,1.93),
+(534,635,1.93),
+(534,717,0.68),
+(534,718,0.68),
+(534,719,0.68),
+(534,720,0.68),
+(534,887,0.84),
+(534,888,0.84),
+(534,889,0.84),
+(534,890,0.84),
+(534,972,1.05),
+(534,973,1.05),
+(534,974,1.32),
+(534,975,1.32),
+(534,1057,1.57),
+(534,1058,1.6),
+(534,1059,1.57),
+(534,1060,1.6),
+(534,1142,1.65),
+(534,1143,1.65),
+(534,1144,1.65),
+(534,1145,1.65),
+(534,1227,9.37),
+(534,1228,9.37),
+(534,1229,9.37),
+(534,1230,9.37),
+(534,1231,8.22),
+(534,1333,0.27),
+(534,1334,0.3),
+(534,1379,0.3),
+(534,1380,0.27),
+(534,1425,0.45),
+(534,1426,0.45),
+(534,1471,0.33),
+(534,1472,0.2),
+(534,1517,0.4),
+(534,1518,0.4),
+(534,1566,1.49),
+(534,1567,1.49),
+(534,1568,1.49),
+(534,1569,1.49),
+(534,1570,1.49),
+(534,1571,1.49),
+(534,1572,1.49),
+(534,1573,4.95),
+(534,1574,4.95),
+(534,1940,0.2),
+(535,320,3.22),
+(535,321,3.22),
+(535,345,3.9),
+(535,346,3.05),
+(535,468,1.5),
+(535,635,0.88),
+(535,636,0.88),
+(535,637,1.19),
+(535,638,1.19),
+(535,720,0.88),
+(535,721,0.88),
+(535,722,0.88),
+(535,723,0.99),
+(535,725,1.1),
+(535,890,1.2),
+(535,891,1.88),
+(535,892,1.2),
+(535,893,1.88),
+(535,975,1.03),
+(535,976,1.03),
+(535,977,1.03),
+(535,978,1.03),
+(535,1060,1.15),
+(535,1061,1.15),
+(535,1062,1.87),
+(535,1063,1.87),
+(535,1145,1.38),
+(535,1146,1.38),
+(535,1147,1.17),
+(535,1148,1.17),
+(535,1150,0.97),
+(535,1230,12.56),
+(535,1231,12.56),
+(535,1232,12.56),
+(535,1233,12.56),
+(535,1334,0.1),
+(535,1335,1.15),
+(535,1380,0.15),
+(535,1381,0.42),
+(535,1426,0.2),
+(535,1427,0.2),
+(535,1472,0.15),
+(535,1473,0.15),
+(535,1518,0.1),
+(535,1519,1.15),
+(535,1574,4.9),
+(535,1575,4.9),
+(535,2095,0.23),
+(535,2096,0.23),
+(535,2097,0.23),
+(538,16,4.03),
+(538,23,0.1),
+(538,27,4.03),
+(538,227,3.05),
+(538,584,3.85),
+(538,754,18.55),
+(538,756,12.1),
+(538,839,30.6),
+(538,926,0.1),
+(538,1009,9.52),
+(538,1010,3.24),
+(538,1011,3.24),
+(538,1012,3.24),
+(538,1013,3.24),
+(538,1548,0.1),
+(538,1875,3.27),
+(538,1876,3.27),
+(538,1954,0.1),
+(538,2027,3.68),
+(538,2028,3.68),
+(538,2105,0.02),
+(538,2106,0.02),
+(538,2107,0.02),
+(538,2108,0.02),
+(538,2109,0.02),
+(539,16,2.38),
+(539,24,0.1),
+(539,27,2.38),
+(539,28,3.39),
+(539,94,0.1),
+(539,95,3.39),
+(539,197,0.1),
+(539,227,0.89),
+(539,229,0.89),
+(539,231,0.89),
+(539,238,0.89),
+(539,504,0.1),
+(539,584,1.04),
+(539,585,1.04),
+(539,586,1.04),
+(539,587,1.04),
+(539,674,0.05),
+(539,675,0.05),
+(539,754,5.59),
+(539,755,5.59),
+(539,756,5.59),
+(539,757,5.59),
+(539,759,4.9),
+(539,839,7),
+(539,840,7),
+(539,841,7),
+(539,842,7),
+(539,1009,3.5),
+(539,1010,3.5),
+(539,1011,3.5),
+(539,1012,3.5),
+(539,1013,2.43),
+(539,1014,2.43),
+(539,1015,2.43),
+(539,1401,0.03),
+(539,1402,0.03),
+(539,1403,0.03),
+(539,1875,1.42),
+(539,1876,1.42),
+(539,1877,2.24),
+(539,1878,2.24),
+(539,1913,0.03),
+(539,1914,0.03),
+(539,1915,0.03),
+(539,1951,0.1),
+(539,1989,0.1),
+(539,2029,3.38),
+(539,2030,3.38),
+(539,2105,0.02),
+(539,2106,0.02),
+(539,2107,0.02),
+(539,2108,0.02),
+(539,2109,0.02),
+(540,30,0.1),
+(540,95,5.22),
+(540,113,5.22),
+(540,132,0.1),
+(540,232,0.99),
+(540,233,0.99),
+(540,234,0.99),
+(540,238,0.99),
+(540,587,1.2),
+(540,588,1.2),
+(540,589,1.2),
+(540,590,1.2),
+(540,757,5.95),
+(540,758,5.95),
+(540,759,5.95),
+(540,760,5.95),
+(540,842,5.96),
+(540,843,5.96),
+(540,844,5.96),
+(540,845,5.96),
+(540,1012,4.89),
+(540,1013,4.89),
+(540,1014,4.89),
+(540,1015,4.89),
+(540,1312,0.1),
+(540,1359,0.1),
+(540,1399,0.1),
+(540,1878,3.1),
+(540,1879,3.1),
+(540,2030,3.73),
+(540,2031,3.73),
+(541,134,6.25),
+(541,153,6.25),
+(541,234,1.1),
+(541,235,1.1),
+(541,236,1.1),
+(541,248,1.1),
+(541,590,1.45),
+(541,591,1.45),
+(541,592,1.45),
+(541,593,1.45),
+(541,760,5.93),
+(541,761,5.93),
+(541,762,5.93),
+(541,763,5.93),
+(541,845,4.35),
+(541,846,4.35),
+(541,847,4.35),
+(541,848,4.35),
+(541,1015,4.24),
+(541,1016,4.24),
+(541,1017,4.24),
+(541,1018,4.24),
+(541,1019,4.24),
+(541,1880,3.65),
+(541,1881,3.65),
+(541,2032,3.8),
+(541,2033,3.8),
+(542,6,0.1),
+(542,14,0.1),
+(542,153,6.73),
+(542,179,6.73),
+(542,237,1.04),
+(542,247,1.04),
+(542,248,1.04),
+(542,249,1.04),
+(542,593,1.44),
+(542,594,1.44),
+(542,595,1.44),
+(542,596,1.44),
+(542,763,5.65),
+(542,764,5.65),
+(542,765,5.65),
+(542,766,5.65),
+(542,848,4.73),
+(542,849,4.73),
+(542,850,4.73),
+(542,851,4.73),
+(542,1018,4.99),
+(542,1019,4.99),
+(542,1020,4.99),
+(542,1021,4.99),
+(542,1714,0.1),
+(542,1881,3.63),
+(542,1882,3.63),
+(542,1920,0.1),
+(542,2033,3.98),
+(542,2034,3.98),
+(543,180,7),
+(543,181,7),
+(543,247,1.13),
+(543,250,1.13),
+(543,251,1.13),
+(543,252,1.13),
+(543,596,1.59),
+(543,597,1.59),
+(543,598,1.59),
+(543,599,1.59),
+(543,766,5.33),
+(543,767,5.33),
+(543,768,5.33),
+(543,769,5.33),
+(543,851,4.25),
+(543,852,4.25),
+(543,853,4.25),
+(543,854,4.25),
+(543,1021,5.2),
+(543,1022,5.2),
+(543,1023,5.2),
+(543,1024,5.2),
+(543,1883,3.65),
+(543,1884,3.65),
+(543,2035,4.38),
+(543,2036,4.38),
+(544,181,6.7),
+(544,182,6.7),
+(544,251,1.14),
+(544,253,1.14),
+(544,254,1.14),
+(544,255,1.14),
+(544,599,1.44),
+(544,600,1.44),
+(544,601,1.44),
+(544,602,1.44),
+(544,769,5.65),
+(544,770,5.65),
+(544,771,5.65),
+(544,772,5.65),
+(544,854,4.78),
+(544,855,4.78),
+(544,856,4.78),
+(544,857,4.78),
+(544,1024,5.09),
+(544,1025,5.09),
+(544,1026,5.09),
+(544,1027,5.09),
+(544,1884,3.25),
+(544,1885,3.25),
+(544,2036,3.9),
+(544,2037,3.9),
+(545,183,6.45),
+(545,215,6.45),
+(545,254,1.09),
+(545,435,1.09),
+(545,436,1.09),
+(545,437,1.09),
+(545,602,1.41),
+(545,603,1.41),
+(545,604,1.41),
+(545,605,1.41),
+(545,772,6.23),
+(545,773,6.23),
+(545,774,6.23),
+(545,775,6.23),
+(545,857,4.47),
+(545,858,4.47),
+(545,859,4.47),
+(545,860,4.47),
+(545,1027,5.16),
+(545,1028,5.16),
+(545,1029,5.16),
+(545,1030,5.16),
+(545,1886,3.02),
+(545,1887,3.02),
+(545,1924,0.1),
+(545,2038,3.8),
+(545,2039,3.8),
+(546,215,6.58),
+(546,216,6.58),
+(546,437,1.19),
+(546,438,1.19),
+(546,439,1.19),
+(546,440,1.19),
+(546,605,1.41),
+(546,606,1.41),
+(546,607,1.41),
+(546,608,1.41),
+(546,775,6.38),
+(546,776,6.38),
+(546,777,6.38),
+(546,778,6.38),
+(546,860,4.09),
+(546,861,4.09),
+(546,862,4.09),
+(546,863,4.09),
+(546,1030,5.28),
+(546,1031,5.28),
+(546,1032,5.28),
+(546,1033,5.28),
+(546,1887,3.02),
+(546,1888,3.02),
+(546,2039,3.68),
+(546,2040,3.68),
+(547,409,6.85),
+(547,410,6.85),
+(547,440,1.16),
+(547,441,1.16),
+(547,442,1.16),
+(547,443,1.16),
+(547,608,1.41),
+(547,609,1.41),
+(547,610,1.41),
+(547,611,1.41),
+(547,778,6.54),
+(547,779,6.54),
+(547,780,6.54),
+(547,781,6.54),
+(547,863,3.77),
+(547,864,3.77),
+(547,865,3.77),
+(547,866,3.77),
+(547,1033,5.59),
+(547,1034,5.59),
+(547,1035,5.59),
+(547,1036,5.59),
+(547,1889,2.73),
+(547,1890,2.73),
+(547,1928,0.1),
+(547,2041,3.4),
+(547,2042,3.4),
+(548,410,6.4),
+(548,411,6.4),
+(548,443,1.25),
+(548,444,1.25),
+(548,445,1.25),
+(548,446,1.25),
+(548,611,1.36),
+(548,612,1.36),
+(548,613,1.36),
+(548,614,1.36),
+(548,781,6.97),
+(548,782,6.97),
+(548,783,6.97),
+(548,784,6.97),
+(548,866,3.36),
+(548,867,3.36),
+(548,868,3.36),
+(548,869,3.36),
+(548,1036,5.64),
+(548,1037,5.64),
+(548,1038,5.64),
+(548,1039,5.64),
+(548,1890,2.6),
+(548,1891,2.6),
+(548,2042,3.83),
+(548,2043,3.83),
+(549,412,6.72),
+(549,413,6.72),
+(549,446,1.28),
+(549,447,1.28),
+(549,448,1.28),
+(549,449,1.28),
+(549,614,1.41),
+(549,615,1.41),
+(549,616,1.41),
+(549,617,1.41),
+(549,784,6.39),
+(549,785,6.39),
+(549,786,6.39),
+(549,787,6.39),
+(549,869,3.28),
+(549,870,3.28),
+(549,871,3.28),
+(549,872,3.28),
+(549,1039,5.88),
+(549,1040,5.88),
+(549,1041,5.88),
+(549,1042,5.88),
+(549,1325,0.1),
+(549,1892,3.1),
+(549,1893,3.1),
+(549,2044,3.72),
+(549,2045,3.72),
+(550,413,6.58),
+(550,414,6.58),
+(550,449,1.22),
+(550,450,1.22),
+(550,451,1.22),
+(550,452,1.22),
+(550,617,1.36),
+(550,618,1.36),
+(550,619,1.36),
+(550,620,1.36),
+(550,787,6.21),
+(550,788,6.21),
+(550,789,6.21),
+(550,790,6.21),
+(550,872,3.31),
+(550,873,3.31),
+(550,874,3.31),
+(550,875,3.31),
+(550,1042,5.78),
+(550,1043,5.78),
+(550,1044,5.78),
+(550,1045,5.78),
+(550,1893,3.32),
+(550,1894,3.32),
+(550,2045,4.42),
+(550,2046,4.42),
+(551,415,5.93),
+(551,416,5.93),
+(551,452,1.11),
+(551,453,1.11),
+(551,454,1.11),
+(551,455,1.11),
+(551,620,1.36),
+(551,621,1.36),
+(551,622,1.36),
+(551,623,1.36),
+(551,790,6.75),
+(551,791,6.75),
+(551,792,6.75),
+(551,793,6.75),
+(551,875,3.34),
+(551,876,3.34),
+(551,877,3.34),
+(551,878,3.34),
+(551,1045,5.71),
+(551,1046,5.71),
+(551,1047,5.71),
+(551,1048,5.71),
+(551,1895,3.38),
+(551,1896,3.38),
+(551,2047,4.15),
+(551,2048,4.15),
+(552,416,5.05),
+(552,417,5.05),
+(552,455,1.15),
+(552,456,1.15),
+(552,457,1.15),
+(552,458,1.15),
+(552,623,1.15),
+(552,624,1.15),
+(552,625,1.15),
+(552,626,1.15),
+(552,793,6.13),
+(552,794,6.13),
+(552,795,6.13),
+(552,796,6.13),
+(552,878,2.99),
+(552,879,2.99),
+(552,880,2.99),
+(552,881,2.99),
+(552,1048,4.84),
+(552,1049,4.84),
+(552,1050,4.84),
+(552,1051,4.84),
+(552,1328,0.15),
+(552,1329,0.15),
+(552,1374,0.3),
+(552,1375,0.3),
+(552,1420,0.13),
+(552,1421,0.13),
+(552,1466,0.23),
+(552,1467,0.23),
+(552,1512,0.15),
+(552,1513,0.15),
+(552,1896,4.98),
+(552,1897,4.98),
+(552,2048,6.53),
+(552,2049,6.53),
+(553,418,4.3),
+(553,419,4.3),
+(553,458,0.92),
+(553,459,0.92),
+(553,460,0.92),
+(553,461,0.92),
+(553,626,1),
+(553,627,1),
+(553,628,1),
+(553,629,1),
+(553,796,6.36),
+(553,797,6.36),
+(553,798,6.36),
+(553,799,6.36),
+(553,881,3.74),
+(553,882,3.74),
+(553,883,3.74),
+(553,884,3.74),
+(553,1051,4.28),
+(553,1052,4.28),
+(553,1053,4.28),
+(553,1054,4.28),
+(553,1330,0.13),
+(553,1331,0.13),
+(553,1376,0.18),
+(553,1377,0.18),
+(553,1422,0.25),
+(553,1423,0.25),
+(553,1468,0.15),
+(553,1469,0.15),
+(553,1514,0.23),
+(553,1515,0.23),
+(553,1898,5.28),
+(553,1899,5.28),
+(553,2050,6.92),
+(553,2051,6.92),
+(554,419,4.3),
+(554,420,4.3),
+(554,461,0.68),
+(554,462,0.68),
+(554,463,0.68),
+(554,464,0.68),
+(554,629,0.87),
+(554,630,0.87),
+(554,631,0.87),
+(554,632,0.87),
+(554,799,6.32),
+(554,800,6.32),
+(554,801,6.32),
+(554,802,6.32),
+(554,884,4.56),
+(554,885,4.56),
+(554,886,4.56),
+(554,887,4.56),
+(554,1054,3.99),
+(554,1055,3.99),
+(554,1056,3.99),
+(554,1057,3.99),
+(554,1142,0.1),
+(554,1228,0.1),
+(554,1331,0.17),
+(554,1332,0.17),
+(554,1377,0.22),
+(554,1378,0.22),
+(554,1379,0.1),
+(554,1423,0.32),
+(554,1424,0.32),
+(554,1425,0.32),
+(554,1426,0.32),
+(554,1470,0.17),
+(554,1515,0.15),
+(554,1516,0.27),
+(554,1899,5.37),
+(554,1900,5.37),
+(554,2013,0.1),
+(554,2051,5.69),
+(554,2052,5.69),
+(554,2053,4.13),
+(554,2093,0.05),
+(554,2094,0.05),
+(554,2130,0.03),
+(554,2131,0.03),
+(554,2132,0.03),
+(554,2133,0.03),
+(555,321,0.4),
+(555,421,3.07),
+(555,422,3.07),
+(555,464,0.61),
+(555,465,0.61),
+(555,466,0.61),
+(555,467,0.61),
+(555,468,0.26),
+(555,469,0.26),
+(555,470,0.26),
+(555,550,0.1),
+(555,552,0.1),
+(555,632,0.77),
+(555,633,0.77),
+(555,634,0.77),
+(555,635,0.77),
+(555,637,0.52),
+(555,718,0.1),
+(555,802,5.44),
+(555,803,5.44),
+(555,804,5.44),
+(555,805,5.44),
+(555,807,5.06),
+(555,887,5.78),
+(555,888,5.78),
+(555,889,5.78),
+(555,890,5.78),
+(555,973,0.1),
+(555,1057,3.68),
+(555,1058,3.68),
+(555,1059,3.68),
+(555,1060,3.68),
+(555,1232,0.25),
+(555,1333,0.25),
+(555,1334,0.18),
+(555,1379,0.19),
+(555,1380,0.08),
+(555,1381,0.07),
+(555,1425,0.2),
+(555,1426,0.27),
+(555,1471,0.2),
+(555,1472,0.2),
+(555,1517,0.18),
+(555,1518,0.18),
+(555,1566,0.1),
+(555,1827,0.1),
+(555,1864,0.1),
+(555,1901,6),
+(555,1902,6),
+(555,2053,6.27),
+(555,2054,6.27),
+(555,2095,0.03),
+(555,2096,0.03),
+(555,2097,0.03),
+(556,371,0.1),
+(556,422,2.85),
+(556,423,2.85),
+(556,467,0.88),
+(556,468,0.88),
+(556,469,0.88),
+(556,470,0.88),
+(556,635,0.77),
+(556,636,0.77),
+(556,637,0.77),
+(556,638,0.77),
+(556,805,5.7),
+(556,806,5.7),
+(556,807,5.7),
+(556,808,5.7),
+(556,890,6.28),
+(556,891,6.28),
+(556,892,6.28),
+(556,893,6.28),
+(556,1060,3.83),
+(556,1061,3.83),
+(556,1062,3.83),
+(556,1063,3.83),
+(556,1334,0.05),
+(556,1335,0.05),
+(556,1380,0.1),
+(556,1381,0.1),
+(556,1426,0.2),
+(556,1427,0.2),
+(556,1472,0.15),
+(556,1473,0.15),
+(556,1518,0.15),
+(556,1519,0.15),
+(556,1902,5.3),
+(556,1903,5.3),
+(556,2054,6.3),
+(556,2055,6.3),
+(559,14,4.33),
+(559,16,3.1),
+(559,17,4.33),
+(559,27,3.1),
+(559,227,7.55),
+(559,228,4.35),
+(559,584,16.45),
+(559,754,11.1),
+(559,755,7.4),
+(559,839,16.5),
+(559,924,3.7),
+(559,1009,9.45),
+(559,1179,2.9),
+(559,1181,2),
+(559,1547,2.08),
+(559,1548,2.08),
+(559,1799,1.13),
+(559,1800,1.13),
+(559,1839,0.1),
+(559,2027,1.02),
+(559,2028,1.02),
+(560,5,0.1),
+(560,18,3.9),
+(560,28,3.65),
+(560,93,3.9),
+(560,95,3.65),
+(560,227,1.76),
+(560,228,1.09),
+(560,229,1.76),
+(560,231,1.76),
+(560,238,1.76),
+(560,256,1.09),
+(560,501,1.09),
+(560,502,1.09),
+(560,584,3.57),
+(560,585,3.57),
+(560,586,3.57),
+(560,587,3.57),
+(560,754,3.98),
+(560,755,3.98),
+(560,756,3.98),
+(560,757,3.98),
+(560,839,4.26),
+(560,840,4.26),
+(560,841,4.26),
+(560,842,4.26),
+(560,924,0.98),
+(560,925,0.98),
+(560,926,0.98),
+(560,927,0.98),
+(560,1009,2.46),
+(560,1010,2.46),
+(560,1011,2.46),
+(560,1012,2.46),
+(560,1179,0.96),
+(560,1180,0.96),
+(560,1181,0.96),
+(560,1182,0.96),
+(560,1549,1.95),
+(560,1550,1.95),
+(560,1708,0.1),
+(560,1799,0.63),
+(560,1800,0.63),
+(560,1801,0.89),
+(560,1802,0.89),
+(560,1840,0.1),
+(560,1875,0.1),
+(560,1917,0.1),
+(560,2029,1.05),
+(560,2030,1.05),
+(561,93,5.35),
+(561,95,3.35),
+(561,111,5.35),
+(561,113,3.35),
+(561,232,1.85),
+(561,233,1.85),
+(561,234,1.85),
+(561,238,1.85),
+(561,502,1.13),
+(561,503,1.13),
+(561,504,1.13),
+(561,505,1.13),
+(561,587,4.15),
+(561,588,4.15),
+(561,589,4.15),
+(561,590,4.15),
+(561,757,3.53),
+(561,758,3.53),
+(561,759,3.53),
+(561,760,3.53),
+(561,842,3.85),
+(561,843,3.85),
+(561,844,3.85),
+(561,845,3.85),
+(561,927,0.43),
+(561,928,0.43),
+(561,929,0.43),
+(561,930,0.43),
+(561,931,0.43),
+(561,932,0.43),
+(561,933,0.43),
+(561,934,0.43),
+(561,1012,2.38),
+(561,1013,2.38),
+(561,1014,2.38),
+(561,1015,2.38),
+(561,1182,0.88),
+(561,1183,0.88),
+(561,1184,0.88),
+(561,1185,0.88),
+(561,1311,0.1),
+(561,1353,0.1),
+(561,1403,0.1),
+(561,1550,2.15),
+(561,1551,2.15),
+(561,1802,1),
+(561,1803,1),
+(561,2030,0.9),
+(561,2031,0.9),
+(562,132,3.95),
+(562,134,4.05),
+(562,151,3.95),
+(562,153,4.05),
+(562,234,1.8),
+(562,235,1.8),
+(562,236,1.8),
+(562,248,1.8),
+(562,505,1.15),
+(562,506,1.15),
+(562,507,1.15),
+(562,508,1.15),
+(562,590,2.93),
+(562,591,2.93),
+(562,592,2.93),
+(562,593,2.93),
+(562,760,4.21),
+(562,761,4.21),
+(562,762,4.21),
+(562,763,4.21),
+(562,845,4.26),
+(562,846,4.26),
+(562,847,4.26),
+(562,848,4.26),
+(562,930,0.99),
+(562,931,0.99),
+(562,932,0.99),
+(562,933,0.99),
+(562,1015,2.65),
+(562,1016,2.65),
+(562,1017,2.65),
+(562,1018,2.65),
+(562,1185,0.77),
+(562,1186,0.77),
+(562,1187,0.77),
+(562,1188,0.77),
+(562,1552,2),
+(562,1553,2),
+(562,1804,1.3),
+(562,1805,1.3),
+(562,2032,1.08),
+(562,2033,1.08),
+(563,151,4.72),
+(563,153,4.32),
+(563,167,4.72),
+(563,179,4.32),
+(563,237,1.83),
+(563,247,1.83),
+(563,248,1.83),
+(563,249,1.83),
+(563,508,1.12),
+(563,509,1.12),
+(563,510,1.12),
+(563,511,1.12),
+(563,593,3.01),
+(563,594,3.01),
+(563,595,3.01),
+(563,596,3.01),
+(563,763,4.13),
+(563,764,4.13),
+(563,765,4.13),
+(563,766,4.13),
+(563,848,3.91),
+(563,849,3.91),
+(563,850,3.91),
+(563,851,3.91),
+(563,933,0.94),
+(563,934,0.94),
+(563,935,0.94),
+(563,936,0.94),
+(563,1018,2.53),
+(563,1019,2.53),
+(563,1020,2.53),
+(563,1021,2.53),
+(563,1188,0.81),
+(563,1189,0.81),
+(563,1190,0.81),
+(563,1191,0.81),
+(563,1353,0.1),
+(563,1445,0.1),
+(563,1500,0.1),
+(563,1553,2.13),
+(563,1554,2.13),
+(563,1805,1.16),
+(563,1806,1.16),
+(563,1807,0.83),
+(563,1845,0.1),
+(563,2033,1),
+(563,2034,1),
+(564,168,3.6),
+(564,171,3.6),
+(564,180,4.75),
+(564,181,4.75),
+(564,247,1.83),
+(564,250,1.83),
+(564,251,1.83),
+(564,252,1.83),
+(564,511,1.23),
+(564,512,1.23),
+(564,513,1.23),
+(564,514,1.23),
+(564,596,2.67),
+(564,597,2.67),
+(564,598,2.67),
+(564,599,2.67),
+(564,766,4.45),
+(564,767,4.45),
+(564,768,4.45),
+(564,769,4.45),
+(564,851,4.03),
+(564,852,4.03),
+(564,853,4.03),
+(564,854,4.03),
+(564,936,1),
+(564,937,1),
+(564,938,1),
+(564,939,1),
+(564,1021,2.6),
+(564,1022,2.6),
+(564,1023,2.6),
+(564,1024,2.6),
+(564,1191,0.8),
+(564,1192,0.8),
+(564,1193,0.8),
+(564,1194,0.8),
+(564,1555,2.15),
+(564,1556,2.15),
+(564,1807,1.25),
+(564,1808,1.25),
+(564,2035,1.05),
+(564,2036,1.05),
+(565,6,0.1),
+(565,171,3.57),
+(565,172,3.57),
+(565,181,4.68),
+(565,182,4.68),
+(565,251,1.78),
+(565,253,1.78),
+(565,254,1.78),
+(565,255,1.78),
+(565,514,1.12),
+(565,515,1.12),
+(565,516,1.12),
+(565,517,1.12),
+(565,599,2.68),
+(565,600,2.68),
+(565,601,2.68),
+(565,602,2.68),
+(565,769,4.53),
+(565,770,4.53),
+(565,771,4.53),
+(565,772,4.53),
+(565,854,4.03),
+(565,855,4.03),
+(565,856,4.03),
+(565,857,4.03),
+(565,939,0.93),
+(565,940,0.93),
+(565,941,0.93),
+(565,942,0.93),
+(565,1024,2.71),
+(565,1025,2.71),
+(565,1026,2.71),
+(565,1027,2.71),
+(565,1194,0.75),
+(565,1195,0.75),
+(565,1196,0.75),
+(565,1197,0.75),
+(565,1199,0.68),
+(565,1556,1.97),
+(565,1557,1.97),
+(565,1808,1.43),
+(565,1809,1.43),
+(565,2001,0.1),
+(565,2036,1.15),
+(565,2037,1.15),
+(566,173,3.63),
+(566,183,4.38),
+(566,211,3.63),
+(566,215,4.38),
+(566,254,1.8),
+(566,435,1.8),
+(566,436,1.8),
+(566,437,1.8),
+(566,517,1.13),
+(566,518,1.13),
+(566,519,1.13),
+(566,520,1.13),
+(566,602,2.57),
+(566,603,2.57),
+(566,604,2.57),
+(566,605,2.57),
+(566,772,4.68),
+(566,773,4.68),
+(566,774,4.68),
+(566,775,4.68),
+(566,857,4.09),
+(566,858,4.09),
+(566,859,4.09),
+(566,860,4.09),
+(566,942,0.96),
+(566,943,0.96),
+(566,944,0.96),
+(566,945,0.96),
+(566,1027,2.83),
+(566,1028,2.83),
+(566,1029,2.83),
+(566,1030,2.83),
+(566,1197,0.79),
+(566,1198,0.79),
+(566,1199,0.79),
+(566,1200,0.79),
+(566,1558,2.07),
+(566,1559,2.07),
+(566,1810,1.27),
+(566,1811,1.27),
+(566,2038,0.93),
+(566,2039,0.93),
+(567,211,3.65),
+(567,212,3.65),
+(567,215,4.35),
+(567,216,4.35),
+(567,437,1.88),
+(567,438,1.88),
+(567,439,1.88),
+(567,440,1.88),
+(567,520,1.23),
+(567,521,1.23),
+(567,522,1.23),
+(567,523,1.23),
+(567,605,2.63),
+(567,606,2.63),
+(567,607,2.63),
+(567,608,2.63),
+(567,775,4.33),
+(567,776,4.33),
+(567,777,4.33),
+(567,778,4.33),
+(567,860,4.03),
+(567,861,4.03),
+(567,862,4.03),
+(567,863,4.03),
+(567,945,0.96),
+(567,946,0.96),
+(567,947,0.96),
+(567,948,0.96),
+(567,1030,2.92),
+(567,1031,2.92),
+(567,1032,2.92),
+(567,1033,2.92),
+(567,1200,0.93),
+(567,1201,0.93),
+(567,1202,0.93),
+(567,1203,0.93),
+(567,1559,2.17),
+(567,1560,2.17),
+(567,1811,1.1),
+(567,1812,1.1),
+(567,2039,0.97),
+(567,2040,0.97),
+(568,267,3.95),
+(568,358,3.95),
+(568,409,4.35),
+(568,410,4.35),
+(568,440,1.76),
+(568,441,1.76),
+(568,442,1.76),
+(568,443,1.76),
+(568,523,1.14),
+(568,524,1.14),
+(568,525,1.14),
+(568,526,1.14),
+(568,608,2.85),
+(568,609,2.85),
+(568,610,2.85),
+(568,611,2.85),
+(568,778,4.1),
+(568,779,4.1),
+(568,780,4.1),
+(568,781,4.1),
+(568,863,4.14),
+(568,864,4.14),
+(568,865,4.14),
+(568,866,4.14),
+(568,948,1.04),
+(568,949,1.04),
+(568,950,1.04),
+(568,951,1.04),
+(568,1033,2.89),
+(568,1034,2.89),
+(568,1035,2.89),
+(568,1036,2.89),
+(568,1203,0.9),
+(568,1204,0.9),
+(568,1205,0.9),
+(568,1206,0.9),
+(568,1561,2.1),
+(568,1562,2.1),
+(568,1813,1.15),
+(568,1814,1.15),
+(568,2041,0.88),
+(568,2042,0.88),
+(569,358,3.8),
+(569,359,3.8),
+(569,410,4.1),
+(569,411,4.1),
+(569,443,0.42),
+(569,444,0.42),
+(569,445,0.42),
+(569,446,0.42),
+(569,611,4.32),
+(569,612,4.32),
+(569,613,4.32),
+(569,614,4.32),
+(569,781,4.05),
+(569,782,4.05),
+(569,783,4.05),
+(569,784,4.05),
+(569,866,4.42),
+(569,867,4.42),
+(569,868,4.42),
+(569,869,4.42),
+(569,951,0.53),
+(569,952,0.53),
+(569,953,0.53),
+(569,954,0.53),
+(569,1036,3.18),
+(569,1037,3.18),
+(569,1038,3.18),
+(569,1039,3.18),
+(569,1206,1.87),
+(569,1207,1.87),
+(569,1208,1.87),
+(569,1209,1.87),
+(569,1562,2.53),
+(569,1563,2.53),
+(569,1814,1.02),
+(569,1815,1.02),
+(569,2042,0.98),
+(569,2043,0.98),
+(570,360,4.25),
+(570,361,4.25),
+(570,412,3.43),
+(570,413,3.43),
+(570,446,0.55),
+(570,447,0.55),
+(570,448,0.55),
+(570,449,0.55),
+(570,614,4.82),
+(570,615,4.82),
+(570,616,4.82),
+(570,617,4.82),
+(570,784,3.65),
+(570,785,3.65),
+(570,786,3.65),
+(570,787,3.65),
+(570,869,4.29),
+(570,870,4.29),
+(570,871,4.29),
+(570,872,4.29),
+(570,954,0.54),
+(570,955,0.54),
+(570,956,0.54),
+(570,957,0.54),
+(570,1039,3.25),
+(570,1040,3.25),
+(570,1041,3.25),
+(570,1042,3.25),
+(570,1209,1.8),
+(570,1210,1.8),
+(570,1211,1.8),
+(570,1212,1.8),
+(570,1371,0.1),
+(570,1564,2.67),
+(570,1565,2.67),
+(570,1816,1.07),
+(570,1817,1.07),
+(570,2044,0.75),
+(570,2045,0.75),
+(571,361,4.3),
+(571,362,4.3),
+(571,413,3),
+(571,414,3),
+(571,449,0.54),
+(571,450,0.54),
+(571,451,0.54),
+(571,452,0.54),
+(571,617,5.72),
+(571,618,5.72),
+(571,619,5.72),
+(571,620,5.72),
+(571,787,3.28),
+(571,788,3.28),
+(571,789,3.28),
+(571,790,3.28),
+(571,872,4.4),
+(571,873,4.4),
+(571,874,4.4),
+(571,875,4.4),
+(571,957,0.57),
+(571,958,0.57),
+(571,959,0.57),
+(571,960,0.57),
+(571,1042,2.83),
+(571,1043,2.83),
+(571,1044,2.83),
+(571,1045,2.83),
+(571,1212,1.91),
+(571,1213,1.91),
+(571,1214,1.91),
+(571,1215,1.91),
+(571,1565,2.45),
+(571,1566,2.45),
+(571,1817,0.88),
+(571,1818,0.88),
+(571,2045,0.75),
+(571,2046,0.75),
+(572,363,3.64),
+(572,364,3.64),
+(572,415,3.31),
+(572,416,3.31),
+(572,452,0.58),
+(572,453,0.58),
+(572,454,0.58),
+(572,455,0.58),
+(572,620,4.53),
+(572,621,4.53),
+(572,622,4.53),
+(572,623,4.53),
+(572,790,3.87),
+(572,791,3.87),
+(572,792,3.87),
+(572,793,3.87),
+(572,875,4.48),
+(572,876,4.48),
+(572,877,4.48),
+(572,878,4.48),
+(572,960,0.58),
+(572,961,0.58),
+(572,962,0.58),
+(572,963,0.58),
+(572,1045,3.3),
+(572,1046,3.3),
+(572,1047,3.3),
+(572,1048,3.3),
+(572,1215,1.83),
+(572,1216,1.83),
+(572,1217,1.83),
+(572,1218,1.83),
+(572,1567,2.67),
+(572,1568,2.67),
+(572,1819,1.15),
+(572,1820,1.15),
+(572,2047,0.88),
+(572,2048,0.88),
+(573,364,3.68),
+(573,365,3.68),
+(573,416,2.87),
+(573,417,2.87),
+(573,455,0.5),
+(573,456,0.5),
+(573,457,0.5),
+(573,458,0.7),
+(573,623,4.81),
+(573,624,4.81),
+(573,625,4.81),
+(573,626,4.81),
+(573,793,3.41),
+(573,794,3.41),
+(573,795,3.41),
+(573,796,3.41),
+(573,878,4.11),
+(573,879,4.11),
+(573,880,4.11),
+(573,881,4.11),
+(573,963,0.46),
+(573,964,0.46),
+(573,965,0.46),
+(573,966,0.46),
+(573,1048,2.67),
+(573,1049,2.67),
+(573,1050,2.67),
+(573,1051,2.67),
+(573,1218,1.89),
+(573,1219,1.89),
+(573,1220,1.89),
+(573,1221,1.89),
+(573,1328,0.23),
+(573,1329,0.32),
+(573,1374,0.23),
+(573,1375,0.25),
+(573,1420,0.35),
+(573,1421,0.3),
+(573,1466,0.28),
+(573,1467,0.28),
+(573,1512,0.25),
+(573,1513,0.25),
+(573,1568,3.97),
+(573,1569,3.97),
+(573,1820,1.55),
+(573,1821,1.3),
+(573,2048,1.53),
+(573,2049,1.53),
+(574,366,3.75),
+(574,367,3.75),
+(574,418,2.6),
+(574,419,2.6),
+(574,458,0.45),
+(574,459,0.45),
+(574,460,0.45),
+(574,461,0.45),
+(574,626,4.78),
+(574,627,4.78),
+(574,628,4.78),
+(574,629,4.78),
+(574,796,3.45),
+(574,797,3.45),
+(574,798,3.45),
+(574,799,3.45),
+(574,881,4.15),
+(574,882,4.15),
+(574,883,4.15),
+(574,884,4.15),
+(574,966,0.44),
+(574,967,0.44),
+(574,968,0.44),
+(574,969,0.44),
+(574,1051,2.58),
+(574,1052,2.58),
+(574,1053,2.58),
+(574,1054,2.58),
+(574,1221,1.86),
+(574,1222,1.86),
+(574,1223,1.86),
+(574,1224,1.86),
+(574,1330,0.15),
+(574,1331,0.15),
+(574,1376,0.23),
+(574,1377,0.23),
+(574,1422,0.3),
+(574,1423,0.3),
+(574,1468,0.22),
+(574,1469,0.22),
+(574,1514,0.18),
+(574,1515,0.18),
+(574,1570,4.3),
+(574,1571,4.3),
+(574,1822,1.32),
+(574,1823,1.32),
+(574,2050,1.5),
+(574,2051,1.5),
+(575,367,3.45),
+(575,368,3.45),
+(575,369,3),
+(575,419,2.17),
+(575,420,2.17),
+(575,461,0.54),
+(575,462,0.54),
+(575,463,0.54),
+(575,464,0.54),
+(575,629,5.15),
+(575,630,5.15),
+(575,631,5.15),
+(575,632,5.15),
+(575,799,3.06),
+(575,800,3.06),
+(575,801,3.06),
+(575,802,3.06),
+(575,884,3.99),
+(575,885,3.99),
+(575,886,3.99),
+(575,887,3.99),
+(575,969,0.6),
+(575,970,0.6),
+(575,971,0.6),
+(575,972,0.6),
+(575,1054,2.13),
+(575,1055,2.13),
+(575,1056,2.13),
+(575,1057,2.13),
+(575,1059,1.74),
+(575,1224,2.03),
+(575,1225,2.03),
+(575,1226,2.03),
+(575,1227,2.03),
+(575,1331,0.13),
+(575,1332,0.13),
+(575,1377,0.2),
+(575,1378,0.2),
+(575,1423,0.33),
+(575,1424,0.33),
+(575,1469,0.5),
+(575,1470,0.8),
+(575,1515,0.33),
+(575,1516,0.33),
+(575,1571,4.35),
+(575,1572,4.35),
+(575,1823,0.97),
+(575,1824,0.97),
+(575,1937,0.1),
+(575,2051,1.45),
+(575,2052,1.45),
+(576,319,0.1),
+(576,369,4.84),
+(576,370,4.84),
+(576,397,0.1),
+(576,421,2.56),
+(576,422,2.45),
+(576,464,0.48),
+(576,465,0.48),
+(576,466,0.71),
+(576,467,0.71),
+(576,469,0.38),
+(576,552,0.1),
+(576,632,6.24),
+(576,633,6.24),
+(576,634,6.24),
+(576,635,6.24),
+(576,637,4.5),
+(576,718,0.1),
+(576,802,3.18),
+(576,803,3.18),
+(576,804,3.18),
+(576,805,3.18),
+(576,887,3.76),
+(576,888,3.76),
+(576,889,3.76),
+(576,890,3.76),
+(576,972,0.42),
+(576,973,0.42),
+(576,974,0.42),
+(576,975,0.42),
+(576,1057,2.2),
+(576,1058,2.19),
+(576,1059,2.2),
+(576,1060,2.19),
+(576,1227,1.49),
+(576,1228,1.49),
+(576,1229,1.49),
+(576,1230,1.49),
+(576,1333,0.22),
+(576,1334,0.22),
+(576,1379,0.39),
+(576,1380,0.18),
+(576,1425,0.3),
+(576,1426,0.3),
+(576,1471,0.28),
+(576,1472,0.28),
+(576,1517,0.28),
+(576,1518,0.31),
+(576,1566,0.93),
+(576,1567,0.93),
+(576,1568,0.93),
+(576,1569,0.93),
+(576,1570,0.93),
+(576,1571,0.93),
+(576,1572,0.93),
+(576,1573,2.95),
+(576,1574,2.95),
+(576,1825,1.34),
+(576,1826,1.34),
+(576,1865,0.1),
+(576,1940,0.1),
+(576,1978,0.1),
+(576,2053,1.33),
+(576,2054,1.33),
+(576,2134,0.03),
+(576,2135,0.03),
+(576,2136,0.03),
+(576,2137,0.03),
+(577,347,0.1),
+(577,370,4.55),
+(577,371,4.55),
+(577,422,1.9),
+(577,423,1.9),
+(577,467,0.35),
+(577,468,0.35),
+(577,469,0.35),
+(577,470,0.35),
+(577,635,6.8),
+(577,636,6.8),
+(577,637,6.8),
+(577,638,6.8),
+(577,805,2.75),
+(577,806,2.75),
+(577,807,2.75),
+(577,808,2.75),
+(577,890,3.88),
+(577,891,3.88),
+(577,892,3.88),
+(577,893,3.88),
+(577,975,0.38),
+(577,976,0.38),
+(577,977,0.38),
+(577,978,0.38),
+(577,1060,2),
+(577,1061,2),
+(577,1062,2),
+(577,1063,2),
+(577,1230,1.88),
+(577,1231,1.88),
+(577,1232,1.88),
+(577,1233,1.88),
+(577,1334,0.05),
+(577,1335,0.05),
+(577,1380,0.2),
+(577,1381,0.2),
+(577,1426,0.25),
+(577,1427,0.25),
+(577,1472,0.15),
+(577,1473,0.15),
+(577,1518,0.2),
+(577,1519,0.2),
+(577,1574,4.1),
+(577,1575,4.1),
+(577,1826,1.15),
+(577,1827,1.15),
+(577,2054,1.35),
+(577,2055,1.35),
+(580,6,4.13),
+(580,23,4.13),
+(580,503,0.1),
+(580,584,5.55),
+(580,669,3.5),
+(580,839,7.2),
+(580,924,4.4),
+(580,1009,11.15),
+(580,1094,6.15),
+(580,1179,48.25),
+(580,1547,2.45),
+(580,1548,2.45),
+(580,1707,0.1),
+(580,2027,0.33),
+(580,2028,0.33),
+(581,15,0.1),
+(581,24,4.38),
+(581,49,0.1),
+(581,59,0.1),
+(581,97,4.38),
+(581,584,1.39),
+(581,585,1.39),
+(581,586,1.39),
+(581,587,1.39),
+(581,669,0.71),
+(581,670,0.71),
+(581,671,0.71),
+(581,672,0.71),
+(581,673,0.54),
+(581,674,0.54),
+(581,675,0.54),
+(581,760,0.1),
+(581,839,2),
+(581,840,2),
+(581,841,2),
+(581,842,2),
+(581,924,1.23),
+(581,925,1.23),
+(581,926,1.23),
+(581,927,1.23),
+(581,1009,3.05),
+(581,1010,3.05),
+(581,1011,3.05),
+(581,1012,3.05),
+(581,1094,1.7),
+(581,1095,1.7),
+(581,1096,1.7),
+(581,1097,1.7),
+(581,1179,11.11),
+(581,1180,11.11),
+(581,1181,11.11),
+(581,1182,11.11),
+(581,1547,1.2),
+(581,1548,1.2),
+(581,1549,1.9),
+(581,1550,1.9),
+(581,1913,0.1),
+(581,2029,0.42),
+(581,2030,0.42),
+(582,6,1.78),
+(582,23,1.78),
+(582,24,1.78),
+(582,97,3.26),
+(582,115,3.26),
+(582,587,1.46),
+(582,588,1.46),
+(582,589,1.46),
+(582,590,1.46),
+(582,672,0.9),
+(582,673,0.9),
+(582,674,0.9),
+(582,675,0.9),
+(582,842,1.77),
+(582,843,1.77),
+(582,844,1.77),
+(582,845,1.77),
+(582,847,1.52),
+(582,927,1.25),
+(582,928,1.25),
+(582,929,1.25),
+(582,930,1.25),
+(582,1012,3.19),
+(582,1013,3.19),
+(582,1014,3.19),
+(582,1015,3.19),
+(582,1097,1.76),
+(582,1098,1.76),
+(582,1099,1.76),
+(582,1100,1.76),
+(582,1182,8.14),
+(582,1183,8.14),
+(582,1184,8.14),
+(582,1185,8.14),
+(582,1186,4.88),
+(582,1187,4.88),
+(582,1188,4.88),
+(582,1189,4.88),
+(582,1307,0.1),
+(582,1550,2.78),
+(582,1551,2.78),
+(582,1709,0.1),
+(582,1989,0.1),
+(582,2030,0.42),
+(582,2031,0.42),
+(583,136,4.9),
+(583,155,4.9),
+(583,235,0.1),
+(583,590,1.58),
+(583,591,1.58),
+(583,592,1.58),
+(583,593,1.58),
+(583,675,0.95),
+(583,676,0.95),
+(583,677,0.95),
+(583,678,0.95),
+(583,845,2.1),
+(583,846,2.1),
+(583,847,2.1),
+(583,848,2.1),
+(583,930,1.25),
+(583,931,1.25),
+(583,932,1.25),
+(583,933,1.25),
+(583,1015,3.75),
+(583,1016,3.75),
+(583,1017,3.75),
+(583,1018,3.75),
+(583,1100,2.08),
+(583,1101,2.08),
+(583,1102,2.08),
+(583,1103,2.08),
+(583,1185,9.27),
+(583,1186,9.27),
+(583,1187,9.27),
+(583,1188,9.27),
+(583,1552,2.8),
+(583,1553,2.8),
+(583,2032,0.4),
+(583,2033,0.4),
+(584,155,5.1),
+(584,189,5.1),
+(584,593,1.49),
+(584,594,1.49),
+(584,595,1.49),
+(584,596,1.49),
+(584,678,0.89),
+(584,679,0.89),
+(584,680,0.89),
+(584,681,0.89),
+(584,848,2.13),
+(584,849,2.13),
+(584,850,2.13),
+(584,851,2.13),
+(584,933,1.33),
+(584,934,1.33),
+(584,935,1.33),
+(584,936,1.33),
+(584,1018,3.82),
+(584,1019,3.82),
+(584,1020,3.82),
+(584,1021,3.82),
+(584,1103,2.17),
+(584,1104,2.17),
+(584,1105,2.17),
+(584,1106,2.17),
+(584,1188,8.93),
+(584,1189,8.93),
+(584,1190,8.93),
+(584,1191,8.93),
+(584,1553,2.97),
+(584,1554,2.97),
+(584,2033,0.42),
+(584,2034,0.42),
+(585,190,5.22),
+(585,191,5.22),
+(585,596,1.56),
+(585,597,1.56),
+(585,598,1.56),
+(585,599,1.56),
+(585,681,1),
+(585,682,1),
+(585,683,1),
+(585,684,1),
+(585,851,1.96),
+(585,852,1.96),
+(585,853,1.96),
+(585,854,1.96),
+(585,936,1.3),
+(585,937,1.3),
+(585,938,1.3),
+(585,939,1.3),
+(585,1021,3.21),
+(585,1022,3.21),
+(585,1023,3.21),
+(585,1024,3.21),
+(585,1026,2.94),
+(585,1106,2.13),
+(585,1107,2.13),
+(585,1108,2.13),
+(585,1109,2.13),
+(585,1191,9.14),
+(585,1192,9.14),
+(585,1193,9.14),
+(585,1194,9.14),
+(585,1555,3.13),
+(585,1556,3.13),
+(585,2035,0.38),
+(585,2036,0.38),
+(586,191,5.17),
+(586,192,5.17),
+(586,599,1.64),
+(586,600,1.64),
+(586,601,1.64),
+(586,602,1.64),
+(586,684,0.91),
+(586,685,0.91),
+(586,686,0.91),
+(586,687,0.91),
+(586,771,0.1),
+(586,854,1.7),
+(586,855,1.7),
+(586,856,1.7),
+(586,857,1.7),
+(586,939,1.22),
+(586,940,1.22),
+(586,941,1.22),
+(586,942,1.22),
+(586,1024,3.5),
+(586,1025,3.5),
+(586,1026,3.5),
+(586,1027,3.5),
+(586,1109,1.98),
+(586,1110,1.98),
+(586,1111,1.98),
+(586,1112,1.98),
+(586,1194,9.69),
+(586,1195,9.69),
+(586,1196,9.69),
+(586,1197,9.69),
+(586,1556,3.17),
+(586,1557,3.17),
+(586,2036,0.35),
+(586,2037,0.35),
+(587,193,5.15),
+(587,219,5.15),
+(587,602,1.45),
+(587,603,1.45),
+(587,604,1.45),
+(587,605,1.45),
+(587,687,0.9),
+(587,688,0.9),
+(587,689,0.9),
+(587,690,0.9),
+(587,857,1.47),
+(587,858,1.47),
+(587,859,1.47),
+(587,860,1.47),
+(587,942,1.18),
+(587,943,1.18),
+(587,944,1.18),
+(587,945,1.18),
+(587,1027,3.61),
+(587,1028,3.61),
+(587,1029,3.61),
+(587,1030,3.61),
+(587,1112,2.14),
+(587,1113,2.14),
+(587,1114,2.14),
+(587,1115,2.14),
+(587,1197,10.1),
+(587,1198,10.1),
+(587,1199,10.1),
+(587,1200,10.1),
+(587,1558,2.75),
+(587,1559,2.75),
+(587,1989,0.1),
+(587,2038,0.38),
+(587,2039,0.38),
+(588,219,5.5),
+(588,220,5.5),
+(588,605,1.41),
+(588,606,1.41),
+(588,607,1.41),
+(588,608,1.41),
+(588,690,0.85),
+(588,691,0.85),
+(588,692,0.85),
+(588,693,0.85),
+(588,860,1.74),
+(588,861,1.74),
+(588,862,1.74),
+(588,863,1.74),
+(588,945,1.42),
+(588,946,1.42),
+(588,947,1.42),
+(588,948,1.42),
+(588,1030,3.91),
+(588,1031,3.91),
+(588,1032,3.91),
+(588,1033,3.91),
+(588,1115,2.38),
+(588,1116,2.38),
+(588,1117,2.38),
+(588,1118,2.38),
+(588,1200,8.97),
+(588,1201,8.97),
+(588,1202,8.97),
+(588,1203,8.97),
+(588,1559,2.87),
+(588,1560,2.87),
+(588,2039,0.28),
+(588,2040,0.28),
+(589,14,0.1),
+(589,307,5.85),
+(589,308,5.85),
+(589,608,1.13),
+(589,609,1.13),
+(589,610,1.13),
+(589,611,1.13),
+(589,693,0.82),
+(589,694,0.82),
+(589,695,0.82),
+(589,696,0.82),
+(589,863,1.78),
+(589,864,1.78),
+(589,865,1.78),
+(589,866,1.78),
+(589,948,1.39),
+(589,949,1.39),
+(589,950,1.39),
+(589,951,1.39),
+(589,1033,4.14),
+(589,1034,4.14),
+(589,1035,4.14),
+(589,1036,4.14),
+(589,1118,2.55),
+(589,1119,2.55),
+(589,1120,2.55),
+(589,1121,2.55),
+(589,1203,8.65),
+(589,1204,8.65),
+(589,1205,8.65),
+(589,1206,8.65),
+(589,1307,0.1),
+(589,1561,2.88),
+(589,1562,2.88),
+(589,2041,0.42),
+(589,2042,0.42),
+(590,358,2.9),
+(590,359,2.9),
+(590,410,4.03),
+(590,411,4.03),
+(590,443,2.6),
+(590,444,2.6),
+(590,445,2.6),
+(590,446,2.6),
+(590,526,3.34),
+(590,527,3.34),
+(590,528,3.34),
+(590,529,3.34),
+(590,611,2.34),
+(590,612,2.34),
+(590,613,2.34),
+(590,614,2.34),
+(590,781,2.98),
+(590,782,2.98),
+(590,783,2.98),
+(590,784,2.98),
+(590,866,2.96),
+(590,867,2.96),
+(590,868,2.96),
+(590,869,2.96),
+(590,951,0.77),
+(590,952,0.77),
+(590,953,0.77),
+(590,954,0.77),
+(590,1036,3.42),
+(590,1037,3.42),
+(590,1038,3.42),
+(590,1039,3.42),
+(590,1206,0.91),
+(590,1207,0.91),
+(590,1208,0.91),
+(590,1209,0.91),
+(590,1562,2.28),
+(590,1563,2.28),
+(590,1814,1.25),
+(590,1815,1.25),
+(590,2042,0.88),
+(590,2043,0.88),
+(591,360,2.65),
+(591,361,2.65),
+(591,412,3.88),
+(591,413,3.88),
+(591,446,2.39),
+(591,447,2.39),
+(591,448,2.39),
+(591,449,2.39),
+(591,529,3.16),
+(591,530,3.16),
+(591,531,3.16),
+(591,532,3.16),
+(591,614,2.03),
+(591,615,2.03),
+(591,616,2.03),
+(591,617,2.03),
+(591,784,3.04),
+(591,785,3.04),
+(591,786,3.04),
+(591,787,3.04),
+(591,869,3.13),
+(591,870,3.13),
+(591,871,3.13),
+(591,872,3.13),
+(591,954,0.81),
+(591,955,0.81),
+(591,956,0.81),
+(591,957,0.81),
+(591,1039,3.56),
+(591,1040,3.56),
+(591,1041,3.56),
+(591,1042,3.56),
+(591,1209,1.08),
+(591,1210,1.08),
+(591,1211,1.08),
+(591,1212,1.08),
+(591,1564,2.5),
+(591,1565,2.5),
+(591,1816,1.43),
+(591,1817,1.43),
+(591,2044,1.07),
+(591,2045,1.07),
+(592,361,2.6),
+(592,362,2.6),
+(592,413,3.48),
+(592,414,3.48),
+(592,449,2.45),
+(592,450,2.45),
+(592,451,2.45),
+(592,452,2.45),
+(592,532,3.27),
+(592,533,3.27),
+(592,534,3.27),
+(592,535,3.27),
+(592,617,2.02),
+(592,618,2.02),
+(592,619,2.02),
+(592,620,2.02),
+(592,787,3),
+(592,788,3),
+(592,789,3),
+(592,790,3),
+(592,872,3.19),
+(592,873,3.19),
+(592,874,3.19),
+(592,875,3.19),
+(592,957,0.93),
+(592,958,0.93),
+(592,959,0.93),
+(592,960,0.93),
+(592,1042,3.55),
+(592,1043,3.55),
+(592,1044,3.55),
+(592,1045,3.55),
+(592,1212,1.23),
+(592,1213,1.23),
+(592,1214,1.23),
+(592,1215,1.23),
+(592,1565,2.13),
+(592,1566,2.13),
+(592,1817,1.28),
+(592,1818,1.28),
+(592,2045,1.23),
+(592,2046,1.23),
+(593,363,2.28),
+(593,364,2.28),
+(593,415,3.5),
+(593,416,3.5),
+(593,452,2.33),
+(593,453,2.33),
+(593,454,2.33),
+(593,455,2.33),
+(593,535,3.71),
+(593,536,3.71),
+(593,537,3.71),
+(593,538,3.71),
+(593,620,2.04),
+(593,621,2.04),
+(593,622,2.04),
+(593,623,2.04),
+(593,790,3.02),
+(593,791,3.02),
+(593,792,3.02),
+(593,793,3.02),
+(593,875,3.11),
+(593,876,3.11),
+(593,877,3.11),
+(593,878,3.11),
+(593,960,0.74),
+(593,961,0.74),
+(593,962,0.74),
+(593,963,0.74),
+(593,1045,3.86),
+(593,1046,3.86),
+(593,1047,3.86),
+(593,1048,3.86),
+(593,1215,1.18),
+(593,1216,1.18),
+(593,1217,1.18),
+(593,1218,1.18),
+(593,1567,2.03),
+(593,1568,2.03),
+(593,1819,1.23),
+(593,1820,1.23),
+(593,2047,1),
+(593,2048,1),
+(594,364,2.13),
+(594,365,2.13),
+(594,416,3.13),
+(594,417,3.13),
+(594,455,2.1),
+(594,456,2.1),
+(594,457,2.1),
+(594,458,2.1),
+(594,538,3.4),
+(594,539,3.4),
+(594,540,3.4),
+(594,541,3.4),
+(594,623,1.91),
+(594,624,1.91),
+(594,625,1.91),
+(594,626,1.91),
+(594,793,3.09),
+(594,794,3.09),
+(594,795,3.09),
+(594,796,3.09),
+(594,878,2.78),
+(594,879,2.78),
+(594,880,2.78),
+(594,881,2.78),
+(594,963,0.71),
+(594,964,0.71),
+(594,965,0.71),
+(594,966,0.71),
+(594,1048,3.15),
+(594,1049,3.15),
+(594,1050,3.15),
+(594,1051,3.15),
+(594,1218,1.05),
+(594,1219,1.05),
+(594,1220,1.05),
+(594,1221,1.05),
+(594,1328,0.33),
+(594,1329,0.33),
+(594,1374,0.3),
+(594,1375,0.3),
+(594,1420,0.4),
+(594,1421,0.4),
+(594,1466,0.3),
+(594,1467,0.3),
+(594,1512,0.2),
+(594,1513,0.2),
+(594,1568,3.45),
+(594,1569,3.45),
+(594,1820,1.8),
+(594,1821,1.8),
+(594,2048,1.58),
+(594,2049,1.58),
+(595,366,2.65),
+(595,367,2.65),
+(595,418,2.5),
+(595,419,2.5),
+(595,458,2.31),
+(595,459,2.31),
+(595,460,2.31),
+(595,461,2.31),
+(595,541,3),
+(595,542,3),
+(595,543,3),
+(595,544,3),
+(595,626,2.16),
+(595,627,2.16),
+(595,628,2.16),
+(595,629,2.16),
+(595,796,2.52),
+(595,797,2.52),
+(595,798,2.52),
+(595,799,2.52),
+(595,881,3.2),
+(595,882,3.2),
+(595,883,3.2),
+(595,884,3.2),
+(595,966,0.79),
+(595,967,0.79),
+(595,968,0.79),
+(595,969,0.79),
+(595,1051,3),
+(595,1052,3),
+(595,1053,3),
+(595,1054,3),
+(595,1221,1.22),
+(595,1222,1.22),
+(595,1223,1.22),
+(595,1224,1.22),
+(595,1330,0.2),
+(595,1331,0.2),
+(595,1376,0.28),
+(595,1377,0.28),
+(595,1422,0.38),
+(595,1423,0.38),
+(595,1468,0.2),
+(595,1469,0.2),
+(595,1514,0.23),
+(595,1515,0.23),
+(595,1570,3.67),
+(595,1571,3.67),
+(595,1822,1.83),
+(595,1823,1.83),
+(595,2050,1.58),
+(595,2051,1.58),
+(596,367,3.2),
+(596,368,3.2),
+(596,419,2.23),
+(596,420,2.23),
+(596,461,2.36),
+(596,462,2.36),
+(596,463,2.36),
+(596,464,2.36),
+(596,544,3.11),
+(596,545,3.11),
+(596,546,3.11),
+(596,547,3.11),
+(596,629,2.46),
+(596,630,2.46),
+(596,631,2.46),
+(596,632,2.46),
+(596,799,2.23),
+(596,800,2.23),
+(596,801,2.23),
+(596,802,2.23),
+(596,884,3.64),
+(596,885,3.64),
+(596,886,3.64),
+(596,887,3.64),
+(596,969,0.7),
+(596,970,0.7),
+(596,971,0.7),
+(596,972,0.7),
+(596,974,0.72),
+(596,1054,2.25),
+(596,1055,2.25),
+(596,1056,2.25),
+(596,1057,2.25),
+(596,1059,1.94),
+(596,1224,1.11),
+(596,1225,1.11),
+(596,1226,1.11),
+(596,1227,1.11),
+(596,1331,0.15),
+(596,1332,0.15),
+(596,1377,0.15),
+(596,1378,0.23),
+(596,1423,0.7),
+(596,1424,0.45),
+(596,1470,0.6),
+(596,1515,0.25),
+(596,1516,0.38),
+(596,1571,3.88),
+(596,1572,3.88),
+(596,1823,1.43),
+(596,1824,1.43),
+(596,2051,1.65),
+(596,2052,1.65),
+(596,2160,0.1),
+(597,320,0.1),
+(597,369,3.93),
+(597,370,3.93),
+(597,421,1.78),
+(597,422,2.17),
+(597,464,2.54),
+(597,465,2.54),
+(597,466,2.54),
+(597,467,2.54),
+(597,547,2.13),
+(597,548,2.13),
+(597,549,2.13),
+(597,550,2.13),
+(597,552,2.02),
+(597,632,3.57),
+(597,633,3.57),
+(597,634,3.57),
+(597,635,3.57),
+(597,802,2.37),
+(597,803,2.37),
+(597,804,2.37),
+(597,805,2.37),
+(597,887,3.77),
+(597,888,3.77),
+(597,889,3.77),
+(597,890,3.77),
+(597,972,0.5),
+(597,973,0.5),
+(597,974,0.49),
+(597,975,0.49),
+(597,976,0.47),
+(597,1057,2.63),
+(597,1058,2.62),
+(597,1059,2.63),
+(597,1060,2.62),
+(597,1145,0.3),
+(597,1227,1.05),
+(597,1228,1.05),
+(597,1229,0.98),
+(597,1230,0.98),
+(597,1333,0.08),
+(597,1334,0.05),
+(597,1379,0.4),
+(597,1380,0.25),
+(597,1425,0.33),
+(597,1426,0.33),
+(597,1471,0.18),
+(597,1472,0.18),
+(597,1517,0.28),
+(597,1518,1.12),
+(597,1573,4.23),
+(597,1574,4.23),
+(597,1825,1.3),
+(597,1826,1.3),
+(597,2015,0.1),
+(597,2053,1.72),
+(597,2054,1.72),
+(598,370,3.2),
+(598,371,3.2),
+(598,422,1.7),
+(598,423,1.7),
+(598,467,2.8),
+(598,468,2.8),
+(598,469,2.8),
+(598,470,2.8),
+(598,550,2.88),
+(598,551,2.88),
+(598,552,2.88),
+(598,553,2.88),
+(598,635,3.85),
+(598,636,3.85),
+(598,637,3.85),
+(598,638,3.85),
+(598,805,2.2),
+(598,806,2.2),
+(598,807,2.2),
+(598,808,2.2),
+(598,890,3.35),
+(598,891,3.35),
+(598,892,3.35),
+(598,893,3.35),
+(598,975,0.77),
+(598,976,0.77),
+(598,977,0.77),
+(598,978,0.77),
+(598,1060,2),
+(598,1061,2),
+(598,1062,2),
+(598,1063,2),
+(598,1230,1.17),
+(598,1231,1.17),
+(598,1232,1.17),
+(598,1233,1.17),
+(598,1334,0.1),
+(598,1335,0.1),
+(598,1380,0.2),
+(598,1381,0.2),
+(598,1426,0.15),
+(598,1427,0.15),
+(598,1472,0.05),
+(598,1473,0.05),
+(598,1518,0.25),
+(598,1519,0.25),
+(598,1574,3.65),
+(598,1575,3.65),
+(598,1826,1.15),
+(598,1827,1.15),
+(598,2054,1.45),
+(598,2055,1.45),
+(598,2095,0.03),
+(598,2096,0.03),
+(598,2097,0.03),
+(611,308,6.05),
+(611,309,6.05),
+(611,611,1.42),
+(611,612,1.42),
+(611,613,1.42),
+(611,614,1.42),
+(611,696,0.77),
+(611,697,0.77),
+(611,698,0.77),
+(611,699,0.77),
+(611,866,1.63),
+(611,867,1.63),
+(611,868,1.63),
+(611,869,1.63),
+(611,951,1),
+(611,952,1),
+(611,953,1),
+(611,954,1),
+(611,1036,3.8),
+(611,1037,3.8),
+(611,1038,3.8),
+(611,1039,3.8),
+(611,1121,2.1),
+(611,1122,2.1),
+(611,1123,2.1),
+(611,1124,2.1),
+(611,1206,9.45),
+(611,1207,9.45),
+(611,1208,9.45),
+(611,1209,9.45),
+(611,1562,3.05),
+(611,1563,3.05),
+(611,2042,0.5),
+(611,2043,0.5),
+(612,310,5.73),
+(612,311,5.73),
+(612,614,1.32),
+(612,615,1.32),
+(612,616,1.32),
+(612,617,1.32),
+(612,699,0.87),
+(612,700,0.87),
+(612,701,0.87),
+(612,702,0.87),
+(612,869,1.67),
+(612,870,1.67),
+(612,871,1.67),
+(612,872,1.67),
+(612,954,1.31),
+(612,955,1.31),
+(612,956,1.31),
+(612,957,1.31),
+(612,1039,4.13),
+(612,1040,4.13),
+(612,1041,4.13),
+(612,1042,4.13),
+(612,1124,2.31),
+(612,1125,2.31),
+(612,1126,2.31),
+(612,1127,2.31),
+(612,1209,8.5),
+(612,1210,8.5),
+(612,1211,8.5),
+(612,1212,8.5),
+(612,1564,3.68),
+(612,1565,3.68),
+(612,2044,0.47),
+(612,2045,0.47),
+(613,311,5.63),
+(613,312,5.63),
+(613,617,1.39),
+(613,618,1.39),
+(613,619,1.39),
+(613,620,1.39),
+(613,702,0.9),
+(613,703,0.9),
+(613,704,0.9),
+(613,705,0.9),
+(613,872,1.63),
+(613,873,1.63),
+(613,874,1.63),
+(613,875,1.63),
+(613,957,1.29),
+(613,958,1.29),
+(613,959,1.29),
+(613,960,1.29),
+(613,1042,4.23),
+(613,1043,4.23),
+(613,1044,4.23),
+(613,1045,4.23),
+(613,1127,2.63),
+(613,1128,2.63),
+(613,1129,2.63),
+(613,1130,2.63),
+(613,1212,8.3),
+(613,1213,8.3),
+(613,1214,8.3),
+(613,1215,8.3),
+(613,1565,3.25),
+(613,1566,3.25),
+(613,2045,0.42),
+(613,2046,0.42),
+(614,313,5.78),
+(614,314,5.78),
+(614,620,1.39),
+(614,621,1.39),
+(614,622,1.39),
+(614,623,1.39),
+(614,705,0.89),
+(614,706,0.89),
+(614,707,0.89),
+(614,708,0.89),
+(614,875,1.57),
+(614,876,1.57),
+(614,877,1.57),
+(614,878,1.57),
+(614,960,1.29),
+(614,961,1.29),
+(614,962,1.29),
+(614,963,1.29),
+(614,1045,4.26),
+(614,1046,4.26),
+(614,1047,4.26),
+(614,1048,4.26),
+(614,1130,2.6),
+(614,1131,2.6),
+(614,1132,2.6),
+(614,1133,2.6),
+(614,1215,8.14),
+(614,1216,8.14),
+(614,1217,8.14),
+(614,1218,8.14),
+(614,1567,3.47),
+(614,1568,3.47),
+(614,2047,0.45),
+(614,2048,0.45),
+(615,314,4.93),
+(615,315,4.93),
+(615,623,1.34),
+(615,624,1.34),
+(615,625,1.34),
+(615,626,1.34),
+(615,708,0.81),
+(615,709,0.81),
+(615,710,0.81),
+(615,711,0.81),
+(615,878,1.41),
+(615,879,1.41),
+(615,880,1.41),
+(615,881,1.41),
+(615,963,1.07),
+(615,964,1.07),
+(615,965,1.07),
+(615,966,1.07),
+(615,1048,3.63),
+(615,1049,3.63),
+(615,1050,3.63),
+(615,1051,3.63),
+(615,1133,2.2),
+(615,1134,2.2),
+(615,1135,2.2),
+(615,1136,2.2),
+(615,1218,7.39),
+(615,1219,7.39),
+(615,1220,7.39),
+(615,1221,7.39),
+(615,1328,0.18),
+(615,1329,0.18),
+(615,1374,0.15),
+(615,1375,0.15),
+(615,1420,0.23),
+(615,1421,0.23),
+(615,1466,0.15),
+(615,1467,0.15),
+(615,1512,0.18),
+(615,1513,0.18),
+(615,1568,7.53),
+(615,1569,7.53),
+(615,2048,0.9),
+(615,2049,0.9),
+(616,316,4.2),
+(616,317,4.2),
+(616,626,1.21),
+(616,627,1.21),
+(616,628,1.21),
+(616,629,1.21),
+(616,711,0.76),
+(616,712,0.76),
+(616,713,0.76),
+(616,714,0.76),
+(616,881,1.44),
+(616,882,1.44),
+(616,883,1.44),
+(616,884,1.44),
+(616,966,1.23),
+(616,967,1.23),
+(616,968,1.23),
+(616,969,1.23),
+(616,1051,3.29),
+(616,1052,3.29),
+(616,1053,3.29),
+(616,1054,3.29),
+(616,1136,2.11),
+(616,1137,2.11),
+(616,1138,2.11),
+(616,1139,2.11),
+(616,1221,7.88),
+(616,1222,7.88),
+(616,1223,7.88),
+(616,1224,7.88),
+(616,1330,0.1),
+(616,1331,0.1),
+(616,1376,0.2),
+(616,1377,0.2),
+(616,1422,0.32),
+(616,1423,0.32),
+(616,1468,0.25),
+(616,1469,0.25),
+(616,1514,0.13),
+(616,1515,0.13),
+(616,1570,8.15),
+(616,1571,8.15),
+(616,2050,0.78),
+(616,2051,0.78),
+(617,317,4.75),
+(617,318,4.75),
+(617,629,1.44),
+(617,630,1.44),
+(617,631,1.44),
+(617,632,1.44),
+(617,714,0.89),
+(617,715,0.89),
+(617,716,0.89),
+(617,717,0.89),
+(617,884,1.79),
+(617,885,1.79),
+(617,886,1.79),
+(617,887,1.79),
+(617,969,1.05),
+(617,970,1.05),
+(617,971,1.05),
+(617,972,1.05),
+(617,1054,3.09),
+(617,1055,3.09),
+(617,1056,3.09),
+(617,1057,3.09),
+(617,1139,1.85),
+(617,1140,1.85),
+(617,1141,1.85),
+(617,1142,1.85),
+(617,1224,7.88),
+(617,1225,7.88),
+(617,1226,7.88),
+(617,1227,7.88),
+(617,1331,0.08),
+(617,1332,0.08),
+(617,1377,0.15),
+(617,1378,0.15),
+(617,1423,0.15),
+(617,1424,0.18),
+(617,1469,0.2),
+(617,1470,0.2),
+(617,1515,0.23),
+(617,1516,0.23),
+(617,1571,7.77),
+(617,1572,7.77),
+(617,1730,0.1),
+(617,2051,0.85),
+(617,2052,0.85),
+(618,319,4.27),
+(618,320,4.27),
+(618,397,0.3),
+(618,632,1.03),
+(618,633,1.03),
+(618,634,1.03),
+(618,635,1.03),
+(618,717,1.65),
+(618,718,1.65),
+(618,719,1.65),
+(618,720,1.65),
+(618,805,0.8),
+(618,887,1.58),
+(618,888,1.58),
+(618,889,1.58),
+(618,890,1.58),
+(618,891,1.68),
+(618,972,0.72),
+(618,973,0.72),
+(618,974,0.72),
+(618,975,0.72),
+(618,976,0.72),
+(618,1057,2.32),
+(618,1058,2.32),
+(618,1059,2.32),
+(618,1060,2.32),
+(618,1142,1.48),
+(618,1143,1.57),
+(618,1144,1.48),
+(618,1145,1.57),
+(618,1227,9.63),
+(618,1228,9.63),
+(618,1229,9.63),
+(618,1230,9.63),
+(618,1333,0.1),
+(618,1379,0.05),
+(618,1380,0.05),
+(618,1425,0.15),
+(618,1426,0.18),
+(618,1471,0.62),
+(618,1472,0.18),
+(618,1517,0.3),
+(618,1518,0.3),
+(618,1573,7.22),
+(618,1574,7.22),
+(618,1732,0.1),
+(618,2053,0.8),
+(618,2054,0.8),
+(618,2095,0.07),
+(618,2096,0.07),
+(618,2097,0.07),
+(618,2158,0.1),
+(619,320,4.1),
+(619,321,4.1),
+(619,635,1.35),
+(619,636,1.35),
+(619,637,1.35),
+(619,638,1.35),
+(619,720,0.77),
+(619,721,0.77),
+(619,722,0.77),
+(619,723,0.77),
+(619,890,1.73),
+(619,891,1.73),
+(619,892,1.73),
+(619,893,1.73),
+(619,975,1.08),
+(619,976,1.08),
+(619,977,1.08),
+(619,978,1.08),
+(619,1060,2.25),
+(619,1061,2.25),
+(619,1062,2.25),
+(619,1063,2.25),
+(619,1145,1.23),
+(619,1146,1.23),
+(619,1147,1.23),
+(619,1148,1.23),
+(619,1230,10.88),
+(619,1231,10.88),
+(619,1232,10.88),
+(619,1233,10.88),
+(619,1334,0.1),
+(619,1335,0.1),
+(619,1380,0.2),
+(619,1381,0.2),
+(619,1426,0.1),
+(619,1427,0.1),
+(619,1472,0.1),
+(619,1473,0.1),
+(619,1518,0.05),
+(619,1519,0.05),
+(619,1574,5.95),
+(619,1575,5.95),
+(619,1941,0.1),
+(619,2054,0.75),
+(619,2055,0.75),
+(629,178,4.04),
+(629,188,2.15),
+(629,213,4.04),
+(629,217,2.15),
+(629,517,1.62),
+(629,518,1.62),
+(629,519,1.62),
+(629,520,1.62),
+(629,772,5.73),
+(629,773,5.73),
+(629,774,5.73),
+(629,775,5.73),
+(629,857,3.64),
+(629,858,3.64),
+(629,859,3.64),
+(629,860,3.64),
+(629,1027,3.07),
+(629,1028,3.07),
+(629,1029,3.07),
+(629,1030,3.07),
+(629,1365,0.1),
+(629,1810,3.4),
+(629,1811,3.4),
+(629,1848,1.56),
+(629,1849,1.56),
+(629,1886,3.55),
+(629,1887,3.55),
+(629,1962,2.77),
+(629,1963,2.77),
+(629,2038,4.41),
+(629,2039,4.41),
+(630,213,3.64),
+(630,214,3.64),
+(630,217,2.41),
+(630,218,2.41),
+(630,520,2.03),
+(630,521,2.03),
+(630,522,2.03),
+(630,523,2.03),
+(630,775,6.32),
+(630,776,6.32),
+(630,777,6.32),
+(630,778,6.32),
+(630,860,2.82),
+(630,861,2.82),
+(630,862,2.82),
+(630,863,2.82),
+(630,1030,3.96),
+(630,1031,3.96),
+(630,1032,3.96),
+(630,1033,3.96),
+(630,1811,3.11),
+(630,1812,3.11),
+(630,1849,1.34),
+(630,1850,1.34),
+(630,1887,3.19),
+(630,1888,3.19),
+(630,1963,2.41),
+(630,1964,2.41),
+(630,2039,3.71),
+(630,2040,3.71),
+(631,287,3),
+(631,333,3),
+(631,383,3.5),
+(631,384,3.5),
+(631,523,2.45),
+(631,524,2.45),
+(631,525,2.45),
+(631,526,2.45),
+(631,778,5.75),
+(631,779,5.75),
+(631,780,5.75),
+(631,781,5.75),
+(631,863,2.53),
+(631,864,2.53),
+(631,865,2.53),
+(631,866,2.53),
+(631,1033,4.55),
+(631,1034,4.55),
+(631,1035,4.55),
+(631,1036,4.55),
+(631,1813,3.1),
+(631,1814,3.1),
+(631,1851,1.15),
+(631,1852,1.15),
+(631,1889,2.8),
+(631,1890,2.8),
+(631,1927,0.1),
+(631,1965,2.1),
+(631,1966,2.1),
+(631,2041,3.7),
+(631,2042,3.7),
+(632,333,3.26),
+(632,334,3.26),
+(632,384,3.45),
+(632,385,3.45),
+(632,526,2.7),
+(632,527,2.7),
+(632,528,2.7),
+(632,529,2.7),
+(632,781,5.46),
+(632,782,5.46),
+(632,783,5.46),
+(632,784,5.46),
+(632,866,2.41),
+(632,867,2.41),
+(632,868,2.41),
+(632,869,2.41),
+(632,1036,4.42),
+(632,1037,4.42),
+(632,1038,4.42),
+(632,1039,4.42),
+(632,1814,3.2),
+(632,1815,3.2),
+(632,1852,1.34),
+(632,1853,1.34),
+(632,1890,2.86),
+(632,1891,2.86),
+(632,1966,2.25),
+(632,1967,2.25),
+(632,2042,3.7),
+(632,2043,3.7),
+(633,335,3.08),
+(633,336,3.08),
+(633,386,3.57),
+(633,387,3.57),
+(633,529,2.5),
+(633,530,2.5),
+(633,531,2.5),
+(633,532,2.5),
+(633,784,6.32),
+(633,785,6.32),
+(633,786,6.32),
+(633,787,6.32),
+(633,869,2.46),
+(633,870,2.46),
+(633,871,2.46),
+(633,872,2.46),
+(633,1039,4.32),
+(633,1040,4.32),
+(633,1041,4.32),
+(633,1042,4.32),
+(633,1816,2.6),
+(633,1817,2.6),
+(633,1854,1.3),
+(633,1855,1.3),
+(633,1892,2.85),
+(633,1893,2.85),
+(633,1930,0.1),
+(633,1968,2.05),
+(633,1969,2.05),
+(633,2044,3.4),
+(633,2045,3.4),
+(634,336,2.67),
+(634,337,2.67),
+(634,387,3.87),
+(634,388,3.87),
+(634,532,2.09),
+(634,533,2.09),
+(634,534,2.09),
+(634,535,2.09),
+(634,787,6.81),
+(634,788,6.81),
+(634,789,6.81),
+(634,790,6.81),
+(634,872,2.6),
+(634,873,2.6),
+(634,874,2.6),
+(634,875,2.6),
+(634,1042,3.77),
+(634,1043,3.77),
+(634,1044,3.77),
+(634,1045,3.77),
+(634,1817,2.52),
+(634,1818,2.52),
+(634,1855,1.73),
+(634,1856,1.73),
+(634,1893,2.85),
+(634,1894,2.85),
+(634,1969,2.33),
+(634,1970,2.33),
+(634,2045,3.45),
+(634,2046,3.45),
+(635,338,2.73),
+(635,339,2.73),
+(635,389,3.4),
+(635,390,3.4),
+(635,535,2.08),
+(635,536,2.08),
+(635,537,2.08),
+(635,538,2.08),
+(635,790,6.68),
+(635,791,6.68),
+(635,792,6.68),
+(635,793,6.68),
+(635,875,2.64),
+(635,876,2.64),
+(635,877,2.64),
+(635,878,2.64),
+(635,1045,4.03),
+(635,1046,4.03),
+(635,1047,4.03),
+(635,1048,4.03),
+(635,1512,0.1),
+(635,1819,2.58),
+(635,1820,2.58),
+(635,1857,1.65),
+(635,1858,1.65),
+(635,1895,3.25),
+(635,1896,3.25),
+(635,1971,2.1),
+(635,1972,2.1),
+(635,2047,3.43),
+(635,2048,3.43),
+(636,339,3),
+(636,340,3),
+(636,390,3.6),
+(636,391,3.6),
+(636,538,2.28),
+(636,539,2.28),
+(636,540,2.28),
+(636,541,2.28),
+(636,793,7.07),
+(636,794,7.07),
+(636,795,7.07),
+(636,796,7.07),
+(636,878,2.7),
+(636,879,2.7),
+(636,880,2.7),
+(636,881,2.7),
+(636,1048,4),
+(636,1049,4),
+(636,1050,4),
+(636,1051,4),
+(636,1328,0.15),
+(636,1329,0.15),
+(636,1374,0.15),
+(636,1375,0.15),
+(636,1420,0.15),
+(636,1421,0.15),
+(636,1466,0.15),
+(636,1467,0.15),
+(636,1512,0.1),
+(636,1513,0.1),
+(636,1820,2.15),
+(636,1821,2.15),
+(636,1858,1.3),
+(636,1859,1.3),
+(636,1896,2.45),
+(636,1897,2.45),
+(636,1972,1.7),
+(636,1973,1.7),
+(636,2048,2.8),
+(636,2049,2.8),
+(637,341,3),
+(637,342,3),
+(637,392,3.6),
+(637,393,3.6),
+(637,541,1.95),
+(637,542,1.95),
+(637,543,1.95),
+(637,544,1.95),
+(637,714,0.1),
+(637,796,6.5),
+(637,797,6.5),
+(637,798,6.5),
+(637,799,6.5),
+(637,881,3.14),
+(637,882,3.14),
+(637,883,3.14),
+(637,884,3.14),
+(637,1051,3.78),
+(637,1052,3.78),
+(637,1053,3.78),
+(637,1054,3.78),
+(637,1138,0.1),
+(637,1330,0.12),
+(637,1331,0.12),
+(637,1376,0.17),
+(637,1377,0.17),
+(637,1422,0.27),
+(637,1423,0.27),
+(637,1468,0.2),
+(637,1469,0.2),
+(637,1514,0.25),
+(637,1515,0.25),
+(637,1822,1.93),
+(637,1823,1.93),
+(637,1860,1.57),
+(637,1861,1.57),
+(637,1898,3.03),
+(637,1899,3.03),
+(637,1974,1.87),
+(637,1975,1.87),
+(637,2050,3.33),
+(637,2051,3.33),
+(638,318,0.1),
+(638,342,3.02),
+(638,343,3.02),
+(638,393,3.78),
+(638,394,3.78),
+(638,463,0.1),
+(638,544,1.57),
+(638,545,1.57),
+(638,546,1.57),
+(638,547,1.57),
+(638,548,1.24),
+(638,631,0.1),
+(638,717,0.05),
+(638,718,0.08),
+(638,799,5.74),
+(638,800,5.74),
+(638,801,5.74),
+(638,802,5.74),
+(638,804,5.24),
+(638,884,3.5),
+(638,885,3.5),
+(638,886,3.5),
+(638,887,3.5),
+(638,970,0.1),
+(638,1054,3.39),
+(638,1055,3.39),
+(638,1056,3.39),
+(638,1057,3.39),
+(638,1141,0.1),
+(638,1144,0.1),
+(638,1227,0.1),
+(638,1331,0.07),
+(638,1332,0.07),
+(638,1333,0.03),
+(638,1377,0.23),
+(638,1378,0.23),
+(638,1423,0.38),
+(638,1424,0.38),
+(638,1470,0.35),
+(638,1515,0.11),
+(638,1516,0.11),
+(638,1517,0.07),
+(638,1730,0.1),
+(638,1731,0.1),
+(638,1823,1.8),
+(638,1824,1.8),
+(638,1861,1.65),
+(638,1862,1.65),
+(638,1899,2.68),
+(638,1900,2.68),
+(638,1901,2.27),
+(638,1975,1.9),
+(638,1976,1.9),
+(638,2016,0.1),
+(638,2051,3.5),
+(638,2052,3.5),
+(638,2130,0.03),
+(638,2131,0.03),
+(638,2132,0.03),
+(638,2133,0.03),
+(639,321,0.1),
+(639,344,2.54),
+(639,345,2.54),
+(639,346,2),
+(639,371,0.1),
+(639,395,3.6),
+(639,396,3.6),
+(639,397,2.57),
+(639,421,0.1),
+(639,423,0.1),
+(639,466,0.2),
+(639,467,0.1),
+(639,547,1.51),
+(639,548,1.51),
+(639,549,1.51),
+(639,550,1.51),
+(639,718,0.1),
+(639,802,5.95),
+(639,803,5.95),
+(639,804,5.95),
+(639,805,5.95),
+(639,807,4.94),
+(639,887,3.59),
+(639,888,3.59),
+(639,889,3.59),
+(639,890,3.59),
+(639,892,3.24),
+(639,1057,3.49),
+(639,1058,3.49),
+(639,1059,3.49),
+(639,1060,3.49),
+(639,1143,0.13),
+(639,1145,0.05),
+(639,1228,0.1),
+(639,1229,0.1),
+(639,1333,0.1),
+(639,1334,0.1),
+(639,1379,0.17),
+(639,1380,0.17),
+(639,1381,0.13),
+(639,1425,0.48),
+(639,1426,0.22),
+(639,1427,0.23),
+(639,1471,0.25),
+(639,1472,0.27),
+(639,1517,0.27),
+(639,1518,0.1),
+(639,1731,0.1),
+(639,1825,1.7),
+(639,1826,1.6),
+(639,1863,2.09),
+(639,1864,2.09),
+(639,1901,2.99),
+(639,1902,2.99),
+(639,1903,2.27),
+(639,1941,0.1),
+(639,1977,1.6),
+(639,1978,1.6),
+(639,1979,1.4),
+(639,2016,0.1),
+(639,2053,3.5),
+(639,2054,3.5),
+(639,2095,0.03),
+(639,2096,0.03),
+(639,2097,0.03),
+(639,2159,0.1),
+(640,345,1.85),
+(640,346,1.85),
+(640,396,2.65),
+(640,397,2.65),
+(640,551,5.55),
+(640,553,5.55),
+(640,805,4.9),
+(640,806,4.9),
+(640,807,4.9),
+(640,808,4.9),
+(640,890,3.58),
+(640,891,3.58),
+(640,892,3.58),
+(640,893,3.58),
+(640,1062,5.85),
+(640,1063,5.85),
+(640,1426,1.1),
+(640,1826,2.4),
+(640,1827,2.4),
+(640,1864,4.2),
+(640,1865,4.2),
+(640,1902,2.6),
+(640,1903,2.6),
+(640,1978,3.7),
+(640,1979,3.7),
+(640,2054,3.7),
+(640,2055,3.7),
+(650,178,3.28),
+(650,188,3.38),
+(650,213,3.28),
+(650,217,3.38),
+(650,254,1.02),
+(650,435,1.02),
+(650,436,1.02),
+(650,437,1.02),
+(650,517,2.42),
+(650,518,2.42),
+(650,519,2.42),
+(650,520,2.42),
+(650,602,4.37),
+(650,603,4.37),
+(650,604,4.37),
+(650,605,4.37),
+(650,687,0.84),
+(650,688,0.84),
+(650,689,0.84),
+(650,690,0.84),
+(650,772,4.18),
+(650,773,4.18),
+(650,774,4.18),
+(650,775,4.18),
+(650,857,2.66),
+(650,858,2.66),
+(650,859,2.66),
+(650,860,2.66),
+(650,1027,2.23),
+(650,1028,2.23),
+(650,1029,2.23),
+(650,1030,2.23),
+(650,1197,0.97),
+(650,1198,0.97),
+(650,1199,0.97),
+(650,1200,0.97),
+(650,1607,2.8),
+(650,1612,2.8),
+(650,1810,0.77),
+(650,1811,0.77),
+(650,2000,1.62),
+(650,2001,1.62),
+(650,2038,0.73),
+(650,2039,0.73),
+(651,213,3.98),
+(651,214,3.98),
+(651,217,3.65),
+(651,218,3.65),
+(651,437,0.84),
+(651,438,0.84),
+(651,439,0.84),
+(651,440,0.84),
+(651,520,2.23),
+(651,521,2.23),
+(651,522,2.23),
+(651,523,2.23),
+(651,605,2.99),
+(651,606,2.99),
+(651,607,2.99),
+(651,608,2.99),
+(651,690,0.68),
+(651,691,0.68),
+(651,692,0.68),
+(651,693,0.68),
+(651,775,5.01),
+(651,776,5.01),
+(651,777,5.01),
+(651,778,5.01),
+(651,860,2.51),
+(651,861,2.51),
+(651,862,2.51),
+(651,863,2.51),
+(651,1030,2.55),
+(651,1031,2.55),
+(651,1032,2.55),
+(651,1033,2.55),
+(651,1200,0.9),
+(651,1201,0.9),
+(651,1202,0.9),
+(651,1203,0.9),
+(651,1612,3.35),
+(651,1613,3.35),
+(651,1811,0.95),
+(651,1812,0.95),
+(651,2001,1.8),
+(651,2002,1.8),
+(651,2039,0.83),
+(651,2040,0.83),
+(652,287,3.83),
+(652,333,3.83),
+(652,383,4.15),
+(652,384,4.15),
+(652,440,0.89),
+(652,441,0.89),
+(652,442,0.89),
+(652,443,0.89),
+(652,523,2.61),
+(652,524,2.61),
+(652,525,2.61),
+(652,526,2.61),
+(652,608,2.68),
+(652,609,2.68),
+(652,610,2.68),
+(652,611,2.68),
+(652,693,0.59),
+(652,694,0.59),
+(652,695,0.59),
+(652,696,0.59),
+(652,778,4.5),
+(652,779,4.5),
+(652,780,4.5),
+(652,781,4.5),
+(652,863,2.21),
+(652,864,2.21),
+(652,865,2.21),
+(652,866,2.21),
+(652,1033,2.97),
+(652,1034,2.97),
+(652,1035,2.97),
+(652,1036,2.97),
+(652,1203,0.92),
+(652,1204,0.92),
+(652,1205,0.92),
+(652,1206,0.92),
+(652,1614,4.1),
+(652,1615,4.1),
+(652,1813,0.88),
+(652,1814,0.88),
+(652,2003,1.52),
+(652,2004,1.52),
+(652,2041,0.72),
+(652,2042,0.72),
+(653,333,4.68),
+(653,334,4.68),
+(653,384,3.1),
+(653,385,3.1),
+(653,526,1.83),
+(653,527,1.83),
+(653,528,1.83),
+(653,529,1.83),
+(653,611,4.97),
+(653,612,4.97),
+(653,613,4.97),
+(653,614,4.97),
+(653,696,0.57),
+(653,697,0.57),
+(653,698,0.57),
+(653,699,0.57),
+(653,781,3.74),
+(653,782,3.74),
+(653,783,3.74),
+(653,784,3.74),
+(653,866,1.94),
+(653,867,1.94),
+(653,868,1.94),
+(653,869,1.94),
+(653,1036,2.67),
+(653,1037,2.67),
+(653,1038,2.67),
+(653,1039,2.67),
+(653,1121,1.02),
+(653,1122,1.02),
+(653,1123,1.02),
+(653,1124,1.02),
+(653,1206,1.25),
+(653,1207,1.25),
+(653,1208,1.25),
+(653,1209,1.25),
+(653,1615,3.87),
+(653,1620,3.87),
+(653,1814,0.7),
+(653,1815,0.7),
+(653,2004,1.2),
+(653,2005,1.2),
+(653,2042,0.47),
+(653,2043,0.47),
+(654,335,4.9),
+(654,336,4.9),
+(654,386,3.25),
+(654,387,3.25),
+(654,529,1.89),
+(654,530,1.89),
+(654,531,1.89),
+(654,532,1.89),
+(654,614,3.87),
+(654,615,3.87),
+(654,616,3.87),
+(654,617,3.87),
+(654,699,0.5),
+(654,700,0.5),
+(654,701,0.5),
+(654,702,0.5),
+(654,784,3.89),
+(654,785,3.89),
+(654,786,3.89),
+(654,787,3.89),
+(654,869,2.47),
+(654,870,2.47),
+(654,871,2.47),
+(654,872,2.47),
+(654,1039,2.87),
+(654,1040,2.87),
+(654,1041,2.87),
+(654,1042,2.87),
+(654,1124,1.09),
+(654,1125,1.09),
+(654,1126,1.09),
+(654,1127,1.09),
+(654,1209,1.34),
+(654,1210,1.34),
+(654,1211,1.34),
+(654,1212,1.34),
+(654,1621,3.57),
+(654,1622,3.57),
+(654,1816,0.6),
+(654,1817,0.6),
+(654,2006,1.27),
+(654,2007,1.27),
+(654,2044,0.57),
+(654,2045,0.57),
+(655,336,4.97),
+(655,337,4.97),
+(655,387,3),
+(655,388,3),
+(655,532,1.83),
+(655,533,1.83),
+(655,534,1.83),
+(655,535,1.83),
+(655,617,3.3),
+(655,618,3.3),
+(655,619,3.3),
+(655,620,3.3),
+(655,621,2.94),
+(655,702,0.52),
+(655,703,0.52),
+(655,704,0.52),
+(655,705,0.52),
+(655,787,3.98),
+(655,788,3.98),
+(655,789,3.98),
+(655,790,3.98),
+(655,872,2.96),
+(655,873,2.96),
+(655,874,2.96),
+(655,875,2.96),
+(655,1042,2.67),
+(655,1043,2.67),
+(655,1044,2.67),
+(655,1045,2.67),
+(655,1127,1.01),
+(655,1128,1.01),
+(655,1129,1.01),
+(655,1130,1.01),
+(655,1212,1.56),
+(655,1213,1.56),
+(655,1214,1.56),
+(655,1215,1.56),
+(655,1616,3.43),
+(655,1622,3.43),
+(655,1817,0.57),
+(655,1818,0.57),
+(655,2007,1.23),
+(655,2008,1.23),
+(655,2045,0.57),
+(655,2046,0.57),
+(656,338,4.92),
+(656,339,4.92),
+(656,389,3.08),
+(656,390,3.08),
+(656,535,1.99),
+(656,536,1.99),
+(656,537,1.99),
+(656,538,1.99),
+(656,620,3.73),
+(656,621,3.73),
+(656,622,3.73),
+(656,623,3.73),
+(656,705,0.55),
+(656,706,0.55),
+(656,707,0.55),
+(656,708,0.55),
+(656,790,3.93),
+(656,791,3.93),
+(656,792,3.93),
+(656,793,3.93),
+(656,875,2.82),
+(656,876,2.82),
+(656,877,2.82),
+(656,878,2.82),
+(656,1045,2.82),
+(656,1046,2.82),
+(656,1047,2.82),
+(656,1048,2.82),
+(656,1130,0.95),
+(656,1131,0.95),
+(656,1132,0.95),
+(656,1133,0.95),
+(656,1215,1.38),
+(656,1216,1.38),
+(656,1217,1.38),
+(656,1218,1.38),
+(656,1617,3.25),
+(656,1623,3.25),
+(656,1819,0.48),
+(656,1820,0.48),
+(656,2009,1.25),
+(656,2010,1.25),
+(656,2047,0.62),
+(656,2048,0.62),
+(657,339,4.95),
+(657,340,4.95),
+(657,390,3.1),
+(657,391,3.1),
+(657,538,1.8),
+(657,539,1.8),
+(657,540,1.8),
+(657,541,1.8),
+(657,623,3.4),
+(657,624,3.4),
+(657,625,3.4),
+(657,626,3.4),
+(657,708,0.55),
+(657,709,0.55),
+(657,710,0.55),
+(657,711,0.55),
+(657,793,3.88),
+(657,794,3.88),
+(657,795,3.88),
+(657,796,3.88),
+(657,878,2.75),
+(657,879,2.75),
+(657,880,2.75),
+(657,881,2.75),
+(657,1048,2.5),
+(657,1049,2.5),
+(657,1050,2.5),
+(657,1051,2.5),
+(657,1133,1),
+(657,1134,1),
+(657,1135,1),
+(657,1136,1),
+(657,1218,1.38),
+(657,1219,1.38),
+(657,1220,1.38),
+(657,1221,1.38),
+(657,1328,0.1),
+(657,1329,0.1),
+(657,1374,0.2),
+(657,1375,0.2),
+(657,1420,0.25),
+(657,1421,0.25),
+(657,1466,0.15),
+(657,1467,0.15),
+(657,1512,0.25),
+(657,1513,0.25),
+(657,1617,3.85),
+(657,1624,3.85),
+(657,1820,0.65),
+(657,1821,0.65),
+(657,2010,1.4),
+(657,2011,1.4),
+(657,2048,0.65),
+(657,2049,0.65),
+(658,341,4.27),
+(658,342,4.27),
+(658,392,2.8),
+(658,393,2.8),
+(658,541,1.71),
+(658,542,1.71),
+(658,543,1.71),
+(658,544,1.71),
+(658,626,5.56),
+(658,627,5.56),
+(658,628,5.56),
+(658,629,5.56),
+(658,711,0.68),
+(658,712,0.68),
+(658,713,0.68),
+(658,714,0.68),
+(658,796,3.24),
+(658,797,3.24),
+(658,798,3.24),
+(658,799,3.24),
+(658,881,2.39),
+(658,882,2.39),
+(658,883,2.39),
+(658,884,2.39),
+(658,969,0.1),
+(658,1051,2.16),
+(658,1052,2.16),
+(658,1053,2.16),
+(658,1054,2.16),
+(658,1136,0.76),
+(658,1137,0.76),
+(658,1138,0.76),
+(658,1139,0.76),
+(658,1221,1.44),
+(658,1222,1.44),
+(658,1223,1.44),
+(658,1224,1.44),
+(658,1330,0.18),
+(658,1331,0.18),
+(658,1376,0.19),
+(658,1377,0.19),
+(658,1422,0.2),
+(658,1423,0.2),
+(658,1468,0.15),
+(658,1469,0.15),
+(658,1514,0.25),
+(658,1515,0.25),
+(658,1618,3.5),
+(658,1625,3.5),
+(658,1822,0.55),
+(658,1823,0.55),
+(658,1975,0.1),
+(658,2012,1.36),
+(658,2013,1.36),
+(658,2050,0.64),
+(658,2051,0.64),
+(659,342,3.85),
+(659,343,3.85),
+(659,393,2.8),
+(659,394,2.8),
+(659,544,2.05),
+(659,545,2.05),
+(659,546,2.05),
+(659,547,2.05),
+(659,629,5.55),
+(659,630,5.55),
+(659,631,5.55),
+(659,632,5.55),
+(659,714,0.88),
+(659,715,0.88),
+(659,716,0.88),
+(659,717,0.88),
+(659,799,3.2),
+(659,800,3.2),
+(659,801,3.2),
+(659,802,3.2),
+(659,884,2.65),
+(659,885,2.65),
+(659,886,2.65),
+(659,887,2.65),
+(659,1054,1.63),
+(659,1055,1.63),
+(659,1056,1.63),
+(659,1057,1.63),
+(659,1139,0.98),
+(659,1140,0.98),
+(659,1141,0.98),
+(659,1142,0.98),
+(659,1224,1.42),
+(659,1225,1.42),
+(659,1226,1.42),
+(659,1227,1.42),
+(659,1331,0.1),
+(659,1332,0.1),
+(659,1377,0.1),
+(659,1378,0.1),
+(659,1423,0.3),
+(659,1424,0.3),
+(659,1470,0.1),
+(659,1515,0.25),
+(659,1516,0.25),
+(659,1618,3.75),
+(659,1626,3.75),
+(659,1823,0.23),
+(659,1824,0.23),
+(659,1825,0.23),
+(659,2013,1.35),
+(659,2014,1.35),
+(659,2051,0.4),
+(659,2052,0.4),
+(660,321,0.1),
+(660,344,4.35),
+(660,345,4.35),
+(660,395,2.6),
+(660,396,2.6),
+(660,422,0.1),
+(660,547,1.66),
+(660,548,1.66),
+(660,549,1.66),
+(660,550,1.66),
+(660,632,5.78),
+(660,633,5.78),
+(660,634,5.78),
+(660,635,5.78),
+(660,637,5.88),
+(660,717,0.83),
+(660,718,0.83),
+(660,719,0.83),
+(660,720,0.83),
+(660,802,2.92),
+(660,803,2.92),
+(660,804,2.92),
+(660,805,2.92),
+(660,806,2.62),
+(660,887,2.29),
+(660,888,2.29),
+(660,889,2.29),
+(660,890,2.29),
+(660,1057,1.92),
+(660,1058,1.92),
+(660,1059,1.92),
+(660,1060,1.92),
+(660,1142,0.66),
+(660,1143,0.66),
+(660,1144,0.66),
+(660,1145,0.66),
+(660,1227,1.48),
+(660,1228,1.48),
+(660,1229,1.48),
+(660,1230,1.48),
+(660,1333,0.2),
+(660,1334,0.17),
+(660,1335,0.2),
+(660,1379,0.2),
+(660,1380,0.2),
+(660,1425,0.29),
+(660,1426,0.25),
+(660,1471,0.17),
+(660,1472,0.17),
+(660,1517,0.16),
+(660,1518,0.18),
+(660,1627,3.5),
+(660,1628,3.5),
+(660,1731,0.1),
+(660,1825,0.54),
+(660,1826,0.54),
+(660,1940,0.1),
+(660,1977,0.1),
+(660,1979,0.1),
+(660,2015,0.87),
+(660,2016,0.87),
+(660,2017,0.82),
+(660,2053,0.81),
+(660,2054,0.81),
+(660,2095,0.03),
+(660,2096,0.03),
+(660,2097,0.03),
+(660,2134,0.03),
+(660,2135,0.03),
+(660,2136,0.03),
+(660,2137,0.03),
+(661,345,4.45),
+(661,346,4.45),
+(661,396,2.7),
+(661,397,2.7),
+(661,552,1),
+(661,553,1),
+(661,635,5.95),
+(661,636,5.95),
+(661,637,5.95),
+(661,638,5.95),
+(661,720,0.68),
+(661,721,0.68),
+(661,722,0.68),
+(661,723,0.68),
+(661,805,3.75),
+(661,806,3.75),
+(661,807,3.75),
+(661,808,3.75),
+(661,890,2.3),
+(661,891,2.3),
+(661,892,2.3),
+(661,893,2.3),
+(661,1061,1.55),
+(661,1063,1.55),
+(661,1146,1.35),
+(661,1148,1.35),
+(661,1230,2.3),
+(661,1231,2.3),
+(661,1232,2.3),
+(661,1233,2.3),
+(661,1380,0.4),
+(661,1381,0.4),
+(661,1426,0.8),
+(661,1473,0.8),
+(661,1628,6.35),
+(661,1629,6.35),
+(661,2016,1.15),
+(661,2017,1.15),
+(661,2054,0.4),
+(661,2055,0.4),
+(671,188,4.25),
+(671,217,4.25),
+(671,602,1.04),
+(671,603,1.04),
+(671,604,1.04),
+(671,605,1.04),
+(671,687,1.3),
+(671,688,1.3),
+(671,689,1.3),
+(671,690,1.3),
+(671,857,1.14),
+(671,858,1.14),
+(671,859,1.14),
+(671,860,1.14),
+(671,942,1.76),
+(671,943,1.76),
+(671,944,1.76),
+(671,945,1.76),
+(671,1027,1.8),
+(671,1028,1.8),
+(671,1029,1.8),
+(671,1030,1.8),
+(671,1112,2.94),
+(671,1113,2.94),
+(671,1114,2.94),
+(671,1115,2.94),
+(671,1197,10.43),
+(671,1198,10.43),
+(671,1199,10.43),
+(671,1200,10.43),
+(671,1607,4.72),
+(671,1612,4.72),
+(671,2038,0.28),
+(671,2039,0.28),
+(672,217,5.13),
+(672,218,5.13),
+(672,605,0.92),
+(672,606,0.92),
+(672,607,0.92),
+(672,608,0.92),
+(672,690,1.13),
+(672,691,1.13),
+(672,692,1.13),
+(672,693,1.13),
+(672,860,1.07),
+(672,861,1.07),
+(672,862,1.07),
+(672,863,1.07),
+(672,945,1.83),
+(672,946,1.83),
+(672,947,1.83),
+(672,948,1.83),
+(672,1030,2.17),
+(672,1031,2.17),
+(672,1032,2.17),
+(672,1033,2.17),
+(672,1115,3.38),
+(672,1116,3.38),
+(672,1117,3.38),
+(672,1118,3.38),
+(672,1200,9.02),
+(672,1201,9.02),
+(672,1202,9.02),
+(672,1203,9.02),
+(672,1612,5.52),
+(672,1613,5.52),
+(672,2039,0.25),
+(672,2040,0.25),
+(673,287,5.48),
+(673,333,5.48),
+(673,608,0.83),
+(673,609,0.83),
+(673,610,0.83),
+(673,611,0.83),
+(673,693,1.13),
+(673,694,1.13),
+(673,695,1.13),
+(673,696,1.13),
+(673,863,1.08),
+(673,864,1.08),
+(673,865,1.08),
+(673,866,1.08),
+(673,948,1.84),
+(673,949,1.84),
+(673,950,1.84),
+(673,951,1.84),
+(673,1033,2.34),
+(673,1034,2.34),
+(673,1035,2.34),
+(673,1036,2.34),
+(673,1118,3.72),
+(673,1119,3.72),
+(673,1120,3.72),
+(673,1121,3.72),
+(673,1203,8.07),
+(673,1204,8.07),
+(673,1205,8.07),
+(673,1206,8.07),
+(673,1614,6.32),
+(673,1615,6.32),
+(673,2041,0.18),
+(673,2042,0.18),
+(674,333,2.76),
+(674,334,2.76),
+(674,384,2.63),
+(674,385,2.63),
+(674,443,2.38),
+(674,444,2.38),
+(674,445,2.38),
+(674,446,2.38),
+(674,526,4.33),
+(674,527,4.33),
+(674,528,4.33),
+(674,529,4.33),
+(674,611,2.09),
+(674,612,2.09),
+(674,613,2.09),
+(674,614,2.09),
+(674,696,1.03),
+(674,697,1.03),
+(674,698,1.03),
+(674,699,1.03),
+(674,781,2.67),
+(674,782,2.67),
+(674,783,2.67),
+(674,784,2.67),
+(674,866,1.95),
+(674,867,1.95),
+(674,868,1.95),
+(674,869,1.95),
+(674,1036,3.32),
+(674,1037,3.32),
+(674,1038,3.32),
+(674,1039,3.32),
+(674,1206,1.02),
+(674,1207,1.02),
+(674,1208,1.02),
+(674,1209,1.02),
+(674,1615,4.19),
+(674,1620,4.19),
+(674,1814,0.76),
+(674,1815,0.76),
+(674,1875,0.1),
+(674,2004,1.45),
+(674,2005,1.45),
+(674,2042,0.6),
+(674,2043,0.6),
+(675,335,2.8),
+(675,336,2.8),
+(675,386,2.98),
+(675,387,2.98),
+(675,446,2.03),
+(675,447,2.03),
+(675,448,2.03),
+(675,449,2.03),
+(675,529,3.6),
+(675,530,3.6),
+(675,531,3.6),
+(675,532,3.6),
+(675,614,1.55),
+(675,615,1.55),
+(675,616,1.55),
+(675,617,1.55),
+(675,699,0.96),
+(675,700,0.96),
+(675,701,0.96),
+(675,702,0.96),
+(675,784,2.92),
+(675,785,2.92),
+(675,786,2.92),
+(675,787,2.92),
+(675,869,2.11),
+(675,870,2.11),
+(675,871,2.11),
+(675,872,2.11),
+(675,1039,3.49),
+(675,1040,3.49),
+(675,1041,3.49),
+(675,1042,3.49),
+(675,1209,1.43),
+(675,1210,1.43),
+(675,1211,1.43),
+(675,1212,1.43),
+(675,1621,4.7),
+(675,1622,4.7),
+(675,1816,0.95),
+(675,1817,0.95),
+(675,2006,1.65),
+(675,2007,1.65),
+(675,2044,0.78),
+(675,2045,0.78),
+(676,336,2.97),
+(676,337,2.97),
+(676,387,2.93),
+(676,388,2.93),
+(676,449,1.97),
+(676,450,1.97),
+(676,451,1.97),
+(676,452,1.97),
+(676,532,3.72),
+(676,533,3.72),
+(676,534,3.72),
+(676,535,3.72),
+(676,617,1.45),
+(676,618,1.45),
+(676,619,1.45),
+(676,620,1.45),
+(676,702,0.95),
+(676,703,0.95),
+(676,704,0.95),
+(676,705,0.95),
+(676,787,3.18),
+(676,788,3.18),
+(676,789,3.18),
+(676,790,3.18),
+(676,872,2.23),
+(676,873,2.23),
+(676,874,2.23),
+(676,875,2.23),
+(676,1042,3.31),
+(676,1043,3.31),
+(676,1044,3.31),
+(676,1045,3.31),
+(676,1212,1.46),
+(676,1213,1.46),
+(676,1214,1.46),
+(676,1215,1.46),
+(676,1616,4.82),
+(676,1622,4.82),
+(676,1817,0.73),
+(676,1818,0.73),
+(676,2007,1.47),
+(676,2008,1.47),
+(676,2045,0.65),
+(676,2046,0.65),
+(677,338,2.93),
+(677,339,2.93),
+(677,389,2.7),
+(677,390,2.7),
+(677,452,1.86),
+(677,453,1.86),
+(677,454,1.86),
+(677,455,1.86),
+(677,535,3.84),
+(677,536,3.84),
+(677,537,3.84),
+(677,538,3.84),
+(677,620,1.56),
+(677,621,1.56),
+(677,622,1.56),
+(677,623,1.56),
+(677,705,0.94),
+(677,706,0.94),
+(677,707,0.94),
+(677,708,0.94),
+(677,790,3.02),
+(677,791,3.02),
+(677,792,3.02),
+(677,793,3.02),
+(677,875,2.41),
+(677,876,2.41),
+(677,877,2.41),
+(677,878,2.41),
+(677,1045,3.63),
+(677,1046,3.63),
+(677,1047,3.63),
+(677,1048,3.63),
+(677,1215,1.43),
+(677,1216,1.43),
+(677,1217,1.43),
+(677,1218,1.43),
+(677,1617,4.23),
+(677,1623,4.23),
+(677,1819,0.8),
+(677,1820,0.8),
+(677,2009,1.33),
+(677,2010,1.33),
+(677,2047,0.72),
+(677,2048,0.72),
+(678,339,2.63),
+(678,340,2.63),
+(678,390,2.82),
+(678,391,2.82),
+(678,455,1.64),
+(678,456,1.64),
+(678,457,1.64),
+(678,458,1.64),
+(678,538,3.26),
+(678,539,3.26),
+(678,540,3.26),
+(678,541,3.26),
+(678,623,1.35),
+(678,624,1.35),
+(678,625,1.35),
+(678,626,1.35),
+(678,708,0.74),
+(678,709,0.74),
+(678,710,0.74),
+(678,711,0.74),
+(678,793,3.24),
+(678,794,3.24),
+(678,795,3.24),
+(678,796,3.24),
+(678,878,2.04),
+(678,879,2.04),
+(678,880,2.04),
+(678,881,2.04),
+(678,1048,3.46),
+(678,1049,3.46),
+(678,1050,3.46),
+(678,1051,3.46),
+(678,1218,1.27),
+(678,1219,1.27),
+(678,1220,1.27),
+(678,1221,1.27),
+(678,1328,0.25),
+(678,1329,0.25),
+(678,1374,0.2),
+(678,1375,0.2),
+(678,1420,0.35),
+(678,1421,0.35),
+(678,1466,0.25),
+(678,1467,0.25),
+(678,1512,0.23),
+(678,1513,0.23),
+(678,1617,5.47),
+(678,1624,5.47),
+(678,1820,1.07),
+(678,1821,1.07),
+(678,2010,1.95),
+(678,2011,1.95),
+(678,2048,0.78),
+(678,2049,0.78),
+(679,341,2.4),
+(679,342,2.4),
+(679,392,2.9),
+(679,393,2.9),
+(679,458,2.05),
+(679,459,2.05),
+(679,460,2.05),
+(679,461,2.05),
+(679,541,3.56),
+(679,542,3.56),
+(679,543,3.56),
+(679,544,3.56),
+(679,626,1.63),
+(679,627,1.63),
+(679,628,1.63),
+(679,629,1.63),
+(679,711,0.98),
+(679,712,0.98),
+(679,713,0.98),
+(679,714,0.98),
+(679,796,2.88),
+(679,797,2.88),
+(679,798,2.88),
+(679,799,2.88),
+(679,881,2.38),
+(679,882,2.38),
+(679,883,2.38),
+(679,884,2.38),
+(679,1051,2.83),
+(679,1052,2.83),
+(679,1053,2.83),
+(679,1054,2.83),
+(679,1142,0.1),
+(679,1221,1.25),
+(679,1222,1.25),
+(679,1223,1.25),
+(679,1224,1.25),
+(679,1330,0.18),
+(679,1331,0.18),
+(679,1376,0.25),
+(679,1377,0.25),
+(679,1422,0.33),
+(679,1423,0.33),
+(679,1468,0.33),
+(679,1469,0.33),
+(679,1514,0.28),
+(679,1515,0.28),
+(679,1618,4.82),
+(679,1625,4.82),
+(679,1822,0.85),
+(679,1823,0.85),
+(679,2012,1.63),
+(679,2013,1.63),
+(679,2050,0.93),
+(679,2051,0.93),
+(680,342,3),
+(680,343,3),
+(680,393,1.75),
+(680,394,1.75),
+(680,395,1.1),
+(680,396,1.1),
+(680,461,2.23),
+(680,462,2.23),
+(680,463,2.23),
+(680,464,2.23),
+(680,544,3.41),
+(680,545,3.41),
+(680,546,3.41),
+(680,547,3.41),
+(680,629,2.01),
+(680,630,2.01),
+(680,631,2.01),
+(680,632,2.01),
+(680,714,0.97),
+(680,715,0.97),
+(680,716,0.97),
+(680,717,0.97),
+(680,799,2.8),
+(680,800,2.8),
+(680,801,2.8),
+(680,802,2.8),
+(680,884,2.28),
+(680,885,2.28),
+(680,886,2.28),
+(680,887,2.28),
+(680,1054,2.91),
+(680,1055,2.91),
+(680,1056,2.91),
+(680,1057,2.91),
+(680,1224,1.54),
+(680,1225,1.54),
+(680,1226,1.54),
+(680,1227,1.54),
+(680,1331,0.23),
+(680,1332,0.23),
+(680,1377,0.3),
+(680,1378,0.3),
+(680,1423,0.45),
+(680,1424,0.45),
+(680,1469,0.3),
+(680,1470,0.3),
+(680,1515,0.28),
+(680,1516,0.28),
+(680,1618,4.58),
+(680,1626,4.58),
+(680,1823,0.65),
+(680,1824,0.65),
+(680,2013,1.25),
+(680,2014,1.25),
+(680,2051,0.63),
+(680,2052,0.63),
+(681,344,2.43),
+(681,345,2.43),
+(681,395,2.38),
+(681,396,2.38),
+(681,464,2.56),
+(681,465,2.56),
+(681,466,2.56),
+(681,467,2.56),
+(681,547,3.67),
+(681,548,3.67),
+(681,549,3.67),
+(681,550,3.67),
+(681,632,2.81),
+(681,633,2.81),
+(681,634,2.81),
+(681,635,2.81),
+(681,717,1.19),
+(681,718,1.19),
+(681,719,1.19),
+(681,720,1.19),
+(681,802,2.23),
+(681,803,2.23),
+(681,804,2.23),
+(681,805,2.23),
+(681,887,2.44),
+(681,888,2.44),
+(681,889,2.44),
+(681,890,2.44),
+(681,1057,2.27),
+(681,1058,2.27),
+(681,1059,2.27),
+(681,1060,2.27),
+(681,1146,0.1),
+(681,1227,1.33),
+(681,1228,1.33),
+(681,1229,1.33),
+(681,1230,1.33),
+(681,1333,0.15),
+(681,1334,0.15),
+(681,1379,0.2),
+(681,1380,0.1),
+(681,1425,0.38),
+(681,1426,0.38),
+(681,1471,0.2),
+(681,1472,0.1),
+(681,1517,0.42),
+(681,1518,0.42),
+(681,1627,4.55),
+(681,1628,4.55),
+(681,1825,0.53),
+(681,1826,0.53),
+(681,1902,0.1),
+(681,1979,0.1),
+(681,2015,1.1),
+(681,2016,1.1),
+(681,2053,0.87),
+(681,2054,0.87),
+(682,346,3.7),
+(682,396,2.7),
+(682,397,2.7),
+(682,467,3.03),
+(682,468,3.03),
+(682,469,3.03),
+(682,470,3.03),
+(682,552,6.7),
+(682,553,6.7),
+(682,635,1.2),
+(682,636,1.2),
+(682,637,1.2),
+(682,638,1.2),
+(682,720,3.65),
+(682,721,3.65),
+(682,722,3.65),
+(682,723,3.65),
+(682,806,3.65),
+(682,808,3.65),
+(682,890,2.9),
+(682,891,2.9),
+(682,892,2.9),
+(682,893,2.9),
+(682,1060,2.42),
+(682,1061,2.42),
+(682,1062,2.42),
+(682,1063,2.42),
+(682,1230,2.28),
+(682,1231,2.28),
+(682,1232,2.28),
+(682,1233,2.28),
+(682,1381,0.6),
+(682,1473,0.6),
+(682,1628,1.8),
+(682,1629,1.8),
+(682,1826,0.6),
+(682,2016,0.6),
+(682,2017,0.6),
+(682,2054,1.2),
+(695,333,4.75),
+(695,334,4.75),
+(695,611,0.97),
+(695,612,0.97),
+(695,613,0.97),
+(695,614,0.97),
+(695,696,1.56),
+(695,697,1.56),
+(695,698,1.56),
+(695,699,1.56),
+(695,866,0.86),
+(695,867,0.86),
+(695,868,0.86),
+(695,869,0.86),
+(695,951,1.74),
+(695,952,1.74),
+(695,953,1.74),
+(695,954,1.74),
+(695,1036,2.04),
+(695,1037,2.04),
+(695,1038,2.04),
+(695,1039,2.04),
+(695,1121,3.22),
+(695,1122,3.22),
+(695,1123,3.22),
+(695,1124,3.22),
+(695,1206,9.36),
+(695,1207,9.36),
+(695,1208,9.36),
+(695,1209,9.36),
+(695,1615,5.38),
+(695,1620,5.38),
+(695,2042,0.38),
+(695,2043,0.38),
+(696,335,5.25),
+(696,336,5.25),
+(696,614,0.98),
+(696,615,0.98),
+(696,616,0.98),
+(696,617,0.98),
+(696,699,1.39),
+(696,700,1.39),
+(696,701,1.39),
+(696,702,1.39),
+(696,869,0.95),
+(696,870,0.95),
+(696,871,0.95),
+(696,872,0.95),
+(696,954,1.85),
+(696,955,1.85),
+(696,956,1.85),
+(696,957,1.85),
+(696,1039,2.02),
+(696,1040,2.02),
+(696,1041,2.02),
+(696,1042,2.02),
+(696,1124,3.35),
+(696,1125,3.35),
+(696,1126,3.35),
+(696,1127,3.35),
+(696,1209,8.63),
+(696,1210,8.63),
+(696,1211,8.63),
+(696,1212,8.63),
+(696,1621,6.07),
+(696,1622,6.07),
+(696,2044,0.33),
+(696,2045,0.33),
+(697,336,5.25),
+(697,337,5.25),
+(697,617,0.97),
+(697,618,0.97),
+(697,619,0.97),
+(697,620,0.97),
+(697,702,1.38),
+(697,703,1.38),
+(697,704,1.38),
+(697,705,1.38),
+(697,872,0.92),
+(697,873,0.92),
+(697,874,0.92),
+(697,875,0.92),
+(697,957,1.76),
+(697,958,1.76),
+(697,959,1.76),
+(697,960,1.76),
+(697,1042,1.97),
+(697,1043,1.97),
+(697,1044,1.97),
+(697,1045,1.97),
+(697,1127,3.46),
+(697,1128,3.46),
+(697,1129,3.46),
+(697,1130,3.46),
+(697,1212,8.75),
+(697,1213,8.75),
+(697,1214,8.75),
+(697,1215,8.75),
+(697,1616,6),
+(697,1622,6),
+(697,2045,0.25),
+(697,2046,0.25),
+(698,338,5.02),
+(698,339,5.02),
+(698,620,0.93),
+(698,621,0.93),
+(698,622,0.93),
+(698,623,0.93),
+(698,705,1.1),
+(698,706,1.1),
+(698,707,1.1),
+(698,708,1.1),
+(698,875,0.9),
+(698,876,0.9),
+(698,877,0.9),
+(698,878,0.9),
+(698,960,1.81),
+(698,961,1.81),
+(698,962,1.81),
+(698,963,1.81),
+(698,1045,2.26),
+(698,1046,2.26),
+(698,1047,2.26),
+(698,1048,2.26),
+(698,1130,3.61),
+(698,1131,3.61),
+(698,1132,3.61),
+(698,1133,3.61),
+(698,1215,8.57),
+(698,1216,8.57),
+(698,1217,8.57),
+(698,1218,8.57),
+(698,1617,6.38),
+(698,1623,6.38),
+(698,2047,0.23),
+(698,2048,0.23),
+(699,339,4.43),
+(699,340,4.43),
+(699,623,0.93),
+(699,624,0.93),
+(699,625,0.93),
+(699,626,0.93),
+(699,708,1.11),
+(699,709,1.11),
+(699,710,1.11),
+(699,711,1.11),
+(699,878,0.85),
+(699,879,0.85),
+(699,880,0.85),
+(699,881,0.85),
+(699,963,1.65),
+(699,964,1.65),
+(699,965,1.65),
+(699,966,1.65),
+(699,1048,1.91),
+(699,1049,1.91),
+(699,1050,1.91),
+(699,1051,1.91),
+(699,1133,3.15),
+(699,1134,3.15),
+(699,1135,3.15),
+(699,1136,3.15),
+(699,1218,7.36),
+(699,1219,7.36),
+(699,1220,7.36),
+(699,1221,7.36),
+(699,1328,0.18),
+(699,1329,0.18),
+(699,1374,0.33),
+(699,1375,0.33),
+(699,1420,0.33),
+(699,1421,0.33),
+(699,1466,0.3),
+(699,1467,0.3),
+(699,1512,0.3),
+(699,1513,0.3),
+(699,1617,9.83),
+(699,1624,9.83),
+(699,2048,0.42),
+(699,2049,0.42),
+(700,341,4.8),
+(700,342,4.8),
+(700,626,0.82),
+(700,627,0.82),
+(700,628,0.82),
+(700,629,0.82),
+(700,711,1.23),
+(700,712,1.23),
+(700,713,1.23),
+(700,714,1.23),
+(700,881,0.87),
+(700,882,0.87),
+(700,883,0.87),
+(700,884,0.87),
+(700,966,1.64),
+(700,967,1.64),
+(700,968,1.64),
+(700,969,1.64),
+(700,1051,1.78),
+(700,1052,1.78),
+(700,1053,1.78),
+(700,1054,1.78),
+(700,1136,3.18),
+(700,1137,3.18),
+(700,1138,3.18),
+(700,1139,3.18),
+(700,1221,8.38),
+(700,1222,8.38),
+(700,1223,8.38),
+(700,1224,8.38),
+(700,1330,0.08),
+(700,1331,0.08),
+(700,1376,0.18),
+(700,1377,0.18),
+(700,1422,0.17),
+(700,1423,0.17),
+(700,1468,0.17),
+(700,1469,0.17),
+(700,1514,0.12),
+(700,1515,0.12),
+(700,1618,8.33),
+(700,1625,8.33),
+(700,2050,0.42),
+(700,2051,0.42),
+(701,342,4.37),
+(701,343,4.37),
+(701,629,0.91),
+(701,630,0.91),
+(701,631,0.91),
+(701,632,0.91),
+(701,714,1.23),
+(701,715,1.23),
+(701,716,1.23),
+(701,717,1.23),
+(701,802,0.1),
+(701,884,0.95),
+(701,885,0.95),
+(701,886,0.95),
+(701,887,0.95),
+(701,969,1.68),
+(701,970,1.68),
+(701,971,1.68),
+(701,972,1.68),
+(701,1054,1.59),
+(701,1055,1.59),
+(701,1056,1.59),
+(701,1057,1.59),
+(701,1139,3.01),
+(701,1140,3.01),
+(701,1141,3.01),
+(701,1142,3.01),
+(701,1224,8.77),
+(701,1225,8.77),
+(701,1226,8.77),
+(701,1227,8.77),
+(701,1331,0.1),
+(701,1332,0.1),
+(701,1377,0.15),
+(701,1378,0.17),
+(701,1423,0.2),
+(701,1424,0.2),
+(701,1469,0.2),
+(701,1470,0.25),
+(701,1515,0.28),
+(701,1516,0.22),
+(701,1618,8.1),
+(701,1626,8.1),
+(701,2051,0.48),
+(701,2052,0.48),
+(702,320,0.1),
+(702,344,3.67),
+(702,345,3.67),
+(702,632,0.82),
+(702,633,0.82),
+(702,634,0.82),
+(702,635,0.82),
+(702,717,1.43),
+(702,718,1.43),
+(702,719,1.43),
+(702,720,1.43),
+(702,887,1.19),
+(702,888,1.19),
+(702,889,1.19),
+(702,890,1.19),
+(702,972,1.8),
+(702,973,1.8),
+(702,974,1.8),
+(702,975,1.8),
+(702,1057,1.39),
+(702,1058,1.39),
+(702,1059,1.39),
+(702,1060,1.39),
+(702,1142,2.52),
+(702,1143,2.52),
+(702,1144,2.52),
+(702,1145,2.52),
+(702,1227,9.65),
+(702,1228,9.65),
+(702,1229,9.65),
+(702,1230,9.65),
+(702,1333,0.05),
+(702,1334,0.05),
+(702,1379,0.08),
+(702,1380,0.08),
+(702,1425,0.15),
+(702,1426,0.15),
+(702,1471,0.1),
+(702,1472,0.1),
+(702,1517,0.05),
+(702,1518,0.05),
+(702,1627,7.65),
+(702,1628,7.65),
+(702,2053,0.52),
+(702,2054,0.52),
+(702,2055,0.33),
+(703,345,2.7),
+(703,346,2.7),
+(703,635,0.77),
+(703,636,0.77),
+(703,637,0.77),
+(703,638,0.77),
+(703,721,2.85),
+(703,723,2.85),
+(703,891,3.15),
+(703,893,3.15),
+(703,975,1.95),
+(703,976,1.95),
+(703,977,1.95),
+(703,978,1.95),
+(703,1060,1.8),
+(703,1061,1.8),
+(703,1062,1.8),
+(703,1063,1.8),
+(703,1145,2.17),
+(703,1146,2.17),
+(703,1147,2.17),
+(703,1148,2.17),
+(703,1230,8.55),
+(703,1231,8.55),
+(703,1232,8.55),
+(703,1233,8.55),
+(703,1380,0.3),
+(703,1628,10.05),
+(703,1629,10.05),
+(703,2054,0.6),
+(703,2055,0.6),
+(708,28,5.05),
+(708,95,5.05),
+(708,232,0.9),
+(708,233,0.9),
+(708,234,0.9),
+(708,238,0.9),
+(708,587,1.13),
+(708,588,1.13),
+(708,589,1.13),
+(708,590,1.13),
+(708,757,6.02),
+(708,758,6.02),
+(708,759,6.02),
+(708,760,6.02),
+(708,842,6.17),
+(708,843,6.17),
+(708,844,6.17),
+(708,845,6.17),
+(708,1012,4.38),
+(708,1013,4.38),
+(708,1014,4.38),
+(708,1015,4.38),
+(708,1307,0.1),
+(708,1704,0.1),
+(708,1799,0.1),
+(708,1837,0.1),
+(708,1877,3.4),
+(708,1878,3.4),
+(708,2029,4.3),
+(708,2030,4.3),
+(709,95,5.45),
+(709,113,5.45),
+(709,232,1.04),
+(709,233,1.04),
+(709,234,1.04),
+(709,238,1.04),
+(709,587,1.39),
+(709,588,1.39),
+(709,589,1.39),
+(709,590,1.39),
+(709,757,5.71),
+(709,758,5.71),
+(709,759,5.71),
+(709,760,5.71),
+(709,842,5.93),
+(709,843,5.93),
+(709,844,5.93),
+(709,845,5.93),
+(709,1012,4.71),
+(709,1013,4.71),
+(709,1014,4.71),
+(709,1015,4.71),
+(709,1878,3.07),
+(709,1879,3.07),
+(709,2030,3.9),
+(709,2031,3.9),
+(710,113,6.13),
+(710,134,6.13),
+(710,234,1.06),
+(710,235,1.06),
+(710,236,1.06),
+(710,248,1.06),
+(710,590,1.26),
+(710,591,1.26),
+(710,592,1.26),
+(710,593,1.26),
+(710,760,5.83),
+(710,761,5.83),
+(710,762,5.83),
+(710,763,5.83),
+(710,845,4.83),
+(710,846,4.83),
+(710,847,4.83),
+(710,848,4.83),
+(710,1015,5.1),
+(710,1016,5.1),
+(710,1017,5.1),
+(710,1018,5.1),
+(710,1445,0.1),
+(710,1879,3.5),
+(710,1880,3.5),
+(710,2031,4.23),
+(710,2032,4.23),
+(711,134,6.53),
+(711,153,6.53),
+(711,237,1.01),
+(711,247,1.01),
+(711,248,1.01),
+(711,249,1.01),
+(711,593,1.36),
+(711,594,1.36),
+(711,595,1.36),
+(711,596,1.36),
+(711,763,5.71),
+(711,764,5.71),
+(711,765,5.71),
+(711,766,5.71),
+(711,848,4.76),
+(711,849,4.76),
+(711,850,4.76),
+(711,851,4.76),
+(711,1018,5.04),
+(711,1019,5.04),
+(711,1020,5.04),
+(711,1021,5.04),
+(711,1880,3.4),
+(711,1881,3.4),
+(711,2032,4.28),
+(711,2033,4.28),
+(712,179,12.3),
+(712,247,1.07),
+(712,250,1.07),
+(712,251,1.07),
+(712,252,1.07),
+(712,596,1.36),
+(712,597,1.36),
+(712,598,1.36),
+(712,599,1.36),
+(712,766,5.98),
+(712,767,5.98),
+(712,768,5.98),
+(712,769,5.98),
+(712,851,4.57),
+(712,852,4.57),
+(712,853,4.57),
+(712,854,4.57),
+(712,1021,5.24),
+(712,1022,5.24),
+(712,1023,5.24),
+(712,1024,5.24),
+(712,1799,0.1),
+(712,1882,6.63),
+(712,2034,8.2),
+(713,180,12.8),
+(713,247,1.09),
+(713,250,1.09),
+(713,251,1.09),
+(713,252,1.09),
+(713,596,1.37),
+(713,597,1.37),
+(713,598,1.37),
+(713,599,1.37),
+(713,766,5.96),
+(713,767,5.96),
+(713,768,5.96),
+(713,769,5.96),
+(713,851,4.75),
+(713,852,4.75),
+(713,853,4.75),
+(713,854,4.75),
+(713,1021,5.35),
+(713,1022,5.35),
+(713,1023,5.35),
+(713,1024,5.35),
+(713,1307,0.1),
+(713,1883,5.77),
+(713,2035,7.43),
+(714,181,6.35),
+(714,182,6.35),
+(714,251,1.1),
+(714,253,1.1),
+(714,254,1.1),
+(714,255,1.1),
+(714,599,1.23),
+(714,600,1.23),
+(714,601,1.23),
+(714,602,1.23),
+(714,769,6.06),
+(714,770,6.06),
+(714,771,6.06),
+(714,772,6.06),
+(714,854,4.94),
+(714,855,4.94),
+(714,856,4.94),
+(714,857,4.94),
+(714,1024,5.11),
+(714,1025,5.11),
+(714,1026,5.11),
+(714,1027,5.11),
+(714,1884,2.88),
+(714,1885,2.88),
+(714,1922,0.1),
+(714,2036,3.88),
+(714,2037,3.88),
+(715,182,5.97),
+(715,183,5.97),
+(715,254,1.17),
+(715,435,1.17),
+(715,436,1.17),
+(715,437,1.17),
+(715,602,1.34),
+(715,603,1.34),
+(715,604,1.34),
+(715,605,1.34),
+(715,772,6.39),
+(715,773,6.39),
+(715,774,6.39),
+(715,775,6.39),
+(715,857,4.15),
+(715,858,4.15),
+(715,859,4.15),
+(715,860,4.15),
+(715,1027,5.47),
+(715,1028,5.47),
+(715,1029,5.47),
+(715,1030,5.47),
+(715,1885,3.13),
+(715,1886,3.13),
+(715,2037,3.82),
+(715,2038,3.82),
+(716,5,0.1),
+(716,183,5.23),
+(716,215,5.23),
+(716,437,0.99),
+(716,438,0.99),
+(716,439,0.99),
+(716,440,0.99),
+(716,605,1.08),
+(716,606,1.08),
+(716,607,1.08),
+(716,608,1.08),
+(716,775,6.86),
+(716,776,6.86),
+(716,777,6.86),
+(716,778,6.86),
+(716,860,4.78),
+(716,861,4.78),
+(716,862,4.78),
+(716,863,4.78),
+(716,1030,5.03),
+(716,1031,5.03),
+(716,1032,5.03),
+(716,1033,5.03),
+(716,1886,3.49),
+(716,1887,3.49),
+(716,1924,0.1),
+(716,1925,0.1),
+(716,2038,3.8),
+(716,2039,3.8),
+(717,215,5.13),
+(717,216,5.13),
+(717,437,1.11),
+(717,438,1.11),
+(717,439,1.11),
+(717,440,1.11),
+(717,605,1.14),
+(717,606,1.14),
+(717,607,1.14),
+(717,608,1.14),
+(717,775,7.18),
+(717,776,7.18),
+(717,777,7.18),
+(717,778,7.18),
+(717,860,4.44),
+(717,861,4.44),
+(717,862,4.44),
+(717,863,4.44),
+(717,1030,5.12),
+(717,1031,5.12),
+(717,1032,5.12),
+(717,1033,5.12),
+(717,1887,3.4),
+(717,1888,3.4),
+(717,2039,3.47),
+(717,2040,3.47),
+(718,216,4.9),
+(718,409,4.9),
+(718,440,1.1),
+(718,441,1.1),
+(718,442,1.1),
+(718,443,1.1),
+(718,608,1.09),
+(718,609,1.09),
+(718,610,1.09),
+(718,611,1.09),
+(718,778,6.97),
+(718,779,6.97),
+(718,780,6.97),
+(718,781,6.97),
+(718,863,4.56),
+(718,864,4.56),
+(718,865,4.56),
+(718,866,4.56),
+(718,1033,5.11),
+(718,1034,5.11),
+(718,1035,5.11),
+(718,1036,5.11),
+(718,1888,3.7),
+(718,1889,3.7),
+(718,2040,3.75),
+(718,2041,3.75),
+(719,409,3.76),
+(719,410,3.76),
+(719,443,0.92),
+(719,444,0.92),
+(719,445,0.92),
+(719,446,0.92),
+(719,611,0.98),
+(719,612,0.98),
+(719,613,0.98),
+(719,614,0.98),
+(719,781,7.44),
+(719,782,7.44),
+(719,783,7.44),
+(719,784,7.44),
+(719,866,5.63),
+(719,867,5.63),
+(719,868,5.63),
+(719,869,5.63),
+(719,1036,4.52),
+(719,1037,4.52),
+(719,1038,4.52),
+(719,1039,4.52),
+(719,1889,3.81),
+(719,1890,3.81),
+(719,2041,3.46),
+(719,2042,3.46),
+(720,411,6.9),
+(720,446,0.8),
+(720,447,0.8),
+(720,448,0.8),
+(720,449,0.8),
+(720,614,0.73),
+(720,615,0.73),
+(720,616,0.73),
+(720,617,0.73),
+(720,784,6.43),
+(720,785,6.43),
+(720,786,6.43),
+(720,787,6.43),
+(720,869,5.88),
+(720,870,5.88),
+(720,871,5.88),
+(720,872,5.88),
+(720,1039,3.53),
+(720,1040,3.53),
+(720,1041,3.53),
+(720,1042,3.53),
+(720,1323,0.2),
+(720,1369,0.3),
+(720,1415,0.6),
+(720,1461,0.3),
+(720,1507,0.2),
+(720,1891,10.9),
+(720,2043,11),
+(721,412,6.35),
+(721,446,0.56),
+(721,447,0.56),
+(721,448,0.56),
+(721,449,0.56),
+(721,450,0.6),
+(721,534,0.1),
+(721,614,0.71),
+(721,615,0.71),
+(721,616,0.71),
+(721,617,0.71),
+(721,784,6.15),
+(721,785,6.15),
+(721,786,6.15),
+(721,787,6.15),
+(721,869,5.74),
+(721,870,5.74),
+(721,871,5.74),
+(721,872,5.74),
+(721,1039,3.82),
+(721,1040,3.82),
+(721,1041,3.82),
+(721,1042,3.82),
+(721,1324,0.25),
+(721,1370,0.35),
+(721,1416,0.35),
+(721,1462,0.35),
+(721,1508,0.25),
+(721,1892,11.3),
+(721,1931,0.1),
+(721,2044,12.5),
+(721,2122,0.03),
+(721,2123,0.03),
+(721,2124,0.03),
+(721,2125,0.03),
+(722,362,0.1),
+(722,413,2.75),
+(722,414,2.75),
+(722,415,1.9),
+(722,449,0.81),
+(722,450,0.81),
+(722,451,0.81),
+(722,452,0.81),
+(722,617,0.69),
+(722,618,0.69),
+(722,619,0.69),
+(722,620,0.69),
+(722,787,6.52),
+(722,788,6.52),
+(722,789,6.52),
+(722,790,6.52),
+(722,872,6.06),
+(722,873,6.06),
+(722,874,6.06),
+(722,875,6.06),
+(722,1042,3.44),
+(722,1043,3.44),
+(722,1044,3.44),
+(722,1045,3.44),
+(722,1217,0.1),
+(722,1325,0.2),
+(722,1326,0.2),
+(722,1371,0.2),
+(722,1372,0.2),
+(722,1417,0.24),
+(722,1418,0.24),
+(722,1419,0.23),
+(722,1463,0.18),
+(722,1464,0.13),
+(722,1509,0.16),
+(722,1510,0.15),
+(722,1893,5.51),
+(722,1894,5.51),
+(722,1932,0.1),
+(722,1933,0.1),
+(722,1971,0.1),
+(722,2045,5.67),
+(722,2046,5.67),
+(723,340,0.4),
+(723,389,0.1),
+(723,414,2.48),
+(723,415,2.48),
+(723,452,0.66),
+(723,453,0.57),
+(723,454,0.66),
+(723,455,0.66),
+(723,538,0.1),
+(723,620,0.48),
+(723,621,0.48),
+(723,622,0.48),
+(723,623,0.48),
+(723,624,0.32),
+(723,705,0.1),
+(723,790,7),
+(723,791,7),
+(723,792,7),
+(723,793,7),
+(723,875,6),
+(723,876,6),
+(723,877,6),
+(723,878,6),
+(723,879,5.1),
+(723,961,0.1),
+(723,1045,2.69),
+(723,1046,2.69),
+(723,1047,2.69),
+(723,1048,2.69),
+(723,1130,0.2),
+(723,1131,0.13),
+(723,1132,0.15),
+(723,1133,0.13),
+(723,1215,0.03),
+(723,1216,0.03),
+(723,1217,0.03),
+(723,1218,0.06),
+(723,1219,0.4),
+(723,1326,0.1),
+(723,1327,0.1),
+(723,1372,0.2),
+(723,1373,0.2),
+(723,1418,0.28),
+(723,1419,0.23),
+(723,1464,0.12),
+(723,1465,0.12),
+(723,1466,0.03),
+(723,1510,0.14),
+(723,1511,0.14),
+(723,1512,0.13),
+(723,1561,0.1),
+(723,1894,5.87),
+(723,1895,5.87),
+(723,1972,0.1),
+(723,2046,5.74),
+(723,2047,5.74),
+(723,2048,4.33),
+(723,2149,0.1),
+(723,2153,0.1),
+(723,2154,0.1),
+(723,2162,0.1),
+(729,5,0.1),
+(729,28,3.47),
+(729,74,2.78),
+(729,89,2.78),
+(729,95,3.47),
+(729,232,1.96),
+(729,233,1.96),
+(729,234,1.96),
+(729,238,1.96),
+(729,502,1.06),
+(729,503,1.06),
+(729,504,1.06),
+(729,505,1.06),
+(729,587,4.67),
+(729,588,4.67),
+(729,589,4.67),
+(729,590,4.67),
+(729,672,0.68),
+(729,673,0.68),
+(729,674,0.68),
+(729,675,0.68),
+(729,757,4.05),
+(729,758,4.05),
+(729,759,4.05),
+(729,760,4.05),
+(729,842,3.43),
+(729,843,3.43),
+(729,844,3.43),
+(729,845,3.43),
+(729,927,0.88),
+(729,928,0.88),
+(729,929,0.88),
+(729,930,0.88),
+(729,1012,2.43),
+(729,1013,2.43),
+(729,1014,2.43),
+(729,1015,2.43),
+(729,1182,1.56),
+(729,1183,1.56),
+(729,1184,1.56),
+(729,1185,1.56),
+(729,1704,0.1),
+(729,1799,0.7),
+(729,1800,0.7),
+(729,1801,0.98),
+(729,1802,0.98),
+(729,1879,0.1),
+(729,2029,1.02),
+(729,2030,1.02),
+(730,89,3.15),
+(730,95,4.05),
+(730,108,3.15),
+(730,113,4.05),
+(730,232,2.03),
+(730,233,2.03),
+(730,234,2.03),
+(730,238,2.03),
+(730,502,1.08),
+(730,503,1.08),
+(730,504,1.08),
+(730,505,1.08),
+(730,587,4.38),
+(730,588,4.38),
+(730,589,4.38),
+(730,590,4.38),
+(730,672,0.65),
+(730,673,0.65),
+(730,674,0.65),
+(730,675,0.65),
+(730,757,4),
+(730,758,4),
+(730,759,4),
+(730,760,4),
+(730,842,3.17),
+(730,843,3.17),
+(730,844,3.17),
+(730,845,3.17),
+(730,927,0.9),
+(730,928,0.9),
+(730,929,0.9),
+(730,930,0.9),
+(730,1012,2.63),
+(730,1013,2.63),
+(730,1014,2.63),
+(730,1015,2.63),
+(730,1182,1.52),
+(730,1183,1.52),
+(730,1184,1.52),
+(730,1185,1.52),
+(730,1307,0.1),
+(730,1802,1.2),
+(730,1803,1.2),
+(730,2030,0.85),
+(730,2031,0.85),
+(731,108,3.4),
+(731,113,4.38),
+(731,128,3.4),
+(731,134,4.38),
+(731,234,2.02),
+(731,235,2.02),
+(731,236,2.02),
+(731,248,2.02),
+(731,505,1.1),
+(731,506,1.1),
+(731,507,1.1),
+(731,508,1.1),
+(731,590,3.24),
+(731,591,3.24),
+(731,592,3.24),
+(731,593,3.24),
+(731,675,0.71),
+(731,676,0.71),
+(731,677,0.71),
+(731,678,0.71),
+(731,760,4.25),
+(731,761,4.25),
+(731,762,4.25),
+(731,763,4.25),
+(731,845,3.41),
+(731,846,3.41),
+(731,847,3.41),
+(731,848,3.41),
+(731,930,0.95),
+(731,931,0.95),
+(731,932,0.95),
+(731,933,0.95),
+(731,1015,2.65),
+(731,1016,2.65),
+(731,1017,2.65),
+(731,1018,2.65),
+(731,1185,1.51),
+(731,1186,1.51),
+(731,1187,1.51),
+(731,1188,1.51),
+(731,1358,0.1),
+(731,1803,1.35),
+(731,1804,1.35),
+(731,2031,1.13),
+(731,2032,1.13),
+(732,128,6.4),
+(732,134,3.85),
+(732,153,3.85),
+(732,237,2.1),
+(732,247,2.1),
+(732,248,2.1),
+(732,249,2.1),
+(732,508,1.03),
+(732,509,1.03),
+(732,510,1.03),
+(732,511,1.03),
+(732,593,4.89),
+(732,594,4.89),
+(732,595,4.89),
+(732,596,4.89),
+(732,678,0.55),
+(732,679,0.55),
+(732,680,0.55),
+(732,681,0.55),
+(732,763,3.8),
+(732,764,3.8),
+(732,765,3.8),
+(732,766,3.8),
+(732,848,3.16),
+(732,849,3.16),
+(732,850,3.16),
+(732,851,3.16),
+(732,933,0.93),
+(732,934,0.93),
+(732,935,0.93),
+(732,936,0.93),
+(732,1018,2.63),
+(732,1019,2.63),
+(732,1020,2.63),
+(732,1021,2.63),
+(732,1188,1.49),
+(732,1189,1.49),
+(732,1190,1.49),
+(732,1191,1.49),
+(732,1804,1.15),
+(732,1805,1.15),
+(732,2032,0.83),
+(732,2033,0.83),
+(733,179,7.97),
+(733,247,1.91),
+(733,250,1.91),
+(733,251,1.91),
+(733,252,1.91),
+(733,511,1.13),
+(733,512,1.13),
+(733,513,1.13),
+(733,514,1.13),
+(733,596,4),
+(733,597,4),
+(733,598,4),
+(733,599,4),
+(733,681,0.57),
+(733,682,0.57),
+(733,683,0.57),
+(733,684,0.57),
+(733,766,3.99),
+(733,767,3.99),
+(733,768,3.99),
+(733,769,3.99),
+(733,851,3.35),
+(733,852,3.35),
+(733,853,3.35),
+(733,854,3.35),
+(733,936,0.99),
+(733,937,0.99),
+(733,938,0.99),
+(733,939,0.99),
+(733,1021,3.04),
+(733,1022,3.04),
+(733,1023,3.04),
+(733,1024,3.04),
+(733,1191,1.43),
+(733,1192,1.43),
+(733,1193,1.43),
+(733,1194,1.43),
+(733,1360,0.1),
+(733,1608,6.53),
+(733,1806,2.17),
+(733,2034,1.73),
+(734,180,7.9),
+(734,247,2.01),
+(734,250,2.01),
+(734,251,2.01),
+(734,252,2.01),
+(734,511,1.15),
+(734,512,1.15),
+(734,513,1.15),
+(734,514,1.15),
+(734,596,3.58),
+(734,597,3.58),
+(734,598,3.58),
+(734,599,3.58),
+(734,681,0.6),
+(734,682,0.6),
+(734,683,0.6),
+(734,684,0.6),
+(734,766,4.31),
+(734,767,4.31),
+(734,768,4.31),
+(734,769,4.31),
+(734,851,3.33),
+(734,852,3.33),
+(734,853,3.33),
+(734,854,3.33),
+(734,936,1.07),
+(734,937,1.07),
+(734,938,1.07),
+(734,939,1.07),
+(734,1021,2.99),
+(734,1022,2.99),
+(734,1023,2.99),
+(734,1024,2.99),
+(734,1191,1.51),
+(734,1192,1.51),
+(734,1193,1.51),
+(734,1194,1.51),
+(734,1609,6.3),
+(734,1807,2.07),
+(734,2035,1.63),
+(735,181,3.97),
+(735,182,3.97),
+(735,251,2.08),
+(735,253,2.08),
+(735,254,2.08),
+(735,255,2.08),
+(735,514,1.24),
+(735,515,1.24),
+(735,516,1.24),
+(735,517,1.24),
+(735,599,3.32),
+(735,600,3.32),
+(735,601,3.32),
+(735,602,3.32),
+(735,684,0.64),
+(735,685,0.64),
+(735,686,0.64),
+(735,687,0.64),
+(735,769,4.22),
+(735,770,4.22),
+(735,771,4.22),
+(735,772,4.22),
+(735,854,3.62),
+(735,855,3.62),
+(735,856,3.62),
+(735,857,3.62),
+(735,939,1.08),
+(735,940,1.08),
+(735,941,1.08),
+(735,942,1.08),
+(735,1024,2.77),
+(735,1025,2.77),
+(735,1026,2.77),
+(735,1027,2.77),
+(735,1194,1.55),
+(735,1195,1.55),
+(735,1196,1.55),
+(735,1197,1.55),
+(735,1610,3.23),
+(735,1611,3.23),
+(735,1808,0.97),
+(735,1809,0.97),
+(735,2036,0.85),
+(735,2037,0.85),
+(736,182,3.9),
+(736,183,3.9),
+(736,254,2.18),
+(736,435,2.18),
+(736,436,2.18),
+(736,437,2.18),
+(736,517,1.17),
+(736,518,1.17),
+(736,519,1.17),
+(736,520,1.17),
+(736,602,3.51),
+(736,603,3.51),
+(736,604,3.51),
+(736,605,3.51),
+(736,687,0.69),
+(736,688,0.69),
+(736,689,0.69),
+(736,690,0.69),
+(736,772,4.02),
+(736,773,4.02),
+(736,774,4.02),
+(736,775,4.02),
+(736,857,3.3),
+(736,858,3.3),
+(736,859,3.3),
+(736,860,3.3),
+(736,942,1.1),
+(736,943,1.1),
+(736,944,1.1),
+(736,945,1.1),
+(736,1027,2.87),
+(736,1028,2.87),
+(736,1029,2.87),
+(736,1030,2.87),
+(736,1197,1.73),
+(736,1198,1.73),
+(736,1199,1.73),
+(736,1200,1.73),
+(736,1607,3.15),
+(736,1611,3.15),
+(736,1809,1),
+(736,1810,1),
+(736,2037,0.82),
+(736,2038,0.82),
+(737,6,0.1),
+(737,183,4.1),
+(737,215,4.1),
+(737,437,1.07),
+(737,438,1.07),
+(737,439,1.07),
+(737,440,1.07),
+(737,520,1.05),
+(737,521,1.05),
+(737,522,1.05),
+(737,523,1.05),
+(737,605,4.34),
+(737,606,4.34),
+(737,607,4.34),
+(737,608,4.34),
+(737,690,0.81),
+(737,691,0.81),
+(737,692,0.81),
+(737,693,0.81),
+(737,775,3.91),
+(737,776,3.91),
+(737,777,3.91),
+(737,778,3.91),
+(737,860,3.51),
+(737,861,3.51),
+(737,862,3.51),
+(737,863,3.51),
+(737,945,1.18),
+(737,946,1.18),
+(737,947,1.18),
+(737,948,1.18),
+(737,1030,3.01),
+(737,1031,3.01),
+(737,1032,3.01),
+(737,1033,3.01),
+(737,1200,1.55),
+(737,1201,1.55),
+(737,1202,1.55),
+(737,1203,1.55),
+(737,1607,3.13),
+(737,1612,3.13),
+(737,1810,1.02),
+(737,1811,1.02),
+(737,2038,0.9),
+(737,2039,0.9),
+(738,215,3.27),
+(738,216,3.27),
+(738,437,1.25),
+(738,438,1.25),
+(738,439,1.25),
+(738,440,1.25),
+(738,520,0.99),
+(738,521,0.99),
+(738,522,0.99),
+(738,523,0.99),
+(738,605,4.81),
+(738,606,4.81),
+(738,607,4.81),
+(738,608,4.81),
+(738,690,0.93),
+(738,691,0.93),
+(738,692,0.93),
+(738,693,0.93),
+(738,775,3.82),
+(738,776,3.82),
+(738,777,3.82),
+(738,778,3.82),
+(738,860,3.88),
+(738,861,3.88),
+(738,862,3.88),
+(738,863,3.88),
+(738,945,1.12),
+(738,946,1.12),
+(738,947,1.12),
+(738,948,1.12),
+(738,1030,2.86),
+(738,1031,2.86),
+(738,1032,2.86),
+(738,1033,2.86),
+(738,1200,1.55),
+(738,1201,1.55),
+(738,1202,1.55),
+(738,1203,1.55),
+(738,1612,2.85),
+(738,1613,2.85),
+(738,1811,0.85),
+(738,1812,0.85),
+(738,2039,0.67),
+(738,2040,0.67),
+(739,216,2.92),
+(739,409,2.92),
+(739,440,1.34),
+(739,441,1.34),
+(739,442,1.34),
+(739,443,1.34),
+(739,523,1.02),
+(739,524,1.02),
+(739,525,1.02),
+(739,526,1.02),
+(739,608,5.6),
+(739,609,5.6),
+(739,610,5.6),
+(739,611,5.6),
+(739,693,1.05),
+(739,694,1.05),
+(739,695,1.05),
+(739,696,1.05),
+(739,778,3.51),
+(739,779,3.51),
+(739,780,3.51),
+(739,781,3.51),
+(739,863,3.79),
+(739,864,3.79),
+(739,865,3.79),
+(739,866,3.79),
+(739,948,1.06),
+(739,949,1.06),
+(739,950,1.06),
+(739,951,1.06),
+(739,1033,2.4),
+(739,1034,2.4),
+(739,1035,2.4),
+(739,1036,2.4),
+(739,1120,0.1),
+(739,1203,1.58),
+(739,1204,1.58),
+(739,1205,1.58),
+(739,1206,1.58),
+(739,1613,2.9),
+(739,1614,2.9),
+(739,1812,0.77),
+(739,1813,0.77),
+(739,2040,0.7),
+(739,2041,0.7),
+(740,409,2.87),
+(740,410,2.87),
+(740,443,1.29),
+(740,444,1.29),
+(740,445,1.29),
+(740,446,1.29),
+(740,526,0.99),
+(740,527,0.99),
+(740,528,0.99),
+(740,529,0.99),
+(740,611,5.52),
+(740,612,5.52),
+(740,613,5.52),
+(740,614,5.52),
+(740,696,0.88),
+(740,697,0.88),
+(740,698,0.88),
+(740,699,0.88),
+(740,781,3.51),
+(740,782,3.51),
+(740,783,3.51),
+(740,784,3.51),
+(740,866,3.9),
+(740,867,3.9),
+(740,868,3.9),
+(740,869,3.9),
+(740,951,1.21),
+(740,952,1.21),
+(740,953,1.21),
+(740,954,1.21),
+(740,1036,2.74),
+(740,1037,2.74),
+(740,1038,2.74),
+(740,1039,2.74),
+(740,1206,1.63),
+(740,1207,1.63),
+(740,1208,1.63),
+(740,1209,1.63),
+(740,1614,2.28),
+(740,1615,2.28),
+(740,1813,0.7),
+(740,1814,0.7),
+(740,2041,0.75),
+(740,2042,0.75),
+(741,411,5.3),
+(741,446,1.17),
+(741,447,1.17),
+(741,448,1.17),
+(741,449,1.17),
+(741,529,0.96),
+(741,530,0.96),
+(741,531,0.96),
+(741,532,0.96),
+(741,614,5.6),
+(741,615,5.6),
+(741,616,5.6),
+(741,617,5.6),
+(741,699,0.83),
+(741,700,0.83),
+(741,701,0.83),
+(741,702,0.83),
+(741,784,3.33),
+(741,785,3.33),
+(741,786,3.33),
+(741,787,3.33),
+(741,869,3.63),
+(741,870,3.63),
+(741,871,3.63),
+(741,872,3.63),
+(741,954,0.98),
+(741,955,0.98),
+(741,956,0.98),
+(741,957,0.98),
+(741,1039,2.28),
+(741,1040,2.28),
+(741,1041,2.28),
+(741,1042,2.28),
+(741,1209,1.47),
+(741,1210,1.47),
+(741,1211,1.47),
+(741,1212,1.47),
+(741,1323,0.3),
+(741,1369,0.37),
+(741,1415,0.4),
+(741,1461,0.3),
+(741,1507,0.3),
+(741,1620,7.3),
+(741,1815,2.2),
+(741,2043,2.5),
+(742,412,4.5),
+(742,446,1.2),
+(742,447,1.2),
+(742,448,1.2),
+(742,449,1.2),
+(742,529,1.02),
+(742,530,1.02),
+(742,531,1.02),
+(742,532,1.02),
+(742,614,5.5),
+(742,615,5.5),
+(742,616,5.5),
+(742,617,5.5),
+(742,699,0.9),
+(742,700,0.9),
+(742,701,0.9),
+(742,702,0.9),
+(742,784,3.15),
+(742,785,3.15),
+(742,786,3.15),
+(742,787,3.15),
+(742,869,3.6),
+(742,870,3.6),
+(742,871,3.6),
+(742,872,3.6),
+(742,954,0.98),
+(742,955,0.98),
+(742,956,0.98),
+(742,957,0.98),
+(742,1039,2.28),
+(742,1040,2.28),
+(742,1041,2.28),
+(742,1042,2.28),
+(742,1128,0.1),
+(742,1209,1.63),
+(742,1210,1.63),
+(742,1211,1.63),
+(742,1212,1.63),
+(742,1324,0.2),
+(742,1370,0.6),
+(742,1416,0.7),
+(742,1462,0.4),
+(742,1508,0.6),
+(742,1621,7.2),
+(742,1816,2.5),
+(742,2044,2.5),
+(743,314,0.1),
+(743,413,2.18),
+(743,414,2.18),
+(743,449,1.11),
+(743,450,1.11),
+(743,451,1.11),
+(743,452,1.11),
+(743,532,0.77),
+(743,533,0.77),
+(743,534,0.77),
+(743,535,0.77),
+(743,617,7.13),
+(743,618,7.13),
+(743,619,7.13),
+(743,620,7.13),
+(743,702,1.05),
+(743,703,1.05),
+(743,704,1.05),
+(743,705,1.05),
+(743,707,1.02),
+(743,787,2.65),
+(743,788,2.65),
+(743,789,2.65),
+(743,790,2.65),
+(743,792,2.14),
+(743,872,3.36),
+(743,873,3.36),
+(743,874,3.36),
+(743,875,3.36),
+(743,957,0.91),
+(743,958,0.91),
+(743,959,0.91),
+(743,960,0.91),
+(743,1042,1.82),
+(743,1043,1.82),
+(743,1044,1.82),
+(743,1045,1.82),
+(743,1130,0.1),
+(743,1212,1.53),
+(743,1213,1.53),
+(743,1214,1.53),
+(743,1215,1.53),
+(743,1325,0.13),
+(743,1326,0.13),
+(743,1371,0.17),
+(743,1372,0.17),
+(743,1417,0.23),
+(743,1418,0.23),
+(743,1463,0.15),
+(743,1464,0.15),
+(743,1465,0.1),
+(743,1466,0.1),
+(743,1509,0.18),
+(743,1510,0.18),
+(743,1616,3.52),
+(743,1622,3.52),
+(743,1817,0.81),
+(743,1818,0.81),
+(743,1819,0.43),
+(743,1820,0.43),
+(743,1895,0.1),
+(743,2045,1.3),
+(743,2046,1.3),
+(744,414,2.25),
+(744,415,1.88),
+(744,452,1.26),
+(744,453,1.26),
+(744,454,1.26),
+(744,455,1.26),
+(744,457,0.92),
+(744,535,0.61),
+(744,536,0.61),
+(744,537,1.27),
+(744,538,0.61),
+(744,620,8.17),
+(744,621,8.17),
+(744,622,8.17),
+(744,623,8.17),
+(744,705,1.24),
+(744,706,1.24),
+(744,707,1.24),
+(744,708,1.24),
+(744,790,2.43),
+(744,791,2.43),
+(744,792,2.43),
+(744,793,2.43),
+(744,875,3.04),
+(744,876,3.04),
+(744,877,3.04),
+(744,878,3.04),
+(744,960,1.21),
+(744,961,0.84),
+(744,962,1.21),
+(744,963,0.84),
+(744,1045,1.58),
+(744,1046,1.58),
+(744,1047,1.58),
+(744,1048,1.58),
+(744,1132,0.1),
+(744,1215,1.65),
+(744,1216,1.65),
+(744,1217,1.65),
+(744,1218,1.65),
+(744,1326,0.13),
+(744,1327,0.13),
+(744,1372,1.33),
+(744,1373,0.15),
+(744,1418,0.3),
+(744,1419,0.3),
+(744,1464,0.18),
+(744,1465,0.25),
+(744,1510,0.2),
+(744,1511,0.2),
+(744,1616,2.8),
+(744,1623,2.8),
+(744,1818,1.32),
+(744,1819,0.88),
+(744,1858,0.1),
+(744,1896,0.1),
+(744,1933,0.1),
+(744,2046,1.32),
+(744,2047,1.32),
+(744,2048,0.9),
+(744,2150,0.1),
+(745,416,0.8),
+(745,456,0.8),
+(745,538,1.15),
+(745,539,1.15),
+(745,623,5.47),
+(745,624,5.47),
+(745,625,5.47),
+(745,626,5.47),
+(745,708,1.55),
+(745,710,1.55),
+(745,793,8.75),
+(745,795,8.75),
+(745,878,2.65),
+(745,879,2.65),
+(745,880,2.65),
+(745,881,2.65),
+(745,1048,2.83),
+(745,1049,2.83),
+(745,1050,2.83),
+(745,1051,2.83),
+(745,1218,2.25),
+(745,1220,2.25),
+(745,1327,0.8),
+(745,1465,2.25),
+(745,1466,2.25),
+(745,1617,5.7),
+(745,1623,5.7),
+(745,1819,3.8),
+(745,2047,3.45),
+(745,2048,3.45),
+(749,16,0.1),
+(749,23,4.42),
+(749,24,4.42),
+(749,584,1.44),
+(749,585,1.44),
+(749,586,1.44),
+(749,587,1.44),
+(749,669,0.88),
+(749,670,0.88),
+(749,671,0.88),
+(749,672,0.88),
+(749,839,2.11),
+(749,840,2.11),
+(749,841,2.11),
+(749,842,2.11),
+(749,924,1.2),
+(749,925,1.2),
+(749,926,1.2),
+(749,927,1.2),
+(749,1009,3.21),
+(749,1010,3.21),
+(749,1011,3.21),
+(749,1012,3.21),
+(749,1094,1.9),
+(749,1095,1.9),
+(749,1096,1.9),
+(749,1097,1.9),
+(749,1179,10.4),
+(749,1180,10.4),
+(749,1181,10.4),
+(749,1182,10.4),
+(749,1548,2.73),
+(749,1549,2.73),
+(749,2028,0.5),
+(749,2029,0.5),
+(750,6,2.2),
+(750,23,2.2),
+(750,24,2.2),
+(750,97,2.2),
+(750,504,0.1),
+(750,587,1.35),
+(750,588,1.35),
+(750,589,1.35),
+(750,590,1.35),
+(750,672,0.82),
+(750,673,0.82),
+(750,674,0.82),
+(750,675,0.82),
+(750,842,1.95),
+(750,843,1.95),
+(750,844,1.95),
+(750,845,1.95),
+(750,927,1.15),
+(750,928,1.15),
+(750,929,1.15),
+(750,930,1.15),
+(750,1012,2.97),
+(750,1013,2.97),
+(750,1014,2.97),
+(750,1015,2.97),
+(750,1097,1.65),
+(750,1098,1.65),
+(750,1099,1.65),
+(750,1100,1.65),
+(750,1182,11.43),
+(750,1183,11.43),
+(750,1184,11.43),
+(750,1185,11.43),
+(750,1549,2.5),
+(750,1550,2.5),
+(750,2029,0.45),
+(750,2030,0.45),
+(751,97,4.93),
+(751,115,4.93),
+(751,587,1.53),
+(751,588,1.53),
+(751,589,1.53),
+(751,590,1.53),
+(751,672,0.98),
+(751,673,0.98),
+(751,674,0.98),
+(751,675,0.98),
+(751,842,1.97),
+(751,843,1.97),
+(751,844,1.97),
+(751,845,1.97),
+(751,927,1.24),
+(751,928,1.24),
+(751,929,1.24),
+(751,930,1.24),
+(751,1012,3.64),
+(751,1013,3.64),
+(751,1014,3.64),
+(751,1015,3.64),
+(751,1097,2),
+(751,1098,2),
+(751,1099,2),
+(751,1100,2),
+(751,1182,9.51),
+(751,1183,9.51),
+(751,1184,9.51),
+(751,1185,9.51),
+(751,1403,0.1),
+(751,1449,0.1),
+(751,1550,2.93),
+(751,1551,2.93),
+(751,1993,0.1),
+(751,2030,0.38),
+(751,2031,0.38),
+(752,115,5.5),
+(752,136,5.5),
+(752,590,1.52),
+(752,591,1.52),
+(752,592,1.52),
+(752,593,1.52),
+(752,675,0.9),
+(752,676,0.9),
+(752,677,0.9),
+(752,678,0.9),
+(752,845,2.03),
+(752,846,2.03),
+(752,847,2.03),
+(752,848,2.03),
+(752,930,1.3),
+(752,931,1.3),
+(752,932,1.3),
+(752,933,1.3),
+(752,1015,3.58),
+(752,1016,3.58),
+(752,1017,3.58),
+(752,1018,3.58),
+(752,1100,1.98),
+(752,1101,1.98),
+(752,1102,1.98),
+(752,1103,1.98),
+(752,1185,9.15),
+(752,1186,9.15),
+(752,1187,9.15),
+(752,1188,9.15),
+(752,1497,0.1),
+(752,1551,3.1),
+(752,1552,3.1),
+(752,2031,0.45),
+(752,2032,0.45),
+(753,136,5.13),
+(753,149,0.1),
+(753,151,0.1),
+(753,155,5.13),
+(753,593,1.55),
+(753,594,1.55),
+(753,595,1.55),
+(753,596,1.55),
+(753,678,0.96),
+(753,679,0.96),
+(753,680,0.96),
+(753,681,0.96),
+(753,764,0.1),
+(753,848,1.83),
+(753,849,1.83),
+(753,850,1.83),
+(753,851,1.83),
+(753,933,1.17),
+(753,934,1.17),
+(753,935,1.17),
+(753,936,1.17),
+(753,1018,3.73),
+(753,1019,3.73),
+(753,1020,3.73),
+(753,1021,3.73),
+(753,1103,2.09),
+(753,1104,2.09),
+(753,1105,2.09),
+(753,1106,2.09),
+(753,1188,9.46),
+(753,1189,9.46),
+(753,1190,9.46),
+(753,1191,9.46),
+(753,1552,3),
+(753,1553,3),
+(753,1843,0.1),
+(753,2032,0.38),
+(753,2033,0.38),
+(753,2073,0.05),
+(753,2074,0.05),
+(754,189,10.85),
+(754,596,1.54),
+(754,597,1.54),
+(754,598,1.54),
+(754,599,1.54),
+(754,681,0.91),
+(754,682,0.91),
+(754,683,0.91),
+(754,684,0.91),
+(754,769,0.1),
+(754,851,1.82),
+(754,852,1.82),
+(754,853,1.82),
+(754,854,1.82),
+(754,936,1.33),
+(754,937,1.33),
+(754,938,1.33),
+(754,939,1.33),
+(754,1021,3.49),
+(754,1022,3.49),
+(754,1023,3.49),
+(754,1024,3.49),
+(754,1106,2.05),
+(754,1107,2.05),
+(754,1108,2.05),
+(754,1109,2.05),
+(754,1191,9.4),
+(754,1192,9.4),
+(754,1193,9.4),
+(754,1194,9.4),
+(754,1554,6.05),
+(754,2034,0.8),
+(755,190,11.17),
+(755,596,1.53),
+(755,597,1.53),
+(755,598,1.53),
+(755,599,1.53),
+(755,681,0.98),
+(755,682,0.98),
+(755,683,0.98),
+(755,684,0.98),
+(755,851,1.67),
+(755,852,1.67),
+(755,853,1.67),
+(755,854,1.67),
+(755,936,1.25),
+(755,937,1.25),
+(755,938,1.25),
+(755,939,1.25),
+(755,1021,3.38),
+(755,1022,3.38),
+(755,1023,3.38),
+(755,1024,3.38),
+(755,1106,2.19),
+(755,1107,2.19),
+(755,1108,2.19),
+(755,1109,2.19),
+(755,1191,9.43),
+(755,1192,9.43),
+(755,1193,9.43),
+(755,1194,9.43),
+(755,1555,6.37),
+(755,2035,0.7),
+(756,191,5.57),
+(756,192,5.57),
+(756,599,1.37),
+(756,600,1.37),
+(756,601,1.37),
+(756,602,1.37),
+(756,684,0.89),
+(756,685,0.89),
+(756,686,0.89),
+(756,687,0.89),
+(756,854,1.67),
+(756,855,1.67),
+(756,856,1.67),
+(756,857,1.67),
+(756,939,1.2),
+(756,940,1.2),
+(756,941,1.2),
+(756,942,1.2),
+(756,1024,3.57),
+(756,1025,3.57),
+(756,1026,3.57),
+(756,1027,3.57),
+(756,1109,2.01),
+(756,1110,2.01),
+(756,1111,2.01),
+(756,1112,2.01),
+(756,1194,9.88),
+(756,1195,9.88),
+(756,1196,9.88),
+(756,1197,9.88),
+(756,1556,2.97),
+(756,1557,2.97),
+(756,2036,0.32),
+(756,2037,0.32),
+(757,192,5.43),
+(757,193,5.43),
+(757,602,1.11),
+(757,603,1.11),
+(757,604,1.11),
+(757,605,1.11),
+(757,687,0.77),
+(757,688,0.77),
+(757,689,0.77),
+(757,690,0.77),
+(757,857,1.78),
+(757,858,1.78),
+(757,859,1.78),
+(757,860,1.78),
+(757,942,1.16),
+(757,943,1.16),
+(757,944,1.16),
+(757,945,1.16),
+(757,1027,3.87),
+(757,1028,3.87),
+(757,1029,3.87),
+(757,1030,3.87),
+(757,1112,2.35),
+(757,1113,2.35),
+(757,1114,2.35),
+(757,1115,2.35),
+(757,1197,9.81),
+(757,1198,9.81),
+(757,1199,9.81),
+(757,1200,9.81),
+(757,1557,2.53),
+(757,1558,2.53),
+(757,2037,0.32),
+(757,2038,0.32),
+(758,183,2.97),
+(758,215,2.97),
+(758,437,3.05),
+(758,438,3.05),
+(758,439,3.05),
+(758,440,3.05),
+(758,520,3.28),
+(758,521,3.28),
+(758,522,3.28),
+(758,523,3.28),
+(758,605,2.47),
+(758,606,2.47),
+(758,607,2.47),
+(758,608,2.47),
+(758,690,0.74),
+(758,691,0.74),
+(758,692,0.74),
+(758,693,0.74),
+(758,775,3.06),
+(758,776,3.06),
+(758,777,3.06),
+(758,778,3.06),
+(758,860,2.56),
+(758,861,2.56),
+(758,862,2.56),
+(758,863,2.56),
+(758,945,0.98),
+(758,946,0.98),
+(758,947,0.98),
+(758,948,0.98),
+(758,1030,3.04),
+(758,1031,3.04),
+(758,1032,3.04),
+(758,1033,3.04),
+(758,1200,1.83),
+(758,1201,1.83),
+(758,1202,1.83),
+(758,1203,1.83),
+(758,1607,3.08),
+(758,1612,3.08),
+(758,1810,1.02),
+(758,1811,1.02),
+(758,2038,0.9),
+(758,2039,0.9),
+(759,215,3.55),
+(759,216,3.55),
+(759,437,2.81),
+(759,438,2.81),
+(759,439,2.81),
+(759,440,2.81),
+(759,520,3.08),
+(759,521,3.08),
+(759,522,3.08),
+(759,523,3.08),
+(759,605,2.16),
+(759,606,2.16),
+(759,607,2.16),
+(759,608,2.16),
+(759,690,0.67),
+(759,691,0.67),
+(759,692,0.67),
+(759,693,0.67),
+(759,775,2.95),
+(759,776,2.95),
+(759,777,2.95),
+(759,778,2.95),
+(759,860,2.54),
+(759,861,2.54),
+(759,862,2.54),
+(759,863,2.54),
+(759,945,1.06),
+(759,946,1.06),
+(759,947,1.06),
+(759,948,1.06),
+(759,1030,3),
+(759,1031,3),
+(759,1032,3),
+(759,1033,3),
+(759,1200,2.11),
+(759,1201,2.11),
+(759,1202,2.11),
+(759,1203,2.11),
+(759,1612,3.8),
+(759,1613,3.8),
+(759,1811,1.1),
+(759,1812,1.1),
+(759,2039,0.8),
+(759,2040,0.8),
+(760,216,3.07),
+(760,409,3.07),
+(760,440,2.44),
+(760,441,2.44),
+(760,442,2.44),
+(760,443,2.44),
+(760,523,3.06),
+(760,524,3.06),
+(760,525,3.06),
+(760,526,3.06),
+(760,608,2.19),
+(760,609,2.19),
+(760,610,2.19),
+(760,611,2.19),
+(760,693,0.71),
+(760,694,0.71),
+(760,695,0.71),
+(760,696,0.71),
+(760,778,2.93),
+(760,779,2.93),
+(760,780,2.93),
+(760,781,2.93),
+(760,863,2.71),
+(760,864,2.71),
+(760,865,2.71),
+(760,866,2.71),
+(760,948,1.09),
+(760,949,1.09),
+(760,950,1.09),
+(760,951,1.09),
+(760,1033,3.16),
+(760,1034,3.16),
+(760,1035,3.16),
+(760,1036,3.16),
+(760,1203,2.5),
+(760,1204,2.5),
+(760,1205,2.5),
+(760,1206,2.5),
+(760,1613,3.46),
+(760,1614,3.46),
+(760,1812,1),
+(760,1813,1),
+(760,2040,0.87),
+(760,2041,0.87),
+(761,409,3.25),
+(761,410,3.25),
+(761,443,2.38),
+(761,444,2.38),
+(761,445,2.38),
+(761,446,2.38),
+(761,526,2.8),
+(761,527,2.8),
+(761,528,2.8),
+(761,529,2.8),
+(761,611,2.15),
+(761,612,2.15),
+(761,613,2.15),
+(761,614,2.15),
+(761,696,0.73),
+(761,697,0.73),
+(761,698,0.73),
+(761,699,0.73),
+(761,781,2.83),
+(761,782,2.83),
+(761,783,2.83),
+(761,784,2.83),
+(761,866,2.83),
+(761,867,2.83),
+(761,868,2.83),
+(761,869,2.83),
+(761,951,1.2),
+(761,952,1.2),
+(761,953,1.2),
+(761,954,1.2),
+(761,1036,3.08),
+(761,1037,3.08),
+(761,1038,3.08),
+(761,1039,3.08),
+(761,1206,2.55),
+(761,1207,2.55),
+(761,1208,2.55),
+(761,1209,2.55),
+(761,1614,3.55),
+(761,1615,3.55),
+(761,1813,1.05),
+(761,1814,1.05),
+(761,2041,1),
+(761,2042,1),
+(762,411,5.23),
+(762,446,2.28),
+(762,447,2.28),
+(762,448,2.28),
+(762,449,2.28),
+(762,529,2.63),
+(762,530,2.63),
+(762,531,2.63),
+(762,532,2.63),
+(762,614,1.97),
+(762,615,1.97),
+(762,616,1.97),
+(762,617,1.97),
+(762,699,0.66),
+(762,700,0.66),
+(762,701,0.66),
+(762,702,0.66),
+(762,784,2.74),
+(762,785,2.74),
+(762,786,2.74),
+(762,787,2.74),
+(762,869,2.52),
+(762,870,2.52),
+(762,871,2.52),
+(762,872,2.52),
+(762,954,1.15),
+(762,955,1.15),
+(762,956,1.15),
+(762,957,1.15),
+(762,1039,2.72),
+(762,1040,2.72),
+(762,1041,2.72),
+(762,1042,2.72),
+(762,1209,2.48),
+(762,1210,2.48),
+(762,1211,2.48),
+(762,1212,2.48),
+(762,1323,0.57),
+(762,1369,0.37),
+(762,1415,0.5),
+(762,1461,0.3),
+(762,1507,0.53),
+(762,1620,9.8),
+(762,1815,3.2),
+(762,2043,2.83),
+(763,412,4.15),
+(763,446,2.88),
+(763,447,2.88),
+(763,448,2.88),
+(763,449,2.88),
+(763,529,2.64),
+(763,530,2.64),
+(763,531,2.64),
+(763,532,2.64),
+(763,614,2.81),
+(763,615,2.81),
+(763,616,2.81),
+(763,617,2.81),
+(763,699,0.95),
+(763,700,0.95),
+(763,701,0.95),
+(763,702,0.95),
+(763,784,2.3),
+(763,785,2.3),
+(763,786,2.3),
+(763,787,2.3),
+(763,869,2.89),
+(763,870,2.89),
+(763,871,2.89),
+(763,872,2.89),
+(763,954,0.91),
+(763,955,0.91),
+(763,956,0.91),
+(763,957,0.91),
+(763,1039,2.29),
+(763,1040,2.29),
+(763,1041,2.29),
+(763,1042,2.29),
+(763,1209,2.4),
+(763,1210,2.4),
+(763,1211,2.4),
+(763,1212,2.4),
+(763,1324,0.25),
+(763,1370,0.3),
+(763,1416,0.65),
+(763,1462,0.5),
+(763,1508,0.7),
+(763,1621,8.15),
+(763,1723,0.1),
+(763,1816,2.25),
+(763,2044,2.6),
+(763,2146,0.1),
+(764,413,2.08),
+(764,414,2.08),
+(764,449,3),
+(764,450,3),
+(764,451,3),
+(764,452,3),
+(764,532,2.61),
+(764,533,2.61),
+(764,534,2.61),
+(764,535,2.61),
+(764,617,2.82),
+(764,618,2.82),
+(764,619,2.82),
+(764,620,2.82),
+(764,702,1),
+(764,703,1),
+(764,704,1),
+(764,705,1),
+(764,787,2.13),
+(764,788,2.13),
+(764,789,2.13),
+(764,790,2.13),
+(764,872,3.11),
+(764,873,3.11),
+(764,874,3.11),
+(764,875,3.11),
+(764,957,0.89),
+(764,958,0.89),
+(764,959,0.89),
+(764,960,0.89),
+(764,1042,2.09),
+(764,1043,2.09),
+(764,1044,2.09),
+(764,1045,2.09),
+(764,1212,2.34),
+(764,1213,2.34),
+(764,1214,2.34),
+(764,1215,2.34),
+(764,1325,0.28),
+(764,1326,0.28),
+(764,1371,0.3),
+(764,1372,0.3),
+(764,1417,0.5),
+(764,1418,0.5),
+(764,1463,0.15),
+(764,1464,0.1),
+(764,1509,0.22),
+(764,1510,0.22),
+(764,1616,4.05),
+(764,1622,4.05),
+(764,1817,1.05),
+(764,1818,1.05),
+(764,2045,1.63),
+(764,2046,1.63),
+(765,414,1.57),
+(765,415,1.57),
+(765,452,3.46),
+(765,453,3.46),
+(765,454,3.46),
+(765,455,3.46),
+(765,535,2.8),
+(765,536,2.8),
+(765,537,2.8),
+(765,538,2.8),
+(765,620,3.38),
+(765,621,3.38),
+(765,622,3.38),
+(765,623,3.38),
+(765,705,0.96),
+(765,706,1.27),
+(765,707,0.96),
+(765,708,0.96),
+(765,790,2.64),
+(765,791,2.64),
+(765,792,2.64),
+(765,793,2.64),
+(765,875,2.61),
+(765,876,2.61),
+(765,877,2.61),
+(765,878,2.61),
+(765,960,0.63),
+(765,961,0.63),
+(765,962,0.63),
+(765,963,0.63),
+(765,1045,2.03),
+(765,1046,2.03),
+(765,1047,2.03),
+(765,1048,2.03),
+(765,1130,0.1),
+(765,1215,2.21),
+(765,1216,2.21),
+(765,1217,2.21),
+(765,1218,2.21),
+(765,1326,0.15),
+(765,1327,0.3),
+(765,1372,1.6),
+(765,1373,0.3),
+(765,1418,0.38),
+(765,1419,0.38),
+(765,1464,0.13),
+(765,1465,0.13),
+(765,1510,0.45),
+(765,1511,0.45),
+(765,1616,2.97),
+(765,1623,2.97),
+(765,1818,0.98),
+(765,1819,0.98),
+(765,2046,2.17),
+(765,2047,1.55),
+(765,2162,0.8),
+(779,193,5.37),
+(779,219,5.37),
+(779,605,1.42),
+(779,606,1.42),
+(779,607,1.42),
+(779,608,1.42),
+(779,690,0.96),
+(779,691,0.96),
+(779,692,0.96),
+(779,693,0.96),
+(779,860,1.53),
+(779,861,1.53),
+(779,862,1.53),
+(779,863,1.53),
+(779,945,1.08),
+(779,946,1.08),
+(779,947,1.08),
+(779,948,1.08),
+(779,1030,3.14),
+(779,1031,3.14),
+(779,1032,3.14),
+(779,1033,3.14),
+(779,1115,2.04),
+(779,1116,2.04),
+(779,1117,2.04),
+(779,1118,2.04),
+(779,1200,10.5),
+(779,1201,10.5),
+(779,1202,10.5),
+(779,1203,10.5),
+(779,1558,3),
+(779,1559,3),
+(779,1704,0.1),
+(779,2038,0.28),
+(779,2039,0.28),
+(780,219,5.7),
+(780,220,5.7),
+(780,605,1.49),
+(780,606,1.49),
+(780,607,1.49),
+(780,608,1.49),
+(780,690,1.03),
+(780,691,1.03),
+(780,692,1.03),
+(780,693,1.03),
+(780,860,1.61),
+(780,861,1.61),
+(780,862,1.61),
+(780,863,1.61),
+(780,945,1.23),
+(780,946,1.23),
+(780,947,1.23),
+(780,948,1.23),
+(780,1030,3.56),
+(780,1031,3.56),
+(780,1032,3.56),
+(780,1033,3.56),
+(780,1115,2.05),
+(780,1116,2.05),
+(780,1117,2.05),
+(780,1118,2.05),
+(780,1200,9.28),
+(780,1201,9.28),
+(780,1202,9.28),
+(780,1203,9.28),
+(780,1559,3.45),
+(780,1560,3.45),
+(780,2039,0.38),
+(780,2040,0.38),
+(781,220,5.5),
+(781,307,5.5),
+(781,608,1.53),
+(781,609,1.53),
+(781,610,1.53),
+(781,611,1.53),
+(781,693,0.88),
+(781,694,0.88),
+(781,695,0.88),
+(781,696,0.88),
+(781,863,1.58),
+(781,864,1.58),
+(781,865,1.58),
+(781,866,1.58),
+(781,948,1.13),
+(781,949,1.13),
+(781,950,1.13),
+(781,951,1.13),
+(781,1033,3.24),
+(781,1034,3.24),
+(781,1035,3.24),
+(781,1036,3.24),
+(781,1118,1.97),
+(781,1119,1.97),
+(781,1120,1.97),
+(781,1121,1.97),
+(781,1203,10.17),
+(781,1204,10.17),
+(781,1205,10.17),
+(781,1206,10.17),
+(781,1560,3.27),
+(781,1561,3.27),
+(781,2040,0.23),
+(781,2041,0.23),
+(782,307,5.22),
+(782,308,5.22),
+(782,611,1.27),
+(782,612,1.27),
+(782,613,1.27),
+(782,614,1.27),
+(782,696,0.88),
+(782,697,0.88),
+(782,698,0.88),
+(782,699,0.88),
+(782,866,1.71),
+(782,867,1.71),
+(782,868,1.71),
+(782,869,1.71),
+(782,951,1.13),
+(782,952,1.13),
+(782,953,1.13),
+(782,954,1.13),
+(782,1036,3.02),
+(782,1037,3.02),
+(782,1038,3.02),
+(782,1039,3.02),
+(782,1121,1.95),
+(782,1122,1.95),
+(782,1123,1.95),
+(782,1124,1.95),
+(782,1206,10.83),
+(782,1207,10.83),
+(782,1208,10.83),
+(782,1209,10.83),
+(782,1561,2.98),
+(782,1562,2.98),
+(782,2041,0.27),
+(782,2042,0.27),
+(783,309,9.53),
+(783,614,1.21),
+(783,615,1.21),
+(783,616,1.21),
+(783,617,1.21),
+(783,699,0.86),
+(783,700,0.86),
+(783,701,0.86),
+(783,702,0.86),
+(783,869,1.39),
+(783,870,1.39),
+(783,871,1.39),
+(783,872,1.39),
+(783,954,1.09),
+(783,955,1.09),
+(783,956,1.09),
+(783,957,1.09),
+(783,1039,3.02),
+(783,1040,3.02),
+(783,1041,3.02),
+(783,1042,3.02),
+(783,1124,1.67),
+(783,1125,1.67),
+(783,1126,1.67),
+(783,1127,1.67),
+(783,1209,9.55),
+(783,1210,9.55),
+(783,1211,9.55),
+(783,1212,9.55),
+(783,1323,0.18),
+(783,1369,0.25),
+(783,1415,0.4),
+(783,1461,0.2),
+(783,1507,0.25),
+(783,1563,12.4),
+(783,2043,1.8),
+(784,310,9.57),
+(784,614,1.35),
+(784,615,1.35),
+(784,616,1.35),
+(784,617,1.35),
+(784,699,0.73),
+(784,700,0.73),
+(784,701,0.73),
+(784,702,0.73),
+(784,869,1.51),
+(784,870,1.51),
+(784,871,1.51),
+(784,872,1.51),
+(784,954,1.07),
+(784,955,1.07),
+(784,956,1.07),
+(784,957,1.07),
+(784,1039,2.56),
+(784,1040,2.56),
+(784,1041,2.56),
+(784,1042,2.56),
+(784,1124,1.71),
+(784,1125,1.71),
+(784,1126,1.71),
+(784,1127,1.71),
+(784,1209,9.56),
+(784,1210,9.56),
+(784,1211,9.56),
+(784,1212,9.56),
+(784,1324,0.23),
+(784,1370,0.3),
+(784,1416,0.27),
+(784,1462,0.27),
+(784,1508,0.3),
+(784,1564,13.4),
+(784,2044,1.24),
+(784,2045,0.43),
+(784,2046,0.43),
+(784,2047,0.43),
+(785,311,4.92),
+(785,312,4.92),
+(785,617,1.16),
+(785,618,1.16),
+(785,619,1.16),
+(785,620,1.16),
+(785,702,0.85),
+(785,703,0.85),
+(785,704,0.85),
+(785,705,0.85),
+(785,872,1.44),
+(785,873,1.44),
+(785,874,1.44),
+(785,875,1.44),
+(785,957,0.95),
+(785,958,0.95),
+(785,959,0.95),
+(785,960,0.95),
+(785,1042,2.5),
+(785,1043,2.5),
+(785,1044,2.5),
+(785,1045,2.5),
+(785,1127,1.46),
+(785,1128,1.46),
+(785,1129,1.46),
+(785,1130,1.46),
+(785,1212,9.78),
+(785,1213,9.78),
+(785,1214,9.78),
+(785,1215,9.78),
+(785,1325,0.08),
+(785,1326,0.08),
+(785,1371,0.23),
+(785,1372,0.23),
+(785,1417,0.25),
+(785,1418,0.25),
+(785,1463,0.2),
+(785,1464,0.2),
+(785,1509,0.15),
+(785,1510,0.15),
+(785,1565,7.2),
+(785,1566,7.2),
+(785,1932,0.1),
+(785,2045,0.56),
+(785,2046,0.56),
+(785,2047,0.47),
+(786,312,4.2),
+(786,313,4.2),
+(786,389,0.1),
+(786,390,0.1),
+(786,620,1.04),
+(786,621,1.04),
+(786,622,1.04),
+(786,623,1.04),
+(786,705,0.79),
+(786,706,0.79),
+(786,707,0.79),
+(786,708,0.79),
+(786,791,0.1),
+(786,875,1.57),
+(786,876,1.57),
+(786,877,1.57),
+(786,878,1.57),
+(786,960,1.04),
+(786,961,1.04),
+(786,962,1.04),
+(786,963,1.04),
+(786,1045,2.32),
+(786,1046,2.32),
+(786,1047,2.32),
+(786,1048,2.32),
+(786,1130,1.28),
+(786,1131,1.28),
+(786,1132,1.28),
+(786,1133,1.28),
+(786,1215,10.64),
+(786,1216,10.64),
+(786,1217,10.64),
+(786,1218,10.64),
+(786,1326,0.28),
+(786,1327,0.25),
+(786,1372,0.2),
+(786,1373,0.2),
+(786,1418,0.3),
+(786,1419,0.3),
+(786,1464,0.13),
+(786,1465,0.05),
+(786,1510,0.15),
+(786,1511,0.15),
+(786,1566,6.67),
+(786,1567,6.67),
+(786,1725,0.05),
+(786,1726,0.05),
+(786,2046,0.82),
+(786,2047,0.82),
+(791,19,3.2),
+(791,22,3.2),
+(791,27,4.15),
+(791,28,4.15),
+(791,29,0.1),
+(791,33,0.1),
+(791,91,0.1),
+(791,227,2.22),
+(791,229,2.22),
+(791,231,2.22),
+(791,238,2.22),
+(791,502,0.03),
+(791,503,0.03),
+(791,504,0.03),
+(791,505,0.03),
+(791,754,5.9),
+(791,755,5.9),
+(791,756,5.9),
+(791,757,5.9),
+(791,839,5.07),
+(791,840,5.07),
+(791,841,5.07),
+(791,842,5.07),
+(791,1009,4.15),
+(791,1010,4.15),
+(791,1011,4.15),
+(791,1012,4.15),
+(791,1706,0.1),
+(791,1800,2.85),
+(791,1801,2.85),
+(791,1838,2.25),
+(791,1839,2.25),
+(791,1913,0.1),
+(791,1952,3),
+(791,1953,3),
+(792,16,2.3),
+(792,22,3.6),
+(792,27,2.3),
+(792,28,2.3),
+(792,95,2.3),
+(792,96,3.6),
+(792,232,2.35),
+(792,233,2.35),
+(792,234,2.35),
+(792,238,2.35),
+(792,757,5.97),
+(792,758,5.97),
+(792,759,5.97),
+(792,760,5.97),
+(792,842,4.28),
+(792,843,4.28),
+(792,844,4.28),
+(792,845,4.28),
+(792,1012,4.45),
+(792,1013,4.45),
+(792,1014,4.45),
+(792,1015,4.45),
+(792,1801,2.9),
+(792,1802,2.9),
+(792,1839,1.95),
+(792,1840,1.95),
+(792,1953,2.8),
+(792,1954,2.8),
+(793,49,0.1),
+(793,95,4.52),
+(793,96,3.62),
+(793,113,4.52),
+(793,114,3.62),
+(793,134,3.47),
+(793,136,0.1),
+(793,232,2.26),
+(793,233,2.26),
+(793,234,2.26),
+(793,236,1.92),
+(793,238,2.26),
+(793,505,0.1),
+(793,757,5.73),
+(793,758,5.73),
+(793,759,5.73),
+(793,760,5.73),
+(793,842,3.72),
+(793,843,3.72),
+(793,844,3.72),
+(793,845,3.72),
+(793,847,3.36),
+(793,932,0.1),
+(793,1012,4.16),
+(793,1013,4.16),
+(793,1014,4.16),
+(793,1015,4.16),
+(793,1016,2.84),
+(793,1017,2.84),
+(793,1018,2.84),
+(793,1187,0.1),
+(793,1404,0.1),
+(793,1550,0.1),
+(793,1802,2.87),
+(793,1803,2.87),
+(793,1840,1.78),
+(793,1841,1.78),
+(793,1954,2.63),
+(793,1955,2.63),
+(794,113,6.13),
+(794,114,3.98),
+(794,134,6.13),
+(794,135,3.98),
+(794,234,2.48),
+(794,235,2.48),
+(794,236,2.48),
+(794,248,2.48),
+(794,760,5.51),
+(794,761,5.51),
+(794,762,5.51),
+(794,763,5.51),
+(794,845,2.89),
+(794,846,2.89),
+(794,847,2.89),
+(794,848,2.89),
+(794,1015,5.08),
+(794,1016,5.08),
+(794,1017,5.08),
+(794,1018,5.08),
+(794,1313,0.1),
+(794,1803,3.27),
+(794,1804,3.27),
+(794,1841,1.73),
+(794,1842,1.73),
+(794,1955,3),
+(794,1956,3),
+(795,134,5.63),
+(795,135,3.73),
+(795,153,5.63),
+(795,154,3.73),
+(795,237,2.42),
+(795,247,2.42),
+(795,248,2.42),
+(795,249,2.42),
+(795,763,5.63),
+(795,764,5.63),
+(795,765,5.63),
+(795,766,5.63),
+(795,848,3.59),
+(795,849,3.59),
+(795,850,3.59),
+(795,851,3.59),
+(795,1018,4.92),
+(795,1019,4.92),
+(795,1020,4.92),
+(795,1021,4.92),
+(795,1804,3.35),
+(795,1805,3.35),
+(795,1842,1.75),
+(795,1843,1.75),
+(795,1882,0.1),
+(795,1956,2.45),
+(795,1957,2.45),
+(796,179,11.8),
+(796,184,7.15),
+(796,247,2.54),
+(796,250,2.54),
+(796,251,2.54),
+(796,252,2.54),
+(796,766,5.54),
+(796,767,5.54),
+(796,768,5.54),
+(796,769,5.54),
+(796,851,3.27),
+(796,852,3.27),
+(796,853,3.27),
+(796,854,3.27),
+(796,1021,5.08),
+(796,1022,5.08),
+(796,1023,5.08),
+(796,1024,5.08),
+(796,1806,7.05),
+(796,1844,3.25),
+(796,1958,5.1),
+(797,175,0.1),
+(797,180,10.73),
+(797,185,7.43),
+(797,247,2.44),
+(797,250,2.44),
+(797,251,2.44),
+(797,252,2.44),
+(797,766,6.06),
+(797,767,6.06),
+(797,768,6.06),
+(797,769,6.06),
+(797,851,3.26),
+(797,852,3.26),
+(797,853,3.26),
+(797,854,3.26),
+(797,1021,5.03),
+(797,1022,5.03),
+(797,1023,5.03),
+(797,1024,5.03),
+(797,1807,6.57),
+(797,1845,2.93),
+(797,1959,5.1),
+(798,181,5.67),
+(798,182,5.67),
+(798,186,3.63),
+(798,187,3.63),
+(798,251,2.53),
+(798,253,2.53),
+(798,254,2.53),
+(798,255,2.53),
+(798,769,5.95),
+(798,770,5.95),
+(798,771,5.95),
+(798,772,5.95),
+(798,854,2.96),
+(798,855,2.96),
+(798,856,2.96),
+(798,857,2.96),
+(798,1024,5.51),
+(798,1025,5.51),
+(798,1026,5.51),
+(798,1027,5.51),
+(798,1808,3.07),
+(798,1809,3.07),
+(798,1846,1.5),
+(798,1847,1.5),
+(798,1960,2.28),
+(798,1961,2.28),
+(799,182,5.82),
+(799,183,5.82),
+(799,187,3.68),
+(799,188,3.68),
+(799,254,2.43),
+(799,435,2.43),
+(799,436,2.43),
+(799,437,2.43),
+(799,772,6.31),
+(799,773,6.31),
+(799,774,6.31),
+(799,775,6.31),
+(799,857,2.73),
+(799,858,2.73),
+(799,859,2.73),
+(799,860,2.73),
+(799,1027,5.4),
+(799,1028,5.4),
+(799,1029,5.4),
+(799,1030,5.4),
+(799,1809,3.07),
+(799,1810,3.07),
+(799,1847,1.37),
+(799,1848,1.37),
+(799,1961,2.4),
+(799,1962,2.4),
+(800,29,0.1),
+(800,183,5.27),
+(800,188,3.73),
+(800,215,5.27),
+(800,217,3.73),
+(800,437,2.61),
+(800,438,2.61),
+(800,439,2.61),
+(800,440,2.61),
+(800,775,6.5),
+(800,776,6.5),
+(800,777,6.5),
+(800,778,6.5),
+(800,860,2.59),
+(800,861,2.59),
+(800,862,2.59),
+(800,863,2.59),
+(800,1030,5.24),
+(800,1031,5.24),
+(800,1032,5.24),
+(800,1033,5.24),
+(800,1810,3.05),
+(800,1811,3.05),
+(800,1848,1.53),
+(800,1849,1.53),
+(800,1962,2.51),
+(800,1963,2.51),
+(801,215,5.63),
+(801,216,5.63),
+(801,217,3.52),
+(801,218,3.52),
+(801,437,2.63),
+(801,438,2.63),
+(801,439,2.63),
+(801,440,2.63),
+(801,611,0.1),
+(801,775,6.38),
+(801,776,6.38),
+(801,777,6.38),
+(801,778,6.38),
+(801,860,2.63),
+(801,861,2.63),
+(801,862,2.63),
+(801,863,2.63),
+(801,1030,5.25),
+(801,1031,5.25),
+(801,1032,5.25),
+(801,1033,5.25),
+(801,1811,3.2),
+(801,1812,3.2),
+(801,1849,1.38),
+(801,1850,1.38),
+(801,1963,2.55),
+(801,1964,2.55),
+(802,216,5),
+(802,218,3.98),
+(802,287,3.98),
+(802,409,5),
+(802,440,2.66),
+(802,441,2.66),
+(802,442,2.66),
+(802,443,2.66),
+(802,778,6.3),
+(802,779,6.3),
+(802,780,6.3),
+(802,781,6.3),
+(802,863,2.54),
+(802,864,2.54),
+(802,865,2.54),
+(802,866,2.54),
+(802,1033,5.4),
+(802,1034,5.4),
+(802,1035,5.4),
+(802,1036,5.4),
+(802,1812,3.1),
+(802,1813,3.1),
+(802,1850,1.53),
+(802,1851,1.53),
+(802,1964,2.57),
+(802,1965,2.57),
+(803,287,3.67),
+(803,333,3.67),
+(803,409,5.13),
+(803,410,5.13),
+(803,443,2.59),
+(803,444,2.59),
+(803,445,2.59),
+(803,446,2.59),
+(803,781,6.53),
+(803,782,6.53),
+(803,783,6.53),
+(803,784,6.53),
+(803,866,2.66),
+(803,867,2.66),
+(803,868,2.66),
+(803,869,2.66),
+(803,1036,5.22),
+(803,1037,5.22),
+(803,1038,5.22),
+(803,1039,5.22),
+(803,1813,2.83),
+(803,1814,2.83),
+(803,1815,1.67),
+(803,1816,1.67),
+(803,1851,1.53),
+(803,1852,1.53),
+(803,1965,2.43),
+(803,1966,2.43),
+(804,334,6.55),
+(804,411,8.3),
+(804,446,2.4),
+(804,447,2.4),
+(804,448,2.4),
+(804,449,2.4),
+(804,784,6.04),
+(804,785,6.04),
+(804,786,6.04),
+(804,787,6.04),
+(804,869,2.42),
+(804,870,2.42),
+(804,871,2.42),
+(804,872,2.42),
+(804,1039,4.54),
+(804,1040,4.54),
+(804,1041,4.54),
+(804,1042,4.54),
+(804,1323,0.2),
+(804,1369,0.3),
+(804,1415,0.55),
+(804,1461,0.2),
+(804,1507,0.4),
+(804,1815,9.8),
+(804,1853,4.7),
+(804,1967,7.5),
+(805,335,6.4),
+(805,412,8.4),
+(805,446,1.98),
+(805,447,1.98),
+(805,448,1.98),
+(805,449,1.98),
+(805,784,4.8),
+(805,785,4.8),
+(805,786,4.8),
+(805,787,4.8),
+(805,789,4.8),
+(805,869,2.95),
+(805,870,2.95),
+(805,871,2.95),
+(805,872,2.95),
+(805,1039,4.1),
+(805,1040,4.1),
+(805,1041,4.1),
+(805,1042,4.1),
+(805,1128,0.1),
+(805,1324,0.3),
+(805,1370,0.2),
+(805,1416,0.5),
+(805,1462,0.4),
+(805,1508,0.17),
+(805,1509,0.17),
+(805,1510,0.17),
+(805,1816,8.8),
+(805,1854,6.6),
+(805,1968,7.8),
+(806,336,3.23),
+(806,337,3.23),
+(806,413,3.7),
+(806,414,3.7),
+(806,449,1.81),
+(806,450,1.81),
+(806,451,1.81),
+(806,452,1.81),
+(806,453,1.7),
+(806,787,6.02),
+(806,788,6.02),
+(806,789,6.02),
+(806,790,6.02),
+(806,872,3.11),
+(806,873,3.11),
+(806,874,3.11),
+(806,875,3.11),
+(806,1042,3.75),
+(806,1043,3.75),
+(806,1044,3.75),
+(806,1045,3.75),
+(806,1046,3.36),
+(806,1325,0.15),
+(806,1326,0.15),
+(806,1371,0.17),
+(806,1372,0.17),
+(806,1373,0.1),
+(806,1417,0.35),
+(806,1418,0.28),
+(806,1463,0.22),
+(806,1464,0.22),
+(806,1509,0.17),
+(806,1510,0.17),
+(806,1817,4.2),
+(806,1818,4.2),
+(806,1855,3.37),
+(806,1856,3.37),
+(806,1969,4.32),
+(806,1970,4.32),
+(807,314,0.1),
+(807,337,3.32),
+(807,338,3.32),
+(807,391,0.1),
+(807,414,2.93),
+(807,415,2.93),
+(807,452,1.88),
+(807,453,1.88),
+(807,454,1.88),
+(807,455,1.88),
+(807,535,0.03),
+(807,536,0.03),
+(807,537,0.03),
+(807,538,0.03),
+(807,620,0.03),
+(807,621,0.03),
+(807,622,0.03),
+(807,623,0.03),
+(807,705,0.03),
+(807,706,0.03),
+(807,707,0.03),
+(807,708,0.03),
+(807,790,6.02),
+(807,791,6.02),
+(807,792,6.02),
+(807,793,6.02),
+(807,875,3.97),
+(807,876,3.97),
+(807,877,3.97),
+(807,878,3.97),
+(807,961,0.1),
+(807,1045,3.58),
+(807,1046,3.58),
+(807,1047,3.58),
+(807,1048,3.58),
+(807,1218,0.1),
+(807,1326,0.28),
+(807,1327,0.28),
+(807,1372,0.16),
+(807,1373,0.16),
+(807,1374,0.17),
+(807,1418,0.4),
+(807,1419,0.3),
+(807,1464,0.16),
+(807,1465,0.16),
+(807,1466,0.08),
+(807,1467,0.08),
+(807,1510,0.55),
+(807,1511,0.23),
+(807,1561,0.1),
+(807,1818,3.95),
+(807,1819,3.95),
+(807,1856,3.68),
+(807,1857,3.68),
+(807,1970,4),
+(807,1971,4),
+(807,2047,0.1),
+(807,2088,0.05),
+(807,2089,0.05),
+(807,2126,0.03),
+(807,2127,0.03),
+(807,2128,0.03),
+(807,2129,0.03),
+(807,2146,0.03),
+(807,2147,0.03),
+(807,2148,0.03),
+(807,2153,0.03),
+(813,18,4.68),
+(813,22,4.1),
+(813,28,3.75),
+(813,93,4.68),
+(813,95,3.75),
+(813,96,4.1),
+(813,232,1.02),
+(813,233,1.02),
+(813,234,1.02),
+(813,238,1.02),
+(813,502,1.04),
+(813,503,1.04),
+(813,504,1.04),
+(813,505,1.04),
+(813,587,4.06),
+(813,588,4.06),
+(813,589,4.06),
+(813,590,4.06),
+(813,757,3.99),
+(813,758,3.99),
+(813,759,3.99),
+(813,760,3.99),
+(813,842,2.27),
+(813,843,2.27),
+(813,844,2.27),
+(813,845,2.27),
+(813,927,2.12),
+(813,928,2.12),
+(813,929,2.12),
+(813,930,2.12),
+(813,1012,2.79),
+(813,1013,2.79),
+(813,1014,2.79),
+(813,1015,2.79),
+(813,1549,1.45),
+(813,1550,1.45),
+(813,1951,0.1),
+(813,1991,1.42),
+(813,1992,1.42),
+(814,93,4.32),
+(814,95,3.36),
+(814,96,4.25),
+(814,111,4.32),
+(814,113,3.36),
+(814,114,4.25),
+(814,130,0.1),
+(814,134,2.57),
+(814,136,0.1),
+(814,232,0.99),
+(814,233,0.99),
+(814,234,0.99),
+(814,238,0.99),
+(814,502,1.06),
+(814,503,1.06),
+(814,504,1.06),
+(814,505,1.06),
+(814,587,3.7),
+(814,588,3.7),
+(814,589,3.7),
+(814,590,3.7),
+(814,678,0.1),
+(814,757,4.24),
+(814,758,4.24),
+(814,759,4.24),
+(814,760,4.24),
+(814,842,1.94),
+(814,843,1.94),
+(814,844,1.94),
+(814,845,1.94),
+(814,846,1.7),
+(814,927,2.27),
+(814,928,2.27),
+(814,929,2.27),
+(814,930,2.27),
+(814,1012,2.57),
+(814,1013,2.57),
+(814,1014,2.57),
+(814,1015,2.57),
+(814,1017,2.44),
+(814,1550,1.43),
+(814,1551,1.43),
+(814,1992,1.4),
+(814,1993,1.4),
+(815,111,4.15),
+(815,113,4.55),
+(815,114,4.5),
+(815,132,4.15),
+(815,134,4.55),
+(815,135,4.5),
+(815,234,1),
+(815,235,1),
+(815,236,1),
+(815,248,1),
+(815,505,1.1),
+(815,506,1.1),
+(815,507,1.1),
+(815,508,1.1),
+(815,590,3.1),
+(815,591,3.1),
+(815,592,3.1),
+(815,593,3.1),
+(815,760,4.2),
+(815,761,4.2),
+(815,762,4.2),
+(815,763,4.2),
+(815,845,2.15),
+(815,846,2.15),
+(815,847,2.15),
+(815,848,2.15),
+(815,930,2.17),
+(815,931,2.17),
+(815,932,2.17),
+(815,933,2.17),
+(815,1015,2.97),
+(815,1016,2.97),
+(815,1017,2.97),
+(815,1018,2.97),
+(815,1105,0.1),
+(815,1551,1.65),
+(815,1552,1.65),
+(815,1957,0.1),
+(815,1993,1.65),
+(815,1994,1.65),
+(815,2027,0.1),
+(816,132,3.9),
+(816,134,4.55),
+(816,135,4.67),
+(816,151,3.9),
+(816,153,4.55),
+(816,154,4.67),
+(816,237,0.93),
+(816,247,0.93),
+(816,248,0.93),
+(816,249,0.93),
+(816,508,0.96),
+(816,509,0.96),
+(816,510,0.96),
+(816,511,0.96),
+(816,593,2.95),
+(816,594,2.95),
+(816,595,2.95),
+(816,596,2.95),
+(816,763,4.3),
+(816,764,4.3),
+(816,765,4.3),
+(816,766,4.3),
+(816,848,2.34),
+(816,849,2.34),
+(816,850,2.34),
+(816,851,2.34),
+(816,933,2.31),
+(816,934,2.31),
+(816,935,2.31),
+(816,936,2.31),
+(816,1018,3.09),
+(816,1019,3.09),
+(816,1020,3.09),
+(816,1021,3.09),
+(816,1552,1.4),
+(816,1553,1.4),
+(816,1844,0.1),
+(816,1994,1.78),
+(816,1995,1.78),
+(817,167,6.77),
+(817,179,9.1),
+(817,184,10.07),
+(817,247,0.92),
+(817,250,0.92),
+(817,251,0.92),
+(817,252,0.92),
+(817,511,1.04),
+(817,512,1.04),
+(817,513,1.04),
+(817,514,1.04),
+(817,596,2.67),
+(817,597,2.67),
+(817,598,2.67),
+(817,599,2.67),
+(817,766,4.28),
+(817,767,4.28),
+(817,768,4.28),
+(817,769,4.28),
+(817,851,2.4),
+(817,852,2.4),
+(817,853,2.4),
+(817,854,2.4),
+(817,936,2.44),
+(817,937,2.44),
+(817,938,2.44),
+(817,939,2.44),
+(817,1021,3.13),
+(817,1022,3.13),
+(817,1023,3.13),
+(817,1024,3.13),
+(817,1554,2.97),
+(817,1996,3.47),
+(817,2075,0.03),
+(817,2076,0.03),
+(817,2077,0.03),
+(818,168,7.37),
+(818,180,9.47),
+(818,185,9.87),
+(818,247,0.92),
+(818,250,0.92),
+(818,251,0.92),
+(818,252,0.92),
+(818,511,1.03),
+(818,512,1.03),
+(818,513,1.03),
+(818,514,1.03),
+(818,596,2.87),
+(818,597,2.87),
+(818,598,2.87),
+(818,599,2.87),
+(818,766,4.24),
+(818,767,4.24),
+(818,768,4.24),
+(818,769,4.24),
+(818,851,2.34),
+(818,852,2.34),
+(818,853,2.34),
+(818,854,2.34),
+(818,936,2.32),
+(818,937,2.32),
+(818,938,2.32),
+(818,939,2.32),
+(818,1021,3.13),
+(818,1022,3.13),
+(818,1023,3.13),
+(818,1024,3.13),
+(818,1555,2.93),
+(818,1997,2.97),
+(819,171,3.87),
+(819,172,3.87),
+(819,181,4.32),
+(819,182,4.32),
+(819,186,4.8),
+(819,187,4.8),
+(819,251,1.02),
+(819,253,1.02),
+(819,254,1.02),
+(819,255,1.02),
+(819,514,1.2),
+(819,515,1.2),
+(819,516,1.2),
+(819,517,1.2),
+(819,599,3.52),
+(819,600,3.52),
+(819,601,3.52),
+(819,602,3.52),
+(819,769,3.98),
+(819,770,3.98),
+(819,771,3.98),
+(819,772,3.98),
+(819,854,2.19),
+(819,855,2.19),
+(819,856,2.19),
+(819,857,2.19),
+(819,939,2.13),
+(819,940,2.13),
+(819,941,2.13),
+(819,942,2.13),
+(819,1024,3),
+(819,1025,3),
+(819,1026,3),
+(819,1027,3),
+(819,1556,1.5),
+(819,1557,1.5),
+(819,1998,1.45),
+(819,1999,1.45),
+(820,172,4),
+(820,173,4),
+(820,182,4.25),
+(820,183,4.25),
+(820,187,4.88),
+(820,188,4.88),
+(820,254,0.97),
+(820,435,0.97),
+(820,436,0.97),
+(820,437,0.97),
+(820,517,1.21),
+(820,518,1.21),
+(820,519,1.21),
+(820,520,1.21),
+(820,602,3.41),
+(820,603,3.41),
+(820,604,3.41),
+(820,605,3.41),
+(820,772,4.08),
+(820,773,4.08),
+(820,774,4.08),
+(820,775,4.08),
+(820,857,2.15),
+(820,858,2.15),
+(820,859,2.15),
+(820,860,2.15),
+(820,942,2.26),
+(820,943,2.26),
+(820,944,2.26),
+(820,945,2.26),
+(820,1027,3.05),
+(820,1028,3.05),
+(820,1029,3.05),
+(820,1030,3.05),
+(820,1557,1.5),
+(820,1558,1.5),
+(820,1913,0.1),
+(820,1999,1.18),
+(820,2000,1.18),
+(821,173,4.08),
+(821,183,3.87),
+(821,188,5.52),
+(821,211,4.08),
+(821,215,3.87),
+(821,217,5.52),
+(821,437,0.69),
+(821,438,0.69),
+(821,439,0.69),
+(821,440,0.69),
+(821,605,4.67),
+(821,606,4.67),
+(821,607,4.67),
+(821,608,4.67),
+(821,775,3.77),
+(821,776,3.77),
+(821,777,3.77),
+(821,778,3.77),
+(821,860,2.44),
+(821,861,2.44),
+(821,862,2.44),
+(821,863,2.44),
+(821,945,0.78),
+(821,946,0.78),
+(821,947,0.78),
+(821,948,0.78),
+(821,1030,2.99),
+(821,1031,2.99),
+(821,1032,2.99),
+(821,1033,2.99),
+(821,1200,1.43),
+(821,1201,1.43),
+(821,1202,1.43),
+(821,1203,1.43),
+(821,1558,1.65),
+(821,1559,1.65),
+(821,1913,0.1),
+(821,2000,1.33),
+(821,2001,1.33),
+(822,211,4.25),
+(822,212,4.25),
+(822,215,3.27),
+(822,216,3.27),
+(822,217,5.27),
+(822,218,5.27),
+(822,437,0.77),
+(822,438,0.77),
+(822,439,0.77),
+(822,440,0.77),
+(822,605,5.16),
+(822,606,5.16),
+(822,607,5.16),
+(822,608,5.16),
+(822,775,3.56),
+(822,776,3.56),
+(822,777,3.56),
+(822,778,3.56),
+(822,860,2.32),
+(822,861,2.32),
+(822,862,2.32),
+(822,863,2.32),
+(822,945,0.83),
+(822,946,0.83),
+(822,947,0.83),
+(822,948,0.83),
+(822,1030,2.98),
+(822,1031,2.98),
+(822,1032,2.98),
+(822,1033,2.98),
+(822,1200,1.65),
+(822,1201,1.65),
+(822,1202,1.65),
+(822,1203,1.65),
+(822,1559,1.55),
+(822,1560,1.55),
+(822,2001,1.08),
+(822,2002,1.08),
+(823,212,4.6),
+(823,216,2.8),
+(823,218,5.73),
+(823,267,4.6),
+(823,287,5.73),
+(823,409,2.8),
+(823,440,0.94),
+(823,441,0.94),
+(823,442,0.94),
+(823,443,0.94),
+(823,608,5.56),
+(823,609,5.56),
+(823,610,5.56),
+(823,611,5.56),
+(823,696,0.1),
+(823,778,3.11),
+(823,779,3.11),
+(823,780,3.11),
+(823,781,3.11),
+(823,863,2.42),
+(823,864,2.42),
+(823,865,2.42),
+(823,866,2.42),
+(823,948,0.85),
+(823,949,0.85),
+(823,950,0.85),
+(823,951,0.85),
+(823,1033,2.51),
+(823,1034,2.51),
+(823,1035,2.51),
+(823,1036,2.51),
+(823,1203,1.69),
+(823,1204,1.69),
+(823,1205,1.69),
+(823,1206,1.69),
+(823,1560,1.77),
+(823,1561,1.77),
+(823,2002,0.95),
+(823,2003,0.95),
+(824,267,4.36),
+(824,287,5.45),
+(824,333,5.45),
+(824,358,4.36),
+(824,409,3.09),
+(824,410,3.09),
+(824,443,0.85),
+(824,444,0.85),
+(824,445,0.85),
+(824,446,0.85),
+(824,611,5.07),
+(824,612,5.07),
+(824,613,5.07),
+(824,614,5.07),
+(824,781,3.33),
+(824,782,3.33),
+(824,783,3.33),
+(824,784,3.33),
+(824,866,2.36),
+(824,867,2.36),
+(824,868,2.36),
+(824,869,2.36),
+(824,951,0.86),
+(824,952,0.86),
+(824,953,0.86),
+(824,954,0.86),
+(824,1036,2.88),
+(824,1037,2.88),
+(824,1038,2.88),
+(824,1039,2.88),
+(824,1206,1.67),
+(824,1207,1.67),
+(824,1208,1.67),
+(824,1209,1.67),
+(824,1561,1.76),
+(824,1562,1.76),
+(824,2003,1.26),
+(824,2004,1.26),
+(825,334,9.8),
+(825,359,7.8),
+(825,411,5.45),
+(825,446,0.74),
+(825,447,0.74),
+(825,448,0.74),
+(825,449,0.74),
+(825,614,4.7),
+(825,615,4.7),
+(825,616,4.7),
+(825,617,4.7),
+(825,784,3.17),
+(825,785,3.17),
+(825,786,3.17),
+(825,787,3.17),
+(825,869,2.27),
+(825,870,2.27),
+(825,871,2.27),
+(825,872,2.27),
+(825,954,0.77),
+(825,955,0.77),
+(825,956,0.77),
+(825,957,0.77),
+(825,1039,2.41),
+(825,1040,2.41),
+(825,1041,2.41),
+(825,1042,2.41),
+(825,1209,1.49),
+(825,1210,1.49),
+(825,1211,1.49),
+(825,1212,1.49),
+(825,1323,0.35),
+(825,1369,0.4),
+(825,1415,0.35),
+(825,1461,0.35),
+(825,1507,0.45),
+(825,1563,7.55),
+(825,2005,5.4),
+(826,335,9.45),
+(826,360,7.75),
+(826,412,5.8),
+(826,446,0.8),
+(826,447,0.8),
+(826,448,0.8),
+(826,449,0.8),
+(826,614,4.94),
+(826,615,4.94),
+(826,616,4.94),
+(826,617,4.94),
+(826,784,3.16),
+(826,785,3.16),
+(826,786,3.16),
+(826,787,3.16),
+(826,869,2.19),
+(826,870,2.19),
+(826,871,2.19),
+(826,872,2.19),
+(826,954,0.71),
+(826,955,0.71),
+(826,956,0.71),
+(826,957,0.71),
+(826,1039,2.36),
+(826,1040,2.36),
+(826,1041,2.36),
+(826,1042,2.36),
+(826,1209,1.51),
+(826,1210,1.51),
+(826,1211,1.51),
+(826,1212,1.51),
+(826,1324,0.15),
+(826,1325,0.2),
+(826,1370,0.45),
+(826,1416,0.5),
+(826,1462,0.4),
+(826,1508,0.5),
+(826,1564,7.55),
+(826,2006,4.85),
+(827,336,4.43),
+(827,337,4.43),
+(827,361,4.55),
+(827,362,4.55),
+(827,413,2.27),
+(827,414,2.27),
+(827,449,0.62),
+(827,450,0.62),
+(827,451,0.62),
+(827,452,0.62),
+(827,454,0.54),
+(827,617,5.63),
+(827,618,5.63),
+(827,619,5.63),
+(827,620,5.63),
+(827,787,2.87),
+(827,788,2.87),
+(827,789,2.87),
+(827,790,2.87),
+(827,872,2.21),
+(827,873,2.21),
+(827,874,2.21),
+(827,875,2.21),
+(827,957,0.74),
+(827,958,0.74),
+(827,959,0.74),
+(827,960,0.74),
+(827,1042,1.97),
+(827,1043,1.97),
+(827,1044,1.97),
+(827,1045,1.97),
+(827,1212,1.39),
+(827,1213,1.39),
+(827,1214,1.39),
+(827,1215,1.39),
+(827,1217,1.04),
+(827,1325,0.15),
+(827,1326,0.13),
+(827,1371,0.22),
+(827,1372,0.23),
+(827,1417,0.32),
+(827,1418,0.32),
+(827,1463,0.22),
+(827,1464,0.22),
+(827,1509,0.35),
+(827,1510,0.35),
+(827,1565,4.08),
+(827,1566,4.08),
+(827,2007,2.42),
+(827,2008,2.42),
+(828,313,0.1),
+(828,315,0.4),
+(828,337,4.4),
+(828,338,4.4),
+(828,362,2.98),
+(828,363,2.98),
+(828,364,2.6),
+(828,414,2.22),
+(828,415,2.22),
+(828,452,0.58),
+(828,453,0.58),
+(828,454,0.58),
+(828,455,0.58),
+(828,537,0.1),
+(828,538,0.7),
+(828,620,6.24),
+(828,621,6.24),
+(828,622,6.24),
+(828,623,6.24),
+(828,707,0.1),
+(828,790,3.34),
+(828,791,3.34),
+(828,792,3.34),
+(828,793,3.34),
+(828,875,2.51),
+(828,876,2.26),
+(828,877,2.51),
+(828,878,2.26),
+(828,960,0.68),
+(828,961,0.68),
+(828,962,0.68),
+(828,963,0.68),
+(828,1045,1.89),
+(828,1046,1.89),
+(828,1047,1.89),
+(828,1048,1.89),
+(828,1132,0.1),
+(828,1215,1.23),
+(828,1216,1.23),
+(828,1217,1.23),
+(828,1218,1.23),
+(828,1326,0.13),
+(828,1327,0.13),
+(828,1372,0.21),
+(828,1373,0.21),
+(828,1374,0.27),
+(828,1418,0.27),
+(828,1419,0.31),
+(828,1420,0.23),
+(828,1464,0.28),
+(828,1465,0.28),
+(828,1510,0.63),
+(828,1511,0.63),
+(828,1561,1.23),
+(828,1562,1.23),
+(828,1563,1.23),
+(828,1564,1.23),
+(828,1565,1.23),
+(828,1566,3.14),
+(828,1567,3.14),
+(828,1857,0.1),
+(828,2008,2.13),
+(828,2009,2.13),
+(828,2149,0.4),
+(828,2151,0.1),
+(828,2153,0.1),
+(834,22,4.28),
+(834,74,3.43),
+(834,89,3.43),
+(834,96,4.28),
+(834,587,0.89),
+(834,588,0.89),
+(834,589,0.89),
+(834,590,0.89),
+(834,672,1.26),
+(834,673,1.26),
+(834,674,1.26),
+(834,675,1.26),
+(834,758,0.1),
+(834,842,1.26),
+(834,843,1.26),
+(834,844,1.26),
+(834,845,1.26),
+(834,927,1.89),
+(834,928,1.89),
+(834,929,1.89),
+(834,930,1.89),
+(834,1012,1.8),
+(834,1013,1.8),
+(834,1014,1.8),
+(834,1015,1.8),
+(834,1097,2.89),
+(834,1098,2.89),
+(834,1099,2.89),
+(834,1100,2.89),
+(834,1182,11.2),
+(834,1183,11.2),
+(834,1184,11.2),
+(834,1185,11.2),
+(834,1803,0.1),
+(835,89,3.93),
+(835,96,4.52),
+(835,108,3.93),
+(835,114,4.52),
+(835,210,0.1),
+(835,505,0.1),
+(835,587,0.94),
+(835,588,0.94),
+(835,589,0.94),
+(835,590,0.94),
+(835,672,1.37),
+(835,673,1.37),
+(835,674,1.37),
+(835,675,1.37),
+(835,842,1.28),
+(835,843,1.28),
+(835,844,1.28),
+(835,845,1.28),
+(835,927,2.06),
+(835,928,2.06),
+(835,929,2.06),
+(835,930,2.06),
+(835,1012,2.06),
+(835,1013,2.06),
+(835,1014,2.06),
+(835,1015,2.06),
+(835,1097,3.38),
+(835,1098,3.38),
+(835,1099,3.38),
+(835,1100,3.38),
+(835,1182,9.66),
+(835,1183,9.66),
+(835,1184,9.66),
+(835,1185,9.66),
+(835,1708,0.1),
+(835,1875,0.1),
+(835,2033,0.1),
+(836,108,4.35),
+(836,114,4.75),
+(836,128,4.35),
+(836,135,4.75),
+(836,248,0.1),
+(836,590,1.05),
+(836,591,1.05),
+(836,592,1.05),
+(836,593,1.05),
+(836,675,1.35),
+(836,676,1.35),
+(836,677,1.35),
+(836,678,1.35),
+(836,845,1.25),
+(836,846,1.25),
+(836,847,1.25),
+(836,848,1.25),
+(836,930,2.1),
+(836,931,2.1),
+(836,932,2.1),
+(836,933,2.1),
+(836,1015,2.08),
+(836,1016,2.08),
+(836,1017,2.08),
+(836,1018,2.08),
+(836,1100,3.55),
+(836,1101,3.55),
+(836,1102,3.55),
+(836,1103,3.55),
+(836,1185,9.07),
+(836,1186,9.07),
+(836,1187,9.07),
+(836,1188,9.07),
+(837,128,8.2),
+(837,135,5.5),
+(837,154,5.5),
+(837,593,0.97),
+(837,594,0.97),
+(837,595,0.97),
+(837,596,0.97),
+(837,678,1.32),
+(837,679,1.32),
+(837,680,1.32),
+(837,681,1.32),
+(837,848,1.23),
+(837,849,1.23),
+(837,850,1.23),
+(837,851,1.23),
+(837,933,2.06),
+(837,934,2.06),
+(837,935,2.06),
+(837,936,2.06),
+(837,1018,2.26),
+(837,1019,2.26),
+(837,1020,2.26),
+(837,1021,2.26),
+(837,1103,3.59),
+(837,1104,3.59),
+(837,1105,3.59),
+(837,1106,3.59),
+(837,1188,8.75),
+(837,1189,8.75),
+(837,1190,8.75),
+(837,1191,8.75),
+(838,184,10.7),
+(838,596,1),
+(838,597,1),
+(838,598,1),
+(838,599,1),
+(838,681,1.38),
+(838,682,1.38),
+(838,683,1.38),
+(838,684,1.38),
+(838,851,1.21),
+(838,852,1.21),
+(838,853,1.21),
+(838,854,1.21),
+(838,936,2.05),
+(838,937,2.05),
+(838,938,2.05),
+(838,939,2.05),
+(838,1021,2.08),
+(838,1022,2.08),
+(838,1023,2.08),
+(838,1024,2.08),
+(838,1106,3.71),
+(838,1107,3.71),
+(838,1108,3.71),
+(838,1109,3.71),
+(838,1191,8.53),
+(838,1192,8.53),
+(838,1193,8.53),
+(838,1194,8.53),
+(838,1608,9.4),
+(838,1846,0.1),
+(839,185,10.73),
+(839,596,1.01),
+(839,597,1.01),
+(839,598,1.01),
+(839,599,1.01),
+(839,681,1.36),
+(839,682,1.36),
+(839,683,1.36),
+(839,684,1.36),
+(839,851,1.18),
+(839,852,1.18),
+(839,853,1.18),
+(839,854,1.18),
+(839,936,1.97),
+(839,937,1.97),
+(839,938,1.97),
+(839,939,1.97),
+(839,1021,2.16),
+(839,1022,2.16),
+(839,1023,2.16),
+(839,1024,2.16),
+(839,1106,3.89),
+(839,1107,3.89),
+(839,1108,3.89),
+(839,1109,3.89),
+(839,1191,8.44),
+(839,1192,8.44),
+(839,1193,8.44),
+(839,1194,8.44),
+(839,1609,9.35),
+(840,186,5.38),
+(840,187,5.38),
+(840,599,0.88),
+(840,600,0.88),
+(840,601,0.88),
+(840,602,0.88),
+(840,684,1.28),
+(840,685,1.28),
+(840,686,1.28),
+(840,687,1.28),
+(840,854,1.15),
+(840,855,1.15),
+(840,856,1.15),
+(840,857,1.15),
+(840,939,1.99),
+(840,940,1.99),
+(840,941,1.99),
+(840,942,1.99),
+(840,1024,2.26),
+(840,1025,2.26),
+(840,1026,2.26),
+(840,1027,2.26),
+(840,1109,3.74),
+(840,1110,3.74),
+(840,1111,3.74),
+(840,1112,3.74),
+(840,1194,8.88),
+(840,1195,8.88),
+(840,1196,8.88),
+(840,1197,8.88),
+(840,1610,4.33),
+(840,1611,4.33),
+(841,187,5.23),
+(841,188,5.23),
+(841,602,0.78),
+(841,603,0.78),
+(841,604,0.78),
+(841,605,0.78),
+(841,687,1.18),
+(841,688,1.18),
+(841,689,1.18),
+(841,690,1.18),
+(841,857,0.98),
+(841,858,0.98),
+(841,859,0.98),
+(841,860,0.98),
+(841,942,1.93),
+(841,943,1.93),
+(841,944,1.93),
+(841,945,1.93),
+(841,1027,2.2),
+(841,1028,2.2),
+(841,1029,2.2),
+(841,1030,2.2),
+(841,1112,3.68),
+(841,1113,3.68),
+(841,1114,3.68),
+(841,1115,3.68),
+(841,1197,9.36),
+(841,1198,9.36),
+(841,1199,9.36),
+(841,1200,9.36),
+(841,1607,4.52),
+(841,1611,4.52),
+(842,5,0.1),
+(842,173,2.93),
+(842,183,3.38),
+(842,188,2.68),
+(842,211,2.93),
+(842,215,3.38),
+(842,217,2.68),
+(842,437,2.97),
+(842,438,2.97),
+(842,439,2.97),
+(842,440,2.97),
+(842,520,3.55),
+(842,521,3.55),
+(842,522,3.55),
+(842,523,3.55),
+(842,605,2.26),
+(842,606,2.26),
+(842,607,2.26),
+(842,608,2.26),
+(842,775,3.35),
+(842,776,3.35),
+(842,777,3.35),
+(842,778,3.35),
+(842,860,2.51),
+(842,861,2.51),
+(842,862,2.51),
+(842,863,2.51),
+(842,1030,3.28),
+(842,1031,3.28),
+(842,1032,3.28),
+(842,1033,3.28),
+(842,1200,0.94),
+(842,1201,0.94),
+(842,1202,0.94),
+(842,1203,0.94),
+(842,1558,1.67),
+(842,1559,1.67),
+(842,2000,1.68),
+(842,2001,1.68),
+(843,15,0.44),
+(843,19,0.44),
+(843,22,0.44),
+(843,96,0.44),
+(843,114,0.44),
+(843,135,0.44),
+(843,154,0.44),
+(843,184,0.44),
+(843,185,0.44),
+(843,186,0.44),
+(843,187,0.44),
+(843,188,0.44),
+(843,211,2.55),
+(843,212,2.55),
+(843,215,3.75),
+(843,216,3.75),
+(843,217,2.11),
+(843,218,2.11),
+(843,437,2.63),
+(843,438,2.63),
+(843,439,2.63),
+(843,440,2.63),
+(843,520,3.46),
+(843,521,3.46),
+(843,522,3.46),
+(843,523,3.46),
+(843,605,2.05),
+(843,606,2.05),
+(843,607,2.05),
+(843,608,2.05),
+(843,775,3.48),
+(843,776,3.48),
+(843,777,3.48),
+(843,778,3.48),
+(843,860,2.58),
+(843,861,2.58),
+(843,862,2.58),
+(843,863,2.58),
+(843,1030,3.36),
+(843,1031,3.36),
+(843,1032,3.36),
+(843,1033,3.36),
+(843,1200,1.12),
+(843,1201,1.12),
+(843,1202,1.12),
+(843,1203,1.12),
+(843,1353,0.1),
+(843,1559,1.73),
+(843,1560,1.73),
+(843,2001,1.63),
+(843,2002,1.63),
+(844,212,2.48),
+(844,216,3.6),
+(844,218,3.23),
+(844,267,2.48),
+(844,287,3.23),
+(844,409,3.6),
+(844,440,2.54),
+(844,441,2.54),
+(844,442,2.54),
+(844,443,2.54),
+(844,523,3.42),
+(844,524,3.42),
+(844,525,3.42),
+(844,526,3.42),
+(844,608,1.98),
+(844,609,1.98),
+(844,610,1.98),
+(844,611,1.98),
+(844,778,3.49),
+(844,779,3.49),
+(844,780,3.49),
+(844,781,3.49),
+(844,863,2.57),
+(844,864,2.57),
+(844,865,2.57),
+(844,866,2.57),
+(844,1033,3.63),
+(844,1034,3.63),
+(844,1035,3.63),
+(844,1036,3.63),
+(844,1203,1.18),
+(844,1204,1.18),
+(844,1205,1.18),
+(844,1206,1.18),
+(844,1560,1.48),
+(844,1561,1.48),
+(844,2002,1.72),
+(844,2003,1.72),
+(845,267,2.9),
+(845,287,3.08),
+(845,333,3.08),
+(845,358,2.9),
+(845,409,3.65),
+(845,410,3.65),
+(845,443,2.49),
+(845,444,2.49),
+(845,445,2.49),
+(845,446,2.49),
+(845,526,3.69),
+(845,527,3.69),
+(845,528,3.69),
+(845,529,3.69),
+(845,611,2.11),
+(845,612,2.11),
+(845,613,2.11),
+(845,614,2.11),
+(845,781,3.51),
+(845,782,3.51),
+(845,783,3.51),
+(845,784,3.51),
+(845,866,2.35),
+(845,867,2.35),
+(845,868,2.35),
+(845,869,2.35),
+(845,1036,3.3),
+(845,1037,3.3),
+(845,1038,3.3),
+(845,1039,3.3),
+(845,1206,1.16),
+(845,1207,1.16),
+(845,1208,1.16),
+(845,1209,1.16),
+(845,1561,1.5),
+(845,1562,1.5),
+(845,2003,1.6),
+(845,2004,1.6),
+(846,334,5.65),
+(846,359,5.5),
+(846,411,5.67),
+(846,446,2.61),
+(846,447,2.61),
+(846,448,2.61),
+(846,449,2.61),
+(846,529,2.8),
+(846,530,2.8),
+(846,531,2.8),
+(846,532,2.8),
+(846,614,2.05),
+(846,615,2.05),
+(846,616,2.05),
+(846,617,2.05),
+(846,784,3.1),
+(846,785,3.1),
+(846,786,3.1),
+(846,787,3.1),
+(846,869,2.36),
+(846,870,2.36),
+(846,871,2.36),
+(846,872,2.36),
+(846,1039,2.78),
+(846,1040,2.78),
+(846,1041,2.78),
+(846,1042,2.78),
+(846,1209,1.01),
+(846,1210,1.01),
+(846,1211,1.01),
+(846,1212,1.01),
+(846,1323,0.55),
+(846,1369,0.68),
+(846,1415,0.53),
+(846,1461,0.58),
+(846,1507,0.48),
+(846,1563,7.28),
+(846,2005,6.2),
+(847,335,4.8),
+(847,360,5.2),
+(847,412,4.9),
+(847,446,2.47),
+(847,447,2.47),
+(847,448,2.47),
+(847,449,2.47),
+(847,529,2.9),
+(847,530,2.9),
+(847,531,2.9),
+(847,532,2.9),
+(847,614,2.38),
+(847,615,2.38),
+(847,616,2.38),
+(847,617,2.38),
+(847,784,2.22),
+(847,785,2.22),
+(847,786,2.22),
+(847,787,2.22),
+(847,789,2.22),
+(847,869,2.65),
+(847,870,2.65),
+(847,871,2.65),
+(847,872,2.65),
+(847,1039,2.5),
+(847,1040,2.5),
+(847,1041,2.5),
+(847,1042,2.5),
+(847,1209,1.25),
+(847,1210,1.25),
+(847,1211,1.25),
+(847,1212,1.25),
+(847,1324,0.5),
+(847,1370,0.8),
+(847,1416,0.6),
+(847,1462,0.3),
+(847,1508,0.5),
+(847,1564,8.2),
+(847,2006,6.4),
+(848,336,2.82),
+(848,337,2.82),
+(848,361,2.62),
+(848,362,2.62),
+(848,413,2.32),
+(848,414,2.32),
+(848,449,2.46),
+(848,450,2.46),
+(848,451,2.46),
+(848,452,2.46),
+(848,532,2.8),
+(848,533,2.8),
+(848,534,2.8),
+(848,535,2.8),
+(848,617,2.66),
+(848,618,2.66),
+(848,619,2.66),
+(848,620,2.66),
+(848,787,2.7),
+(848,788,2.7),
+(848,789,2.7),
+(848,790,2.7),
+(848,872,2.62),
+(848,873,2.62),
+(848,874,2.62),
+(848,875,2.62),
+(848,960,0.1),
+(848,1042,2.33),
+(848,1043,2.33),
+(848,1044,2.33),
+(848,1045,2.33),
+(848,1046,1.7),
+(848,1212,1.22),
+(848,1213,1.22),
+(848,1214,1.22),
+(848,1215,1.22),
+(848,1325,0.17),
+(848,1326,0.17),
+(848,1371,0.2),
+(848,1372,0.2),
+(848,1417,0.4),
+(848,1418,0.4),
+(848,1463,0.2),
+(848,1464,0.2),
+(848,1509,0.22),
+(848,1510,0.27),
+(848,1565,3.8),
+(848,1566,3.8),
+(848,2007,2.58),
+(848,2008,2.58),
+(848,2009,2.55),
+(848,2146,0.1),
+(849,337,1.88),
+(849,338,1.88),
+(849,362,3.18),
+(849,363,3.18),
+(849,414,2.09),
+(849,415,2.09),
+(849,416,1.83),
+(849,452,3.39),
+(849,453,3.39),
+(849,454,3.39),
+(849,455,3.39),
+(849,535,2.95),
+(849,536,2.95),
+(849,537,2.95),
+(849,538,2.95),
+(849,620,2.67),
+(849,621,2.67),
+(849,622,2.67),
+(849,623,2.67),
+(849,790,3.24),
+(849,791,3.24),
+(849,792,3.24),
+(849,793,3.24),
+(849,875,2.44),
+(849,876,2.44),
+(849,877,2.44),
+(849,878,2.44),
+(849,1045,1.97),
+(849,1046,1.97),
+(849,1047,1.97),
+(849,1048,1.97),
+(849,1215,0.95),
+(849,1216,0.95),
+(849,1217,0.95),
+(849,1218,0.95),
+(849,1326,0.23),
+(849,1327,0.23),
+(849,1372,0.58),
+(849,1373,0.43),
+(849,1418,0.43),
+(849,1419,0.43),
+(849,1464,0.55),
+(849,1465,0.38),
+(849,1510,0.27),
+(849,1511,0.27),
+(849,1566,3.17),
+(849,1567,3.17),
+(849,1896,0.1),
+(849,1971,0.1),
+(849,2008,2.65),
+(849,2009,2.65),
+(849,2150,0.5),
+(849,2162,0.1),
+(863,188,4.79),
+(863,217,4.79),
+(863,605,1.08),
+(863,606,1.08),
+(863,607,1.08),
+(863,608,1.08),
+(863,690,1.43),
+(863,691,1.43),
+(863,692,1.43),
+(863,693,1.43),
+(863,860,1.09),
+(863,861,1.09),
+(863,862,1.09),
+(863,863,1.09),
+(863,945,1.74),
+(863,946,1.74),
+(863,947,1.74),
+(863,948,1.74),
+(863,1030,2.03),
+(863,1031,2.03),
+(863,1032,2.03),
+(863,1033,2.03),
+(863,1115,3.18),
+(863,1116,3.18),
+(863,1117,3.18),
+(863,1118,3.18),
+(863,1200,10.24),
+(863,1201,10.24),
+(863,1202,10.24),
+(863,1203,10.24),
+(863,1607,3.56),
+(863,1612,3.56),
+(864,217,5.42),
+(864,218,5.42),
+(864,605,1.05),
+(864,606,1.05),
+(864,607,1.05),
+(864,608,1.05),
+(864,690,1.35),
+(864,691,1.35),
+(864,692,1.35),
+(864,693,1.35),
+(864,860,1.07),
+(864,861,1.07),
+(864,862,1.07),
+(864,863,1.07),
+(864,945,1.93),
+(864,946,1.93),
+(864,947,1.93),
+(864,948,1.93),
+(864,1030,2.13),
+(864,1031,2.13),
+(864,1032,2.13),
+(864,1033,2.13),
+(864,1115,3.54),
+(864,1116,3.54),
+(864,1117,3.54),
+(864,1118,3.54),
+(864,1200,9.05),
+(864,1201,9.05),
+(864,1202,9.05),
+(864,1203,9.05),
+(864,1612,4.32),
+(864,1613,4.32),
+(865,218,5.63),
+(865,287,5.63),
+(865,608,1.08),
+(865,609,1.08),
+(865,610,1.08),
+(865,611,1.08),
+(865,693,1.31),
+(865,694,1.31),
+(865,695,1.31),
+(865,696,1.31),
+(865,863,0.95),
+(865,864,0.95),
+(865,865,0.95),
+(865,866,0.95),
+(865,948,1.85),
+(865,949,1.85),
+(865,950,1.85),
+(865,951,1.85),
+(865,1033,2.13),
+(865,1034,2.13),
+(865,1035,2.13),
+(865,1036,2.13),
+(865,1118,3.68),
+(865,1119,3.68),
+(865,1120,3.68),
+(865,1121,3.68),
+(865,1203,8.92),
+(865,1204,8.92),
+(865,1205,8.92),
+(865,1206,8.92),
+(865,1613,4.57),
+(865,1614,4.57),
+(866,287,5.71),
+(866,333,5.71),
+(866,611,0.88),
+(866,612,0.88),
+(866,613,0.88),
+(866,614,0.88),
+(866,696,1.39),
+(866,697,1.39),
+(866,698,1.39),
+(866,699,1.39),
+(866,866,1.35),
+(866,867,1.35),
+(866,868,1.35),
+(866,869,1.35),
+(866,951,1.94),
+(866,952,1.94),
+(866,953,1.94),
+(866,954,1.94),
+(866,1036,2.14),
+(866,1037,2.14),
+(866,1038,2.14),
+(866,1039,2.14),
+(866,1121,3.63),
+(866,1122,3.63),
+(866,1123,3.63),
+(866,1124,3.63),
+(866,1206,8.93),
+(866,1207,8.93),
+(866,1208,8.93),
+(866,1209,8.93),
+(866,1614,3.79),
+(866,1615,3.79),
+(867,334,9.55),
+(867,614,0.88),
+(867,615,0.88),
+(867,616,0.88),
+(867,617,0.88),
+(867,699,1.09),
+(867,700,1.09),
+(867,701,1.09),
+(867,702,1.09),
+(867,869,0.78),
+(867,870,0.78),
+(867,871,0.78),
+(867,872,0.78),
+(867,954,1.63),
+(867,955,1.63),
+(867,956,1.63),
+(867,957,1.63),
+(867,1039,1.96),
+(867,1040,1.96),
+(867,1041,1.96),
+(867,1042,1.96),
+(867,1124,3.06),
+(867,1125,3.06),
+(867,1126,3.06),
+(867,1127,3.06),
+(867,1209,8.29),
+(867,1210,8.29),
+(867,1211,8.29),
+(867,1212,8.29),
+(867,1323,0.25),
+(867,1369,0.2),
+(867,1415,0.3),
+(867,1461,0.2),
+(867,1507,0.3),
+(867,1620,18.6),
+(868,335,9.33),
+(868,614,0.88),
+(868,615,0.88),
+(868,616,0.88),
+(868,617,0.88),
+(868,699,1.22),
+(868,700,1.22),
+(868,701,1.22),
+(868,702,1.22),
+(868,869,0.79),
+(868,870,0.79),
+(868,871,0.79),
+(868,872,0.79),
+(868,954,1.49),
+(868,955,1.49),
+(868,956,1.49),
+(868,957,1.49),
+(868,1039,1.86),
+(868,1040,1.86),
+(868,1041,1.86),
+(868,1042,1.86),
+(868,1124,2.68),
+(868,1125,2.68),
+(868,1126,2.68),
+(868,1127,2.68),
+(868,1209,9.28),
+(868,1210,9.28),
+(868,1211,9.28),
+(868,1212,9.28),
+(868,1324,0.3),
+(868,1370,0.27),
+(868,1416,0.27),
+(868,1462,0.2),
+(868,1508,0.37),
+(868,1621,16.53),
+(869,336,4.2),
+(869,337,4.2),
+(869,617,0.9),
+(869,618,0.9),
+(869,619,0.9),
+(869,620,0.9),
+(869,702,1.13),
+(869,703,1.13),
+(869,704,1.13),
+(869,705,1.13),
+(869,872,0.96),
+(869,873,0.96),
+(869,874,0.96),
+(869,875,0.96),
+(869,957,1.74),
+(869,958,1.74),
+(869,959,1.74),
+(869,960,1.74),
+(869,1042,1.64),
+(869,1043,1.64),
+(869,1044,1.64),
+(869,1045,1.64),
+(869,1127,2.75),
+(869,1128,2.75),
+(869,1129,2.75),
+(869,1130,2.75),
+(869,1212,9.55),
+(869,1213,9.55),
+(869,1214,9.55),
+(869,1215,9.55),
+(869,1325,0.13),
+(869,1326,0.13),
+(869,1371,0.28),
+(869,1372,0.28),
+(869,1417,0.1),
+(869,1418,0.1),
+(869,1463,0.1),
+(869,1464,0.1),
+(869,1509,0.05),
+(869,1510,0.05),
+(869,1616,7.83),
+(869,1622,7.83),
+(870,337,4.63),
+(870,338,4.63),
+(870,620,0.69),
+(870,621,0.69),
+(870,622,0.69),
+(870,623,0.69),
+(870,705,1.39),
+(870,706,1.33),
+(870,707,1.39),
+(870,708,1.33),
+(870,875,1.1),
+(870,876,1.1),
+(870,877,1.1),
+(870,878,1.1),
+(870,960,1.68),
+(870,961,1.68),
+(870,962,1.68),
+(870,963,1.68),
+(870,1045,1.15),
+(870,1046,1.15),
+(870,1047,1.15),
+(870,1048,1.15),
+(870,1050,1.08),
+(870,1130,2.44),
+(870,1131,2.44),
+(870,1132,2.44),
+(870,1133,2.44),
+(870,1215,8.89),
+(870,1216,8.89),
+(870,1217,8.89),
+(870,1218,8.89),
+(870,1220,7.06),
+(870,1326,0.1),
+(870,1327,0.1),
+(870,1328,0.3),
+(870,1372,0.18),
+(870,1373,0.05),
+(870,1418,0.25),
+(870,1419,0.2),
+(870,1464,0.1),
+(870,1465,0.1),
+(870,1510,0.05),
+(870,1511,0.05),
+(870,1616,8.72),
+(870,1623,8.72),
+(870,2150,0.45),
+(870,2154,0.45),
+(875,25,4.05),
+(875,26,4.05),
+(875,228,1.15),
+(875,256,1.15),
+(875,501,1.15),
+(875,502,1.15),
+(875,584,1.02),
+(875,585,1.02),
+(875,586,1.02),
+(875,587,1.02),
+(875,754,6.25),
+(875,755,6.25),
+(875,756,6.25),
+(875,757,6.25),
+(875,839,4.2),
+(875,840,4.2),
+(875,841,4.2),
+(875,842,4.2),
+(875,1009,6.5),
+(875,1010,6.5),
+(875,1011,6.5),
+(875,1012,6.5),
+(875,1876,3.4),
+(875,1877,3.4),
+(875,2028,4.3),
+(875,2029,4.3),
+(876,26,5.05),
+(876,94,5.05),
+(876,96,0.05),
+(876,114,0.05),
+(876,502,1.08),
+(876,503,1.08),
+(876,504,1.08),
+(876,505,1.08),
+(876,587,1.17),
+(876,588,1.17),
+(876,589,1.17),
+(876,590,1.17),
+(876,757,5.65),
+(876,758,5.65),
+(876,759,5.65),
+(876,760,5.65),
+(876,842,4.72),
+(876,843,4.72),
+(876,844,4.72),
+(876,845,4.72),
+(876,1012,6.18),
+(876,1013,6.18),
+(876,1014,6.18),
+(876,1015,6.18),
+(876,1877,3.3),
+(876,1878,3.3),
+(876,2029,4),
+(876,2030,4),
+(877,6,0.1),
+(877,94,4.78),
+(877,112,4.78),
+(877,235,0.1),
+(877,502,1.15),
+(877,503,1.15),
+(877,504,1.15),
+(877,505,1.15),
+(877,587,1.14),
+(877,588,1.14),
+(877,589,1.14),
+(877,590,1.14),
+(877,757,5.98),
+(877,758,5.98),
+(877,759,5.98),
+(877,760,5.98),
+(877,842,4.25),
+(877,843,4.25),
+(877,844,4.25),
+(877,845,4.25),
+(877,1012,6.85),
+(877,1013,6.85),
+(877,1014,6.85),
+(877,1015,6.85),
+(877,1841,0.1),
+(877,1878,3),
+(877,1879,3),
+(877,1918,0.1),
+(877,2030,3.45),
+(877,2031,3.45),
+(878,112,4.8),
+(878,133,4.8),
+(878,235,0.1),
+(878,505,1.22),
+(878,506,1.22),
+(878,507,1.22),
+(878,508,1.22),
+(878,590,1.25),
+(878,591,1.25),
+(878,592,1.25),
+(878,593,1.25),
+(878,676,0.1),
+(878,760,5.75),
+(878,761,5.75),
+(878,762,5.75),
+(878,763,5.75),
+(878,845,3.77),
+(878,846,3.77),
+(878,847,3.77),
+(878,848,3.77),
+(878,1015,7.31),
+(878,1016,7.31),
+(878,1017,7.31),
+(878,1018,7.31),
+(878,1879,3.13),
+(878,1880,3.13),
+(878,2031,3.48),
+(878,2032,3.48),
+(879,133,4.9),
+(879,152,4.9),
+(879,508,1.1),
+(879,509,1.1),
+(879,510,1.1),
+(879,511,1.1),
+(879,593,1.19),
+(879,594,1.19),
+(879,595,1.19),
+(879,596,1.19),
+(879,763,5.99),
+(879,764,5.99),
+(879,765,5.99),
+(879,766,5.99),
+(879,848,4.36),
+(879,849,4.36),
+(879,850,4.36),
+(879,851,4.36),
+(879,1018,6.85),
+(879,1019,6.85),
+(879,1020,6.85),
+(879,1021,6.85),
+(879,1880,2.92),
+(879,1881,2.92),
+(879,1919,0.1),
+(879,2032,3.22),
+(879,2033,3.22),
+(880,174,10),
+(880,511,1.07),
+(880,512,1.07),
+(880,513,1.07),
+(880,514,1.07),
+(880,596,1.08),
+(880,597,1.08),
+(880,598,1.08),
+(880,599,1.08),
+(880,766,6.51),
+(880,767,6.51),
+(880,768,6.51),
+(880,769,6.51),
+(880,851,3.72),
+(880,852,3.72),
+(880,853,3.72),
+(880,854,3.72),
+(880,1021,7.15),
+(880,1022,7.15),
+(880,1023,7.15),
+(880,1024,7.15),
+(880,1837,0.1),
+(880,1882,5.37),
+(880,2034,6.47),
+(881,175,10.3),
+(881,511,1.1),
+(881,512,1.1),
+(881,513,1.1),
+(881,514,1.1),
+(881,596,0.97),
+(881,597,0.97),
+(881,598,0.97),
+(881,599,0.97),
+(881,766,6.93),
+(881,767,6.93),
+(881,768,6.93),
+(881,769,6.93),
+(881,851,3.65),
+(881,852,3.65),
+(881,853,3.65),
+(881,854,3.65),
+(881,1021,6.98),
+(881,1022,6.98),
+(881,1023,6.98),
+(881,1024,6.98),
+(881,1883,5.6),
+(881,1921,0.1),
+(881,2035,5.57),
+(882,176,5.03),
+(882,177,5.03),
+(882,514,1),
+(882,515,1),
+(882,516,1),
+(882,517,1),
+(882,599,1),
+(882,600,1),
+(882,601,1),
+(882,602,1),
+(882,769,7.08),
+(882,770,7.08),
+(882,771,7.08),
+(882,772,7.08),
+(882,854,3.45),
+(882,855,3.45),
+(882,856,3.45),
+(882,857,3.45),
+(882,1024,7.33),
+(882,1025,7.33),
+(882,1026,7.33),
+(882,1027,7.33),
+(882,1884,2.5),
+(882,1885,2.5),
+(882,2036,2.72),
+(882,2037,2.72),
+(883,177,4.98),
+(883,178,4.98),
+(883,517,1.11),
+(883,518,1.11),
+(883,519,1.11),
+(883,520,1.11),
+(883,602,1.04),
+(883,603,1.04),
+(883,604,1.04),
+(883,605,1.04),
+(883,772,6.75),
+(883,773,6.75),
+(883,774,6.75),
+(883,775,6.75),
+(883,857,2.84),
+(883,858,2.84),
+(883,859,2.84),
+(883,860,2.84),
+(883,1027,7.74),
+(883,1028,7.74),
+(883,1029,7.74),
+(883,1030,7.74),
+(883,1885,2.95),
+(883,1886,2.95),
+(883,2037,3.17),
+(883,2038,3.17),
+(884,178,4.27),
+(884,213,4.27),
+(884,520,1.08),
+(884,521,1.08),
+(884,522,1.08),
+(884,523,1.08),
+(884,605,1.13),
+(884,606,1.13),
+(884,607,1.13),
+(884,608,1.13),
+(884,775,7),
+(884,776,7),
+(884,777,7),
+(884,778,7),
+(884,860,2.63),
+(884,861,2.63),
+(884,862,2.63),
+(884,863,2.63),
+(884,1030,7.64),
+(884,1031,7.64),
+(884,1032,7.64),
+(884,1033,7.64),
+(884,1886,3.1),
+(884,1887,3.1),
+(884,1924,0.1),
+(884,1989,0.1),
+(884,2038,3.7),
+(884,2039,3.7),
+(885,213,3.77),
+(885,214,3.77),
+(885,520,1.16),
+(885,521,1.16),
+(885,522,1.16),
+(885,523,1.16),
+(885,605,1.11),
+(885,606,1.11),
+(885,607,1.11),
+(885,608,1.11),
+(885,775,7.16),
+(885,776,7.16),
+(885,777,7.16),
+(885,778,7.16),
+(885,860,2.59),
+(885,861,2.59),
+(885,862,2.59),
+(885,863,2.59),
+(885,1030,7.79),
+(885,1031,7.79),
+(885,1032,7.79),
+(885,1033,7.79),
+(885,1887,3.13),
+(885,1888,3.13),
+(885,2039,3.5),
+(885,2040,3.5),
+(886,214,4.02),
+(886,383,4.02),
+(886,523,1.08),
+(886,524,1.08),
+(886,525,1.08),
+(886,526,1.08),
+(886,608,1.22),
+(886,609,1.22),
+(886,610,1.22),
+(886,611,1.22),
+(886,778,6.76),
+(886,779,6.76),
+(886,780,6.76),
+(886,781,6.76),
+(886,863,2.77),
+(886,864,2.77),
+(886,865,2.77),
+(886,866,2.77),
+(886,1033,7.57),
+(886,1034,7.57),
+(886,1035,7.57),
+(886,1036,7.57),
+(886,1121,0.1),
+(886,1459,0.1),
+(886,1888,3.42),
+(886,1889,3.42),
+(886,2040,3.83),
+(886,2041,3.83),
+(887,383,4.35),
+(887,384,4.35),
+(887,526,1.02),
+(887,527,1.02),
+(887,528,1.02),
+(887,529,1.02),
+(887,611,1.07),
+(887,612,1.07),
+(887,613,1.07),
+(887,614,1.07),
+(887,781,7.07),
+(887,782,7.07),
+(887,783,7.07),
+(887,784,7.07),
+(887,866,2.87),
+(887,867,2.87),
+(887,868,2.87),
+(887,869,2.87),
+(887,1036,7.22),
+(887,1037,7.22),
+(887,1038,7.22),
+(887,1039,7.22),
+(887,1889,3.55),
+(887,1890,3.55),
+(887,2041,3.6),
+(887,2042,3.6),
+(888,385,8.1),
+(888,529,0.9),
+(888,530,0.9),
+(888,531,0.9),
+(888,532,0.9),
+(888,614,0.93),
+(888,615,0.93),
+(888,616,0.93),
+(888,617,0.93),
+(888,784,6.29),
+(888,785,6.29),
+(888,786,6.29),
+(888,787,6.29),
+(888,869,2.95),
+(888,870,2.95),
+(888,871,2.95),
+(888,872,2.95),
+(888,956,0.1),
+(888,1039,5.99),
+(888,1040,5.99),
+(888,1041,5.99),
+(888,1042,5.99),
+(888,1323,0.25),
+(888,1369,0.25),
+(888,1415,0.4),
+(888,1461,0.25),
+(888,1507,0.25),
+(888,1891,10.25),
+(888,2043,11.95),
+(889,386,8.3),
+(889,529,0.66),
+(889,530,0.66),
+(889,531,0.66),
+(889,532,0.66),
+(889,614,0.76),
+(889,615,0.76),
+(889,616,0.76),
+(889,617,0.76),
+(889,784,6.03),
+(889,785,6.03),
+(889,786,6.03),
+(889,787,6.03),
+(889,869,3.43),
+(889,870,3.43),
+(889,871,3.43),
+(889,872,3.43),
+(889,1039,5.74),
+(889,1040,5.74),
+(889,1041,5.74),
+(889,1042,5.74),
+(889,1324,0.3),
+(889,1370,0.4),
+(889,1416,0.5),
+(889,1462,0.2),
+(889,1508,0.3),
+(889,1892,11.55),
+(889,2044,12.05),
+(890,338,0.1),
+(890,387,4.45),
+(890,388,4.45),
+(890,532,0.65),
+(890,533,0.65),
+(890,534,0.65),
+(890,535,0.65),
+(890,617,0.56),
+(890,618,0.56),
+(890,619,0.56),
+(890,620,0.56),
+(890,622,0.46),
+(890,787,6.07),
+(890,788,6.07),
+(890,789,6.07),
+(890,790,6.07),
+(890,872,4.12),
+(890,873,4.12),
+(890,874,4.12),
+(890,875,4.12),
+(890,1042,4.7),
+(890,1043,4.7),
+(890,1044,4.7),
+(890,1045,4.7),
+(890,1325,0.07),
+(890,1326,0.07),
+(890,1371,0.2),
+(890,1372,0.2),
+(890,1417,0.23),
+(890,1418,0.23),
+(890,1463,0.18),
+(890,1464,0.18),
+(890,1509,0.17),
+(890,1510,0.17),
+(890,1893,6.05),
+(890,1894,6.05),
+(890,1972,0.1),
+(890,2009,0.1),
+(890,2045,5.28),
+(890,2046,5.28),
+(890,2047,3.05),
+(890,2048,3.05),
+(890,2149,0.1),
+(891,388,4.4),
+(891,389,4.4),
+(891,453,0.1),
+(891,535,0.44),
+(891,536,0.44),
+(891,537,0.44),
+(891,538,0.44),
+(891,620,0.64),
+(891,621,0.64),
+(891,622,0.64),
+(891,623,0.64),
+(891,706,0.1),
+(891,790,5.51),
+(891,791,5.51),
+(891,792,5.51),
+(891,793,5.51),
+(891,875,4.46),
+(891,876,4.46),
+(891,877,4.46),
+(891,878,4.46),
+(891,1045,4.58),
+(891,1046,4.58),
+(891,1047,4.58),
+(891,1048,4.58),
+(891,1326,0.5),
+(891,1327,0.1),
+(891,1372,0.2),
+(891,1373,0.2),
+(891,1418,0.3),
+(891,1419,0.3),
+(891,1464,0.58),
+(891,1465,0.58),
+(891,1510,0.33),
+(891,1511,0.33),
+(891,1858,0.1),
+(891,1894,6.8),
+(891,1895,6.8),
+(891,2046,6.17),
+(891,2047,6.17),
+(891,2148,0.1),
+(896,25,3.4),
+(896,26,3.4),
+(896,29,0.1),
+(896,62,2.52),
+(896,74,2.52),
+(896,227,1.04),
+(896,228,1.96),
+(896,229,1.04),
+(896,231,1.04),
+(896,238,1.04),
+(896,256,1.96),
+(896,501,1.96),
+(896,502,1.96),
+(896,584,4.71),
+(896,585,4.71),
+(896,586,4.71),
+(896,587,4.71),
+(896,669,0.7),
+(896,670,0.7),
+(896,671,0.7),
+(896,672,0.7),
+(896,754,4.04),
+(896,755,4.04),
+(896,756,4.04),
+(896,757,4.04),
+(896,839,2.36),
+(896,840,2.36),
+(896,841,2.36),
+(896,842,2.36),
+(896,929,0.1),
+(896,1009,3.21),
+(896,1010,3.21),
+(896,1011,3.21),
+(896,1012,3.21),
+(896,1014,2.74),
+(896,1094,0.93),
+(896,1095,0.93),
+(896,1096,0.93),
+(896,1097,0.93),
+(896,1179,1.51),
+(896,1180,1.51),
+(896,1181,1.51),
+(896,1182,1.51),
+(896,1399,0.1),
+(896,1799,0.83),
+(896,1800,1.09),
+(896,1801,1.09),
+(896,1837,0.1),
+(896,2028,1.2),
+(896,2029,1.2),
+(897,26,3.95),
+(897,74,2.75),
+(897,89,2.75),
+(897,94,3.95),
+(897,232,0.95),
+(897,233,0.95),
+(897,234,0.95),
+(897,238,0.95),
+(897,502,1.88),
+(897,503,1.88),
+(897,504,1.88),
+(897,505,1.88),
+(897,587,3.9),
+(897,588,3.9),
+(897,589,3.9),
+(897,590,3.9),
+(897,672,0.55),
+(897,673,0.55),
+(897,674,0.55),
+(897,675,0.55),
+(897,757,4.38),
+(897,758,4.38),
+(897,759,4.38),
+(897,760,4.38),
+(897,842,2.53),
+(897,843,2.53),
+(897,844,2.53),
+(897,845,2.53),
+(897,1012,3.78),
+(897,1013,3.78),
+(897,1014,3.78),
+(897,1015,3.78),
+(897,1097,1.05),
+(897,1098,1.05),
+(897,1099,1.05),
+(897,1100,1.05),
+(897,1182,1.45),
+(897,1183,1.45),
+(897,1184,1.45),
+(897,1185,1.45),
+(897,1801,1.2),
+(897,1802,1.2),
+(897,2029,1.15),
+(897,2030,1.15),
+(898,89,2.87),
+(898,91,0.1),
+(898,94,3.57),
+(898,108,2.87),
+(898,112,3.57),
+(898,136,0.1),
+(898,232,0.94),
+(898,233,0.94),
+(898,234,0.94),
+(898,238,0.94),
+(898,502,1.69),
+(898,503,1.69),
+(898,504,1.69),
+(898,505,1.69),
+(898,506,1.16),
+(898,507,1.16),
+(898,508,1.16),
+(898,587,4.52),
+(898,588,4.52),
+(898,589,4.52),
+(898,590,4.52),
+(898,672,0.6),
+(898,673,0.6),
+(898,674,0.6),
+(898,675,0.6),
+(898,757,3.83),
+(898,758,3.83),
+(898,759,3.83),
+(898,760,3.83),
+(898,762,3.06),
+(898,842,2.23),
+(898,843,2.23),
+(898,844,2.23),
+(898,845,2.23),
+(898,1012,3.8),
+(898,1013,3.8),
+(898,1014,3.8),
+(898,1015,3.8),
+(898,1097,1.06),
+(898,1098,1.06),
+(898,1099,1.06),
+(898,1100,1.06),
+(898,1182,1.41),
+(898,1183,1.41),
+(898,1184,1.41),
+(898,1185,1.41),
+(898,1802,1.28),
+(898,1803,1.28),
+(898,1955,0.1),
+(898,2030,1.05),
+(898,2031,1.05),
+(899,108,3.05),
+(899,112,3.3),
+(899,128,3.05),
+(899,133,3.3),
+(899,234,1),
+(899,235,1),
+(899,236,1),
+(899,248,1),
+(899,505,2),
+(899,506,2),
+(899,507,2),
+(899,508,2),
+(899,590,4.8),
+(899,591,4.8),
+(899,592,4.8),
+(899,593,4.8),
+(899,675,0.68),
+(899,676,0.68),
+(899,677,0.68),
+(899,678,0.68),
+(899,760,3.7),
+(899,761,3.7),
+(899,762,3.7),
+(899,763,3.7),
+(899,845,2.17),
+(899,846,2.17),
+(899,847,2.17),
+(899,848,2.17),
+(899,1015,3.78),
+(899,1016,3.78),
+(899,1017,3.78),
+(899,1018,3.78),
+(899,1100,1.17),
+(899,1101,1.17),
+(899,1102,1.17),
+(899,1103,1.17),
+(899,1185,1.65),
+(899,1186,1.65),
+(899,1187,1.65),
+(899,1188,1.65),
+(899,1803,0.95),
+(899,1804,0.95),
+(899,2031,0.95),
+(899,2032,0.95),
+(900,128,6.17),
+(900,133,3.58),
+(900,152,3.58),
+(900,237,0.93),
+(900,247,0.93),
+(900,248,0.93),
+(900,249,0.93),
+(900,508,2.15),
+(900,509,2.15),
+(900,510,2.15),
+(900,511,2.15),
+(900,593,4.41),
+(900,594,4.41),
+(900,595,4.41),
+(900,596,4.41),
+(900,678,0.55),
+(900,679,0.55),
+(900,680,0.55),
+(900,681,0.55),
+(900,763,3.93),
+(900,764,3.93),
+(900,765,3.93),
+(900,766,3.93),
+(900,848,2.22),
+(900,849,2.22),
+(900,850,2.22),
+(900,851,2.22),
+(900,1018,3.9),
+(900,1019,3.9),
+(900,1020,3.9),
+(900,1021,3.9),
+(900,1103,1.13),
+(900,1104,1.13),
+(900,1105,1.13),
+(900,1106,1.13),
+(900,1188,1.43),
+(900,1189,1.43),
+(900,1190,1.43),
+(900,1191,1.43),
+(900,1804,1.17),
+(900,1805,1.17),
+(900,1843,0.1),
+(900,2032,0.92),
+(900,2033,0.92),
+(901,174,8.4),
+(901,247,0.92),
+(901,250,0.92),
+(901,251,0.92),
+(901,252,0.92),
+(901,511,2.04),
+(901,512,2.04),
+(901,513,2.04),
+(901,514,2.04),
+(901,596,3.26),
+(901,597,3.26),
+(901,598,3.26),
+(901,599,3.26),
+(901,681,0.53),
+(901,682,0.53),
+(901,683,0.53),
+(901,684,0.53),
+(901,766,4.41),
+(901,767,4.41),
+(901,768,4.41),
+(901,769,4.41),
+(901,851,2.54),
+(901,852,2.54),
+(901,853,2.54),
+(901,854,2.54),
+(901,1021,4.1),
+(901,1022,4.1),
+(901,1023,4.1),
+(901,1024,4.1),
+(901,1106,1.14),
+(901,1107,1.14),
+(901,1108,1.14),
+(901,1109,1.14),
+(901,1191,1.38),
+(901,1192,1.38),
+(901,1193,1.38),
+(901,1194,1.38),
+(901,1608,6.4),
+(901,1806,2.2),
+(901,1875,0.1),
+(901,2034,1.85),
+(902,175,8.43),
+(902,247,0.92),
+(902,250,0.92),
+(902,251,0.92),
+(902,252,0.92),
+(902,511,1.98),
+(902,512,1.98),
+(902,513,1.98),
+(902,514,1.98),
+(902,596,2.79),
+(902,597,2.79),
+(902,598,2.79),
+(902,599,2.79),
+(902,681,0.47),
+(902,682,0.47),
+(902,683,0.47),
+(902,684,0.47),
+(902,766,4.55),
+(902,767,4.55),
+(902,768,4.55),
+(902,769,4.55),
+(902,851,2.63),
+(902,852,2.63),
+(902,853,2.63),
+(902,854,2.63),
+(902,1021,4.28),
+(902,1022,4.28),
+(902,1023,4.28),
+(902,1024,4.28),
+(902,1106,1.14),
+(902,1107,1.14),
+(902,1108,1.14),
+(902,1109,1.14),
+(902,1191,1.49),
+(902,1192,1.49),
+(902,1193,1.49),
+(902,1194,1.49),
+(902,1609,6.77),
+(902,1807,2.17),
+(902,2035,1.73),
+(903,176,3.78),
+(903,177,3.78),
+(903,251,0.85),
+(903,253,0.85),
+(903,254,0.85),
+(903,255,0.85),
+(903,514,2.08),
+(903,515,2.08),
+(903,516,2.08),
+(903,517,2.08),
+(903,599,3.02),
+(903,600,3.02),
+(903,601,3.02),
+(903,602,3.02),
+(903,684,0.48),
+(903,685,0.48),
+(903,686,0.48),
+(903,687,0.48),
+(903,769,4.56),
+(903,770,4.56),
+(903,771,4.56),
+(903,772,4.56),
+(903,854,2.6),
+(903,855,2.6),
+(903,856,2.6),
+(903,857,2.6),
+(903,1024,4.43),
+(903,1025,4.43),
+(903,1026,4.43),
+(903,1027,4.43),
+(903,1109,1.2),
+(903,1110,1.2),
+(903,1111,1.2),
+(903,1112,1.2),
+(903,1194,1.41),
+(903,1195,1.41),
+(903,1196,1.41),
+(903,1197,1.41),
+(903,1610,3.15),
+(903,1611,3.15),
+(903,1808,1),
+(903,1809,1),
+(903,2036,0.82),
+(903,2037,0.82),
+(904,177,3.58),
+(904,178,3.58),
+(904,254,0.93),
+(904,435,0.93),
+(904,436,0.93),
+(904,437,0.93),
+(904,517,2.12),
+(904,518,2.12),
+(904,519,2.12),
+(904,520,2.12),
+(904,602,3.15),
+(904,603,3.15),
+(904,604,3.15),
+(904,605,3.15),
+(904,687,0.51),
+(904,688,0.51),
+(904,689,0.51),
+(904,690,0.51),
+(904,772,4.22),
+(904,773,4.22),
+(904,774,4.22),
+(904,775,4.22),
+(904,857,2.48),
+(904,858,2.48),
+(904,859,2.48),
+(904,860,2.48),
+(904,1027,4.63),
+(904,1028,4.63),
+(904,1029,4.63),
+(904,1030,4.63),
+(904,1112,1.22),
+(904,1113,1.22),
+(904,1114,1.22),
+(904,1115,1.22),
+(904,1197,1.45),
+(904,1198,1.45),
+(904,1199,1.45),
+(904,1200,1.45),
+(904,1607,3.15),
+(904,1611,3.15),
+(904,1809,1.05),
+(904,1810,1.05),
+(904,1875,0.1),
+(904,2037,0.8),
+(904,2038,0.8),
+(905,178,3.25),
+(905,213,3.25),
+(905,437,1.06),
+(905,438,1.06),
+(905,439,1.06),
+(905,440,1.06),
+(905,520,1.19),
+(905,521,1.19),
+(905,522,1.19),
+(905,523,1.19),
+(905,605,4.15),
+(905,606,4.15),
+(905,607,4.15),
+(905,608,4.15),
+(905,690,0.75),
+(905,691,0.75),
+(905,692,0.75),
+(905,693,0.75),
+(905,775,4.1),
+(905,776,4.1),
+(905,777,4.1),
+(905,778,4.1),
+(905,860,2.5),
+(905,861,2.5),
+(905,862,2.5),
+(905,863,2.5),
+(905,1030,4.29),
+(905,1031,4.29),
+(905,1032,4.29),
+(905,1033,4.29),
+(905,1115,1.38),
+(905,1116,1.38),
+(905,1117,1.38),
+(905,1118,1.38),
+(905,1200,1.56),
+(905,1201,1.56),
+(905,1202,1.56),
+(905,1203,1.56),
+(905,1607,3.07),
+(905,1612,3.07),
+(905,1810,1.07),
+(905,1811,1.07),
+(905,2038,0.75),
+(905,2039,0.75),
+(906,213,3.25),
+(906,214,3.25),
+(906,437,1.09),
+(906,438,1.09),
+(906,439,1.09),
+(906,440,1.09),
+(906,520,1.22),
+(906,521,1.22),
+(906,522,1.22),
+(906,523,1.22),
+(906,605,3.76),
+(906,606,3.76),
+(906,607,3.76),
+(906,608,3.76),
+(906,690,0.83),
+(906,691,0.83),
+(906,692,0.83),
+(906,693,0.83),
+(906,775,3.97),
+(906,776,3.97),
+(906,777,3.97),
+(906,778,3.97),
+(906,860,2.56),
+(906,861,2.56),
+(906,862,2.56),
+(906,863,2.56),
+(906,1030,4.36),
+(906,1031,4.36),
+(906,1032,4.36),
+(906,1033,4.36),
+(906,1115,1.55),
+(906,1116,1.55),
+(906,1117,1.55),
+(906,1118,1.55),
+(906,1200,1.56),
+(906,1201,1.56),
+(906,1202,1.56),
+(906,1203,1.56),
+(906,1612,2.95),
+(906,1613,2.95),
+(906,1811,1.1),
+(906,1812,1.1),
+(906,2039,0.77),
+(906,2040,0.77),
+(907,214,3.23),
+(907,383,3.23),
+(907,440,1.28),
+(907,441,1.28),
+(907,442,1.28),
+(907,443,1.28),
+(907,523,1.14),
+(907,524,1.14),
+(907,525,1.14),
+(907,526,1.14),
+(907,608,3.94),
+(907,609,3.94),
+(907,610,3.94),
+(907,611,3.94),
+(907,693,0.72),
+(907,694,0.72),
+(907,695,0.72),
+(907,696,0.72),
+(907,778,3.74),
+(907,779,3.74),
+(907,780,3.74),
+(907,781,3.74),
+(907,863,2.84),
+(907,864,2.84),
+(907,865,2.84),
+(907,866,2.84),
+(907,1033,4.39),
+(907,1034,4.39),
+(907,1035,4.39),
+(907,1036,4.39),
+(907,1118,1.53),
+(907,1119,1.53),
+(907,1120,1.53),
+(907,1121,1.53),
+(907,1203,1.57),
+(907,1204,1.57),
+(907,1205,1.57),
+(907,1206,1.57),
+(907,1613,2.85),
+(907,1614,2.85),
+(907,1812,0.89),
+(907,1813,0.89),
+(907,2040,0.67),
+(907,2041,0.67),
+(908,383,3.65),
+(908,384,3.65),
+(908,443,1.35),
+(908,444,1.35),
+(908,445,1.35),
+(908,446,1.35),
+(908,526,1.15),
+(908,527,1.15),
+(908,528,1.15),
+(908,529,1.15),
+(908,611,3.58),
+(908,612,3.58),
+(908,613,3.58),
+(908,614,3.58),
+(908,696,0.7),
+(908,697,0.7),
+(908,698,0.7),
+(908,699,0.7),
+(908,781,4.03),
+(908,782,4.03),
+(908,783,4.03),
+(908,784,4.03),
+(908,866,2.83),
+(908,867,2.83),
+(908,868,2.83),
+(908,869,2.83),
+(908,1036,4.45),
+(908,1037,4.45),
+(908,1038,4.45),
+(908,1039,4.45),
+(908,1121,1.42),
+(908,1122,1.42),
+(908,1123,1.42),
+(908,1124,1.42),
+(908,1206,1.45),
+(908,1207,1.45),
+(908,1208,1.45),
+(908,1209,1.45),
+(908,1614,2.65),
+(908,1615,2.65),
+(908,1813,0.85),
+(908,1814,0.85),
+(908,2041,0.9),
+(908,2042,0.9),
+(909,385,6.4),
+(909,446,1.24),
+(909,447,1.24),
+(909,448,1.24),
+(909,449,1.24),
+(909,529,1.11),
+(909,530,1.11),
+(909,531,1.11),
+(909,532,1.11),
+(909,614,3.84),
+(909,615,3.84),
+(909,616,3.84),
+(909,617,3.84),
+(909,699,0.75),
+(909,700,0.75),
+(909,701,0.75),
+(909,702,0.75),
+(909,784,3.59),
+(909,785,3.59),
+(909,786,3.59),
+(909,787,3.59),
+(909,869,2.62),
+(909,870,2.62),
+(909,871,2.62),
+(909,872,2.62),
+(909,1039,3.8),
+(909,1040,3.8),
+(909,1041,3.8),
+(909,1042,3.8),
+(909,1124,1.21),
+(909,1125,1.21),
+(909,1126,1.21),
+(909,1127,1.21),
+(909,1209,1.44),
+(909,1210,1.44),
+(909,1211,1.44),
+(909,1212,1.44),
+(909,1323,0.2),
+(909,1369,0.58),
+(909,1415,0.45),
+(909,1461,0.48),
+(909,1507,0.38),
+(909,1620,8.13),
+(909,1815,2.48),
+(909,2043,2.43),
+(910,386,5.8),
+(910,446,1.14),
+(910,447,1.14),
+(910,448,1.14),
+(910,449,1.14),
+(910,529,1.1),
+(910,530,1.1),
+(910,531,1.1),
+(910,532,1.1),
+(910,614,5.79),
+(910,615,5.79),
+(910,616,5.79),
+(910,617,5.79),
+(910,699,1),
+(910,700,1),
+(910,701,1),
+(910,702,1),
+(910,784,3.36),
+(910,785,3.36),
+(910,786,3.36),
+(910,787,3.36),
+(910,869,2.6),
+(910,870,2.6),
+(910,871,2.6),
+(910,872,2.6),
+(910,1039,2.8),
+(910,1040,2.8),
+(910,1041,2.8),
+(910,1042,2.8),
+(910,1124,0.95),
+(910,1125,0.95),
+(910,1126,0.95),
+(910,1127,0.95),
+(910,1209,1.44),
+(910,1210,1.44),
+(910,1211,1.44),
+(910,1212,1.44),
+(910,1324,0.15),
+(910,1370,0.35),
+(910,1416,0.75),
+(910,1462,0.25),
+(910,1508,0.55),
+(910,1621,6.65),
+(910,1816,2.05),
+(910,2044,2.75),
+(911,312,0.1),
+(911,387,2.33),
+(911,388,2.33),
+(911,389,2),
+(911,449,1),
+(911,450,1),
+(911,451,1),
+(911,452,1),
+(911,532,0.89),
+(911,533,0.89),
+(911,534,0.89),
+(911,535,0.89),
+(911,617,6.31),
+(911,618,6.31),
+(911,619,6.31),
+(911,620,6.31),
+(911,702,1.15),
+(911,703,1.15),
+(911,704,1.15),
+(911,705,1.15),
+(911,787,3),
+(911,788,3),
+(911,789,3),
+(911,790,3),
+(911,872,2.64),
+(911,873,2.64),
+(911,874,2.64),
+(911,875,2.64),
+(911,1042,2.9),
+(911,1043,2.9),
+(911,1044,2.9),
+(911,1045,2.9),
+(911,1127,1),
+(911,1128,1),
+(911,1129,1),
+(911,1130,1),
+(911,1212,1.43),
+(911,1213,1.43),
+(911,1214,1.43),
+(911,1215,1.43),
+(911,1325,0.1),
+(911,1326,0.1),
+(911,1371,0.25),
+(911,1372,0.25),
+(911,1417,0.36),
+(911,1418,0.36),
+(911,1419,0.47),
+(911,1463,0.2),
+(911,1464,0.2),
+(911,1509,0.28),
+(911,1510,0.28),
+(911,1616,3.05),
+(911,1622,3.05),
+(911,1817,0.92),
+(911,1818,0.92),
+(911,2045,1.38),
+(911,2046,1.38),
+(911,2146,0.1),
+(912,388,2.55),
+(912,389,2.55),
+(912,452,1.11),
+(912,453,1.11),
+(912,454,1.11),
+(912,455,1.11),
+(912,535,0.94),
+(912,536,0.94),
+(912,537,0.94),
+(912,538,0.94),
+(912,620,7.59),
+(912,621,7.59),
+(912,622,7.59),
+(912,623,7.59),
+(912,705,1),
+(912,706,1),
+(912,707,1),
+(912,708,1),
+(912,790,2.58),
+(912,791,2.58),
+(912,792,2.58),
+(912,793,2.58),
+(912,875,2.38),
+(912,876,2.38),
+(912,877,2.38),
+(912,878,2.38),
+(912,1045,2.41),
+(912,1046,2.41),
+(912,1047,2.41),
+(912,1048,2.41),
+(912,1130,0.99),
+(912,1131,0.99),
+(912,1132,0.99),
+(912,1133,0.99),
+(912,1215,1.66),
+(912,1216,1.66),
+(912,1217,1.66),
+(912,1218,1.66),
+(912,1326,0.1),
+(912,1327,0.3),
+(912,1372,0.23),
+(912,1373,0.25),
+(912,1418,0.3),
+(912,1419,0.3),
+(912,1464,0.27),
+(912,1465,0.27),
+(912,1510,0.25),
+(912,1511,0.25),
+(912,1561,0.1),
+(912,1616,2.55),
+(912,1623,2.55),
+(912,1818,0.85),
+(912,1819,0.85),
+(912,1971,0.1),
+(912,2046,1.52),
+(912,2047,1.52),
+(912,2148,0.1),
+(917,5,0.1),
+(917,23,4.25),
+(917,24,4.25),
+(917,584,1.45),
+(917,585,1.45),
+(917,586,1.45),
+(917,587,1.45),
+(917,669,0.88),
+(917,670,0.88),
+(917,671,0.88),
+(917,672,0.88),
+(917,839,2.03),
+(917,840,2.03),
+(917,841,2.03),
+(917,842,2.03),
+(917,924,1.23),
+(917,925,1.23),
+(917,926,1.23),
+(917,927,1.23),
+(917,1009,3.2),
+(917,1010,3.2),
+(917,1011,3.2),
+(917,1012,3.2),
+(917,1094,1.7),
+(917,1095,1.7),
+(917,1096,1.7),
+(917,1097,1.7),
+(917,1179,10.9),
+(917,1180,10.9),
+(917,1181,10.9),
+(917,1182,10.9),
+(917,1548,2.6),
+(917,1549,2.6),
+(917,2027,0.23),
+(917,2028,0.23),
+(917,2029,0.23),
+(918,24,4.55),
+(918,97,4.55),
+(918,587,1.49),
+(918,588,1.49),
+(918,589,1.49),
+(918,590,1.49),
+(918,672,0.9),
+(918,673,0.9),
+(918,674,0.9),
+(918,675,0.9),
+(918,842,1.99),
+(918,843,1.99),
+(918,844,1.99),
+(918,845,1.99),
+(918,927,1.2),
+(918,928,1.2),
+(918,929,1.2),
+(918,930,1.2),
+(918,1012,3.02),
+(918,1013,3.02),
+(918,1014,3.02),
+(918,1015,3.02),
+(918,1097,1.71),
+(918,1098,1.71),
+(918,1099,1.71),
+(918,1100,1.71),
+(918,1182,10.95),
+(918,1183,10.95),
+(918,1184,10.95),
+(918,1185,10.95),
+(918,1549,2.63),
+(918,1550,2.63),
+(918,1837,0.03),
+(918,1838,0.03),
+(918,1839,0.03),
+(918,1840,0.03),
+(918,2029,0.4),
+(918,2030,0.4),
+(919,97,5.05),
+(919,115,5.05),
+(919,587,1.44),
+(919,588,1.44),
+(919,589,1.44),
+(919,590,1.44),
+(919,672,0.94),
+(919,673,0.94),
+(919,674,0.94),
+(919,675,0.94),
+(919,842,2.02),
+(919,843,2.02),
+(919,844,2.02),
+(919,845,2.02),
+(919,927,1.26),
+(919,928,1.26),
+(919,929,1.26),
+(919,930,1.26),
+(919,1012,3.29),
+(919,1013,3.29),
+(919,1014,3.29),
+(919,1015,3.29),
+(919,1097,1.98),
+(919,1098,1.98),
+(919,1099,1.98),
+(919,1100,1.98),
+(919,1182,9.9),
+(919,1183,9.9),
+(919,1184,9.9),
+(919,1185,9.9),
+(919,1550,2.95),
+(919,1551,2.95),
+(919,1997,0.1),
+(919,2030,0.38),
+(919,2031,0.38),
+(920,115,5.23),
+(920,136,5.23),
+(920,590,1.54),
+(920,591,1.54),
+(920,592,1.54),
+(920,593,1.54),
+(920,675,0.96),
+(920,676,0.96),
+(920,677,0.96),
+(920,678,0.96),
+(920,845,1.96),
+(920,846,1.96),
+(920,847,1.96),
+(920,848,1.96),
+(920,930,1.12),
+(920,931,1.12),
+(920,932,1.12),
+(920,933,1.12),
+(920,934,1.02),
+(920,1015,3.69),
+(920,1016,3.69),
+(920,1017,3.69),
+(920,1018,3.69),
+(920,1100,2.14),
+(920,1101,2.14),
+(920,1102,2.14),
+(920,1103,2.14),
+(920,1185,9.24),
+(920,1186,9.24),
+(920,1187,9.24),
+(920,1188,9.24),
+(920,1551,2.88),
+(920,1552,2.88),
+(920,1918,0.1),
+(920,2031,0.4),
+(920,2032,0.4),
+(920,2073,0.05),
+(920,2074,0.05),
+(921,136,5.33),
+(921,155,5.33),
+(921,593,1.63),
+(921,594,1.63),
+(921,595,1.63),
+(921,596,1.63),
+(921,678,0.91),
+(921,679,0.91),
+(921,680,0.91),
+(921,681,0.91),
+(921,848,1.95),
+(921,849,1.95),
+(921,850,1.95),
+(921,851,1.95),
+(921,933,1.23),
+(921,934,1.23),
+(921,935,1.23),
+(921,936,1.23),
+(921,1018,3.73),
+(921,1019,3.73),
+(921,1020,3.73),
+(921,1021,3.73),
+(921,1103,2.14),
+(921,1104,2.14),
+(921,1105,2.14),
+(921,1106,2.14),
+(921,1188,8.95),
+(921,1189,8.95),
+(921,1190,8.95),
+(921,1191,8.95),
+(921,1552,3.13),
+(921,1553,3.13),
+(921,2032,0.5),
+(921,2033,0.5),
+(922,189,10.9),
+(922,596,1.59),
+(922,597,1.59),
+(922,598,1.59),
+(922,599,1.59),
+(922,681,0.95),
+(922,682,0.95),
+(922,683,0.95),
+(922,684,0.95),
+(922,851,1.9),
+(922,852,1.9),
+(922,853,1.9),
+(922,854,1.9),
+(922,936,1.25),
+(922,937,1.25),
+(922,938,1.25),
+(922,939,1.25),
+(922,1021,3.73),
+(922,1022,3.73),
+(922,1023,3.73),
+(922,1024,3.73),
+(922,1106,2.31),
+(922,1107,2.31),
+(922,1108,2.31),
+(922,1109,2.31),
+(922,1191,8.82),
+(922,1192,8.82),
+(922,1193,8.82),
+(922,1194,8.82),
+(922,1554,6.4),
+(922,2034,0.75),
+(923,190,11.1),
+(923,596,1.46),
+(923,597,1.46),
+(923,598,1.46),
+(923,599,1.46),
+(923,681,0.99),
+(923,682,0.99),
+(923,683,0.99),
+(923,684,0.99),
+(923,851,1.89),
+(923,852,1.89),
+(923,853,1.89),
+(923,854,1.89),
+(923,936,1.2),
+(923,937,1.2),
+(923,938,1.2),
+(923,939,1.2),
+(923,1021,3.84),
+(923,1022,3.84),
+(923,1023,3.84),
+(923,1024,3.84),
+(923,1106,2.22),
+(923,1107,2.22),
+(923,1108,2.22),
+(923,1109,2.22),
+(923,1191,8.86),
+(923,1192,8.86),
+(923,1193,8.86),
+(923,1194,8.86),
+(923,1555,6.17),
+(923,2035,0.85),
+(924,191,5.3),
+(924,192,5.3),
+(924,599,1.22),
+(924,600,1.22),
+(924,601,1.22),
+(924,602,1.22),
+(924,684,0.79),
+(924,685,0.79),
+(924,686,0.79),
+(924,687,0.79),
+(924,854,1.63),
+(924,855,1.63),
+(924,856,1.63),
+(924,857,1.63),
+(924,939,1.22),
+(924,940,1.22),
+(924,941,1.22),
+(924,942,1.22),
+(924,1024,3.52),
+(924,1025,3.52),
+(924,1026,3.52),
+(924,1027,3.52),
+(924,1109,1.93),
+(924,1110,1.93),
+(924,1111,1.93),
+(924,1112,1.93),
+(924,1194,10.63),
+(924,1195,10.63),
+(924,1196,10.63),
+(924,1197,10.63),
+(924,1556,2.5),
+(924,1557,2.5),
+(924,2036,0.33),
+(924,2037,0.33),
+(925,192,5.57),
+(925,193,5.57),
+(925,602,0.89),
+(925,603,0.89),
+(925,604,0.89),
+(925,605,0.89),
+(925,687,0.66),
+(925,688,0.66),
+(925,689,0.66),
+(925,690,0.66),
+(925,857,1.38),
+(925,858,1.38),
+(925,859,1.38),
+(925,860,1.38),
+(925,942,1.14),
+(925,943,1.14),
+(925,944,1.14),
+(925,945,1.14),
+(925,1027,3.45),
+(925,1028,3.45),
+(925,1029,3.45),
+(925,1030,3.45),
+(925,1112,2.08),
+(925,1113,2.08),
+(925,1114,2.08),
+(925,1115,2.08),
+(925,1197,11.36),
+(925,1198,11.36),
+(925,1199,11.36),
+(925,1200,11.36),
+(925,1557,2.18),
+(925,1558,2.18),
+(925,2037,0.3),
+(925,2038,0.3),
+(926,15,0.1),
+(926,29,0.1),
+(926,178,2.72),
+(926,213,2.72),
+(926,437,2.34),
+(926,438,2.34),
+(926,439,2.34),
+(926,440,2.34),
+(926,520,3.47),
+(926,521,3.47),
+(926,522,3.47),
+(926,523,3.47),
+(926,605,2.36),
+(926,606,2.36),
+(926,607,2.36),
+(926,608,2.36),
+(926,690,0.92),
+(926,691,0.92),
+(926,692,0.92),
+(926,693,0.92),
+(926,775,2.79),
+(926,776,2.79),
+(926,777,2.79),
+(926,778,2.79),
+(926,860,1.97),
+(926,861,1.97),
+(926,862,1.97),
+(926,863,1.97),
+(926,1030,4.09),
+(926,1031,4.09),
+(926,1032,4.09),
+(926,1033,4.09),
+(926,1115,1.62),
+(926,1116,1.62),
+(926,1117,1.62),
+(926,1118,1.62),
+(926,1200,1.19),
+(926,1201,1.19),
+(926,1202,1.19),
+(926,1203,1.19),
+(926,1607,3.73),
+(926,1612,3.73),
+(926,1810,1.16),
+(926,1811,1.16),
+(926,2038,0.9),
+(926,2039,0.9),
+(927,213,2.65),
+(927,214,2.65),
+(927,437,2.28),
+(927,438,2.28),
+(927,439,2.28),
+(927,440,2.28),
+(927,520,3.45),
+(927,521,3.45),
+(927,522,3.45),
+(927,523,3.45),
+(927,605,2.22),
+(927,606,2.22),
+(927,607,2.22),
+(927,608,2.22),
+(927,690,0.73),
+(927,691,0.73),
+(927,692,0.73),
+(927,693,0.73),
+(927,775,2.72),
+(927,776,2.72),
+(927,777,2.72),
+(927,778,2.72),
+(927,860,2.1),
+(927,861,2.1),
+(927,862,2.1),
+(927,863,2.1),
+(927,1030,3.92),
+(927,1031,3.92),
+(927,1032,3.92),
+(927,1033,3.92),
+(927,1115,1.63),
+(927,1116,1.63),
+(927,1117,1.63),
+(927,1118,1.63),
+(927,1200,1.25),
+(927,1201,1.25),
+(927,1202,1.25),
+(927,1203,1.25),
+(927,1612,4),
+(927,1613,4),
+(927,1811,1.4),
+(927,1812,1.4),
+(927,2039,1.2),
+(927,2040,1.2),
+(928,214,2.82),
+(928,383,2.82),
+(928,440,2.03),
+(928,441,2.03),
+(928,442,2.03),
+(928,443,2.03),
+(928,523,3.08),
+(928,524,3.08),
+(928,525,3.08),
+(928,526,3.08),
+(928,608,2.03),
+(928,609,2.03),
+(928,610,2.03),
+(928,611,2.03),
+(928,693,0.81),
+(928,694,0.81),
+(928,695,0.81),
+(928,696,0.81),
+(928,778,2.97),
+(928,779,2.97),
+(928,780,2.97),
+(928,781,2.97),
+(928,863,2.31),
+(928,864,2.31),
+(928,865,2.31),
+(928,866,2.31),
+(928,1033,4.3),
+(928,1034,4.3),
+(928,1035,4.3),
+(928,1036,4.3),
+(928,1118,1.69),
+(928,1119,1.69),
+(928,1120,1.69),
+(928,1121,1.69),
+(928,1203,1.39),
+(928,1204,1.39),
+(928,1205,1.39),
+(928,1206,1.39),
+(928,1613,3.82),
+(928,1614,3.82),
+(928,1812,1.08),
+(928,1813,1.08),
+(928,2040,1.05),
+(928,2041,1.05),
+(929,383,2.68),
+(929,384,2.68),
+(929,443,2.09),
+(929,444,2.09),
+(929,445,2.09),
+(929,446,2.09),
+(929,526,3.27),
+(929,527,3.27),
+(929,528,3.27),
+(929,529,3.27),
+(929,611,2.08),
+(929,612,2.08),
+(929,613,2.08),
+(929,614,2.08),
+(929,696,0.79),
+(929,697,0.79),
+(929,698,0.79),
+(929,699,0.79),
+(929,781,3.11),
+(929,782,3.11),
+(929,783,3.11),
+(929,784,3.11),
+(929,866,2.21),
+(929,867,2.21),
+(929,868,2.21),
+(929,869,2.21),
+(929,1036,4.14),
+(929,1037,4.14),
+(929,1038,4.14),
+(929,1039,4.14),
+(929,1121,1.66),
+(929,1122,1.66),
+(929,1123,1.66),
+(929,1124,1.66),
+(929,1206,1.35),
+(929,1207,1.35),
+(929,1208,1.35),
+(929,1209,1.35),
+(929,1614,3.8),
+(929,1615,3.8),
+(929,1813,1.18),
+(929,1814,1.18),
+(929,2041,1),
+(929,2042,1),
+(930,385,4.95),
+(930,446,1.96),
+(930,447,1.96),
+(930,448,1.96),
+(930,449,1.96),
+(930,529,2.99),
+(930,530,2.99),
+(930,531,2.99),
+(930,532,2.99),
+(930,614,1.92),
+(930,615,1.92),
+(930,616,1.92),
+(930,617,1.92),
+(930,699,0.82),
+(930,700,0.82),
+(930,701,0.82),
+(930,702,0.82),
+(930,784,2.7),
+(930,785,2.7),
+(930,786,2.7),
+(930,787,2.7),
+(930,869,2.11),
+(930,870,2.11),
+(930,871,2.11),
+(930,872,2.11),
+(930,1039,3.57),
+(930,1040,3.57),
+(930,1041,3.57),
+(930,1042,3.57),
+(930,1124,1.42),
+(930,1125,1.42),
+(930,1126,1.42),
+(930,1127,1.42),
+(930,1209,1.47),
+(930,1210,1.47),
+(930,1211,1.47),
+(930,1212,1.47),
+(930,1323,0.65),
+(930,1369,0.6),
+(930,1415,0.55),
+(930,1461,0.45),
+(930,1507,0.85),
+(930,1620,9.8),
+(930,1815,3.1),
+(930,2043,3.1),
+(931,386,5.13),
+(931,446,2.24),
+(931,447,2.24),
+(931,448,2.24),
+(931,449,2.24),
+(931,529,3.15),
+(931,530,3.15),
+(931,531,3.15),
+(931,532,3.15),
+(931,614,2.28),
+(931,615,2.28),
+(931,616,2.28),
+(931,617,2.28),
+(931,699,0.94),
+(931,700,0.94),
+(931,701,0.94),
+(931,702,0.94),
+(931,784,2.54),
+(931,785,2.54),
+(931,786,2.54),
+(931,787,2.54),
+(931,869,2.23),
+(931,870,2.23),
+(931,871,2.23),
+(931,872,2.23),
+(931,1039,3.27),
+(931,1040,3.27),
+(931,1041,3.27),
+(931,1042,3.27),
+(931,1124,1.27),
+(931,1125,1.27),
+(931,1126,1.27),
+(931,1127,1.27),
+(931,1209,1.58),
+(931,1210,1.58),
+(931,1211,1.58),
+(931,1212,1.58),
+(931,1324,0.43),
+(931,1370,0.57),
+(931,1416,0.43),
+(931,1462,0.3),
+(931,1508,0.43),
+(931,1621,9.03),
+(931,1816,2.67),
+(931,2044,2.31),
+(931,2045,0.73),
+(931,2046,0.73),
+(931,2047,0.73),
+(932,387,2.77),
+(932,388,2.77),
+(932,449,2.59),
+(932,450,2.59),
+(932,451,2.59),
+(932,452,2.59),
+(932,532,3.06),
+(932,533,3.06),
+(932,534,3.06),
+(932,535,3.06),
+(932,617,2.5),
+(932,618,2.5),
+(932,619,2.5),
+(932,620,2.5),
+(932,702,1),
+(932,703,1),
+(932,704,1),
+(932,705,1),
+(932,787,2.52),
+(932,788,2.52),
+(932,789,2.52),
+(932,790,2.52),
+(932,872,2.26),
+(932,873,2.26),
+(932,874,2.26),
+(932,875,2.26),
+(932,1042,2.84),
+(932,1043,2.84),
+(932,1044,2.84),
+(932,1045,2.84),
+(932,1127,1.3),
+(932,1128,1.3),
+(932,1129,1.3),
+(932,1130,1.3),
+(932,1212,1.44),
+(932,1213,1.44),
+(932,1214,1.44),
+(932,1215,1.44),
+(932,1325,0.23),
+(932,1326,0.25),
+(932,1371,0.45),
+(932,1372,0.45),
+(932,1417,0.27),
+(932,1418,0.27),
+(932,1463,0.5),
+(932,1464,0.2),
+(932,1509,0.43),
+(932,1510,0.43),
+(932,1616,3.88),
+(932,1622,3.88),
+(932,1817,1.08),
+(932,1818,1.08),
+(932,1970,0.1),
+(932,2045,1.67),
+(932,2046,1.67),
+(933,388,2.03),
+(933,389,2.03),
+(933,452,2.92),
+(933,453,2.92),
+(933,454,2.92),
+(933,455,2.92),
+(933,535,2.99),
+(933,536,2.99),
+(933,537,2.99),
+(933,538,2.99),
+(933,620,3.39),
+(933,621,3.39),
+(933,622,3.39),
+(933,623,3.39),
+(933,705,1.07),
+(933,706,1.07),
+(933,707,1.07),
+(933,708,1.07),
+(933,790,2.17),
+(933,791,2.17),
+(933,792,2.17),
+(933,793,2.17),
+(933,875,2.05),
+(933,876,2.05),
+(933,877,2.05),
+(933,878,2.05),
+(933,1045,3.02),
+(933,1046,3.02),
+(933,1047,3.02),
+(933,1048,3.02),
+(933,1130,1.12),
+(933,1131,1.12),
+(933,1132,1.12),
+(933,1133,1.12),
+(933,1215,1.3),
+(933,1216,1.3),
+(933,1217,1.3),
+(933,1218,1.3),
+(933,1326,0.15),
+(933,1327,0.2),
+(933,1372,0.22),
+(933,1373,0.28),
+(933,1418,0.57),
+(933,1419,0.57),
+(933,1464,0.25),
+(933,1465,0.43),
+(933,1510,0.38),
+(933,1511,0.38),
+(933,1616,4.03),
+(933,1623,4.03),
+(933,1818,1.35),
+(933,1819,1.35),
+(933,1858,0.1),
+(933,2046,1.1),
+(933,2047,1.1),
+(933,2151,0.1),
+(947,193,5.48),
+(947,219,5.48),
+(947,605,1.34),
+(947,606,1.34),
+(947,607,1.34),
+(947,608,1.34),
+(947,690,0.88),
+(947,691,0.88),
+(947,692,0.88),
+(947,693,0.88),
+(947,860,1.76),
+(947,861,1.76),
+(947,862,1.76),
+(947,863,1.76),
+(947,945,1.14),
+(947,946,1.14),
+(947,947,1.14),
+(947,948,1.14),
+(947,1030,3.46),
+(947,1031,3.46),
+(947,1032,3.46),
+(947,1033,3.46),
+(947,1115,2.05),
+(947,1116,2.05),
+(947,1117,2.05),
+(947,1118,2.05),
+(947,1200,9.89),
+(947,1201,9.89),
+(947,1202,9.89),
+(947,1203,9.89),
+(947,1307,0.1),
+(947,1558,3.15),
+(947,1559,3.15),
+(947,2038,0.32),
+(947,2039,0.32),
+(948,219,5.63),
+(948,220,5.63),
+(948,605,1.49),
+(948,606,1.49),
+(948,607,1.49),
+(948,608,1.49),
+(948,690,0.96),
+(948,691,0.96),
+(948,692,0.96),
+(948,693,0.96),
+(948,860,1.81),
+(948,861,1.81),
+(948,862,1.81),
+(948,863,1.81),
+(948,945,1.22),
+(948,946,1.22),
+(948,947,1.22),
+(948,948,1.22),
+(948,1030,3.93),
+(948,1031,3.93),
+(948,1032,3.93),
+(948,1033,3.93),
+(948,1115,2.26),
+(948,1116,2.26),
+(948,1117,2.26),
+(948,1118,2.26),
+(948,1200,8.53),
+(948,1201,8.53),
+(948,1202,8.53),
+(948,1203,8.53),
+(948,1559,3.55),
+(948,1560,3.55),
+(948,2039,0.42),
+(948,2040,0.42),
+(949,220,5.82),
+(949,307,5.82),
+(949,608,1.48),
+(949,609,1.48),
+(949,610,1.48),
+(949,611,1.48),
+(949,693,0.91),
+(949,694,0.91),
+(949,695,0.91),
+(949,696,0.91),
+(949,863,1.67),
+(949,864,1.67),
+(949,865,1.67),
+(949,866,1.67),
+(949,948,1.32),
+(949,949,1.32),
+(949,950,1.32),
+(949,951,1.32),
+(949,1033,3.86),
+(949,1034,3.86),
+(949,1035,3.86),
+(949,1036,3.86),
+(949,1118,2.38),
+(949,1119,2.38),
+(949,1120,2.38),
+(949,1121,2.38),
+(949,1203,8.47),
+(949,1204,8.47),
+(949,1205,8.47),
+(949,1206,8.47),
+(949,1560,3.55),
+(949,1561,3.55),
+(949,2040,0.47),
+(949,2041,0.47),
+(950,307,5.38),
+(950,308,5.38),
+(950,611,1.4),
+(950,612,1.4),
+(950,613,1.4),
+(950,614,1.4),
+(950,696,0.9),
+(950,697,0.9),
+(950,698,0.9),
+(950,699,0.9),
+(950,866,1.56),
+(950,867,1.56),
+(950,868,1.56),
+(950,869,1.56),
+(950,951,1.16),
+(950,952,1.16),
+(950,953,1.16),
+(950,954,1.16),
+(950,1036,3.75),
+(950,1037,3.75),
+(950,1038,3.75),
+(950,1039,3.75),
+(950,1121,2.17),
+(950,1122,2.17),
+(950,1123,2.17),
+(950,1124,2.17),
+(950,1206,9.56),
+(950,1207,9.56),
+(950,1208,9.56),
+(950,1209,9.56),
+(950,1561,3.33),
+(950,1562,3.33),
+(950,2041,0.32),
+(950,2042,0.32),
+(951,309,9.67),
+(951,614,1.37),
+(951,615,1.37),
+(951,616,1.37),
+(951,617,1.37),
+(951,699,0.62),
+(951,700,0.62),
+(951,701,0.62),
+(951,702,0.62),
+(951,869,1.42),
+(951,870,1.42),
+(951,871,1.42),
+(951,872,1.42),
+(951,954,1.04),
+(951,955,1.04),
+(951,956,1.04),
+(951,957,1.04),
+(951,1039,2.83),
+(951,1040,2.83),
+(951,1041,2.83),
+(951,1042,2.83),
+(951,1124,1.73),
+(951,1125,1.73),
+(951,1126,1.73),
+(951,1127,1.73),
+(951,1209,9.45),
+(951,1210,9.45),
+(951,1211,9.45),
+(951,1212,9.45),
+(951,1323,0.2),
+(951,1369,0.17),
+(951,1415,0.37),
+(951,1461,0.17),
+(951,1507,0.3),
+(951,1563,13.67),
+(951,2043,1.83),
+(952,310,8.83),
+(952,614,1.43),
+(952,615,1.43),
+(952,616,1.43),
+(952,617,1.43),
+(952,699,0.81),
+(952,700,0.81),
+(952,701,0.81),
+(952,702,0.81),
+(952,869,1.41),
+(952,870,1.41),
+(952,871,1.41),
+(952,872,1.41),
+(952,954,1.03),
+(952,955,1.03),
+(952,956,1.03),
+(952,957,1.03),
+(952,1039,2.66),
+(952,1040,2.66),
+(952,1041,2.66),
+(952,1042,2.66),
+(952,1124,1.64),
+(952,1125,1.64),
+(952,1126,1.64),
+(952,1127,1.64),
+(952,1209,9.86),
+(952,1210,9.86),
+(952,1211,9.86),
+(952,1212,9.86),
+(952,1324,0.13),
+(952,1370,0.13),
+(952,1416,0.2),
+(952,1462,0.13),
+(952,1508,0.9),
+(952,1564,12.7),
+(952,1931,0.1),
+(952,2044,1.53),
+(953,311,4.1),
+(953,312,4.1),
+(953,414,0.1),
+(953,617,1.39),
+(953,618,1.39),
+(953,619,1.39),
+(953,620,1.39),
+(953,702,0.94),
+(953,703,0.94),
+(953,704,0.94),
+(953,705,0.94),
+(953,872,1.53),
+(953,873,1.53),
+(953,874,1.53),
+(953,875,1.53),
+(953,957,1.18),
+(953,958,1.18),
+(953,959,1.18),
+(953,960,1.18),
+(953,1042,1.91),
+(953,1043,1.91),
+(953,1044,1.91),
+(953,1045,1.91),
+(953,1127,1.44),
+(953,1128,1.44),
+(953,1129,1.44),
+(953,1130,1.44),
+(953,1212,10.6),
+(953,1213,10.6),
+(953,1214,10.6),
+(953,1215,10.6),
+(953,1325,0.1),
+(953,1326,0.1),
+(953,1371,0.15),
+(953,1372,0.15),
+(953,1417,0.13),
+(953,1418,0.05),
+(953,1463,0.13),
+(953,1464,0.13),
+(953,1509,0.15),
+(953,1510,0.15),
+(953,1565,6.38),
+(953,1566,6.38),
+(953,2045,0.83),
+(953,2046,0.83),
+(953,2047,0.47),
+(953,2147,0.1),
+(953,2151,0.1),
+(954,312,3.85),
+(954,313,3.85),
+(954,620,1.35),
+(954,621,1.35),
+(954,622,1.35),
+(954,623,1.35),
+(954,705,0.88),
+(954,706,0.88),
+(954,707,0.88),
+(954,708,0.88),
+(954,875,1.63),
+(954,876,1.63),
+(954,877,1.63),
+(954,878,1.63),
+(954,960,1.05),
+(954,961,1.05),
+(954,962,1.05),
+(954,963,1.05),
+(954,1045,2.05),
+(954,1046,2.05),
+(954,1047,2.05),
+(954,1048,2.05),
+(954,1130,1.13),
+(954,1131,1.13),
+(954,1132,1.13),
+(954,1133,1.13),
+(954,1215,10.93),
+(954,1216,10.93),
+(954,1217,10.93),
+(954,1218,10.93),
+(954,1326,0.05),
+(954,1327,0.05),
+(954,1372,0.15),
+(954,1373,0.15),
+(954,1418,0.3),
+(954,1464,0.05),
+(954,1465,0.05),
+(954,1510,0.2),
+(954,1511,0.2),
+(954,1566,6.85),
+(954,1567,6.85),
+(954,2046,0.65),
+(954,2047,0.65),
+(959,5,1.97),
+(959,15,2.4),
+(959,16,3.8),
+(959,19,2.4),
+(959,25,1.97),
+(959,26,1.97),
+(959,27,3.8),
+(959,754,10.7),
+(959,755,10.7),
+(959,839,11.9),
+(959,1009,13.5),
+(959,1799,3.35),
+(959,1800,3.35),
+(959,1837,2.55),
+(959,1838,2.55),
+(959,1875,2.65),
+(959,1876,2.65),
+(959,1913,3.1),
+(959,1914,3.1),
+(959,1951,3.35),
+(959,1952,3.35),
+(959,2027,2.5),
+(959,2028,2.5),
+(960,19,2.57),
+(960,22,2.57),
+(960,25,3.2),
+(960,26,3.2),
+(960,27,3.88),
+(960,28,3.88),
+(960,504,0.1),
+(960,754,5.65),
+(960,755,5.65),
+(960,756,5.65),
+(960,757,5.65),
+(960,839,3.29),
+(960,840,3.29),
+(960,841,3.29),
+(960,842,3.29),
+(960,1009,3.67),
+(960,1010,3.67),
+(960,1011,3.67),
+(960,1012,3.67),
+(960,1706,0.1),
+(960,1800,3.02),
+(960,1801,3.02),
+(960,1838,2.13),
+(960,1839,2.13),
+(960,1876,3.57),
+(960,1877,3.57),
+(960,1952,2.85),
+(960,1953,2.85),
+(960,1989,0.1),
+(960,2028,3.6),
+(960,2029,3.6),
+(961,22,2.72),
+(961,26,3.58),
+(961,28,4.47),
+(961,94,3.58),
+(961,95,4.47),
+(961,96,2.72),
+(961,757,22.47),
+(961,842,11.83),
+(961,1012,11.78),
+(961,1013,3.83),
+(961,1014,3.83),
+(961,1015,3.83),
+(961,1402,0.1),
+(961,1801,2.78),
+(961,1802,2.78),
+(961,1839,1.98),
+(961,1840,1.98),
+(961,1877,3.65),
+(961,1878,3.65),
+(961,1953,2.75),
+(961,1954,2.75),
+(961,2029,3.2),
+(961,2030,3.2),
+(962,94,3.15),
+(962,95,5),
+(962,96,2.5),
+(962,112,3.15),
+(962,113,5),
+(962,114,2.5),
+(962,757,5.88),
+(962,758,5.88),
+(962,759,5.88),
+(962,760,5.88),
+(962,842,2.53),
+(962,843,2.53),
+(962,844,2.53),
+(962,845,2.53),
+(962,1012,4.13),
+(962,1013,4.13),
+(962,1014,4.13),
+(962,1015,4.13),
+(962,1802,3),
+(962,1803,3),
+(962,1840,1.75),
+(962,1841,1.75),
+(962,1878,3.4),
+(962,1879,3.4),
+(962,1954,2.8),
+(962,1955,2.8),
+(962,2030,3.3),
+(962,2031,3.3),
+(963,112,6.65),
+(963,113,9.75),
+(963,114,5.15),
+(963,760,5.35),
+(963,761,5.35),
+(963,762,5.35),
+(963,763,5.35),
+(963,845,2.68),
+(963,846,2.68),
+(963,847,2.68),
+(963,848,2.68),
+(963,1015,4.14),
+(963,1016,4.14),
+(963,1017,4.14),
+(963,1018,4.14),
+(963,1803,6.85),
+(963,1841,3.6),
+(963,1879,6.85),
+(963,1955,5.6),
+(963,2031,6.95),
+(964,133,6.2),
+(964,134,10.17),
+(964,135,5.43),
+(964,760,5.65),
+(964,761,5.65),
+(964,762,5.65),
+(964,763,5.65),
+(964,845,2.52),
+(964,846,2.52),
+(964,847,2.52),
+(964,848,2.52),
+(964,1015,4.53),
+(964,1016,4.53),
+(964,1017,4.53),
+(964,1018,4.53),
+(964,1799,1.03),
+(964,1800,1.03),
+(964,1801,1.03),
+(964,1802,1.03),
+(964,1803,1.03),
+(964,1804,4.61),
+(964,1842,3.1),
+(964,1880,6.7),
+(964,1913,0.1),
+(964,1918,0.1),
+(964,1956,4.9),
+(964,2032,6.4),
+(965,133,3.18),
+(965,134,5.5),
+(965,135,2.73),
+(965,152,3.18),
+(965,153,5.5),
+(965,154,2.73),
+(965,763,5.84),
+(965,764,5.84),
+(965,765,5.84),
+(965,766,5.84),
+(965,848,2.22),
+(965,849,2.22),
+(965,850,2.22),
+(965,851,2.22),
+(965,1018,4.41),
+(965,1019,4.41),
+(965,1020,4.41),
+(965,1021,4.41),
+(965,1804,3.27),
+(965,1805,3.27),
+(965,1842,1.48),
+(965,1843,1.48),
+(965,1880,3.28),
+(965,1881,3.28),
+(965,1956,2.45),
+(965,1957,2.45),
+(965,2032,3.22),
+(965,2033,3.22),
+(966,152,3.37),
+(966,153,5.1),
+(966,154,2.4),
+(966,174,3.37),
+(966,179,5.1),
+(966,184,2.4),
+(966,763,6.23),
+(966,764,6.23),
+(966,765,6.23),
+(966,766,6.23),
+(966,848,2.19),
+(966,849,2.19),
+(966,850,2.19),
+(966,851,2.19),
+(966,1018,4.26),
+(966,1019,4.26),
+(966,1020,4.26),
+(966,1021,4.26),
+(966,1805,3.18),
+(966,1806,3.18),
+(966,1843,1.43),
+(966,1844,1.43),
+(966,1881,3.3),
+(966,1882,3.3),
+(966,1957,2.73),
+(966,1958,2.73),
+(966,2033,3.07),
+(966,2034,3.07),
+(967,174,3.17),
+(967,175,3.17),
+(967,179,5.1),
+(967,180,5.1),
+(967,184,2.7),
+(967,185,2.7),
+(967,766,6.23),
+(967,767,6.23),
+(967,768,6.23),
+(967,769,6.23),
+(967,851,2.08),
+(967,852,2.08),
+(967,853,2.08),
+(967,854,2.08),
+(967,1021,4.08),
+(967,1022,4.08),
+(967,1023,4.08),
+(967,1024,4.08),
+(967,1357,6),
+(967,1803,4.6),
+(967,1804,1.4),
+(967,1805,1.4),
+(967,1806,1.4),
+(967,1807,1.4),
+(967,1841,0.87),
+(967,1842,0.87),
+(967,1843,0.87),
+(967,1844,0.87),
+(967,1845,0.82),
+(967,1882,2.77),
+(967,1883,2.77),
+(967,1958,0.05),
+(967,1959,0.05),
+(967,2034,2.85),
+(967,2035,2.85),
+(968,175,2.93),
+(968,176,2.93),
+(968,180,5.22),
+(968,181,5.22),
+(968,185,2.45),
+(968,186,2.45),
+(968,769,23.4),
+(968,854,8.3),
+(968,1024,17.9),
+(968,1807,3.5),
+(968,1808,3.5),
+(968,1845,1.3),
+(968,1846,1.3),
+(968,1883,3.4),
+(968,1884,3.4),
+(968,1959,3.1),
+(968,1960,3.1),
+(968,2035,3.3),
+(968,2036,3.3),
+(969,29,0.1),
+(969,176,6.1),
+(969,181,9.9),
+(969,186,5.17),
+(969,769,5.75),
+(969,770,5.75),
+(969,771,5.75),
+(969,772,5.75),
+(969,854,2.01),
+(969,855,2.01),
+(969,856,2.01),
+(969,857,2.01),
+(969,1024,4.36),
+(969,1025,4.36),
+(969,1026,4.36),
+(969,1027,4.36),
+(969,1808,7.35),
+(969,1846,3.23),
+(969,1884,7.3),
+(969,1922,0.1),
+(969,1960,5.93),
+(969,2036,6.5),
+(970,177,6.3),
+(970,182,9.4),
+(970,187,5.3),
+(970,772,5.92),
+(970,773,5.92),
+(970,774,5.92),
+(970,775,5.92),
+(970,857,2.25),
+(970,858,2.25),
+(970,859,2.25),
+(970,860,2.25),
+(970,1027,4.4),
+(970,1028,4.4),
+(970,1029,4.4),
+(970,1030,4.4),
+(970,1809,6.7),
+(970,1847,3.05),
+(970,1885,7.5),
+(970,1961,5.2),
+(970,2037,6.1),
+(971,178,5.55),
+(971,183,9.85),
+(971,188,5.25),
+(971,772,5.84),
+(971,773,5.84),
+(971,774,5.84),
+(971,775,5.84),
+(971,857,1.88),
+(971,858,1.88),
+(971,859,1.88),
+(971,860,1.88),
+(971,1027,4.58),
+(971,1028,4.58),
+(971,1029,4.58),
+(971,1030,4.58),
+(971,1810,7.2),
+(971,1848,3.15),
+(971,1886,7.85),
+(971,1962,4.85),
+(971,2038,7.2),
+(972,178,3.3),
+(972,183,4.39),
+(972,188,2.85),
+(972,213,3.3),
+(972,215,4.39),
+(972,217,2.85),
+(972,775,6.31),
+(972,776,6.31),
+(972,777,6.31),
+(972,778,6.31),
+(972,860,2.54),
+(972,861,2.54),
+(972,862,2.54),
+(972,863,2.54),
+(972,1030,4.4),
+(972,1031,4.4),
+(972,1032,4.4),
+(972,1033,4.4),
+(972,1318,0.19),
+(972,1319,0.19),
+(972,1364,0.24),
+(972,1365,0.24),
+(972,1410,0.2),
+(972,1411,0.2),
+(972,1456,0.18),
+(972,1457,0.18),
+(972,1502,0.18),
+(972,1503,0.18),
+(972,1810,2.56),
+(972,1811,2.56),
+(972,1848,1.41),
+(972,1849,1.41),
+(972,1886,3.14),
+(972,1887,3.14),
+(972,1962,2.02),
+(972,1963,2.02),
+(972,2038,2.81),
+(972,2039,2.81),
+(973,213,3.35),
+(973,214,3.35),
+(973,215,3.93),
+(973,216,3.93),
+(973,217,2.57),
+(973,218,2.57),
+(973,775,5.82),
+(973,776,5.82),
+(973,777,5.82),
+(973,778,5.82),
+(973,860,2.81),
+(973,861,2.81),
+(973,862,2.81),
+(973,863,2.81),
+(973,1030,3.91),
+(973,1031,3.91),
+(973,1032,3.91),
+(973,1033,3.91),
+(973,1319,0.23),
+(973,1320,0.23),
+(973,1365,0.15),
+(973,1366,0.15),
+(973,1411,0.35),
+(973,1412,0.35),
+(973,1457,0.28),
+(973,1458,0.28),
+(973,1503,0.25),
+(973,1504,0.25),
+(973,1811,2.67),
+(973,1812,2.67),
+(973,1849,1.75),
+(973,1850,1.75),
+(973,1887,3.95),
+(973,1888,3.95),
+(973,1963,2.23),
+(973,1964,2.23),
+(973,2039,3.23),
+(973,2040,3.23),
+(974,214,3.52),
+(974,216,3.77),
+(974,218,3.08),
+(974,287,3.08),
+(974,383,3.52),
+(974,409,3.77),
+(974,440,0.05),
+(974,441,0.05),
+(974,524,0.1),
+(974,778,5.6),
+(974,779,5.6),
+(974,780,5.6),
+(974,781,5.6),
+(974,863,2.95),
+(974,864,2.95),
+(974,865,2.95),
+(974,866,2.95),
+(974,1033,3.61),
+(974,1034,3.61),
+(974,1035,3.61),
+(974,1036,3.61),
+(974,1320,0.35),
+(974,1321,0.35),
+(974,1366,0.25),
+(974,1367,0.25),
+(974,1412,0.4),
+(974,1413,0.4),
+(974,1458,0.18),
+(974,1459,0.18),
+(974,1504,0.2),
+(974,1505,0.2),
+(974,1812,2.3),
+(974,1813,2.3),
+(974,1850,1.73),
+(974,1851,1.73),
+(974,1888,4.25),
+(974,1889,4.25),
+(974,1964,2.38),
+(974,1965,2.38),
+(974,2040,3.15),
+(974,2041,3.15),
+(975,287,5.75),
+(975,383,7),
+(975,409,7.95),
+(975,526,0.1),
+(975,608,0.03),
+(975,609,0.03),
+(975,610,0.03),
+(975,611,0.03),
+(975,778,5.9),
+(975,779,5.9),
+(975,780,5.9),
+(975,781,5.9),
+(975,863,3.24),
+(975,864,3.24),
+(975,865,3.24),
+(975,866,3.24),
+(975,948,0.03),
+(975,949,0.03),
+(975,950,0.03),
+(975,951,0.03),
+(975,1033,3.13),
+(975,1034,3.13),
+(975,1035,3.13),
+(975,1036,3.13),
+(975,1321,0.15),
+(975,1367,0.35),
+(975,1413,0.6),
+(975,1459,0.3),
+(975,1505,0.6),
+(975,1813,4.3),
+(975,1851,2.4),
+(975,1889,8.45),
+(975,1965,4.65),
+(975,2041,8.1),
+(980,5,2.85),
+(980,14,4.5),
+(980,15,4),
+(980,16,3.5),
+(980,17,4.5),
+(980,19,4),
+(980,25,2.85),
+(980,27,3.5),
+(980,29,0.1),
+(980,48,4.2),
+(980,62,4.2),
+(980,227,4.1),
+(980,228,4.9),
+(980,584,16.7),
+(980,754,11.3),
+(980,839,7.8),
+(980,1009,9.6),
+(980,1799,1),
+(980,1800,1),
+(980,1989,1.9),
+(980,1990,1.9),
+(980,2027,0.75),
+(980,2028,0.75),
+(981,17,4.2),
+(981,18,4.2),
+(981,19,4.35),
+(981,22,4.35),
+(981,25,2.85),
+(981,26,2.85),
+(981,27,3.25),
+(981,28,3.25),
+(981,62,3.85),
+(981,74,3.85),
+(981,227,1.13),
+(981,228,1.15),
+(981,229,1.13),
+(981,231,1.13),
+(981,238,1.13),
+(981,256,1.15),
+(981,501,1.15),
+(981,502,1.15),
+(981,584,4.18),
+(981,585,4.18),
+(981,586,4.18),
+(981,587,4.18),
+(981,674,0.1),
+(981,754,2.92),
+(981,755,2.92),
+(981,756,2.92),
+(981,757,2.92),
+(981,839,2.47),
+(981,840,2.47),
+(981,841,2.47),
+(981,842,2.47),
+(981,1009,2.6),
+(981,1010,2.6),
+(981,1011,2.6),
+(981,1012,2.6),
+(981,1800,0.7),
+(981,1801,0.7),
+(981,1990,1.45),
+(981,1991,1.45),
+(981,2028,0.5),
+(981,2029,0.5),
+(982,18,4.2),
+(982,22,4.07),
+(982,26,3.05),
+(982,28,3.75),
+(982,74,4.25),
+(982,89,4.25),
+(982,93,4.2),
+(982,94,3.05),
+(982,95,3.75),
+(982,96,4.07),
+(982,195,0.1),
+(982,233,2.2),
+(982,238,3.25),
+(982,502,3.85),
+(982,504,2.5),
+(982,587,14.7),
+(982,757,12.15),
+(982,842,8),
+(982,929,0.1),
+(982,1012,10.7),
+(982,1356,0.1),
+(982,1801,0.78),
+(982,1802,0.78),
+(982,1991,1.8),
+(982,1992,1.8),
+(982,2029,0.63),
+(982,2030,0.63),
+(983,89,4.65),
+(983,93,4.5),
+(983,94,2.85),
+(983,95,4.3),
+(983,96,3.88),
+(983,108,4.65),
+(983,111,4.5),
+(983,112,2.85),
+(983,113,4.3),
+(983,114,3.88),
+(983,232,1.11),
+(983,233,1.11),
+(983,234,1.11),
+(983,238,1.11),
+(983,502,1.3),
+(983,503,1.3),
+(983,504,1.3),
+(983,505,1.3),
+(983,587,3.49),
+(983,588,3.49),
+(983,589,3.49),
+(983,590,3.49),
+(983,757,2.98),
+(983,758,2.98),
+(983,759,2.98),
+(983,760,2.98),
+(983,842,1.51),
+(983,843,1.51),
+(983,844,1.51),
+(983,845,1.51),
+(983,847,1.42),
+(983,1012,2.69),
+(983,1013,2.69),
+(983,1014,2.69),
+(983,1015,2.69),
+(983,1802,0.85),
+(983,1803,0.85),
+(983,1992,1.82),
+(983,1993,1.82),
+(983,2030,0.58),
+(983,2031,0.58),
+(984,108,9),
+(984,111,8.6),
+(984,112,5.7),
+(984,113,8.4),
+(984,114,8.6),
+(984,234,1.06),
+(984,235,1.06),
+(984,236,1.06),
+(984,248,1.06),
+(984,505,1.29),
+(984,506,1.29),
+(984,507,1.29),
+(984,508,1.29),
+(984,590,3.53),
+(984,591,3.53),
+(984,592,3.53),
+(984,593,3.53),
+(984,760,2.87),
+(984,761,2.87),
+(984,762,2.87),
+(984,763,2.87),
+(984,845,1.73),
+(984,846,1.73),
+(984,847,1.73),
+(984,848,1.73),
+(984,1015,2.82),
+(984,1016,2.82),
+(984,1017,2.82),
+(984,1018,2.82),
+(984,1404,0.1),
+(984,1803,1.8),
+(984,1993,3.47),
+(984,2031,1.23),
+(985,128,8.95),
+(985,132,7.35),
+(985,133,5.65),
+(985,134,8.9),
+(985,135,8.1),
+(985,234,1.1),
+(985,235,1.1),
+(985,236,1.1),
+(985,248,1.1),
+(985,505,1.29),
+(985,506,1.29),
+(985,507,1.29),
+(985,508,1.29),
+(985,590,3.21),
+(985,591,3.21),
+(985,592,3.21),
+(985,593,3.21),
+(985,760,3.2),
+(985,761,3.2),
+(985,762,3.2),
+(985,763,3.2),
+(985,845,1.81),
+(985,846,1.81),
+(985,847,1.81),
+(985,848,1.81),
+(985,1015,3.05),
+(985,1016,3.05),
+(985,1017,3.05),
+(985,1018,3.05),
+(985,1804,1.8),
+(985,1994,3.6),
+(985,2032,1.1),
+(986,128,9.37),
+(986,132,3.48),
+(986,133,2.97),
+(986,134,4.6),
+(986,135,4.4),
+(986,151,3.48),
+(986,152,2.97),
+(986,153,4.6),
+(986,154,4.4),
+(986,237,0.95),
+(986,247,0.95),
+(986,248,0.95),
+(986,249,0.95),
+(986,508,1.33),
+(986,509,1.33),
+(986,510,1.33),
+(986,511,1.33),
+(986,593,3.02),
+(986,594,3.02),
+(986,595,3.02),
+(986,596,3.02),
+(986,763,3.28),
+(986,764,3.28),
+(986,765,3.28),
+(986,766,3.28),
+(986,848,1.48),
+(986,849,1.48),
+(986,850,1.48),
+(986,851,1.48),
+(986,1018,3.07),
+(986,1019,3.07),
+(986,1020,3.07),
+(986,1021,3.07),
+(986,1804,0.88),
+(986,1805,0.88),
+(986,1994,2.05),
+(986,1995,2.05),
+(986,2032,0.65),
+(986,2033,0.65),
+(987,151,3.53),
+(987,152,3),
+(987,153,4.23),
+(987,154,4.38),
+(987,167,3.53),
+(987,174,3),
+(987,179,4.23),
+(987,184,4.38),
+(987,237,1.02),
+(987,247,1.02),
+(987,248,1.02),
+(987,249,1.02),
+(987,508,1.32),
+(987,509,1.32),
+(987,510,1.32),
+(987,511,1.32),
+(987,593,3.14),
+(987,594,3.14),
+(987,595,3.14),
+(987,596,3.14),
+(987,763,3.47),
+(987,764,3.47),
+(987,765,3.47),
+(987,766,3.47),
+(987,848,1.63),
+(987,849,1.63),
+(987,850,1.63),
+(987,851,1.63),
+(987,1018,3.13),
+(987,1019,3.13),
+(987,1020,3.13),
+(987,1021,3.13),
+(987,1608,9.03),
+(987,1805,0.85),
+(987,1806,0.85),
+(987,1995,1.55),
+(987,1996,1.55),
+(987,2033,0.53),
+(987,2034,0.53),
+(988,167,3.38),
+(988,168,3.38),
+(988,174,3.27),
+(988,175,3.27),
+(988,179,4.73),
+(988,180,4.73),
+(988,184,4.15),
+(988,185,4.15),
+(988,247,1),
+(988,250,1),
+(988,251,1),
+(988,252,1),
+(988,511,1.16),
+(988,512,1.16),
+(988,513,1.16),
+(988,514,1.16),
+(988,596,2.68),
+(988,597,2.68),
+(988,598,2.68),
+(988,599,2.68),
+(988,766,3.7),
+(988,767,3.7),
+(988,768,3.7),
+(988,769,3.7),
+(988,851,1.56),
+(988,852,1.56),
+(988,853,1.56),
+(988,854,1.56),
+(988,1021,3.16),
+(988,1022,3.16),
+(988,1023,3.16),
+(988,1024,3.16),
+(988,1608,4.63),
+(988,1609,4.63),
+(988,1806,0.9),
+(988,1807,0.9),
+(988,1996,1.78),
+(988,1997,1.78),
+(988,2034,0.7),
+(988,2035,0.7),
+(989,168,3.83),
+(989,171,3.83),
+(989,175,2.52),
+(989,176,2.52),
+(989,180,4),
+(989,181,4),
+(989,185,4.32),
+(989,186,4.32),
+(989,599,17.87),
+(989,769,13.87),
+(989,854,5.6),
+(989,1024,11.23),
+(989,1194,4.87),
+(989,1609,5.28),
+(989,1610,5.28),
+(989,1807,0.93),
+(989,1808,0.93),
+(989,1997,1.83),
+(989,1998,1.83),
+(989,2035,0.58),
+(989,2036,0.58),
+(990,171,7.2),
+(990,176,4.8),
+(990,181,8.07),
+(990,186,8.73),
+(990,599,4.34),
+(990,600,4.34),
+(990,601,4.34),
+(990,602,4.34),
+(990,769,3.38),
+(990,770,3.38),
+(990,771,3.38),
+(990,772,3.38),
+(990,854,1.34),
+(990,855,1.34),
+(990,856,1.34),
+(990,857,1.34),
+(990,1024,2.97),
+(990,1025,2.97),
+(990,1026,2.97),
+(990,1027,2.97),
+(990,1194,1.07),
+(990,1195,1.07),
+(990,1196,1.07),
+(990,1197,1.07),
+(990,1610,11.33),
+(990,1808,2.27),
+(990,1998,3.83),
+(990,2036,1.37),
+(991,172,7.35),
+(991,177,4.95),
+(991,182,7.35),
+(991,187,8.7),
+(991,602,4.61),
+(991,603,4.61),
+(991,604,4.61),
+(991,605,4.61),
+(991,772,3.15),
+(991,773,3.15),
+(991,774,3.15),
+(991,775,3.15),
+(991,857,1.36),
+(991,858,1.36),
+(991,859,1.36),
+(991,860,1.36),
+(991,1027,2.91),
+(991,1028,2.91),
+(991,1029,2.91),
+(991,1030,2.91),
+(991,1197,1.13),
+(991,1198,1.13),
+(991,1199,1.13),
+(991,1200,1.13),
+(991,1611,10.55),
+(991,1809,2.85),
+(991,1999,3.8),
+(991,2037,1.7),
+(992,173,7.08),
+(992,178,4.96),
+(992,183,7.5),
+(992,188,8.7),
+(992,602,4.28),
+(992,603,4.28),
+(992,604,4.28),
+(992,605,4.28),
+(992,772,3.49),
+(992,773,3.49),
+(992,774,3.49),
+(992,775,3.49),
+(992,857,1.43),
+(992,858,1.43),
+(992,859,1.43),
+(992,860,1.43),
+(992,1027,3.08),
+(992,1028,3.08),
+(992,1029,3.08),
+(992,1030,3.08),
+(992,1197,1.18),
+(992,1198,1.18),
+(992,1199,1.18),
+(992,1200,1.18),
+(992,1607,10.4),
+(992,1810,2.22),
+(992,2000,3.98),
+(992,2038,1.36),
+(993,173,3.5),
+(993,178,2.3),
+(993,183,3.13),
+(993,188,4.15),
+(993,211,3.5),
+(993,213,2.3),
+(993,215,3.13),
+(993,217,4.15),
+(993,605,4.4),
+(993,606,4.4),
+(993,607,4.4),
+(993,608,4.4),
+(993,775,3.39),
+(993,776,3.39),
+(993,777,3.39),
+(993,778,3.39),
+(993,860,1.56),
+(993,861,1.56),
+(993,862,1.56),
+(993,863,1.56),
+(993,1030,2.59),
+(993,1031,2.59),
+(993,1032,2.59),
+(993,1033,2.59),
+(993,1200,1.04),
+(993,1201,1.04),
+(993,1202,1.04),
+(993,1203,1.04),
+(993,1318,0.13),
+(993,1319,0.13),
+(993,1364,0.13),
+(993,1365,0.13),
+(993,1410,0.15),
+(993,1411,0.15),
+(993,1456,0.18),
+(993,1457,0.18),
+(993,1502,0.13),
+(993,1503,0.13),
+(993,1607,5.85),
+(993,1612,5.85),
+(993,1810,1.23),
+(993,1811,1.23),
+(993,2000,2.28),
+(993,2001,2.28),
+(993,2038,0.92),
+(993,2039,0.92),
+(994,211,4.15),
+(994,212,4.15),
+(994,213,2.23),
+(994,214,2.23),
+(994,215,2.93),
+(994,216,2.93),
+(994,217,4.25),
+(994,218,4.25),
+(994,605,4.86),
+(994,606,4.86),
+(994,607,4.86),
+(994,608,4.86),
+(994,775,2.94),
+(994,776,2.94),
+(994,777,2.94),
+(994,778,2.94),
+(994,860,1.69),
+(994,861,1.69),
+(994,862,1.69),
+(994,863,1.69),
+(994,1030,2.16),
+(994,1031,2.16),
+(994,1032,2.16),
+(994,1033,2.16),
+(994,1200,1.29),
+(994,1201,1.29),
+(994,1202,1.29),
+(994,1203,1.29),
+(994,1319,0.1),
+(994,1320,0.1),
+(994,1365,0.15),
+(994,1366,0.15),
+(994,1411,0.2),
+(994,1412,0.2),
+(994,1457,0.13),
+(994,1458,0.13),
+(994,1503,0.13),
+(994,1504,0.13),
+(994,1612,5.5),
+(994,1613,5.5),
+(994,1811,1.25),
+(994,1812,1.25),
+(994,2001,2.27),
+(994,2002,2.27),
+(994,2039,0.93),
+(994,2040,0.93),
+(995,121,0.1),
+(995,212,4.75),
+(995,214,2.38),
+(995,216,2.23),
+(995,218,4.33),
+(995,267,4.75),
+(995,287,4.33),
+(995,383,2.38),
+(995,409,2.23),
+(995,608,5.39),
+(995,609,5.39),
+(995,610,5.39),
+(995,611,5.39),
+(995,694,0.1),
+(995,778,2.84),
+(995,779,2.84),
+(995,780,2.84),
+(995,781,2.84),
+(995,863,1.79),
+(995,864,1.79),
+(995,865,1.79),
+(995,866,1.79),
+(995,1033,2.04),
+(995,1034,2.04),
+(995,1035,2.04),
+(995,1036,2.04),
+(995,1203,1.21),
+(995,1204,1.21),
+(995,1205,1.21),
+(995,1206,1.21),
+(995,1320,0.1),
+(995,1321,0.1),
+(995,1366,0.2),
+(995,1367,0.2),
+(995,1412,0.23),
+(995,1413,0.23),
+(995,1458,0.18),
+(995,1459,0.18),
+(995,1504,0.2),
+(995,1505,0.2),
+(995,1613,5.05),
+(995,1614,5.05),
+(995,1812,1.02),
+(995,1813,1.02),
+(995,2002,1.85),
+(995,2003,1.85),
+(995,2040,0.92),
+(995,2041,0.92),
+(996,267,9.3),
+(996,287,10.1),
+(996,383,4.1),
+(996,409,4.3),
+(996,608,6.22),
+(996,609,6.22),
+(996,610,6.22),
+(996,611,6.22),
+(996,778,3.05),
+(996,779,3.05),
+(996,780,3.05),
+(996,781,3.05),
+(996,863,1.38),
+(996,864,1.38),
+(996,865,1.38),
+(996,866,1.38),
+(996,1033,1.95),
+(996,1034,1.95),
+(996,1035,1.95),
+(996,1036,1.95),
+(996,1203,1.05),
+(996,1204,1.05),
+(996,1205,1.05),
+(996,1206,1.05),
+(996,1321,0.1),
+(996,1367,0.7),
+(996,1413,0.4),
+(996,1459,1.1),
+(996,1505,0.5),
+(996,1614,8.5),
+(996,1813,1.6),
+(996,2003,2.9),
+(996,2041,1.7),
+(1002,19,3.6),
+(1002,22,3.6),
+(1002,23,5.23),
+(1002,24,5.23),
+(1002,62,4.6),
+(1002,74,4.6),
+(1002,584,0.77),
+(1002,585,0.77),
+(1002,586,0.77),
+(1002,587,0.77),
+(1002,669,0.85),
+(1002,670,0.85),
+(1002,671,0.85),
+(1002,672,0.85),
+(1002,839,0.95),
+(1002,840,0.95),
+(1002,841,0.95),
+(1002,842,0.95),
+(1002,924,1.15),
+(1002,925,1.15),
+(1002,926,1.15),
+(1002,927,1.15),
+(1002,1009,1.55),
+(1002,1010,1.55),
+(1002,1011,1.55),
+(1002,1012,1.55),
+(1002,1094,1.9),
+(1002,1095,1.9),
+(1002,1096,1.9),
+(1002,1097,1.9),
+(1002,1179,10.81),
+(1002,1180,10.81),
+(1002,1181,10.81),
+(1002,1182,10.81),
+(1002,1704,0.1),
+(1002,2028,0.6),
+(1002,2029,0.6),
+(1003,22,4.15),
+(1003,24,5.73),
+(1003,31,0.1),
+(1003,74,5.28),
+(1003,89,5.28),
+(1003,96,4.15),
+(1003,97,5.73),
+(1003,587,3),
+(1003,672,3.15),
+(1003,758,0.1),
+(1003,842,3.85),
+(1003,927,4.7),
+(1003,1012,6.4),
+(1003,1097,8),
+(1003,1182,39.6),
+(1003,1494,0.1),
+(1003,2029,0.5),
+(1003,2030,0.5),
+(1004,89,5.55),
+(1004,96,3.73),
+(1004,97,5.55),
+(1004,108,5.55),
+(1004,114,3.73),
+(1004,115,5.55),
+(1004,587,0.68),
+(1004,588,0.68),
+(1004,589,0.68),
+(1004,590,0.68),
+(1004,672,0.82),
+(1004,673,0.82),
+(1004,674,0.82),
+(1004,675,0.82),
+(1004,842,0.84),
+(1004,843,0.84),
+(1004,844,0.84),
+(1004,845,0.84),
+(1004,927,1.23),
+(1004,928,1.23),
+(1004,929,1.23),
+(1004,930,1.23),
+(1004,1012,1.78),
+(1004,1013,1.78),
+(1004,1014,1.78),
+(1004,1015,1.78),
+(1004,1097,2.15),
+(1004,1098,2.15),
+(1004,1099,2.15),
+(1004,1100,2.15),
+(1004,1182,9.8),
+(1004,1183,9.8),
+(1004,1184,9.8),
+(1004,1185,9.8),
+(1004,1840,0.1),
+(1004,1878,0.1),
+(1004,2030,0.55),
+(1004,2031,0.55),
+(1005,108,10.2),
+(1005,114,9),
+(1005,115,10.5),
+(1005,590,0.77),
+(1005,591,0.77),
+(1005,592,0.77),
+(1005,593,0.77),
+(1005,675,0.77),
+(1005,676,0.77),
+(1005,677,0.77),
+(1005,678,0.77),
+(1005,845,0.95),
+(1005,846,0.95),
+(1005,847,0.95),
+(1005,848,0.95),
+(1005,930,1.23),
+(1005,931,1.23),
+(1005,932,1.23),
+(1005,933,1.23),
+(1005,1015,1.92),
+(1005,1016,1.92),
+(1005,1017,1.92),
+(1005,1018,1.92),
+(1005,1100,2.05),
+(1005,1101,2.05),
+(1005,1102,2.05),
+(1005,1103,2.05),
+(1005,1185,9.57),
+(1005,1186,9.57),
+(1005,1187,9.57),
+(1005,1188,9.57),
+(1005,2031,1.1),
+(1006,31,0.1),
+(1006,128,10.7),
+(1006,135,9.05),
+(1006,136,10.8),
+(1006,590,0.7),
+(1006,591,0.7),
+(1006,592,0.7),
+(1006,593,0.7),
+(1006,675,0.69),
+(1006,676,0.69),
+(1006,677,0.69),
+(1006,678,0.69),
+(1006,845,0.82),
+(1006,846,0.82),
+(1006,847,0.82),
+(1006,848,0.82),
+(1006,930,1.22),
+(1006,931,1.22),
+(1006,932,1.22),
+(1006,933,1.22),
+(1006,1015,2.04),
+(1006,1016,2.04),
+(1006,1017,2.04),
+(1006,1018,2.04),
+(1006,1100,2.13),
+(1006,1101,2.13),
+(1006,1102,2.13),
+(1006,1103,2.13),
+(1006,1185,9.51),
+(1006,1186,9.51),
+(1006,1187,9.51),
+(1006,1188,9.51),
+(1006,1704,0.1),
+(1006,1875,0.1),
+(1006,1913,0.1),
+(1006,2032,0.95),
+(1007,128,11.87),
+(1007,135,4.55),
+(1007,136,5.58),
+(1007,154,4.55),
+(1007,155,5.58),
+(1007,593,0.63),
+(1007,594,0.63),
+(1007,595,0.63),
+(1007,596,0.63),
+(1007,678,0.65),
+(1007,679,0.65),
+(1007,680,0.65),
+(1007,681,0.65),
+(1007,848,0.77),
+(1007,849,0.77),
+(1007,850,0.77),
+(1007,851,0.77),
+(1007,933,1.3),
+(1007,934,1.3),
+(1007,935,1.3),
+(1007,936,1.3),
+(1007,1018,2.1),
+(1007,1019,2.1),
+(1007,1020,2.1),
+(1007,1021,2.1),
+(1007,1103,2.32),
+(1007,1104,2.32),
+(1007,1105,2.32),
+(1007,1106,2.32),
+(1007,1188,8.9),
+(1007,1189,8.9),
+(1007,1190,8.9),
+(1007,1191,8.9),
+(1007,2032,0.63),
+(1007,2033,0.63),
+(1008,154,4.58),
+(1008,155,5.4),
+(1008,184,4.58),
+(1008,189,5.4),
+(1008,593,0.57),
+(1008,594,0.57),
+(1008,595,0.57),
+(1008,596,0.57),
+(1008,678,0.63),
+(1008,679,0.63),
+(1008,680,0.63),
+(1008,681,0.63),
+(1008,848,0.72),
+(1008,849,0.72),
+(1008,850,0.72),
+(1008,851,0.72),
+(1008,933,1.4),
+(1008,934,1.4),
+(1008,935,1.4),
+(1008,936,1.4),
+(1008,1018,2.14),
+(1008,1019,2.14),
+(1008,1020,2.14),
+(1008,1021,2.14),
+(1008,1103,2.3),
+(1008,1104,2.3),
+(1008,1105,2.3),
+(1008,1106,2.3),
+(1008,1188,9.01),
+(1008,1189,9.01),
+(1008,1190,9.01),
+(1008,1191,9.01),
+(1008,1608,11.75),
+(1008,2033,0.58),
+(1008,2034,0.58),
+(1009,184,4.87),
+(1009,185,4.87),
+(1009,189,5.27),
+(1009,190,5.27),
+(1009,596,0.6),
+(1009,597,0.6),
+(1009,598,0.6),
+(1009,599,0.6),
+(1009,681,0.62),
+(1009,682,0.62),
+(1009,683,0.62),
+(1009,684,0.62),
+(1009,851,0.82),
+(1009,852,0.82),
+(1009,853,0.82),
+(1009,854,0.82),
+(1009,936,1.38),
+(1009,937,1.38),
+(1009,938,1.38),
+(1009,939,1.38),
+(1009,1021,2.24),
+(1009,1022,2.24),
+(1009,1023,2.24),
+(1009,1024,2.24),
+(1009,1106,2.39),
+(1009,1107,2.39),
+(1009,1108,2.39),
+(1009,1109,2.39),
+(1009,1191,8.85),
+(1009,1192,8.85),
+(1009,1193,8.85),
+(1009,1194,8.85),
+(1009,1608,5.55),
+(1009,1609,5.55),
+(1009,2034,0.5),
+(1009,2035,0.5),
+(1010,168,2.88),
+(1010,171,2.88),
+(1010,175,2.13),
+(1010,176,2.13),
+(1010,180,2.83),
+(1010,181,2.83),
+(1010,185,2),
+(1010,186,2),
+(1010,251,12.35),
+(1010,514,14.8),
+(1010,599,9.7),
+(1010,769,9.4),
+(1010,854,6.35),
+(1010,1024,12.9),
+(1010,1609,5.88),
+(1010,1610,5.88),
+(1010,1807,0.4),
+(1010,1808,0.4),
+(1010,1997,0.82),
+(1010,1998,0.82),
+(1010,2035,0.33),
+(1010,2036,0.33),
+(1010,2075,0.03),
+(1010,2076,0.03),
+(1010,2077,0.03),
+(1011,171,5.82),
+(1011,176,3.9),
+(1011,181,5.78),
+(1011,186,4.35),
+(1011,251,2.78),
+(1011,253,2.78),
+(1011,254,2.78),
+(1011,255,2.78),
+(1011,514,3.59),
+(1011,515,3.59),
+(1011,516,3.59),
+(1011,517,3.59),
+(1011,599,2.46),
+(1011,600,2.46),
+(1011,601,2.46),
+(1011,602,2.46),
+(1011,769,2.3),
+(1011,770,2.3),
+(1011,771,2.3),
+(1011,772,2.3),
+(1011,854,1.63),
+(1011,855,1.63),
+(1011,856,1.63),
+(1011,857,1.63),
+(1011,1024,3.41),
+(1011,1025,3.41),
+(1011,1026,3.41),
+(1011,1027,3.41),
+(1011,1610,12.1),
+(1011,1808,1),
+(1011,1998,1.67),
+(1011,2036,0.65),
+(1012,172,5.45),
+(1012,177,4.1),
+(1012,182,5.95),
+(1012,187,4.2),
+(1012,254,2.99),
+(1012,435,2.99),
+(1012,436,2.99),
+(1012,437,2.99),
+(1012,517,3.65),
+(1012,518,3.65),
+(1012,519,3.65),
+(1012,520,3.65),
+(1012,602,2.36),
+(1012,603,2.36),
+(1012,604,2.36),
+(1012,605,2.36),
+(1012,772,2.38),
+(1012,773,2.38),
+(1012,774,2.38),
+(1012,775,2.38),
+(1012,857,1.57),
+(1012,858,1.57),
+(1012,859,1.57),
+(1012,860,1.57),
+(1012,1027,3.48),
+(1012,1028,3.48),
+(1012,1029,3.48),
+(1012,1030,3.48),
+(1012,1611,11.45),
+(1012,1809,1.1),
+(1012,1999,1.7),
+(1012,2037,0.55),
+(1013,173,5.7),
+(1013,178,3.87),
+(1013,183,5.57),
+(1013,188,4.47),
+(1013,254,3),
+(1013,435,3),
+(1013,436,3),
+(1013,437,3),
+(1013,517,3.73),
+(1013,518,3.73),
+(1013,519,3.73),
+(1013,520,3.73),
+(1013,602,2.36),
+(1013,603,2.36),
+(1013,604,2.36),
+(1013,605,2.36),
+(1013,772,2.24),
+(1013,773,2.24),
+(1013,774,2.24),
+(1013,775,2.24),
+(1013,857,1.78),
+(1013,858,1.78),
+(1013,859,1.78),
+(1013,860,1.78),
+(1013,1027,3.28),
+(1013,1028,3.28),
+(1013,1029,3.28),
+(1013,1030,3.28),
+(1013,1607,11.87),
+(1013,1810,0.73),
+(1013,2000,1.7),
+(1013,2038,0.57),
+(1014,173,2.73),
+(1014,178,1.85),
+(1014,183,2.38),
+(1014,188,2),
+(1014,211,2.73),
+(1014,213,1.85),
+(1014,215,2.38),
+(1014,217,2),
+(1014,437,2.82),
+(1014,438,2.82),
+(1014,439,2.82),
+(1014,440,2.82),
+(1014,520,3.56),
+(1014,521,3.56),
+(1014,522,3.56),
+(1014,523,3.56),
+(1014,605,2.13),
+(1014,606,2.13),
+(1014,607,2.13),
+(1014,608,2.13),
+(1014,775,2.23),
+(1014,776,2.23),
+(1014,777,2.23),
+(1014,778,2.23),
+(1014,860,1.78),
+(1014,861,1.78),
+(1014,862,1.78),
+(1014,863,1.78),
+(1014,1030,3.01),
+(1014,1031,3.01),
+(1014,1032,3.01),
+(1014,1033,3.01),
+(1014,1318,0.25),
+(1014,1319,0.25),
+(1014,1364,0.33),
+(1014,1365,0.33),
+(1014,1410,0.48),
+(1014,1411,0.48),
+(1014,1456,0.33),
+(1014,1457,0.33),
+(1014,1502,0.2),
+(1014,1503,0.2),
+(1014,1607,6.52),
+(1014,1612,6.52),
+(1014,1810,0.65),
+(1014,1811,0.65),
+(1014,2000,0.9),
+(1014,2001,0.9),
+(1014,2038,0.35),
+(1014,2039,0.35),
+(1015,211,3.25),
+(1015,212,3.25),
+(1015,213,1.98),
+(1015,214,1.98),
+(1015,215,2.2),
+(1015,216,2.2),
+(1015,217,2),
+(1015,218,2),
+(1015,437,2.76),
+(1015,438,2.76),
+(1015,439,2.76),
+(1015,440,2.76),
+(1015,520,3.29),
+(1015,521,3.29),
+(1015,522,3.29),
+(1015,523,3.29),
+(1015,605,2.52),
+(1015,606,2.52),
+(1015,607,2.52),
+(1015,608,2.52),
+(1015,775,2.03),
+(1015,776,2.03),
+(1015,777,2.03),
+(1015,778,2.03),
+(1015,860,1.98),
+(1015,861,1.98),
+(1015,862,1.98),
+(1015,863,1.98),
+(1015,1030,2.63),
+(1015,1031,2.63),
+(1015,1032,2.63),
+(1015,1033,2.63),
+(1015,1319,0.2),
+(1015,1320,0.2),
+(1015,1365,0.33),
+(1015,1366,0.33),
+(1015,1411,0.4),
+(1015,1412,0.4),
+(1015,1457,0.35),
+(1015,1458,0.38),
+(1015,1503,0.35),
+(1015,1504,0.35),
+(1015,1612,6.75),
+(1015,1613,6.75),
+(1015,1811,0.58),
+(1015,1812,0.58),
+(1015,2001,0.9),
+(1015,2002,0.9),
+(1015,2039,0.42),
+(1015,2040,0.42),
+(1016,212,3.77),
+(1016,214,1.8),
+(1016,216,2.32),
+(1016,218,1.92),
+(1016,267,3.77),
+(1016,287,1.92),
+(1016,383,1.8),
+(1016,409,2.32),
+(1016,440,3),
+(1016,441,3),
+(1016,442,3),
+(1016,443,3),
+(1016,523,3.19),
+(1016,524,3.19),
+(1016,525,3.19),
+(1016,526,3.19),
+(1016,608,2.86),
+(1016,609,2.86),
+(1016,610,2.86),
+(1016,611,2.86),
+(1016,778,1.8),
+(1016,779,1.8),
+(1016,780,1.8),
+(1016,781,1.8),
+(1016,863,2.08),
+(1016,864,2.08),
+(1016,865,2.08),
+(1016,866,2.08),
+(1016,1033,2.55),
+(1016,1034,2.55),
+(1016,1035,2.55),
+(1016,1036,2.55),
+(1016,1320,0.2),
+(1016,1321,0.2),
+(1016,1366,0.38),
+(1016,1367,0.38),
+(1016,1412,0.28),
+(1016,1413,0.28),
+(1016,1458,0.2),
+(1016,1459,0.2),
+(1016,1504,0.35),
+(1016,1505,0.35),
+(1016,1613,6.1),
+(1016,1614,6.1),
+(1016,1812,0.45),
+(1016,1813,0.45),
+(1016,2002,0.82),
+(1016,2003,0.82),
+(1016,2040,0.38),
+(1016,2041,0.38),
+(1016,2118,0.03),
+(1016,2119,0.03),
+(1016,2120,0.03),
+(1016,2121,0.03),
+(1017,267,8.8),
+(1017,287,3.8),
+(1017,383,4.2),
+(1017,409,3.1),
+(1017,440,2.7),
+(1017,441,2.7),
+(1017,442,2.7),
+(1017,443,2.7),
+(1017,523,2.63),
+(1017,524,2.63),
+(1017,525,2.63),
+(1017,526,2.63),
+(1017,608,3.13),
+(1017,609,3.13),
+(1017,610,3.13),
+(1017,611,3.13),
+(1017,778,2.08),
+(1017,779,2.08),
+(1017,780,2.08),
+(1017,781,2.08),
+(1017,863,2.15),
+(1017,864,2.15),
+(1017,865,2.15),
+(1017,866,2.15),
+(1017,1033,2.45),
+(1017,1034,2.45),
+(1017,1035,2.45),
+(1017,1036,2.45),
+(1017,1321,0.3),
+(1017,1367,0.9),
+(1017,1413,1.8),
+(1017,1459,0.4),
+(1017,1505,1),
+(1017,1614,11.7),
+(1017,1813,1.1),
+(1017,2003,2),
+(1017,2041,0.6),
+(1043,5,3.55),
+(1043,15,2.6),
+(1043,16,3.35),
+(1043,19,2.6),
+(1043,25,3.55),
+(1043,27,3.35),
+(1043,754,20.3),
+(1043,839,14.7),
+(1043,1009,6.85),
+(1043,1011,6.85),
+(1043,1799,2.8),
+(1043,1800,2.8),
+(1043,1837,2.25),
+(1043,1838,2.25),
+(1043,1875,2.4),
+(1043,1876,2.4),
+(1043,1913,2.95),
+(1043,1914,2.95),
+(1043,1951,3),
+(1043,1952,3),
+(1043,2027,2.75),
+(1043,2028,2.75),
+(1044,19,3.05),
+(1044,22,3.05),
+(1044,25,3.55),
+(1044,26,3.55),
+(1044,27,3.6),
+(1044,28,3.6),
+(1044,137,0.1),
+(1044,754,5.2),
+(1044,755,5.2),
+(1044,756,5.2),
+(1044,757,5.2),
+(1044,839,3.88),
+(1044,840,3.88),
+(1044,841,3.88),
+(1044,842,3.88),
+(1044,1009,3.63),
+(1044,1010,3.63),
+(1044,1011,3.63),
+(1044,1012,3.63),
+(1044,1800,2.9),
+(1044,1801,2.9),
+(1044,1838,1.7),
+(1044,1839,1.7),
+(1044,1876,3.3),
+(1044,1877,3.3),
+(1044,1952,2.6),
+(1044,1953,2.6),
+(1044,2028,3.95),
+(1044,2029,3.95),
+(1045,22,2.81),
+(1045,26,3.91),
+(1045,28,4.44),
+(1045,94,3.91),
+(1045,95,4.44),
+(1045,96,2.81),
+(1045,502,0.1),
+(1045,757,17.45),
+(1045,758,9.7),
+(1045,842,13.5),
+(1045,928,0.1),
+(1045,1012,15.45),
+(1045,1356,0.1),
+(1045,1707,0.1),
+(1045,1801,2.91),
+(1045,1802,2.91),
+(1045,1837,0.93),
+(1045,1838,0.93),
+(1045,1839,1.58),
+(1045,1840,1.58),
+(1045,1875,1.65),
+(1045,1876,1.65),
+(1045,1877,2.85),
+(1045,1878,2.85),
+(1045,1915,0.1),
+(1045,1951,1.23),
+(1045,1952,1.23),
+(1045,1953,2.28),
+(1045,1954,2.28),
+(1045,2029,3.84),
+(1045,2030,3.84),
+(1047,112,6.7),
+(1047,113,9.85),
+(1047,114,6.15),
+(1047,198,0.1),
+(1047,760,4.6),
+(1047,761,4.6),
+(1047,762,4.6),
+(1047,763,4.6),
+(1047,845,2.59),
+(1047,846,2.59),
+(1047,847,2.59),
+(1047,848,2.59),
+(1047,1015,4.13),
+(1047,1016,4.13),
+(1047,1017,4.13),
+(1047,1018,4.13),
+(1047,1803,7.25),
+(1047,1841,3.6),
+(1047,1879,6.75),
+(1047,1955,5.55),
+(1047,2031,9.1),
+(1048,133,7.05),
+(1048,134,9.8),
+(1048,135,5.7),
+(1048,760,4.98),
+(1048,761,4.98),
+(1048,762,4.98),
+(1048,763,4.98),
+(1048,845,2.81),
+(1048,846,2.81),
+(1048,847,2.81),
+(1048,848,2.81),
+(1048,1015,4.27),
+(1048,1016,4.27),
+(1048,1017,4.27),
+(1048,1018,4.27),
+(1048,1804,6.82),
+(1048,1842,2.7),
+(1048,1880,6.45),
+(1048,1913,0.1),
+(1048,1956,4.93),
+(1048,2032,8.33),
+(1049,133,4),
+(1049,134,5.15),
+(1049,135,2.83),
+(1049,152,4),
+(1049,153,5.15),
+(1049,154,2.83),
+(1049,763,5),
+(1049,764,5),
+(1049,765,5),
+(1049,766,5),
+(1049,848,2.54),
+(1049,849,2.54),
+(1049,850,2.54),
+(1049,851,2.54),
+(1049,1018,4.01),
+(1049,1019,4.01),
+(1049,1020,4.01),
+(1049,1021,4.01),
+(1049,1804,3.27),
+(1049,1805,3.27),
+(1049,1842,1.48),
+(1049,1843,1.48),
+(1049,1880,3.6),
+(1049,1881,3.6),
+(1049,1956,2.33),
+(1049,1957,2.33),
+(1049,2032,4.2),
+(1049,2033,4.2),
+(1050,152,4.1),
+(1050,153,4.62),
+(1050,154,2.85),
+(1050,174,4.1),
+(1050,179,4.62),
+(1050,184,2.85),
+(1050,763,5.51),
+(1050,764,5.51),
+(1050,765,5.51),
+(1050,766,5.51),
+(1050,848,2.96),
+(1050,849,2.96),
+(1050,850,2.96),
+(1050,851,2.96),
+(1050,1018,4.14),
+(1050,1019,4.14),
+(1050,1020,4.14),
+(1050,1021,4.14),
+(1050,1805,3.1),
+(1050,1806,3.1),
+(1050,1843,1.22),
+(1050,1844,1.22),
+(1050,1881,3),
+(1050,1882,3),
+(1050,1957,2.3),
+(1050,1958,2.3),
+(1050,2033,3.58),
+(1050,2034,3.58),
+(1051,174,4.33),
+(1051,175,4.33),
+(1051,179,4.42),
+(1051,180,4.42),
+(1051,184,2.7),
+(1051,185,2.7),
+(1051,766,5.46),
+(1051,767,5.46),
+(1051,768,5.46),
+(1051,769,5.46),
+(1051,851,2.97),
+(1051,852,2.97),
+(1051,853,2.97),
+(1051,854,2.97),
+(1051,1021,4.03),
+(1051,1022,4.03),
+(1051,1023,4.03),
+(1051,1024,4.03),
+(1051,1357,5.65),
+(1051,1799,0.73),
+(1051,1800,0.73),
+(1051,1801,0.73),
+(1051,1802,0.73),
+(1051,1803,3.52),
+(1051,1804,0.73),
+(1051,1805,0.73),
+(1051,1806,0.73),
+(1051,1807,0.73),
+(1051,1841,3.25),
+(1051,1875,0.62),
+(1051,1876,0.62),
+(1051,1877,0.62),
+(1051,1878,0.62),
+(1051,1879,0.62),
+(1051,1880,0.62),
+(1051,1881,0.62),
+(1051,1882,1.61),
+(1051,1883,1.61),
+(1051,1920,0.1),
+(1051,1958,0.1),
+(1051,2034,3.25),
+(1051,2035,3.25),
+(1052,175,4.38),
+(1052,176,4.38),
+(1052,180,3.93),
+(1052,181,3.93),
+(1052,185,2.7),
+(1052,186,2.7),
+(1052,769,24.4),
+(1052,854,10.9),
+(1052,1024,16.5),
+(1052,1807,3.05),
+(1052,1808,3.05),
+(1052,1845,1.25),
+(1052,1846,1.25),
+(1052,1883,2.88),
+(1052,1884,2.88),
+(1052,1959,2.38),
+(1052,1960,2.38),
+(1052,2035,3.53),
+(1052,2036,3.53),
+(1053,176,7.67),
+(1053,181,8.53),
+(1053,186,5.73),
+(1053,769,6.18),
+(1053,770,6.18),
+(1053,771,6.18),
+(1053,772,6.18),
+(1053,854,2.54),
+(1053,855,2.54),
+(1053,856,2.54),
+(1053,857,2.54),
+(1053,1024,4.15),
+(1053,1025,4.15),
+(1053,1026,4.15),
+(1053,1027,4.15),
+(1053,1808,5.93),
+(1053,1846,2.47),
+(1053,1884,6.37),
+(1053,1960,4.67),
+(1053,2036,7.13),
+(1054,177,7.15),
+(1054,182,7.7),
+(1054,187,6.1),
+(1054,772,6.1),
+(1054,773,6.1),
+(1054,774,6.1),
+(1054,775,6.1),
+(1054,857,2.67),
+(1054,858,2.67),
+(1054,859,2.67),
+(1054,860,2.67),
+(1054,1027,4.22),
+(1054,1028,4.22),
+(1054,1029,4.22),
+(1054,1030,4.22),
+(1054,1364,0.1),
+(1054,1809,5.5),
+(1054,1847,2.75),
+(1054,1885,6.45),
+(1054,1961,4.85),
+(1054,2037,7.4),
+(1055,178,7.27),
+(1055,183,8),
+(1055,188,5.53),
+(1055,772,6.07),
+(1055,773,6.07),
+(1055,774,6.07),
+(1055,775,6.07),
+(1055,857,2.81),
+(1055,858,2.81),
+(1055,859,2.81),
+(1055,860,2.81),
+(1055,1027,4.03),
+(1055,1028,4.03),
+(1055,1029,4.03),
+(1055,1030,4.03),
+(1055,1810,5.97),
+(1055,1848,3.03),
+(1055,1886,6.43),
+(1055,1962,5),
+(1055,2038,7.13),
+(1056,178,3.5),
+(1056,183,3.83),
+(1056,188,2.87),
+(1056,213,3.5),
+(1056,215,3.83),
+(1056,217,2.87),
+(1056,775,6.38),
+(1056,776,6.38),
+(1056,777,6.38),
+(1056,778,6.38),
+(1056,860,3.17),
+(1056,861,3.17),
+(1056,862,3.17),
+(1056,863,3.17),
+(1056,1030,3.96),
+(1056,1031,3.96),
+(1056,1032,3.96),
+(1056,1033,3.96),
+(1056,1318,0.17),
+(1056,1319,0.17),
+(1056,1364,0.13),
+(1056,1365,0.13),
+(1056,1410,0.27),
+(1056,1411,0.27),
+(1056,1456,0.12),
+(1056,1457,0.12),
+(1056,1502,0.17),
+(1056,1503,0.17),
+(1056,1810,2.08),
+(1056,1811,2.08),
+(1056,1848,1.42),
+(1056,1849,1.42),
+(1056,1886,3.07),
+(1056,1887,3.07),
+(1056,1962,1.92),
+(1056,1963,1.92),
+(1056,2038,3.43),
+(1056,2039,3.43),
+(1057,213,3.33),
+(1057,214,3.33),
+(1057,215,3.25),
+(1057,216,3.25),
+(1057,217,2.7),
+(1057,218,2.7),
+(1057,775,6.34),
+(1057,776,6.34),
+(1057,777,6.34),
+(1057,778,6.34),
+(1057,860,3.21),
+(1057,861,3.21),
+(1057,862,3.21),
+(1057,863,3.21),
+(1057,1030,3.79),
+(1057,1031,3.79),
+(1057,1032,3.79),
+(1057,1033,3.79),
+(1057,1319,0.08),
+(1057,1320,0.08),
+(1057,1365,0.1),
+(1057,1366,0.1),
+(1057,1411,0.3),
+(1057,1412,0.3),
+(1057,1457,0.23),
+(1057,1458,0.23),
+(1057,1503,0.47),
+(1057,1504,0.47),
+(1057,1811,2.27),
+(1057,1812,2.27),
+(1057,1849,1.6),
+(1057,1850,1.6),
+(1057,1887,2.95),
+(1057,1888,2.95),
+(1057,1963,2.1),
+(1057,1964,2.1),
+(1057,2039,3.95),
+(1057,2040,3.95),
+(1058,214,3.9),
+(1058,216,2.6),
+(1058,218,2.45),
+(1058,287,2.45),
+(1058,383,3.9),
+(1058,409,2.6),
+(1058,608,0.1),
+(1058,778,6.41),
+(1058,779,6.41),
+(1058,780,6.41),
+(1058,781,6.41),
+(1058,863,4.09),
+(1058,864,4.09),
+(1058,865,4.09),
+(1058,866,4.09),
+(1058,950,0.1),
+(1058,1033,3.15),
+(1058,1034,3.15),
+(1058,1035,3.15),
+(1058,1036,3.15),
+(1058,1320,0.15),
+(1058,1321,0.15),
+(1058,1366,0.2),
+(1058,1367,0.2),
+(1058,1412,0.25),
+(1058,1413,0.25),
+(1058,1458,0.18),
+(1058,1459,0.18),
+(1058,1504,0.18),
+(1058,1505,0.18),
+(1058,1812,1.93),
+(1058,1813,1.93),
+(1058,1850,1.92),
+(1058,1851,1.92),
+(1058,1888,3.42),
+(1058,1889,3.42),
+(1058,1964,1.95),
+(1058,1965,1.95),
+(1058,2040,3.53),
+(1058,2041,3.53),
+(1059,287,5.7),
+(1059,383,6.25),
+(1059,409,6.85),
+(1059,694,0.2),
+(1059,696,0.1),
+(1059,778,6.27),
+(1059,779,6.27),
+(1059,780,6.27),
+(1059,781,6.27),
+(1059,863,4.17),
+(1059,864,4.17),
+(1059,865,4.17),
+(1059,866,4.17),
+(1059,1033,3.36),
+(1059,1034,3.36),
+(1059,1035,3.36),
+(1059,1036,3.36),
+(1059,1206,0.1),
+(1059,1321,0.33),
+(1059,1367,0.6),
+(1059,1413,1),
+(1059,1459,0.27),
+(1059,1505,0.6),
+(1059,1813,3.7),
+(1059,1851,4.23),
+(1059,1889,5.56),
+(1059,1890,3.65),
+(1059,1965,3.73),
+(1059,2041,4.52),
+(1059,2042,3.6),
+(1064,5,3.7),
+(1064,14,3.65),
+(1064,15,3.95),
+(1064,16,2.47),
+(1064,17,3.65),
+(1064,19,3.95),
+(1064,25,3.7),
+(1064,27,2.47),
+(1064,28,2.47),
+(1064,33,0.1),
+(1064,227,3.5),
+(1064,228,0.9),
+(1064,256,0.9),
+(1064,501,0.9),
+(1064,502,0.9),
+(1064,584,16.1),
+(1064,754,14.4),
+(1064,839,10),
+(1064,1009,9.4),
+(1064,1354,0.1),
+(1064,1493,0.1),
+(1064,1547,2.65),
+(1064,1548,2.65),
+(1064,1799,1.1),
+(1064,1800,1.1),
+(1064,1877,0.1),
+(1064,1989,1.7),
+(1064,1990,1.7),
+(1064,2027,0.95),
+(1064,2028,0.95),
+(1065,17,3.45),
+(1065,18,3.45),
+(1065,19,3.3),
+(1065,22,3.3),
+(1065,25,3.9),
+(1065,26,3.9),
+(1065,27,3.9),
+(1065,28,3.9),
+(1065,31,0.1),
+(1065,227,1.05),
+(1065,228,0.98),
+(1065,229,1.05),
+(1065,231,1.05),
+(1065,238,1.05),
+(1065,256,0.98),
+(1065,501,0.98),
+(1065,502,0.98),
+(1065,584,3.45),
+(1065,585,3.45),
+(1065,586,3.45),
+(1065,587,3.45),
+(1065,754,4.05),
+(1065,755,4.05),
+(1065,756,4.05),
+(1065,757,4.05),
+(1065,839,2.5),
+(1065,840,2.5),
+(1065,841,2.5),
+(1065,842,2.5),
+(1065,1009,2.45),
+(1065,1010,2.45),
+(1065,1011,2.45),
+(1065,1012,2.45),
+(1065,1548,2.6),
+(1065,1549,2.6),
+(1065,1800,1.35),
+(1065,1801,1.35),
+(1065,1875,0.1),
+(1065,1990,1.7),
+(1065,1991,1.7),
+(1065,2028,0.9),
+(1065,2029,0.9),
+(1066,18,3.5),
+(1066,22,3.5),
+(1066,26,4.25),
+(1066,28,4.42),
+(1066,29,0.1),
+(1066,30,0.01),
+(1066,31,0.01),
+(1066,34,0.1),
+(1066,79,0.01),
+(1066,93,3.5),
+(1066,94,4.25),
+(1066,95,4.42),
+(1066,96,3.5),
+(1066,98,0.01),
+(1066,118,0.01),
+(1066,137,0.01),
+(1066,194,0.01),
+(1066,195,0.01),
+(1066,196,0.01),
+(1066,238,3.7),
+(1066,502,3.7),
+(1066,587,12),
+(1066,757,16.63),
+(1066,842,9.3),
+(1066,1012,10.67),
+(1066,1549,2.57),
+(1066,1550,2.57),
+(1066,1801,1.1),
+(1066,1802,1.1),
+(1066,1879,0.1),
+(1066,1991,1.78),
+(1066,1992,1.78),
+(1066,2029,0.9),
+(1066,2030,0.9),
+(1067,93,3.1),
+(1067,94,4.45),
+(1067,95,4.95),
+(1067,96,3.75),
+(1067,111,3.1),
+(1067,112,4.45),
+(1067,113,4.95),
+(1067,114,3.75),
+(1067,232,1.05),
+(1067,233,1.05),
+(1067,234,1.05),
+(1067,238,1.05),
+(1067,502,0.88),
+(1067,503,0.88),
+(1067,504,0.88),
+(1067,505,0.88),
+(1067,587,2.35),
+(1067,588,2.35),
+(1067,589,2.35),
+(1067,590,2.35),
+(1067,757,4.13),
+(1067,758,4.13),
+(1067,759,4.13),
+(1067,760,4.13),
+(1067,842,2.47),
+(1067,843,2.47),
+(1067,844,2.47),
+(1067,845,2.47),
+(1067,1012,2.63),
+(1067,1013,2.63),
+(1067,1014,2.63),
+(1067,1015,2.63),
+(1067,1495,0.1),
+(1067,1550,2.6),
+(1067,1551,2.6),
+(1067,1802,1),
+(1067,1803,1),
+(1067,1992,2.05),
+(1067,1993,2.05),
+(1067,2030,1),
+(1067,2031,1),
+(1068,111,7.05),
+(1068,112,8.03),
+(1068,113,9.5),
+(1068,114,8.1),
+(1068,234,0.83),
+(1068,235,0.83),
+(1068,236,0.83),
+(1068,248,0.83),
+(1068,505,0.96),
+(1068,506,0.96),
+(1068,507,0.96),
+(1068,508,0.96),
+(1068,590,2.83),
+(1068,591,2.83),
+(1068,592,2.83),
+(1068,593,2.83),
+(1068,760,4.06),
+(1068,761,4.06),
+(1068,762,4.06),
+(1068,763,4.06),
+(1068,845,2.31),
+(1068,846,2.31),
+(1068,847,2.31),
+(1068,848,2.31),
+(1068,1015,2.78),
+(1068,1016,2.78),
+(1068,1017,2.78),
+(1068,1018,2.78),
+(1068,1551,4.82),
+(1068,1803,2.22),
+(1068,1993,3.65),
+(1068,2031,1.65),
+(1069,29,0.1),
+(1069,132,6.23),
+(1069,133,8.1),
+(1069,134,9.53),
+(1069,135,7.63),
+(1069,234,0.89),
+(1069,235,0.89),
+(1069,236,0.89),
+(1069,248,0.89),
+(1069,505,1),
+(1069,506,1),
+(1069,507,1),
+(1069,508,1),
+(1069,590,2.88),
+(1069,591,2.88),
+(1069,592,2.88),
+(1069,593,2.88),
+(1069,760,4.14),
+(1069,761,4.14),
+(1069,762,4.14),
+(1069,763,4.14),
+(1069,845,2.27),
+(1069,846,2.27),
+(1069,847,2.27),
+(1069,848,2.27),
+(1069,1015,2.85),
+(1069,1016,2.85),
+(1069,1017,2.85),
+(1069,1018,2.85),
+(1069,1552,4.87),
+(1069,1804,2.47),
+(1069,1989,0.58),
+(1069,1990,0.58),
+(1069,1991,0.58),
+(1069,1992,0.58),
+(1069,1993,0.58),
+(1069,1994,2.56),
+(1069,2032,1.5),
+(1070,132,3.63),
+(1070,133,4),
+(1070,134,4.55),
+(1070,135,4.25),
+(1070,151,3.63),
+(1070,152,4),
+(1070,153,4.55),
+(1070,154,4.25),
+(1070,237,0.9),
+(1070,247,0.9),
+(1070,248,0.9),
+(1070,249,0.9),
+(1070,508,1.1),
+(1070,509,1.1),
+(1070,510,1.1),
+(1070,511,1.1),
+(1070,593,3.25),
+(1070,594,3.25),
+(1070,595,3.25),
+(1070,596,3.25),
+(1070,763,3.8),
+(1070,764,3.8),
+(1070,765,3.8),
+(1070,766,3.8),
+(1070,848,1.98),
+(1070,849,1.98),
+(1070,850,1.98),
+(1070,851,1.98),
+(1070,1018,2.75),
+(1070,1019,2.75),
+(1070,1020,2.75),
+(1070,1021,2.75),
+(1070,1552,2.55),
+(1070,1553,2.55),
+(1070,1804,1.03),
+(1070,1805,1.03),
+(1070,1994,1.65),
+(1070,1995,1.65),
+(1070,2032,0.85),
+(1070,2033,0.85),
+(1071,151,4.75),
+(1071,152,3.38),
+(1071,153,3.78),
+(1071,154,4.25),
+(1071,167,4.75),
+(1071,174,3.38),
+(1071,179,3.78),
+(1071,184,4.25),
+(1071,237,0.95),
+(1071,247,0.95),
+(1071,248,0.95),
+(1071,249,0.95),
+(1071,508,1.19),
+(1071,509,1.19),
+(1071,510,1.19),
+(1071,511,1.19),
+(1071,593,3.97),
+(1071,594,3.97),
+(1071,595,3.97),
+(1071,596,3.97),
+(1071,763,3.42),
+(1071,764,3.42),
+(1071,765,3.42),
+(1071,766,3.42),
+(1071,848,2.1),
+(1071,849,2.1),
+(1071,850,2.1),
+(1071,851,2.1),
+(1071,1018,2.66),
+(1071,1019,2.66),
+(1071,1020,2.66),
+(1071,1021,2.66),
+(1071,1553,2.63),
+(1071,1554,2.63),
+(1071,1805,0.7),
+(1071,1806,0.7),
+(1071,1995,1.33),
+(1071,1996,1.33),
+(1071,2033,0.57),
+(1071,2034,0.57),
+(1072,167,4.12),
+(1072,168,3.74),
+(1072,174,3.25),
+(1072,175,3.25),
+(1072,179,3.97),
+(1072,180,3.97),
+(1072,184,5.85),
+(1072,185,4.37),
+(1072,247,2.36),
+(1072,250,1.02),
+(1072,251,1.02),
+(1072,252,2.36),
+(1072,511,1.86),
+(1072,512,1.2),
+(1072,513,1.86),
+(1072,514,1.2),
+(1072,596,4.05),
+(1072,597,4.05),
+(1072,598,4.05),
+(1072,599,4.05),
+(1072,766,4.24),
+(1072,767,3.52),
+(1072,768,4.24),
+(1072,769,3.52),
+(1072,851,2.31),
+(1072,852,3.01),
+(1072,853,2.31),
+(1072,854,2.31),
+(1072,1021,5.34),
+(1072,1022,2.85),
+(1072,1023,2.85),
+(1072,1024,2.85),
+(1072,1554,3.27),
+(1072,1555,2.67),
+(1072,1806,1.1),
+(1072,1807,0.6),
+(1072,1951,0.1),
+(1072,1996,2.9),
+(1072,1997,1.3),
+(1072,2034,0.58),
+(1072,2035,0.58),
+(1073,168,3.75),
+(1073,171,3.75),
+(1073,175,2.93),
+(1073,176,2.93),
+(1073,180,3.42),
+(1073,181,3.42),
+(1073,185,5.22),
+(1073,186,5.22),
+(1073,599,17.3),
+(1073,769,15.8),
+(1073,854,8.73),
+(1073,1024,10.97),
+(1073,1194,5.2),
+(1073,1555,2.7),
+(1073,1556,2.7),
+(1073,1807,0.93),
+(1073,1808,0.93),
+(1073,1913,0.1),
+(1073,1997,1.38),
+(1073,1998,1.38),
+(1073,2035,0.65),
+(1073,2036,0.65),
+(1074,171,6.67),
+(1074,176,5.73),
+(1074,181,6.33),
+(1074,186,9.63),
+(1074,599,4.39),
+(1074,600,4.39),
+(1074,601,4.39),
+(1074,602,4.39),
+(1074,769,3.61),
+(1074,770,3.61),
+(1074,771,3.61),
+(1074,772,3.61),
+(1074,854,2.29),
+(1074,855,2.29),
+(1074,856,2.29),
+(1074,857,2.29),
+(1074,1024,2.97),
+(1074,1025,2.97),
+(1074,1026,2.97),
+(1074,1027,2.97),
+(1074,1194,1.46),
+(1074,1195,1.46),
+(1074,1196,1.46),
+(1074,1197,1.46),
+(1074,1556,6.63),
+(1074,1808,1.5),
+(1074,1998,3.1),
+(1074,2036,1.47),
+(1075,172,6.7),
+(1075,177,5.63),
+(1075,182,5.57),
+(1075,187,9.63),
+(1075,602,4.88),
+(1075,603,4.88),
+(1075,604,4.88),
+(1075,605,4.88),
+(1075,772,3.22),
+(1075,773,3.22),
+(1075,774,3.22),
+(1075,775,3.22),
+(1075,857,2.53),
+(1075,858,2.53),
+(1075,859,2.53),
+(1075,860,2.53),
+(1075,1027,2.66),
+(1075,1028,2.66),
+(1075,1029,2.66),
+(1075,1030,2.66),
+(1075,1197,1.62),
+(1075,1198,1.62),
+(1075,1199,1.62),
+(1075,1200,1.62),
+(1075,1557,7.17),
+(1075,1809,1.47),
+(1075,1999,3.13),
+(1075,2037,1.33),
+(1076,173,8),
+(1076,178,5.13),
+(1076,183,5.53),
+(1076,188,9.77),
+(1076,602,5.29),
+(1076,603,5.29),
+(1076,604,5.29),
+(1076,605,5.29),
+(1076,772,3.12),
+(1076,773,3.12),
+(1076,774,3.12),
+(1076,775,3.12),
+(1076,857,2.39),
+(1076,858,2.39),
+(1076,859,2.39),
+(1076,860,2.39),
+(1076,1027,2.38),
+(1076,1028,2.38),
+(1076,1029,2.38),
+(1076,1030,2.38),
+(1076,1197,1.53),
+(1076,1198,1.53),
+(1076,1199,1.53),
+(1076,1200,1.53),
+(1076,1558,7.27),
+(1076,1810,1.47),
+(1076,2000,2.8),
+(1076,2038,1.13),
+(1077,173,4.33),
+(1077,178,2.2),
+(1077,183,2.17),
+(1077,188,4.2),
+(1077,211,4.33),
+(1077,213,2.2),
+(1077,215,2.17),
+(1077,217,4.2),
+(1077,605,6.1),
+(1077,606,6.1),
+(1077,607,6.1),
+(1077,608,6.1),
+(1077,775,2.8),
+(1077,776,2.8),
+(1077,777,2.8),
+(1077,778,2.8),
+(1077,860,2.24),
+(1077,861,2.24),
+(1077,862,2.24),
+(1077,863,2.24),
+(1077,1030,2.08),
+(1077,1031,2.08),
+(1077,1032,2.08),
+(1077,1033,2.08),
+(1077,1200,1.41),
+(1077,1201,1.41),
+(1077,1202,1.41),
+(1077,1203,1.41),
+(1077,1318,0.1),
+(1077,1319,0.1),
+(1077,1364,0.1),
+(1077,1365,0.1),
+(1077,1410,0.25),
+(1077,1411,0.25),
+(1077,1456,0.1),
+(1077,1457,0.1),
+(1077,1502,0.08),
+(1077,1503,0.08),
+(1077,1558,4.38),
+(1077,1559,4.38),
+(1077,1810,0.72),
+(1077,1811,0.72),
+(1077,2000,1.4),
+(1077,2001,1.4),
+(1077,2038,0.65),
+(1077,2039,0.65),
+(1078,211,4.92),
+(1078,212,4.92),
+(1078,213,2.27),
+(1078,214,2.27),
+(1078,215,1.85),
+(1078,216,1.85),
+(1078,217,4.08),
+(1078,218,4.08),
+(1078,605,6.64),
+(1078,606,6.64),
+(1078,607,6.64),
+(1078,608,6.64),
+(1078,775,2.63),
+(1078,776,2.63),
+(1078,777,2.63),
+(1078,778,2.63),
+(1078,860,2.21),
+(1078,861,2.21),
+(1078,862,2.21),
+(1078,863,2.21),
+(1078,1030,1.73),
+(1078,1031,1.73),
+(1078,1032,1.73),
+(1078,1033,1.73),
+(1078,1200,1.49),
+(1078,1201,1.49),
+(1078,1202,1.49),
+(1078,1203,1.49),
+(1078,1319,0.13),
+(1078,1320,0.13),
+(1078,1365,0.05),
+(1078,1366,0.05),
+(1078,1411,0.15),
+(1078,1412,0.15),
+(1078,1457,0.05),
+(1078,1458,0.05),
+(1078,1503,0.15),
+(1078,1504,0.15),
+(1078,1559,4.02),
+(1078,1560,4.02),
+(1078,1811,0.72),
+(1078,1812,0.72),
+(1078,2001,1.38),
+(1078,2002,1.38),
+(1078,2039,0.88),
+(1078,2040,0.88),
+(1079,212,5.07),
+(1079,214,2.25),
+(1079,216,2.01),
+(1079,218,3.94),
+(1079,267,5.07),
+(1079,287,3.94),
+(1079,383,2.25),
+(1079,409,2.01),
+(1079,608,6.34),
+(1079,609,6.34),
+(1079,610,6.34),
+(1079,611,6.34),
+(1079,694,0.1),
+(1079,778,3.04),
+(1079,779,3.04),
+(1079,780,3.04),
+(1079,781,3.04),
+(1079,863,2.18),
+(1079,864,2.18),
+(1079,865,2.18),
+(1079,866,2.18),
+(1079,949,0.1),
+(1079,1033,1.56),
+(1079,1034,1.56),
+(1079,1035,1.56),
+(1079,1036,1.56),
+(1079,1203,1.29),
+(1079,1204,1.29),
+(1079,1205,1.29),
+(1079,1206,1.29),
+(1079,1320,0.08),
+(1079,1321,0.05),
+(1079,1366,0.19),
+(1079,1367,0.19),
+(1079,1412,0.12),
+(1079,1413,0.12),
+(1079,1458,0.2),
+(1079,1459,0.07),
+(1079,1504,0.15),
+(1079,1505,0.1),
+(1079,1560,4.53),
+(1079,1561,4.53),
+(1079,1812,0.64),
+(1079,1813,0.75),
+(1079,1889,0.1),
+(1079,1965,0.1),
+(1079,2002,1.46),
+(1079,2003,1.46),
+(1079,2040,0.68),
+(1079,2041,0.68),
+(1080,267,9),
+(1080,287,8.1),
+(1080,383,6.1),
+(1080,409,3.8),
+(1080,608,6.33),
+(1080,609,6.33),
+(1080,610,6.33),
+(1080,611,6.33),
+(1080,778,2.81),
+(1080,779,2.81),
+(1080,780,2.81),
+(1080,781,2.81),
+(1080,863,2.24),
+(1080,864,2.24),
+(1080,865,2.24),
+(1080,866,2.24),
+(1080,1033,1.89),
+(1080,1034,1.89),
+(1080,1035,1.89),
+(1080,1036,1.89),
+(1080,1120,0.1),
+(1080,1203,1.39),
+(1080,1204,1.39),
+(1080,1205,1.39),
+(1080,1206,1.39),
+(1080,1321,0.25),
+(1080,1367,0.25),
+(1080,1413,0.3),
+(1080,1459,0.15),
+(1080,1505,0.1),
+(1080,1557,1.64),
+(1080,1558,1.64),
+(1080,1559,1.64),
+(1080,1560,1.64),
+(1080,1561,4.17),
+(1080,1813,1.2),
+(1080,2003,2.7),
+(1080,2041,1.9),
+(1085,6,4.2),
+(1085,15,4.15),
+(1085,17,0.1),
+(1085,19,4.15),
+(1085,23,4.2),
+(1085,584,3.75),
+(1085,669,3.5),
+(1085,839,3.93),
+(1085,840,2.45),
+(1085,924,4.7),
+(1085,1009,7),
+(1085,1094,6.45),
+(1085,1179,44.75),
+(1085,1493,0.1),
+(1085,1547,3.65),
+(1085,1548,3.65),
+(1085,1799,0.1),
+(1085,1875,0.1),
+(1085,1989,0.1),
+(1085,2027,0.38),
+(1085,2028,0.38),
+(1086,19,3.23),
+(1086,22,3.23),
+(1086,23,4.35),
+(1086,24,4.35),
+(1086,96,2.77),
+(1086,584,0.92),
+(1086,585,0.92),
+(1086,586,0.92),
+(1086,587,0.92),
+(1086,669,0.81),
+(1086,670,0.81),
+(1086,671,0.81),
+(1086,672,0.81),
+(1086,839,1.28),
+(1086,840,1.28),
+(1086,841,1.28),
+(1086,842,1.28),
+(1086,924,1.11),
+(1086,925,1.11),
+(1086,926,1.11),
+(1086,927,1.11),
+(1086,1009,1.84),
+(1086,1010,1.84),
+(1086,1011,1.84),
+(1086,1012,1.84),
+(1086,1094,1.69),
+(1086,1095,1.69),
+(1086,1096,1.69),
+(1086,1097,1.69),
+(1086,1179,11.2),
+(1086,1180,11.2),
+(1086,1181,11.2),
+(1086,1182,11.2),
+(1086,1548,3.63),
+(1086,1549,3.63),
+(1086,1704,0.1),
+(1086,1989,0.1),
+(1086,2028,0.35),
+(1086,2029,0.35),
+(1087,22,4.9),
+(1087,24,4.5),
+(1087,96,4.9),
+(1087,97,4.5),
+(1087,587,4.5),
+(1087,672,3.6),
+(1087,842,4.8),
+(1087,927,4.9),
+(1087,1012,8.6),
+(1087,1097,7.7),
+(1087,1182,38.2),
+(1087,1549,4.1),
+(1087,1550,4.1),
+(1087,2029,0.35),
+(1087,2030,0.35),
+(1088,96,4.45),
+(1088,97,4.9),
+(1088,114,4.45),
+(1088,115,4.9),
+(1088,587,1.02),
+(1088,588,1.02),
+(1088,589,1.02),
+(1088,590,1.02),
+(1088,672,0.91),
+(1088,673,0.91),
+(1088,674,0.91),
+(1088,675,0.91),
+(1088,842,1.25),
+(1088,843,1.25),
+(1088,844,1.25),
+(1088,845,1.25),
+(1088,927,1.38),
+(1088,928,1.38),
+(1088,929,1.38),
+(1088,930,1.38),
+(1088,1012,2.13),
+(1088,1013,2.13),
+(1088,1014,2.13),
+(1088,1015,2.13),
+(1088,1097,2.08),
+(1088,1098,2.08),
+(1088,1099,2.08),
+(1088,1100,2.08),
+(1088,1182,9.18),
+(1088,1183,9.18),
+(1088,1184,9.18),
+(1088,1185,9.18),
+(1088,1550,4.4),
+(1088,1551,4.4),
+(1088,1875,0.1),
+(1088,2030,0.38),
+(1088,2031,0.38),
+(1089,114,9.83),
+(1089,115,10.4),
+(1089,590,1.03),
+(1089,591,1.03),
+(1089,592,1.03),
+(1089,593,1.03),
+(1089,675,0.92),
+(1089,676,0.92),
+(1089,677,0.92),
+(1089,678,0.92),
+(1089,845,1.2),
+(1089,846,1.2),
+(1089,847,1.2),
+(1089,848,1.2),
+(1089,930,1.31),
+(1089,931,1.31),
+(1089,932,1.31),
+(1089,933,1.31),
+(1089,1015,2.03),
+(1089,1016,2.03),
+(1089,1017,2.03),
+(1089,1018,2.03),
+(1089,1100,2.06),
+(1089,1101,2.06),
+(1089,1102,2.06),
+(1089,1103,2.06),
+(1089,1185,9.17),
+(1089,1186,9.17),
+(1089,1187,9.17),
+(1089,1188,9.17),
+(1089,1551,8.33),
+(1089,2031,0.5),
+(1090,135,10.67),
+(1090,136,9.73),
+(1090,590,0.99),
+(1090,591,0.99),
+(1090,592,0.99),
+(1090,593,0.99),
+(1090,675,0.9),
+(1090,676,0.9),
+(1090,677,0.9),
+(1090,678,0.9),
+(1090,845,1.01),
+(1090,846,1.01),
+(1090,847,1.01),
+(1090,848,1.01),
+(1090,930,1.14),
+(1090,931,1.14),
+(1090,932,1.14),
+(1090,933,1.14),
+(1090,1015,2.09),
+(1090,1016,2.09),
+(1090,1017,2.09),
+(1090,1018,2.09),
+(1090,1100,2.13),
+(1090,1101,2.13),
+(1090,1102,2.13),
+(1090,1103,2.13),
+(1090,1185,9.44),
+(1090,1186,9.44),
+(1090,1187,9.44),
+(1090,1188,9.44),
+(1090,1552,8.27),
+(1090,2032,0.43),
+(1091,135,5.47),
+(1091,136,4.97),
+(1091,154,5.47),
+(1091,155,4.97),
+(1091,593,0.95),
+(1091,594,0.95),
+(1091,595,0.95),
+(1091,596,0.95),
+(1091,678,0.94),
+(1091,679,0.94),
+(1091,680,0.94),
+(1091,681,0.94),
+(1091,848,1.13),
+(1091,849,1.13),
+(1091,850,1.13),
+(1091,851,1.13),
+(1091,933,1.22),
+(1091,934,1.22),
+(1091,935,1.22),
+(1091,936,1.22),
+(1091,1018,2.21),
+(1091,1019,2.21),
+(1091,1020,2.21),
+(1091,1021,2.21),
+(1091,1103,2.05),
+(1091,1104,2.05),
+(1091,1105,2.05),
+(1091,1106,2.05),
+(1091,1188,8.99),
+(1091,1189,8.99),
+(1091,1190,8.99),
+(1091,1191,8.99),
+(1091,1552,4.38),
+(1091,1553,4.38),
+(1091,2032,0.28),
+(1091,2033,0.28),
+(1092,154,5.19),
+(1092,155,4.81),
+(1092,184,5.19),
+(1092,189,4.81),
+(1092,593,0.84),
+(1092,594,0.84),
+(1092,595,0.84),
+(1092,596,0.84),
+(1092,678,0.86),
+(1092,679,0.86),
+(1092,680,0.86),
+(1092,681,0.86),
+(1092,848,0.99),
+(1092,849,0.99),
+(1092,850,0.99),
+(1092,851,0.99),
+(1092,933,1.21),
+(1092,934,1.21),
+(1092,935,1.21),
+(1092,936,1.21),
+(1092,1018,2.09),
+(1092,1019,2.09),
+(1092,1020,2.09),
+(1092,1021,2.09),
+(1092,1103,2.02),
+(1092,1104,2.02),
+(1092,1105,2.02),
+(1092,1106,2.02),
+(1092,1188,9.84),
+(1092,1189,9.84),
+(1092,1190,9.84),
+(1092,1191,9.84),
+(1092,1553,4.11),
+(1092,1554,4.11),
+(1092,2033,0.23),
+(1092,2034,0.23),
+(1093,184,5.83),
+(1093,185,5.83),
+(1093,189,5.02),
+(1093,190,5.02),
+(1093,596,0.81),
+(1093,597,0.81),
+(1093,598,0.81),
+(1093,599,0.81),
+(1093,681,0.81),
+(1093,682,0.81),
+(1093,683,0.81),
+(1093,684,0.81),
+(1093,851,1.07),
+(1093,852,1.07),
+(1093,853,1.07),
+(1093,854,1.07),
+(1093,936,1.14),
+(1093,937,1.14),
+(1093,938,1.14),
+(1093,939,1.14),
+(1093,1021,2.25),
+(1093,1022,2.25),
+(1093,1023,2.25),
+(1093,1024,2.25),
+(1093,1106,1.98),
+(1093,1107,1.98),
+(1093,1108,1.98),
+(1093,1109,1.98),
+(1093,1191,9.55),
+(1093,1192,9.55),
+(1093,1193,9.55),
+(1093,1194,9.55),
+(1093,1554,3.77),
+(1093,1555,3.77),
+(1093,1913,0.1),
+(1093,2034,0.2),
+(1093,2035,0.2),
+(1094,168,2.76),
+(1094,171,2.76),
+(1094,175,2.48),
+(1094,176,2.48),
+(1094,180,2.8),
+(1094,181,2.8),
+(1094,185,2.55),
+(1094,186,2.55),
+(1094,251,11.3),
+(1094,514,13.2),
+(1094,599,9.92),
+(1094,769,10.63),
+(1094,854,9.33),
+(1094,1024,12.67),
+(1094,1555,2.95),
+(1094,1556,2.95),
+(1094,1807,0.8),
+(1094,1808,0.8),
+(1094,1997,1.5),
+(1094,1998,1.5),
+(1094,2035,0.65),
+(1094,2036,0.65),
+(1095,171,4.7),
+(1095,176,5.05),
+(1095,181,6.55),
+(1095,186,5.05),
+(1095,251,2.21),
+(1095,253,2.21),
+(1095,254,2.21),
+(1095,255,2.21),
+(1095,514,3.41),
+(1095,515,3.41),
+(1095,516,3.41),
+(1095,517,3.41),
+(1095,599,1.89),
+(1095,600,1.89),
+(1095,601,1.89),
+(1095,602,1.89),
+(1095,769,2.89),
+(1095,770,2.89),
+(1095,771,2.89),
+(1095,772,2.89),
+(1095,854,2.42),
+(1095,855,2.42),
+(1095,856,2.42),
+(1095,857,2.42),
+(1095,1024,3.73),
+(1095,1025,3.73),
+(1095,1026,3.73),
+(1095,1027,3.73),
+(1095,1556,5.95),
+(1095,1808,1.75),
+(1095,1998,3.3),
+(1095,2036,1.5),
+(1096,172,5.5),
+(1096,177,4.63),
+(1096,182,6.18),
+(1096,187,4.95),
+(1096,254,2.4),
+(1096,435,2.4),
+(1096,436,2.4),
+(1096,437,2.4),
+(1096,517,3.16),
+(1096,518,3.16),
+(1096,519,3.16),
+(1096,520,3.16),
+(1096,602,2.51),
+(1096,603,2.51),
+(1096,604,2.51),
+(1096,605,2.51),
+(1096,772,2.83),
+(1096,773,2.83),
+(1096,774,2.83),
+(1096,775,2.83),
+(1096,857,2.51),
+(1096,858,2.51),
+(1096,859,2.51),
+(1096,860,2.51),
+(1096,1027,3.2),
+(1096,1028,3.2),
+(1096,1029,3.2),
+(1096,1030,3.2),
+(1096,1557,6.4),
+(1096,1809,1.55),
+(1096,1999,2.95),
+(1096,2037,1.45),
+(1097,173,4.88),
+(1097,178,5.52),
+(1097,183,5.82),
+(1097,188,5.53),
+(1097,254,2.3),
+(1097,435,2.3),
+(1097,436,2.3),
+(1097,437,2.3),
+(1097,517,3.16),
+(1097,518,3.16),
+(1097,519,3.16),
+(1097,520,3.16),
+(1097,602,2.25),
+(1097,603,2.25),
+(1097,604,2.25),
+(1097,605,2.25),
+(1097,772,2.65),
+(1097,773,2.65),
+(1097,774,2.65),
+(1097,775,2.65),
+(1097,857,2.69),
+(1097,858,2.69),
+(1097,859,2.69),
+(1097,860,2.69),
+(1097,1027,3.46),
+(1097,1028,3.46),
+(1097,1029,3.46),
+(1097,1030,3.46),
+(1097,1558,6.28),
+(1097,1810,1.77),
+(1097,2000,2.93),
+(1097,2038,1.35),
+(1098,173,2.3),
+(1098,178,2.25),
+(1098,183,2.45),
+(1098,188,2.3),
+(1098,211,2.3),
+(1098,213,2.25),
+(1098,215,2.45),
+(1098,217,2.3),
+(1098,437,2.35),
+(1098,438,2.35),
+(1098,439,2.35),
+(1098,440,2.35),
+(1098,520,2.97),
+(1098,521,2.97),
+(1098,522,2.97),
+(1098,523,2.97),
+(1098,605,2.4),
+(1098,606,2.4),
+(1098,607,2.4),
+(1098,608,2.4),
+(1098,775,2.63),
+(1098,776,2.63),
+(1098,777,2.63),
+(1098,778,2.63),
+(1098,860,2.78),
+(1098,861,2.78),
+(1098,862,2.78),
+(1098,863,2.78),
+(1098,1030,3.15),
+(1098,1031,3.15),
+(1098,1032,3.15),
+(1098,1033,3.15),
+(1098,1318,0.13),
+(1098,1319,0.13),
+(1098,1320,0.13),
+(1098,1364,0.2),
+(1098,1365,0.2),
+(1098,1410,0.5),
+(1098,1411,0.5),
+(1098,1456,0.2),
+(1098,1457,0.2),
+(1098,1502,0.2),
+(1098,1503,0.2),
+(1098,1558,3.85),
+(1098,1559,3.85),
+(1098,1810,0.75),
+(1098,1811,0.75),
+(1098,2000,1.4),
+(1098,2001,1.4),
+(1098,2038,0.9),
+(1098,2039,0.9),
+(1099,211,2.85),
+(1099,212,2.85),
+(1099,213,2.35),
+(1099,214,2.35),
+(1099,215,2.18),
+(1099,216,2.18),
+(1099,217,2.38),
+(1099,218,2.38),
+(1099,437,2.55),
+(1099,438,2.55),
+(1099,439,2.55),
+(1099,440,2.55),
+(1099,520,2.69),
+(1099,521,2.69),
+(1099,522,2.69),
+(1099,523,2.69),
+(1099,605,2.79),
+(1099,606,2.79),
+(1099,607,2.79),
+(1099,608,2.79),
+(1099,775,2.46),
+(1099,776,2.46),
+(1099,777,2.46),
+(1099,778,2.46),
+(1099,860,2.61),
+(1099,861,2.61),
+(1099,862,2.61),
+(1099,863,2.61),
+(1099,1030,2.8),
+(1099,1031,2.8),
+(1099,1032,2.8),
+(1099,1033,2.8),
+(1099,1319,0.18),
+(1099,1320,0.18),
+(1099,1365,0.25),
+(1099,1366,0.25),
+(1099,1411,0.4),
+(1099,1412,0.4),
+(1099,1457,0.18),
+(1099,1458,0.18),
+(1099,1503,0.25),
+(1099,1504,0.25),
+(1099,1559,3.95),
+(1099,1560,3.95),
+(1099,1811,0.83),
+(1099,1812,0.83),
+(1099,2001,1.72),
+(1099,2002,1.72),
+(1099,2039,0.75),
+(1099,2040,0.75),
+(1100,212,3.1),
+(1100,214,1.98),
+(1100,216,2),
+(1100,218,2.52),
+(1100,267,3.1),
+(1100,287,2.52),
+(1100,383,1.98),
+(1100,409,2),
+(1100,440,2.69),
+(1100,441,2.69),
+(1100,442,2.69),
+(1100,443,2.69),
+(1100,523,2.83),
+(1100,524,2.83),
+(1100,525,2.83),
+(1100,526,2.83),
+(1100,608,3.32),
+(1100,609,3.32),
+(1100,610,3.32),
+(1100,611,3.32),
+(1100,694,0.1),
+(1100,778,2.2),
+(1100,779,2.2),
+(1100,780,2.2),
+(1100,781,2.2),
+(1100,863,2.49),
+(1100,864,2.49),
+(1100,865,2.49),
+(1100,866,2.49),
+(1100,1033,2.39),
+(1100,1034,2.39),
+(1100,1035,2.39),
+(1100,1036,2.39),
+(1100,1320,0.1),
+(1100,1321,0.1),
+(1100,1366,0.2),
+(1100,1367,0.2),
+(1100,1412,0.47),
+(1100,1413,0.47),
+(1100,1458,0.15),
+(1100,1459,0.15),
+(1100,1504,0.33),
+(1100,1505,0.33),
+(1100,1560,4.48),
+(1100,1561,4.48),
+(1100,1812,0.72),
+(1100,1813,0.72),
+(1100,2002,1.22),
+(1100,2003,1.22),
+(1100,2040,0.82),
+(1100,2041,0.82),
+(1101,267,6.8),
+(1101,287,3.93),
+(1101,383,4),
+(1101,409,3.47),
+(1101,440,3.05),
+(1101,441,3.05),
+(1101,442,3.05),
+(1101,443,3.05),
+(1101,523,2.9),
+(1101,524,2.9),
+(1101,525,2.9),
+(1101,526,2.9),
+(1101,608,3.18),
+(1101,609,3.18),
+(1101,610,3.18),
+(1101,611,3.18),
+(1101,778,2.52),
+(1101,779,2.52),
+(1101,780,2.52),
+(1101,781,2.52),
+(1101,863,2.66),
+(1101,864,2.66),
+(1101,865,2.66),
+(1101,866,2.66),
+(1101,1033,2.12),
+(1101,1034,2.12),
+(1101,1035,2.12),
+(1101,1036,2.12),
+(1101,1121,0.1),
+(1101,1321,0.4),
+(1101,1367,0.45),
+(1101,1413,1.8),
+(1101,1459,0.45),
+(1101,1505,0.73),
+(1101,1561,7.67),
+(1101,1813,1.27),
+(1101,1966,0.1),
+(1101,2003,2.53),
+(1101,2041,1.23),
+(1115,185,4.93),
+(1115,186,4.93),
+(1115,190,4.94),
+(1115,191,4.94),
+(1115,599,4.02),
+(1115,684,3.35),
+(1115,854,4.3),
+(1115,939,4.37),
+(1115,1024,7.92),
+(1115,1109,7.57),
+(1115,1194,39.4),
+(1115,1555,4.4),
+(1115,1556,4.4),
+(1115,2035,0.28),
+(1115,2036,0.28),
+(1116,186,10.17),
+(1116,191,10.53),
+(1116,599,0.91),
+(1116,600,0.91),
+(1116,601,0.91),
+(1116,602,0.91),
+(1116,684,0.84),
+(1116,685,0.84),
+(1116,686,0.84),
+(1116,687,0.84),
+(1116,854,1.13),
+(1116,855,1.13),
+(1116,856,1.13),
+(1116,857,1.13),
+(1116,939,1.18),
+(1116,940,1.18),
+(1116,941,1.18),
+(1116,942,1.18),
+(1116,1024,2.07),
+(1116,1025,2.07),
+(1116,1026,2.07),
+(1116,1027,2.07),
+(1116,1109,2.14),
+(1116,1110,2.14),
+(1116,1111,2.14),
+(1116,1112,2.14),
+(1116,1194,9.17),
+(1116,1195,9.17),
+(1116,1196,9.17),
+(1116,1197,9.17),
+(1116,1556,8.9),
+(1116,2036,0.67),
+(1117,187,9.4),
+(1117,192,10.95),
+(1117,602,0.93),
+(1117,603,0.93),
+(1117,604,0.93),
+(1117,605,0.93),
+(1117,687,0.92),
+(1117,688,0.92),
+(1117,689,0.92),
+(1117,690,0.92),
+(1117,857,1.03),
+(1117,858,1.03),
+(1117,859,1.03),
+(1117,860,1.03),
+(1117,942,1.3),
+(1117,943,1.3),
+(1117,944,1.3),
+(1117,945,1.3),
+(1117,1027,2.16),
+(1117,1028,2.16),
+(1117,1029,2.16),
+(1117,1030,2.16),
+(1117,1112,2.09),
+(1117,1113,2.09),
+(1117,1114,2.09),
+(1117,1115,2.09),
+(1117,1197,9.03),
+(1117,1198,9.03),
+(1117,1199,9.03),
+(1117,1200,9.03),
+(1117,1557,9.35),
+(1117,2037,0.45),
+(1118,188,10.35),
+(1118,193,10.08),
+(1118,602,0.96),
+(1118,603,0.96),
+(1118,604,0.96),
+(1118,605,0.96),
+(1118,687,0.91),
+(1118,688,0.91),
+(1118,689,0.91),
+(1118,690,0.91),
+(1118,857,0.94),
+(1118,858,0.94),
+(1118,859,0.94),
+(1118,860,0.94),
+(1118,942,1.1),
+(1118,943,1.1),
+(1118,944,1.1),
+(1118,945,1.1),
+(1118,1027,1.91),
+(1118,1028,1.91),
+(1118,1029,1.91),
+(1118,1030,1.91),
+(1118,1112,2.07),
+(1118,1113,2.07),
+(1118,1114,2.07),
+(1118,1115,2.07),
+(1118,1197,9.6),
+(1118,1198,9.6),
+(1118,1199,9.6),
+(1118,1200,9.6),
+(1118,1558,9),
+(1118,2038,0.63),
+(1119,188,4.1),
+(1119,193,4.6),
+(1119,217,4.1),
+(1119,219,4.6),
+(1119,605,0.8),
+(1119,606,0.8),
+(1119,607,0.8),
+(1119,608,0.8),
+(1119,690,0.8),
+(1119,691,0.8),
+(1119,692,0.8),
+(1119,693,0.8),
+(1119,860,0.75),
+(1119,861,0.75),
+(1119,862,0.75),
+(1119,863,0.75),
+(1119,945,0.8),
+(1119,946,0.8),
+(1119,947,0.8),
+(1119,948,0.8),
+(1119,1030,1.75),
+(1119,1031,1.75),
+(1119,1032,1.75),
+(1119,1033,1.75),
+(1119,1115,1.48),
+(1119,1116,1.48),
+(1119,1117,1.48),
+(1119,1118,1.48),
+(1119,1200,10.68),
+(1119,1201,10.68),
+(1119,1202,10.68),
+(1119,1203,10.68),
+(1119,1318,0.1),
+(1119,1319,0.1),
+(1119,1364,0.2),
+(1119,1365,0.2),
+(1119,1410,0.2),
+(1119,1411,0.2),
+(1119,1456,0.15),
+(1119,1457,0.15),
+(1119,1502,0.15),
+(1119,1503,0.15),
+(1119,1558,6.1),
+(1119,1559,6.1),
+(1119,2038,0.35),
+(1119,2039,0.35),
+(1120,217,4.42),
+(1120,218,4.42),
+(1120,219,4.28),
+(1120,220,4.28),
+(1120,605,0.9),
+(1120,606,0.9),
+(1120,607,0.9),
+(1120,608,0.9),
+(1120,690,0.76),
+(1120,691,0.76),
+(1120,692,0.76),
+(1120,693,0.76),
+(1120,860,0.88),
+(1120,861,0.88),
+(1120,862,0.88),
+(1120,863,0.88),
+(1120,945,1.02),
+(1120,946,1.02),
+(1120,947,1.02),
+(1120,948,1.02),
+(1120,1030,1.41),
+(1120,1031,1.41),
+(1120,1032,1.41),
+(1120,1033,1.41),
+(1120,1115,1.42),
+(1120,1116,1.42),
+(1120,1117,1.42),
+(1120,1118,1.42),
+(1120,1200,10.61),
+(1120,1201,10.61),
+(1120,1202,10.61),
+(1120,1203,10.61),
+(1120,1319,0.23),
+(1120,1320,0.23),
+(1120,1365,0.2),
+(1120,1366,0.2),
+(1120,1411,0.28),
+(1120,1412,0.28),
+(1120,1457,0.17),
+(1120,1458,0.17),
+(1120,1503,0.2),
+(1120,1504,0.2),
+(1120,1559,6.08),
+(1120,1560,6.08),
+(1120,2039,0.23),
+(1120,2040,0.23),
+(1121,218,3.85),
+(1121,220,4.27),
+(1121,287,3.85),
+(1121,307,4.27),
+(1121,525,0.1),
+(1121,608,0.8),
+(1121,609,0.8),
+(1121,610,0.8),
+(1121,611,0.8),
+(1121,693,0.92),
+(1121,694,0.92),
+(1121,695,0.92),
+(1121,696,0.92),
+(1121,863,0.92),
+(1121,864,0.92),
+(1121,865,0.92),
+(1121,866,0.92),
+(1121,948,1.03),
+(1121,949,1.03),
+(1121,950,1.03),
+(1121,951,1.03),
+(1121,1033,1.35),
+(1121,1034,1.35),
+(1121,1035,1.35),
+(1121,1036,1.35),
+(1121,1118,1.38),
+(1121,1119,1.38),
+(1121,1120,1.38),
+(1121,1121,1.38),
+(1121,1203,10.47),
+(1121,1204,10.47),
+(1121,1205,10.47),
+(1121,1206,10.47),
+(1121,1320,0.17),
+(1121,1321,0.17),
+(1121,1366,0.37),
+(1121,1367,0.37),
+(1121,1412,0.42),
+(1121,1413,0.42),
+(1121,1458,0.18),
+(1121,1459,0.18),
+(1121,1504,0.3),
+(1121,1505,0.3),
+(1121,1560,6.5),
+(1121,1561,6.5),
+(1121,1718,0.1),
+(1121,2040,0.38),
+(1121,2041,0.38),
+(1122,287,8.5),
+(1122,307,11),
+(1122,608,0.85),
+(1122,609,0.85),
+(1122,610,0.85),
+(1122,611,0.85),
+(1122,693,0.85),
+(1122,694,0.85),
+(1122,695,0.85),
+(1122,696,0.85),
+(1122,863,1.02),
+(1122,864,1.02),
+(1122,865,1.02),
+(1122,866,1.02),
+(1122,948,0.6),
+(1122,949,0.6),
+(1122,950,0.6),
+(1122,951,0.6),
+(1122,1033,1.65),
+(1122,1034,1.65),
+(1122,1035,1.65),
+(1122,1036,1.65),
+(1122,1118,1.67),
+(1122,1119,1.67),
+(1122,1120,1.67),
+(1122,1121,1.67),
+(1122,1203,9.8),
+(1122,1204,9.8),
+(1122,1205,9.8),
+(1122,1206,9.8),
+(1122,1321,0.6),
+(1122,1367,0.1),
+(1122,1413,0.2),
+(1122,1459,0.4),
+(1122,1505,0.1),
+(1122,1561,12.8),
+(1122,2041,0.6),
+(1131,133,4.63),
+(1131,135,3.27),
+(1131,152,4.63),
+(1131,154,3.27),
+(1131,252,0.1),
+(1131,508,2.66),
+(1131,509,2.66),
+(1131,510,2.66),
+(1131,511,2.66),
+(1131,763,6.29),
+(1131,764,6.29),
+(1131,765,6.29),
+(1131,766,6.29),
+(1131,848,3.91),
+(1131,849,3.91),
+(1131,850,3.91),
+(1131,851,3.91),
+(1131,1018,3.8),
+(1131,1019,3.8),
+(1131,1020,3.8),
+(1131,1021,3.8),
+(1131,1022,3.26),
+(1131,1804,3.32),
+(1131,1805,3.32),
+(1131,1842,1.8),
+(1131,1843,1.8),
+(1131,1956,2.8),
+(1131,1957,2.8),
+(1132,174,9.23),
+(1132,184,6.27),
+(1132,511,2.67),
+(1132,512,2.67),
+(1132,513,2.67),
+(1132,514,2.67),
+(1132,766,6.78),
+(1132,767,6.78),
+(1132,768,6.78),
+(1132,769,6.78),
+(1132,851,3.54),
+(1132,852,3.54),
+(1132,853,3.54),
+(1132,854,3.54),
+(1132,1021,4.37),
+(1132,1022,4.37),
+(1132,1023,4.37),
+(1132,1024,4.37),
+(1132,1307,0.1),
+(1132,1806,6.37),
+(1132,1844,3.2),
+(1132,1958,5.5),
+(1133,175,11.1),
+(1133,185,6.3),
+(1133,511,2.57),
+(1133,512,2.57),
+(1133,513,2.57),
+(1133,514,2.57),
+(1133,766,7.03),
+(1133,767,7.03),
+(1133,768,7.03),
+(1133,769,7.03),
+(1133,851,3.4),
+(1133,852,3.4),
+(1133,853,3.4),
+(1133,854,3.4),
+(1133,1021,4.53),
+(1133,1022,4.53),
+(1133,1023,4.53),
+(1133,1024,4.53),
+(1133,1807,5.6),
+(1133,1845,2.45),
+(1133,1959,4.4),
+(1134,176,5.57),
+(1134,177,5.57),
+(1134,186,2.93),
+(1134,187,2.93),
+(1134,514,2.76),
+(1134,515,2.76),
+(1134,516,2.76),
+(1134,517,2.76),
+(1134,769,7.43),
+(1134,770,7.43),
+(1134,771,7.43),
+(1134,772,7.43),
+(1134,854,3.07),
+(1134,855,3.07),
+(1134,856,3.07),
+(1134,857,3.07),
+(1134,1024,4.56),
+(1134,1025,4.56),
+(1134,1026,4.56),
+(1134,1027,4.56),
+(1134,1808,2.65),
+(1134,1809,2.65),
+(1134,1846,1.08),
+(1134,1847,1.08),
+(1134,1960,2.07),
+(1134,1961,2.07),
+(1135,177,4.25),
+(1135,178,4.25),
+(1135,187,3.47),
+(1135,188,3.47),
+(1135,517,2.7),
+(1135,518,2.7),
+(1135,519,2.7),
+(1135,520,2.7),
+(1135,772,7.36),
+(1135,773,7.36),
+(1135,774,7.36),
+(1135,775,7.36),
+(1135,857,2.68),
+(1135,858,2.68),
+(1135,859,2.68),
+(1135,860,2.68),
+(1135,1027,5.28),
+(1135,1028,5.28),
+(1135,1029,5.28),
+(1135,1030,5.28),
+(1135,1809,2.77),
+(1135,1810,2.77),
+(1135,1847,1.08),
+(1135,1848,1.08),
+(1135,1961,2.33),
+(1135,1962,2.33),
+(1136,178,4.07),
+(1136,188,3.5),
+(1136,213,4.07),
+(1136,217,3.5),
+(1136,520,2.9),
+(1136,521,2.9),
+(1136,522,2.9),
+(1136,523,2.9),
+(1136,775,6.96),
+(1136,776,6.96),
+(1136,777,6.96),
+(1136,778,6.96),
+(1136,860,2.6),
+(1136,861,2.6),
+(1136,862,2.6),
+(1136,863,2.6),
+(1136,1030,5.2),
+(1136,1031,5.2),
+(1136,1032,5.2),
+(1136,1033,5.2),
+(1136,1810,3.25),
+(1136,1811,3.25),
+(1136,1848,1.25),
+(1136,1849,1.25),
+(1136,1962,2.65),
+(1136,1963,2.65),
+(1136,1989,0.1),
+(1137,213,3.82),
+(1137,214,3.82),
+(1137,217,3.33),
+(1137,218,3.33),
+(1137,520,3.04),
+(1137,521,3.04),
+(1137,522,3.04),
+(1137,523,3.04),
+(1137,775,7.27),
+(1137,776,7.27),
+(1137,777,7.27),
+(1137,778,7.27),
+(1137,860,2.45),
+(1137,861,2.45),
+(1137,862,2.45),
+(1137,863,2.45),
+(1137,1030,5.32),
+(1137,1031,5.32),
+(1137,1032,5.32),
+(1137,1033,5.32),
+(1137,1811,3.07),
+(1137,1812,3.07),
+(1137,1849,1.23),
+(1137,1850,1.23),
+(1137,1963,2.35),
+(1137,1964,2.35),
+(1138,214,3.58),
+(1138,218,3.58),
+(1138,287,3.58),
+(1138,383,3.58),
+(1138,523,3.13),
+(1138,524,3.13),
+(1138,525,3.13),
+(1138,526,3.13),
+(1138,778,7.17),
+(1138,779,7.17),
+(1138,780,7.17),
+(1138,781,7.17),
+(1138,863,2.27),
+(1138,864,2.27),
+(1138,865,2.27),
+(1138,866,2.27),
+(1138,1033,5.04),
+(1138,1034,5.04),
+(1138,1035,5.04),
+(1138,1036,5.04),
+(1138,1413,0.1),
+(1138,1812,3.6),
+(1138,1813,3.6),
+(1138,1850,1.52),
+(1138,1851,1.52),
+(1138,1964,2.53),
+(1138,1965,2.53),
+(1139,287,3.58),
+(1139,333,3.58),
+(1139,383,3.83),
+(1139,384,3.83),
+(1139,526,3.2),
+(1139,527,3.2),
+(1139,528,3.2),
+(1139,529,3.2),
+(1139,781,6.59),
+(1139,782,6.59),
+(1139,783,6.59),
+(1139,784,6.59),
+(1139,866,2.21),
+(1139,867,2.21),
+(1139,868,2.21),
+(1139,869,2.21),
+(1139,1036,5.44),
+(1139,1037,5.44),
+(1139,1038,5.44),
+(1139,1039,5.44),
+(1139,1813,3.68),
+(1139,1814,3.68),
+(1139,1851,1.49),
+(1139,1852,1.49),
+(1139,1853,1.07),
+(1139,1965,2.37),
+(1139,1966,2.37),
+(1140,334,6.3),
+(1140,385,5.7),
+(1140,529,3.17),
+(1140,530,3.17),
+(1140,531,3.17),
+(1140,532,3.17),
+(1140,784,5.1),
+(1140,785,5.1),
+(1140,786,5.1),
+(1140,787,5.1),
+(1140,869,1.75),
+(1140,870,1.75),
+(1140,871,1.75),
+(1140,872,1.75),
+(1140,1039,5.03),
+(1140,1040,5.03),
+(1140,1041,5.03),
+(1140,1042,5.03),
+(1140,1323,0.4),
+(1140,1369,0.5),
+(1140,1415,0.5),
+(1140,1461,0.6),
+(1140,1507,0.2),
+(1140,1815,12.3),
+(1140,1853,5.3),
+(1140,1967,8.2),
+(1141,335,6),
+(1141,386,6.15),
+(1141,387,4.15),
+(1141,529,2.44),
+(1141,530,2.44),
+(1141,531,2.44),
+(1141,532,2.44),
+(1141,784,5.82),
+(1141,785,5.82),
+(1141,786,5.82),
+(1141,787,5.82),
+(1141,869,2.69),
+(1141,870,2.69),
+(1141,871,2.69),
+(1141,872,2.69),
+(1141,1039,4.05),
+(1141,1040,4.05),
+(1141,1041,4.05),
+(1141,1042,4.05),
+(1141,1324,0.33),
+(1141,1370,0.4),
+(1141,1416,0.6),
+(1141,1462,0.37),
+(1141,1508,0.43),
+(1141,1816,9.77),
+(1141,1854,4.82),
+(1141,1855,2.17),
+(1141,1856,2.17),
+(1141,1968,8.37),
+(1141,2122,0.03),
+(1141,2123,0.03),
+(1141,2124,0.03),
+(1141,2125,0.03),
+(1142,336,3.48),
+(1142,337,3.48),
+(1142,387,3.02),
+(1142,388,3.02),
+(1142,389,2.63),
+(1142,415,0.1),
+(1142,454,0.1),
+(1142,532,2.03),
+(1142,533,2.03),
+(1142,534,2.03),
+(1142,535,2.03),
+(1142,787,5.94),
+(1142,788,5.94),
+(1142,789,5.94),
+(1142,790,5.94),
+(1142,872,2.96),
+(1142,873,2.96),
+(1142,874,2.96),
+(1142,875,2.96),
+(1142,1042,3.95),
+(1142,1043,3.95),
+(1142,1044,3.95),
+(1142,1045,3.95),
+(1142,1325,0.15),
+(1142,1326,0.15),
+(1142,1371,0.13),
+(1142,1372,0.13),
+(1142,1373,0.07),
+(1142,1417,0.27),
+(1142,1418,0.27),
+(1142,1463,0.2),
+(1142,1464,0.2),
+(1142,1509,0.11),
+(1142,1510,0.11),
+(1142,1511,0.13),
+(1142,1512,0.13),
+(1142,1817,4.67),
+(1142,1818,4.67),
+(1142,1855,3.2),
+(1142,1856,3.2),
+(1142,1932,0.05),
+(1142,1933,0.05),
+(1142,1969,3.1),
+(1142,1970,3.1),
+(1142,1971,2.2),
+(1142,1972,2.2),
+(1142,2149,0.1),
+(1143,337,2.4),
+(1143,338,2.4),
+(1143,339,1.77),
+(1143,388,2.84),
+(1143,389,2.84),
+(1143,390,2.25),
+(1143,391,1.9),
+(1143,415,0.05),
+(1143,416,0.18),
+(1143,454,0.1),
+(1143,455,0.1),
+(1143,457,0.1),
+(1143,535,1.95),
+(1143,536,1.95),
+(1143,537,1.95),
+(1143,538,1.95),
+(1143,622,0.1),
+(1143,707,0.25),
+(1143,708,0.1),
+(1143,790,5.96),
+(1143,791,5.96),
+(1143,792,5.96),
+(1143,793,5.96),
+(1143,875,3.77),
+(1143,876,3.77),
+(1143,877,3.77),
+(1143,878,3.77),
+(1143,1045,3.27),
+(1143,1046,3.27),
+(1143,1047,3.27),
+(1143,1048,3.27),
+(1143,1050,2.92),
+(1143,1132,0.05),
+(1143,1133,0.05),
+(1143,1134,0.1),
+(1143,1216,0.1),
+(1143,1326,0.13),
+(1143,1327,0.22),
+(1143,1372,0.23),
+(1143,1373,0.25),
+(1143,1374,0.25),
+(1143,1375,0.38),
+(1143,1418,0.37),
+(1143,1419,0.37),
+(1143,1464,0.22),
+(1143,1465,0.28),
+(1143,1510,0.5),
+(1143,1511,0.25),
+(1143,1726,0.1),
+(1143,1818,3.86),
+(1143,1819,3.86),
+(1143,1856,3.8),
+(1143,1857,3.8),
+(1143,1896,0.1),
+(1143,1970,3.78),
+(1143,1971,3.78),
+(1143,1972,2.93),
+(1143,2088,0.05),
+(1143,2089,0.05),
+(1143,2149,0.1),
+(1143,2150,0.1),
+(1143,2153,0.1),
+(1143,2162,0.1),
+(1152,128,5.05),
+(1152,132,3.17),
+(1152,133,4.4),
+(1152,135,4.13),
+(1152,151,3.17),
+(1152,152,4.4),
+(1152,154,4.13),
+(1152,237,0.79),
+(1152,247,0.79),
+(1152,248,0.79),
+(1152,249,0.79),
+(1152,508,0.88),
+(1152,509,0.88),
+(1152,510,0.88),
+(1152,511,0.88),
+(1152,593,2.45),
+(1152,594,2.45),
+(1152,595,2.45),
+(1152,596,2.45),
+(1152,763,4.69),
+(1152,764,4.69),
+(1152,765,4.69),
+(1152,766,4.69),
+(1152,848,2.32),
+(1152,849,2.32),
+(1152,850,2.32),
+(1152,851,2.32),
+(1152,1018,3.8),
+(1152,1019,3.8),
+(1152,1020,3.8),
+(1152,1021,3.8),
+(1152,1103,2.19),
+(1152,1104,2.19),
+(1152,1105,2.19),
+(1152,1106,2.19),
+(1152,1994,1.5),
+(1152,1995,1.5),
+(1153,167,6.77),
+(1153,174,10.5),
+(1153,184,7.4),
+(1153,247,0.92),
+(1153,250,0.92),
+(1153,251,0.92),
+(1153,252,0.92),
+(1153,511,0.93),
+(1153,512,0.93),
+(1153,513,0.93),
+(1153,514,0.93),
+(1153,596,2.31),
+(1153,597,2.31),
+(1153,598,2.31),
+(1153,599,2.31),
+(1153,766,5.05),
+(1153,767,5.05),
+(1153,768,5.05),
+(1153,769,5.05),
+(1153,851,2.4),
+(1153,852,2.4),
+(1153,853,2.4),
+(1153,854,2.4),
+(1153,1021,2.74),
+(1153,1022,2.74),
+(1153,1023,2.74),
+(1153,1024,2.74),
+(1153,1106,2.24),
+(1153,1107,2.24),
+(1153,1108,2.24),
+(1153,1109,2.24),
+(1153,1608,5.13),
+(1153,1996,3.73),
+(1154,168,6.37),
+(1154,175,9.83),
+(1154,185,7.2),
+(1154,247,0.84),
+(1154,250,0.84),
+(1154,251,0.84),
+(1154,252,0.84),
+(1154,511,0.97),
+(1154,512,0.97),
+(1154,513,0.97),
+(1154,514,0.97),
+(1154,596,2.57),
+(1154,597,2.57),
+(1154,598,2.57),
+(1154,599,2.57),
+(1154,766,5.18),
+(1154,767,5.18),
+(1154,768,5.18),
+(1154,769,5.18),
+(1154,851,2.3),
+(1154,852,2.3),
+(1154,853,2.3),
+(1154,854,2.3),
+(1154,1021,2.89),
+(1154,1022,2.89),
+(1154,1023,2.89),
+(1154,1024,2.89),
+(1154,1106,2.3),
+(1154,1107,2.3),
+(1154,1108,2.3),
+(1154,1109,2.3),
+(1154,1609,5.1),
+(1154,1997,3.2),
+(1155,171,3.43),
+(1155,172,3.43),
+(1155,176,3.4),
+(1155,177,3.4),
+(1155,186,4.6),
+(1155,187,4.6),
+(1155,251,0.89),
+(1155,253,0.89),
+(1155,254,0.89),
+(1155,255,0.89),
+(1155,514,1.23),
+(1155,515,1.23),
+(1155,516,1.23),
+(1155,517,1.23),
+(1155,599,2.96),
+(1155,600,2.96),
+(1155,601,2.96),
+(1155,602,2.96),
+(1155,769,4.44),
+(1155,770,4.44),
+(1155,771,4.44),
+(1155,772,4.44),
+(1155,854,2.59),
+(1155,855,2.59),
+(1155,856,2.59),
+(1155,857,2.59),
+(1155,1024,3.03),
+(1155,1025,3.03),
+(1155,1026,3.03),
+(1155,1027,3.03),
+(1155,1109,2.33),
+(1155,1110,2.33),
+(1155,1111,2.33),
+(1155,1112,2.33),
+(1155,1610,2.18),
+(1155,1611,2.18),
+(1155,1998,1.43),
+(1155,1999,1.43),
+(1156,172,2.98),
+(1156,173,2.98),
+(1156,177,3.33),
+(1156,178,3.33),
+(1156,187,5.03),
+(1156,188,5.03),
+(1156,254,0.97),
+(1156,435,0.97),
+(1156,436,0.97),
+(1156,437,0.97),
+(1156,517,1.18),
+(1156,518,1.18),
+(1156,519,1.18),
+(1156,520,1.18),
+(1156,602,2.54),
+(1156,603,2.54),
+(1156,604,2.54),
+(1156,605,2.54),
+(1156,772,4.14),
+(1156,773,4.14),
+(1156,774,4.14),
+(1156,775,4.14),
+(1156,857,2.32),
+(1156,858,2.32),
+(1156,859,2.32),
+(1156,860,2.32),
+(1156,1027,3.53),
+(1156,1028,3.53),
+(1156,1029,3.53),
+(1156,1030,3.53),
+(1156,1112,2.6),
+(1156,1113,2.6),
+(1156,1114,2.6),
+(1156,1115,2.6),
+(1156,1607,2.67),
+(1156,1611,2.67),
+(1156,1999,1.45),
+(1156,2000,1.45),
+(1157,173,3.64),
+(1157,178,3.51),
+(1157,188,5.14),
+(1157,211,3.64),
+(1157,213,3.51),
+(1157,217,5.14),
+(1157,520,0.58),
+(1157,521,0.58),
+(1157,522,0.58),
+(1157,523,0.58),
+(1157,605,4.69),
+(1157,606,4.69),
+(1157,607,4.69),
+(1157,608,4.69),
+(1157,775,3.95),
+(1157,776,3.95),
+(1157,777,3.95),
+(1157,778,3.95),
+(1157,860,2.52),
+(1157,861,2.52),
+(1157,862,2.52),
+(1157,863,2.52),
+(1157,1030,2.91),
+(1157,1031,2.91),
+(1157,1032,2.91),
+(1157,1033,2.91),
+(1157,1115,0.99),
+(1157,1116,0.99),
+(1157,1117,1.02),
+(1157,1118,1.02),
+(1157,1200,1.54),
+(1157,1201,1.54),
+(1157,1202,1.54),
+(1157,1203,1.54),
+(1157,1607,2.34),
+(1157,1612,2.34),
+(1157,2000,1.27),
+(1157,2001,1.27),
+(1157,2027,0.1),
+(1158,211,3.1),
+(1158,212,3.1),
+(1158,213,3.5),
+(1158,214,3.5),
+(1158,217,5.41),
+(1158,218,5.41),
+(1158,520,0.76),
+(1158,521,0.76),
+(1158,522,0.76),
+(1158,523,0.76),
+(1158,605,4.22),
+(1158,606,4.22),
+(1158,607,4.22),
+(1158,608,4.22),
+(1158,775,4.04),
+(1158,776,4.04),
+(1158,777,4.04),
+(1158,778,4.04),
+(1158,860,2.68),
+(1158,861,2.68),
+(1158,862,2.68),
+(1158,863,2.68),
+(1158,1030,3.06),
+(1158,1031,3.06),
+(1158,1032,3.06),
+(1158,1033,3.06),
+(1158,1115,0.89),
+(1158,1116,0.89),
+(1158,1117,0.89),
+(1158,1118,0.89),
+(1158,1200,1.53),
+(1158,1201,1.53),
+(1158,1202,1.53),
+(1158,1203,1.53),
+(1158,1612,2.31),
+(1158,1613,2.31),
+(1158,2001,1.28),
+(1158,2002,1.28),
+(1159,212,2.68),
+(1159,214,3.98),
+(1159,218,5.15),
+(1159,267,2.68),
+(1159,287,5.15),
+(1159,383,3.98),
+(1159,523,0.7),
+(1159,524,0.7),
+(1159,525,0.7),
+(1159,526,0.7),
+(1159,608,3.51),
+(1159,609,3.51),
+(1159,610,3.51),
+(1159,611,3.51),
+(1159,778,4.56),
+(1159,779,4.56),
+(1159,780,4.56),
+(1159,781,4.56),
+(1159,863,2.97),
+(1159,864,2.97),
+(1159,865,2.97),
+(1159,866,2.97),
+(1159,1033,3.11),
+(1159,1034,3.11),
+(1159,1035,3.11),
+(1159,1036,3.11),
+(1159,1118,0.97),
+(1159,1119,0.97),
+(1159,1120,0.97),
+(1159,1121,0.97),
+(1159,1203,1.36),
+(1159,1204,1.36),
+(1159,1205,1.36),
+(1159,1206,1.36),
+(1159,1613,2.2),
+(1159,1614,2.2),
+(1159,2002,1.55),
+(1159,2003,1.55),
+(1160,267,3),
+(1160,287,5.65),
+(1160,333,5.65),
+(1160,358,3),
+(1160,383,3.6),
+(1160,384,3.6),
+(1160,526,0.74),
+(1160,527,0.74),
+(1160,528,0.74),
+(1160,529,0.74),
+(1160,611,3.42),
+(1160,612,3.42),
+(1160,613,3.42),
+(1160,614,3.42),
+(1160,781,4.57),
+(1160,782,4.57),
+(1160,783,4.57),
+(1160,784,4.57),
+(1160,866,2.92),
+(1160,867,2.92),
+(1160,868,2.92),
+(1160,869,2.92),
+(1160,1036,3),
+(1160,1037,3),
+(1160,1038,3),
+(1160,1039,3),
+(1160,1121,0.86),
+(1160,1122,0.86),
+(1160,1123,0.86),
+(1160,1124,0.86),
+(1160,1206,1.47),
+(1160,1207,1.47),
+(1160,1208,1.47),
+(1160,1209,1.47),
+(1160,1614,2.42),
+(1160,1615,2.42),
+(1160,2003,1.33),
+(1160,2004,1.33),
+(1161,334,8.65),
+(1161,359,4.8),
+(1161,385,6.6),
+(1161,529,0.69),
+(1161,530,0.69),
+(1161,531,0.69),
+(1161,532,0.69),
+(1161,614,2.85),
+(1161,615,2.85),
+(1161,616,2.85),
+(1161,617,2.85),
+(1161,784,4.2),
+(1161,785,4.2),
+(1161,786,4.2),
+(1161,787,4.2),
+(1161,869,2.65),
+(1161,870,2.65),
+(1161,871,2.65),
+(1161,872,2.65),
+(1161,1039,2.81),
+(1161,1040,2.81),
+(1161,1041,2.81),
+(1161,1042,2.81),
+(1161,1124,0.83),
+(1161,1125,0.83),
+(1161,1126,0.83),
+(1161,1127,0.83),
+(1161,1209,1.2),
+(1161,1210,1.2),
+(1161,1211,1.2),
+(1161,1212,1.2),
+(1161,1323,0.3),
+(1161,1369,0.4),
+(1161,1415,0.65),
+(1161,1461,0.4),
+(1161,1507,0.45),
+(1161,1620,10.1),
+(1161,2005,6.75),
+(1162,335,9.2),
+(1162,360,6.55),
+(1162,386,5.8),
+(1162,450,0.1),
+(1162,529,0.63),
+(1162,530,0.63),
+(1162,531,0.63),
+(1162,532,0.63),
+(1162,614,3.8),
+(1162,615,3.8),
+(1162,616,3.8),
+(1162,617,3.8),
+(1162,784,3.63),
+(1162,785,3.63),
+(1162,786,3.63),
+(1162,787,3.63),
+(1162,869,2.56),
+(1162,870,2.56),
+(1162,871,2.56),
+(1162,872,2.56),
+(1162,1039,2.31),
+(1162,1040,2.31),
+(1162,1041,2.31),
+(1162,1042,2.31),
+(1162,1044,1.82),
+(1162,1124,0.71),
+(1162,1125,0.71),
+(1162,1126,0.71),
+(1162,1127,0.71),
+(1162,1209,1.36),
+(1162,1210,1.36),
+(1162,1211,1.36),
+(1162,1212,1.36),
+(1162,1324,0.35),
+(1162,1370,0.4),
+(1162,1416,0.85),
+(1162,1462,0.3),
+(1162,1508,0.6),
+(1162,1621,9),
+(1162,2006,5.95),
+(1162,2122,0.03),
+(1162,2123,0.03),
+(1162,2124,0.03),
+(1162,2125,0.03),
+(1163,314,0.1),
+(1163,336,4.79),
+(1163,337,4.79),
+(1163,361,3.51),
+(1163,362,3.51),
+(1163,387,2.54),
+(1163,388,2.54),
+(1163,415,0.1),
+(1163,532,0.63),
+(1163,533,0.63),
+(1163,534,0.63),
+(1163,535,0.63),
+(1163,617,4.73),
+(1163,618,4.73),
+(1163,619,4.73),
+(1163,620,4.73),
+(1163,705,0.1),
+(1163,787,3.23),
+(1163,788,3.23),
+(1163,789,3.23),
+(1163,790,3.23),
+(1163,872,2.42),
+(1163,873,2.42),
+(1163,874,2.42),
+(1163,875,2.42),
+(1163,1042,2.43),
+(1163,1043,2.43),
+(1163,1044,2.43),
+(1163,1045,2.43),
+(1163,1127,0.74),
+(1163,1128,0.74),
+(1163,1129,0.74),
+(1163,1130,0.74),
+(1163,1212,1.42),
+(1163,1213,1.42),
+(1163,1214,1.42),
+(1163,1215,1.42),
+(1163,1325,0.25),
+(1163,1326,0.25),
+(1163,1371,0.32),
+(1163,1372,0.37),
+(1163,1417,0.3),
+(1163,1418,0.33),
+(1163,1463,0.18),
+(1163,1464,0.18),
+(1163,1509,0.35),
+(1163,1510,0.19),
+(1163,1511,0.13),
+(1163,1616,4.07),
+(1163,1622,4.07),
+(1163,1933,0.1),
+(1163,2007,2.73),
+(1163,2008,2.73),
+(1163,2153,0.1),
+(1164,337,3.82),
+(1164,338,3.82),
+(1164,362,3.98),
+(1164,363,3.98),
+(1164,388,2.77),
+(1164,389,2.77),
+(1164,535,0.65),
+(1164,536,1.17),
+(1164,537,0.65),
+(1164,538,0.65),
+(1164,620,5.31),
+(1164,621,5.31),
+(1164,622,5.31),
+(1164,623,5.31),
+(1164,790,4.07),
+(1164,791,4.07),
+(1164,792,4.07),
+(1164,793,4.07),
+(1164,875,1.99),
+(1164,876,1.99),
+(1164,877,1.99),
+(1164,878,1.99),
+(1164,963,0.1),
+(1164,1045,2.42),
+(1164,1046,2.42),
+(1164,1047,2.42),
+(1164,1048,2.42),
+(1164,1130,0.88),
+(1164,1131,0.88),
+(1164,1132,0.44),
+(1164,1133,0.44),
+(1164,1215,1.36),
+(1164,1216,1.36),
+(1164,1217,1.36),
+(1164,1218,1.36),
+(1164,1326,0.25),
+(1164,1327,0.25),
+(1164,1372,0.18),
+(1164,1373,0.18),
+(1164,1418,0.38),
+(1164,1419,0.27),
+(1164,1464,0.2),
+(1164,1465,0.2),
+(1164,1510,0.15),
+(1164,1511,0.15),
+(1164,1616,3.5),
+(1164,1623,3.5),
+(1164,1726,0.1),
+(1164,2008,2.4),
+(1164,2009,2.4),
+(1173,128,7.77),
+(1173,135,4.63),
+(1173,154,4.63),
+(1173,593,0.97),
+(1173,594,0.97),
+(1173,595,0.97),
+(1173,596,0.97),
+(1173,678,1.41),
+(1173,679,1.41),
+(1173,680,1.41),
+(1173,681,1.41),
+(1173,848,1.33),
+(1173,849,1.33),
+(1173,850,1.33),
+(1173,851,1.33),
+(1173,933,2.08),
+(1173,934,2.08),
+(1173,935,2.08),
+(1173,936,2.08),
+(1173,1018,1.89),
+(1173,1019,1.89),
+(1173,1020,1.89),
+(1173,1021,1.89),
+(1173,1103,3.18),
+(1173,1104,3.18),
+(1173,1105,3.18),
+(1173,1106,3.18),
+(1173,1188,9.88),
+(1173,1189,9.88),
+(1173,1190,9.88),
+(1173,1191,9.88),
+(1174,6,0.1),
+(1174,31,0.1),
+(1174,184,9.5),
+(1174,596,0.93),
+(1174,597,0.93),
+(1174,598,0.93),
+(1174,599,0.93),
+(1174,681,1.39),
+(1174,682,1.39),
+(1174,683,1.39),
+(1174,684,1.39),
+(1174,768,0.1),
+(1174,851,1.35),
+(1174,852,1.35),
+(1174,853,1.35),
+(1174,854,1.35),
+(1174,936,2.02),
+(1174,937,2.02),
+(1174,938,2.02),
+(1174,939,2.02),
+(1174,1021,1.95),
+(1174,1022,1.95),
+(1174,1023,1.95),
+(1174,1024,1.95),
+(1174,1106,3.44),
+(1174,1107,3.44),
+(1174,1108,3.44),
+(1174,1109,3.44),
+(1174,1191,9.43),
+(1174,1192,9.43),
+(1174,1193,9.43),
+(1174,1194,9.43),
+(1174,1608,8.6),
+(1175,185,10.77),
+(1175,596,1.04),
+(1175,597,1.04),
+(1175,598,1.04),
+(1175,599,1.04),
+(1175,681,1.31),
+(1175,682,1.31),
+(1175,683,1.31),
+(1175,684,1.31),
+(1175,851,1.18),
+(1175,852,1.18),
+(1175,853,1.18),
+(1175,854,1.18),
+(1175,936,1.93),
+(1175,937,1.93),
+(1175,938,1.93),
+(1175,939,1.93),
+(1175,1021,2.19),
+(1175,1022,2.19),
+(1175,1023,2.19),
+(1175,1024,2.19),
+(1175,1106,3.7),
+(1175,1107,3.7),
+(1175,1108,3.7),
+(1175,1109,3.7),
+(1175,1191,8.58),
+(1175,1192,8.58),
+(1175,1193,8.58),
+(1175,1194,8.58),
+(1175,1609,9.5),
+(1176,186,5.05),
+(1176,187,5.05),
+(1176,599,0.95),
+(1176,600,0.95),
+(1176,601,0.95),
+(1176,602,0.95),
+(1176,684,1.31),
+(1176,685,1.31),
+(1176,686,1.31),
+(1176,687,1.31),
+(1176,854,1.21),
+(1176,855,1.21),
+(1176,856,1.21),
+(1176,857,1.21),
+(1176,939,2.03),
+(1176,940,2.03),
+(1176,941,2.03),
+(1176,942,2.03),
+(1176,1024,2.4),
+(1176,1025,2.4),
+(1176,1026,2.4),
+(1176,1027,2.4),
+(1176,1109,3.85),
+(1176,1110,3.85),
+(1176,1111,3.85),
+(1176,1112,3.85),
+(1176,1194,8.6),
+(1176,1195,8.6),
+(1176,1196,8.6),
+(1176,1197,8.6),
+(1176,1610,4.35),
+(1176,1611,4.35),
+(1177,187,5.45),
+(1177,188,5.45),
+(1177,602,0.78),
+(1177,603,0.78),
+(1177,604,0.78),
+(1177,605,0.78),
+(1177,687,1.14),
+(1177,688,1.14),
+(1177,689,1.14),
+(1177,690,1.14),
+(1177,857,1.13),
+(1177,858,1.13),
+(1177,859,1.13),
+(1177,860,1.13),
+(1177,942,2.14),
+(1177,943,2.14),
+(1177,944,2.14),
+(1177,945,2.14),
+(1177,1027,2.33),
+(1177,1028,2.33),
+(1177,1029,2.33),
+(1177,1030,2.33),
+(1177,1112,3.88),
+(1177,1113,3.88),
+(1177,1114,3.88),
+(1177,1115,3.88),
+(1177,1197,8.69),
+(1177,1198,8.69),
+(1177,1199,8.69),
+(1177,1200,8.69),
+(1177,1607,4.4),
+(1177,1611,4.4),
+(1178,173,2.68),
+(1178,178,2.58),
+(1178,188,2.63),
+(1178,211,2.68),
+(1178,213,2.58),
+(1178,217,2.63),
+(1178,437,2.57),
+(1178,438,2.57),
+(1178,439,2.57),
+(1178,440,2.57),
+(1178,520,3.25),
+(1178,521,3.25),
+(1178,522,3.25),
+(1178,523,3.25),
+(1178,605,2.43),
+(1178,606,2.43),
+(1178,607,2.43),
+(1178,608,2.43),
+(1178,775,2.95),
+(1178,776,2.95),
+(1178,777,2.95),
+(1178,778,2.95),
+(1178,860,2.13),
+(1178,861,2.13),
+(1178,862,2.13),
+(1178,863,2.13),
+(1178,1030,3.39),
+(1178,1031,3.39),
+(1178,1032,3.39),
+(1178,1033,3.39),
+(1178,1115,2.38),
+(1178,1116,2.38),
+(1178,1117,2.38),
+(1178,1118,2.38),
+(1178,1607,2.32),
+(1178,1612,2.32),
+(1178,2000,1.55),
+(1178,2001,1.55),
+(1179,211,2.03),
+(1179,212,2.03),
+(1179,213,2.79),
+(1179,214,2.79),
+(1179,217,2.97),
+(1179,218,2.97),
+(1179,437,2.28),
+(1179,438,2.28),
+(1179,439,2.28),
+(1179,440,2.28),
+(1179,520,2.99),
+(1179,521,2.99),
+(1179,522,2.99),
+(1179,523,2.99),
+(1179,605,1.89),
+(1179,606,1.89),
+(1179,607,1.89),
+(1179,608,1.89),
+(1179,775,3.26),
+(1179,776,3.26),
+(1179,777,3.26),
+(1179,778,3.26),
+(1179,860,2.21),
+(1179,861,2.21),
+(1179,862,2.21),
+(1179,863,2.21),
+(1179,1030,3.6),
+(1179,1031,3.6),
+(1179,1032,3.6),
+(1179,1033,3.6),
+(1179,1115,2.6),
+(1179,1116,2.6),
+(1179,1117,2.6),
+(1179,1118,2.6),
+(1179,1612,2.88),
+(1179,1613,2.88),
+(1179,2001,1.72),
+(1179,2002,1.72),
+(1180,212,1.9),
+(1180,214,2.72),
+(1180,218,3.45),
+(1180,267,1.9),
+(1180,287,3.45),
+(1180,383,2.72),
+(1180,440,1.85),
+(1180,441,1.85),
+(1180,442,1.85),
+(1180,443,1.85),
+(1180,523,3.14),
+(1180,524,3.14),
+(1180,525,3.14),
+(1180,526,3.14),
+(1180,608,1.63),
+(1180,609,1.63),
+(1180,610,1.63),
+(1180,611,1.63),
+(1180,778,3.11),
+(1180,779,3.11),
+(1180,780,3.11),
+(1180,781,3.11),
+(1180,863,2.15),
+(1180,864,2.15),
+(1180,865,2.15),
+(1180,866,2.15),
+(1180,1033,3.84),
+(1180,1034,3.84),
+(1180,1035,3.84),
+(1180,1036,3.84),
+(1180,1118,2.58),
+(1180,1119,2.58),
+(1180,1120,2.58),
+(1180,1121,2.58),
+(1180,1123,2.34),
+(1180,1613,3.13),
+(1180,1614,3.13),
+(1180,2002,1.6),
+(1180,2003,1.6),
+(1181,267,1.73),
+(1181,287,3.63),
+(1181,333,3.63),
+(1181,358,1.73),
+(1181,383,2.98),
+(1181,384,2.98),
+(1181,443,1.79),
+(1181,444,1.79),
+(1181,445,1.79),
+(1181,446,1.79),
+(1181,526,2.94),
+(1181,527,2.94),
+(1181,528,2.94),
+(1181,529,2.94),
+(1181,611,1.48),
+(1181,612,1.48),
+(1181,613,1.48),
+(1181,614,1.48),
+(1181,781,3.25),
+(1181,782,3.25),
+(1181,783,3.25),
+(1181,784,3.25),
+(1181,866,2.11),
+(1181,867,2.11),
+(1181,868,2.11),
+(1181,869,2.11),
+(1181,1036,3.99),
+(1181,1037,3.99),
+(1181,1038,3.99),
+(1181,1039,3.99),
+(1181,1121,2.7),
+(1181,1122,2.7),
+(1181,1123,2.7),
+(1181,1124,2.7),
+(1181,1614,3.22),
+(1181,1615,3.22),
+(1181,2003,1.82),
+(1181,2004,1.82),
+(1182,334,5.17),
+(1182,359,2.9),
+(1182,385,5.38),
+(1182,446,1.52),
+(1182,447,1.52),
+(1182,448,1.52),
+(1182,449,1.52),
+(1182,529,2.24),
+(1182,530,2.24),
+(1182,531,2.24),
+(1182,532,2.24),
+(1182,614,1.43),
+(1182,615,1.43),
+(1182,616,1.43),
+(1182,617,1.43),
+(1182,784,2.8),
+(1182,785,2.8),
+(1182,786,2.8),
+(1182,787,2.8),
+(1182,869,1.79),
+(1182,870,1.79),
+(1182,871,1.79),
+(1182,872,1.79),
+(1182,1039,3.23),
+(1182,1040,3.23),
+(1182,1041,3.23),
+(1182,1042,3.23),
+(1182,1124,2.31),
+(1182,1125,2.31),
+(1182,1126,2.31),
+(1182,1127,2.31),
+(1182,1323,0.63),
+(1182,1369,0.63),
+(1182,1415,0.97),
+(1182,1461,0.6),
+(1182,1507,0.65),
+(1182,1620,13.63),
+(1182,2005,8.23),
+(1183,335,4.3),
+(1183,360,4.5),
+(1183,386,5.5),
+(1183,446,1.75),
+(1183,447,1.75),
+(1183,448,1.75),
+(1183,449,1.75),
+(1183,529,2.7),
+(1183,530,2.7),
+(1183,531,2.7),
+(1183,532,2.7),
+(1183,614,1.63),
+(1183,615,1.63),
+(1183,616,1.63),
+(1183,617,1.63),
+(1183,784,3.03),
+(1183,785,3.03),
+(1183,786,3.03),
+(1183,787,3.03),
+(1183,869,1.95),
+(1183,870,1.95),
+(1183,871,1.95),
+(1183,872,1.95),
+(1183,1039,2.8),
+(1183,1040,2.8),
+(1183,1041,2.8),
+(1183,1042,2.8),
+(1183,1124,2),
+(1183,1125,2),
+(1183,1126,2),
+(1183,1127,2),
+(1183,1324,0.7),
+(1183,1370,0.4),
+(1183,1416,1.2),
+(1183,1462,0.4),
+(1183,1508,0.6),
+(1183,1621,11.1),
+(1183,2006,8),
+(1184,336,2.43),
+(1184,337,2.43),
+(1184,361,2.2),
+(1184,362,2.2),
+(1184,387,2.7),
+(1184,388,2.7),
+(1184,449,1.7),
+(1184,450,1.7),
+(1184,451,1.7),
+(1184,452,1.7),
+(1184,532,2.31),
+(1184,533,2.31),
+(1184,534,2.31),
+(1184,535,2.31),
+(1184,617,1.81),
+(1184,618,1.81),
+(1184,619,1.81),
+(1184,620,1.81),
+(1184,787,2.74),
+(1184,788,2.74),
+(1184,789,2.74),
+(1184,790,2.74),
+(1184,872,1.99),
+(1184,873,1.99),
+(1184,874,1.99),
+(1184,875,1.99),
+(1184,1042,2.79),
+(1184,1043,2.79),
+(1184,1044,2.79),
+(1184,1045,2.79),
+(1184,1127,2.08),
+(1184,1128,2.08),
+(1184,1129,2.08),
+(1184,1130,2.08),
+(1184,1325,0.18),
+(1184,1326,0.18),
+(1184,1371,0.42),
+(1184,1372,0.42),
+(1184,1417,0.45),
+(1184,1418,0.45),
+(1184,1463,0.45),
+(1184,1464,0.45),
+(1184,1509,0.4),
+(1184,1510,0.4),
+(1184,1616,5.92),
+(1184,1622,5.92),
+(1184,2007,4),
+(1184,2008,4),
+(1185,313,0.1),
+(1185,337,2.05),
+(1185,338,2.05),
+(1185,362,3.36),
+(1185,363,3.36),
+(1185,388,2.15),
+(1185,389,2.15),
+(1185,415,0.1),
+(1185,452,2.31),
+(1185,453,2.31),
+(1185,454,2.31),
+(1185,455,2.31),
+(1185,456,2.02),
+(1185,535,2.55),
+(1185,536,2.55),
+(1185,537,2.55),
+(1185,538,2.55),
+(1185,540,2.78),
+(1185,620,2.73),
+(1185,621,2.73),
+(1185,622,2.73),
+(1185,623,2.73),
+(1185,706,0.1),
+(1185,790,2.65),
+(1185,791,2.78),
+(1185,792,2.65),
+(1185,793,2.78),
+(1185,875,2.61),
+(1185,876,2.61),
+(1185,877,2.61),
+(1185,878,2.61),
+(1185,1045,2.63),
+(1185,1046,2.63),
+(1185,1047,2.63),
+(1185,1048,2.63),
+(1185,1130,1.94),
+(1185,1131,1.94),
+(1185,1132,1.94),
+(1185,1133,1.94),
+(1185,1216,0.1),
+(1185,1326,0.44),
+(1185,1327,0.18),
+(1185,1372,0.2),
+(1185,1373,0.2),
+(1185,1374,0.1),
+(1185,1418,0.66),
+(1185,1419,0.68),
+(1185,1464,0.43),
+(1185,1465,0.25),
+(1185,1510,0.23),
+(1185,1511,0.3),
+(1185,1512,0.15),
+(1185,1513,0.15),
+(1185,1616,3.99),
+(1185,1623,3.99),
+(1185,1820,0.1),
+(1185,1934,0.1),
+(1185,2008,2.6),
+(1185,2009,2.6),
+(1185,2049,0.1),
+(1199,188,5.25),
+(1199,217,5.25),
+(1199,605,1),
+(1199,606,1),
+(1199,607,1),
+(1199,608,1),
+(1199,690,1.32),
+(1199,691,1.32),
+(1199,692,1.32),
+(1199,693,1.32),
+(1199,860,1.1),
+(1199,861,1.1),
+(1199,862,1.1),
+(1199,863,1.1),
+(1199,945,1.77),
+(1199,946,1.77),
+(1199,947,1.77),
+(1199,948,1.77),
+(1199,1030,1.93),
+(1199,1031,1.93),
+(1199,1032,1.93),
+(1199,1033,1.93),
+(1199,1115,3.46),
+(1199,1116,3.46),
+(1199,1117,3.46),
+(1199,1118,3.46),
+(1199,1200,9.75),
+(1199,1201,9.75),
+(1199,1202,9.75),
+(1199,1203,9.75),
+(1199,1607,4.08),
+(1199,1612,4.08),
+(1200,217,5.15),
+(1200,218,5.15),
+(1200,605,1.02),
+(1200,606,1.02),
+(1200,607,1.02),
+(1200,608,1.02),
+(1200,690,1.31),
+(1200,691,1.31),
+(1200,692,1.31),
+(1200,693,1.31),
+(1200,860,1.08),
+(1200,861,1.08),
+(1200,862,1.08),
+(1200,863,1.08),
+(1200,945,2),
+(1200,946,2),
+(1200,947,2),
+(1200,948,2),
+(1200,1030,2.31),
+(1200,1031,2.31),
+(1200,1032,2.31),
+(1200,1033,2.31),
+(1200,1115,3.45),
+(1200,1116,3.45),
+(1200,1117,3.45),
+(1200,1118,3.45),
+(1200,1200,8.88),
+(1200,1201,8.88),
+(1200,1202,8.88),
+(1200,1203,8.88),
+(1200,1612,4.72),
+(1200,1613,4.72),
+(1201,218,5.35),
+(1201,287,5.35),
+(1201,608,0.86),
+(1201,609,0.86),
+(1201,610,0.86),
+(1201,611,0.86),
+(1201,693,1.32),
+(1201,694,1.32),
+(1201,695,1.32),
+(1201,696,1.32),
+(1201,863,1.05),
+(1201,864,1.05),
+(1201,865,1.05),
+(1201,866,1.05),
+(1201,948,2),
+(1201,949,2),
+(1201,950,2),
+(1201,951,2),
+(1201,1033,2.2),
+(1201,1034,2.2),
+(1201,1035,2.2),
+(1201,1036,2.2),
+(1201,1118,3.66),
+(1201,1119,3.66),
+(1201,1120,3.66),
+(1201,1121,3.66),
+(1201,1203,8.9),
+(1201,1204,8.9),
+(1201,1205,8.9),
+(1201,1206,8.9),
+(1201,1613,4.6),
+(1201,1614,4.6),
+(1202,287,5.57),
+(1202,333,5.57),
+(1202,611,0.94),
+(1202,612,0.94),
+(1202,613,0.94),
+(1202,614,0.94),
+(1202,696,1.27),
+(1202,697,1.27),
+(1202,698,1.27),
+(1202,699,1.27),
+(1202,866,0.97),
+(1202,867,0.97),
+(1202,868,0.97),
+(1202,869,0.97),
+(1202,951,1.91),
+(1202,952,1.91),
+(1202,953,1.91),
+(1202,954,1.91),
+(1202,1036,2.15),
+(1202,1037,2.15),
+(1202,1038,2.15),
+(1202,1039,2.15),
+(1202,1121,3.43),
+(1202,1122,3.43),
+(1202,1123,3.43),
+(1202,1124,3.43),
+(1202,1206,9.52),
+(1202,1207,9.52),
+(1202,1208,9.52),
+(1202,1209,9.52),
+(1202,1614,4.13),
+(1202,1615,4.13),
+(1203,334,9.53),
+(1203,614,0.85),
+(1203,615,0.85),
+(1203,616,0.85),
+(1203,617,0.85),
+(1203,699,1.13),
+(1203,700,1.13),
+(1203,701,1.13),
+(1203,702,1.13),
+(1203,869,0.79),
+(1203,870,0.79),
+(1203,871,0.79),
+(1203,872,0.79),
+(1203,954,1.48),
+(1203,955,1.48),
+(1203,956,1.48),
+(1203,957,1.48),
+(1203,1039,1.72),
+(1203,1040,1.72),
+(1203,1041,1.72),
+(1203,1042,1.72),
+(1203,1124,3),
+(1203,1125,3),
+(1203,1126,3),
+(1203,1127,3),
+(1203,1209,9.3),
+(1203,1210,9.3),
+(1203,1211,9.3),
+(1203,1212,9.3),
+(1203,1323,0.2),
+(1203,1369,0.27),
+(1203,1415,0.23),
+(1203,1461,0.2),
+(1203,1507,0.17),
+(1203,1620,16.43),
+(1204,335,8.8),
+(1204,614,0.89),
+(1204,615,0.89),
+(1204,616,0.89),
+(1204,617,0.89),
+(1204,699,1.2),
+(1204,700,1.2),
+(1204,701,1.2),
+(1204,702,1.2),
+(1204,869,0.71),
+(1204,870,0.71),
+(1204,871,0.71),
+(1204,872,0.71),
+(1204,954,1.56),
+(1204,955,1.56),
+(1204,956,1.56),
+(1204,957,1.56),
+(1204,1039,1.63),
+(1204,1040,1.63),
+(1204,1041,1.63),
+(1204,1042,1.63),
+(1204,1124,2.88),
+(1204,1125,2.88),
+(1204,1126,2.88),
+(1204,1127,2.88),
+(1204,1209,9.46),
+(1204,1210,9.46),
+(1204,1211,9.46),
+(1204,1212,9.46),
+(1204,1324,0.3),
+(1204,1370,0.25),
+(1204,1416,0.4),
+(1204,1462,0.5),
+(1204,1508,0.3),
+(1204,1621,16.05),
+(1205,336,4.4),
+(1205,337,4.4),
+(1205,617,0.91),
+(1205,618,0.91),
+(1205,619,0.91),
+(1205,620,0.91),
+(1205,702,1.1),
+(1205,703,1.1),
+(1205,704,1.1),
+(1205,705,1.1),
+(1205,872,0.97),
+(1205,873,0.97),
+(1205,874,0.97),
+(1205,875,0.97),
+(1205,957,1.59),
+(1205,958,1.59),
+(1205,959,1.59),
+(1205,960,1.59),
+(1205,1042,1.55),
+(1205,1043,1.55),
+(1205,1044,1.55),
+(1205,1045,1.55),
+(1205,1127,3.01),
+(1205,1128,3.01),
+(1205,1129,3.01),
+(1205,1130,3.01),
+(1205,1212,7.86),
+(1205,1213,7.86),
+(1205,1214,7.86),
+(1205,1215,7.86),
+(1205,1216,7.04),
+(1205,1325,0.07),
+(1205,1326,0.07),
+(1205,1327,0.03),
+(1205,1371,0.1),
+(1205,1372,0.1),
+(1205,1417,0.23),
+(1205,1418,0.23),
+(1205,1463,0.08),
+(1205,1464,0.05),
+(1205,1509,0.1),
+(1205,1510,0.1),
+(1205,1616,9.2),
+(1205,1622,9.2),
+(1206,337,4.1),
+(1206,338,4.1),
+(1206,455,0.1),
+(1206,620,0.85),
+(1206,621,0.85),
+(1206,622,0.85),
+(1206,623,0.85),
+(1206,705,1.33),
+(1206,706,1.33),
+(1206,707,1.33),
+(1206,708,1.33),
+(1206,875,0.93),
+(1206,876,0.93),
+(1206,877,0.93),
+(1206,878,0.93),
+(1206,960,1.81),
+(1206,961,1.81),
+(1206,962,1.81),
+(1206,963,1.81),
+(1206,1045,1.81),
+(1206,1046,1.81),
+(1206,1047,1.81),
+(1206,1048,1.81),
+(1206,1130,2.55),
+(1206,1131,2.55),
+(1206,1132,2.55),
+(1206,1133,2.55),
+(1206,1215,8.85),
+(1206,1216,8.85),
+(1206,1217,8.85),
+(1206,1218,8.85),
+(1206,1326,0.08),
+(1206,1327,1.58),
+(1206,1372,0.33),
+(1206,1373,0.4),
+(1206,1418,0.18),
+(1206,1419,0.15),
+(1206,1464,0.18),
+(1206,1465,0.33),
+(1206,1510,0.35),
+(1206,1511,0.23),
+(1206,1616,8.13),
+(1206,1623,8.13),
+(1206,2151,0.1),
+(1996,25,3.85),
+(1996,26,3.85),
+(1996,27,3.85),
+(1996,28,3.85),
+(1996,29,0.1),
+(1996,227,1.85),
+(1996,228,2),
+(1996,229,1.85),
+(1996,231,1.85),
+(1996,238,1.85),
+(1996,256,2),
+(1996,501,2),
+(1996,502,2),
+(1996,754,5.15),
+(1996,755,5.15),
+(1996,756,5.15),
+(1996,757,5.15),
+(1996,839,2.88),
+(1996,840,2.88),
+(1996,841,2.88),
+(1996,842,2.88),
+(1996,1009,3.08),
+(1996,1010,3.08),
+(1996,1011,3.08),
+(1996,1012,3.08),
+(1996,1800,2.1),
+(1996,1801,2.1),
+(1996,1838,2.2),
+(1996,1839,2.2),
+(1996,1876,3.15),
+(1996,1877,3.15),
+(1996,1952,2.35),
+(1996,1953,2.35),
+(1996,1989,0.1),
+(1996,2028,2.55),
+(1996,2029,2.55),
+(1998,17,5.3),
+(1998,18,5.3),
+(1998,19,4.48),
+(1998,22,4.48),
+(1998,23,4.53),
+(1998,24,4.53),
+(1998,62,2),
+(1998,74,2),
+(1998,502,0.1),
+(1998,584,3.72),
+(1998,585,3.72),
+(1998,586,3.72),
+(1998,587,3.72),
+(1998,669,3.83),
+(1998,670,3.83),
+(1998,671,3.83),
+(1998,672,3.83),
+(1998,758,0.1),
+(1998,924,2.35),
+(1998,925,2.35),
+(1998,926,2.35),
+(1998,927,2.35),
+(1998,1094,2.52),
+(1998,1095,2.52),
+(1998,1096,2.52),
+(1998,1097,2.52),
+(1998,1179,3.7),
+(1998,1180,3.7),
+(1998,1181,3.7),
+(1998,1182,3.7),
+(1998,1447,0.1),
+(1998,1647,1),
+(1998,1650,1),
+(1998,1651,1),
+(1998,1953,0.1),
+(2002,26,3.65),
+(2002,28,4.45),
+(2002,94,3.65),
+(2002,95,4.45),
+(2002,238,8.25),
+(2002,502,9),
+(2002,757,19.9),
+(2002,842,10.25),
+(2002,1012,14.4),
+(2002,1097,0.1),
+(2002,1801,2.2),
+(2002,1802,2.2),
+(2002,1839,1.3),
+(2002,1840,1.3),
+(2002,1877,2.88),
+(2002,1878,2.88),
+(2002,1953,2.17),
+(2002,1954,2.17),
+(2002,2029,2.4),
+(2002,2030,2.4),
+(2004,18,5.58),
+(2004,22,4.45),
+(2004,24,4.75),
+(2004,74,2.03),
+(2004,89,2.03),
+(2004,93,5.58),
+(2004,96,4.45),
+(2004,97,4.75),
+(2004,587,15.07),
+(2004,672,14.57),
+(2004,757,0.1),
+(2004,842,0.1),
+(2004,927,9.2),
+(2004,1097,8.57),
+(2004,1099,5),
+(2004,1182,14.1),
+(2004,1647,0.63),
+(2004,1650,0.63),
+(2004,1651,0.63),
+(2004,1652,0.63),
+(2004,1653,0.63),
+(2008,94,3.82),
+(2008,95,4.35),
+(2008,112,3.82),
+(2008,113,4.35),
+(2008,232,2.02),
+(2008,233,2.02),
+(2008,234,2.02),
+(2008,238,2.02),
+(2008,502,2.15),
+(2008,503,2.15),
+(2008,504,2.15),
+(2008,505,2.15),
+(2008,757,5.21),
+(2008,758,5.21),
+(2008,759,5.21),
+(2008,760,5.21),
+(2008,842,2.76),
+(2008,843,2.76),
+(2008,844,2.76),
+(2008,845,2.76),
+(2008,1012,3.42),
+(2008,1013,3.42),
+(2008,1014,3.42),
+(2008,1015,3.42),
+(2008,1802,2.07),
+(2008,1803,2.07),
+(2008,1840,1.32),
+(2008,1841,1.32),
+(2008,1878,3.05),
+(2008,1879,3.05),
+(2008,1954,1.95),
+(2008,1955,1.95),
+(2008,2030,2.3),
+(2008,2031,2.3),
+(2010,89,2.19),
+(2010,93,5.6),
+(2010,96,4.48),
+(2010,97,4.71),
+(2010,108,2.19),
+(2010,111,5.6),
+(2010,114,4.48),
+(2010,115,4.71),
+(2010,197,0.05),
+(2010,198,0.05),
+(2010,587,3.68),
+(2010,588,3.68),
+(2010,589,3.68),
+(2010,590,3.68),
+(2010,672,3.64),
+(2010,673,3.64),
+(2010,674,3.64),
+(2010,675,3.64),
+(2010,927,2.34),
+(2010,928,2.34),
+(2010,929,2.34),
+(2010,930,2.34),
+(2010,1097,2.58),
+(2010,1098,2.58),
+(2010,1099,2.58),
+(2010,1100,2.58),
+(2010,1182,3.44),
+(2010,1183,3.44),
+(2010,1184,3.44),
+(2010,1185,3.44),
+(2010,1647,0.66),
+(2010,1652,0.66),
+(2010,1653,0.66),
+(2010,1654,0.66),
+(2010,1655,0.66),
+(2010,2105,0.02),
+(2010,2106,0.02),
+(2010,2107,0.02),
+(2010,2108,0.02),
+(2010,2109,0.02),
+(2014,112,7.47),
+(2014,113,8.43),
+(2014,234,2.02),
+(2014,235,2.02),
+(2014,236,2.02),
+(2014,248,2.02),
+(2014,505,2.17),
+(2014,506,2.17),
+(2014,507,2.17),
+(2014,508,2.17),
+(2014,760,5.18),
+(2014,761,5.18),
+(2014,762,5.18),
+(2014,763,5.18),
+(2014,845,2.85),
+(2014,846,2.85),
+(2014,847,2.85),
+(2014,848,2.85),
+(2014,1015,3.49),
+(2014,1016,3.49),
+(2014,1017,3.49),
+(2014,1018,3.49),
+(2014,1803,4.13),
+(2014,1841,2.98),
+(2014,1879,5.63),
+(2014,1955,3.95),
+(2014,2031,4.58),
+(2016,108,3.85),
+(2016,111,11.3),
+(2016,114,9.05),
+(2016,115,9.5),
+(2016,590,3.75),
+(2016,591,3.75),
+(2016,592,3.75),
+(2016,593,3.75),
+(2016,675,3.76),
+(2016,676,3.76),
+(2016,677,3.76),
+(2016,678,3.76),
+(2016,930,2.24),
+(2016,931,2.24),
+(2016,932,2.24),
+(2016,933,2.24),
+(2016,1100,2.61),
+(2016,1101,2.61),
+(2016,1102,2.61),
+(2016,1103,2.61),
+(2016,1185,3.41),
+(2016,1186,3.41),
+(2016,1187,3.41),
+(2016,1188,3.41),
+(2016,1647,0.8),
+(2016,1654,0.8),
+(2016,1655,0.8),
+(2016,1656,0.8),
+(2020,133,7.52),
+(2020,134,8.73),
+(2020,234,1.96),
+(2020,235,1.96),
+(2020,236,1.96),
+(2020,248,1.96),
+(2020,505,2.16),
+(2020,506,2.16),
+(2020,507,2.16),
+(2020,508,2.16),
+(2020,760,5.28),
+(2020,761,5.28),
+(2020,762,5.28),
+(2020,763,5.28),
+(2020,845,2.91),
+(2020,846,2.91),
+(2020,847,2.91),
+(2020,848,2.91),
+(2020,1015,3.39),
+(2020,1016,3.39),
+(2020,1017,3.39),
+(2020,1018,3.39),
+(2020,1804,3.85),
+(2020,1842,3.45),
+(2020,1880,5.38),
+(2020,1956,3.62),
+(2020,2032,4.53),
+(2022,29,0.1),
+(2022,128,3.97),
+(2022,132,11.4),
+(2022,135,9.03),
+(2022,136,9.33),
+(2022,590,3.73),
+(2022,591,3.73),
+(2022,592,3.73),
+(2022,593,3.73),
+(2022,675,3.8),
+(2022,676,3.8),
+(2022,677,3.8),
+(2022,678,3.8),
+(2022,930,2.2),
+(2022,931,2.2),
+(2022,932,2.2),
+(2022,933,2.2),
+(2022,1100,2.46),
+(2022,1101,2.46),
+(2022,1102,2.46),
+(2022,1103,2.46),
+(2022,1185,3.58),
+(2022,1186,3.58),
+(2022,1187,3.58),
+(2022,1188,3.58),
+(2022,1647,1.06),
+(2022,1656,1.06),
+(2022,1657,1.06),
+(2022,1989,0.1),
+(2026,133,3.63),
+(2026,134,4.46),
+(2026,152,3.63),
+(2026,153,4.46),
+(2026,237,1.99),
+(2026,247,1.99),
+(2026,248,1.99),
+(2026,249,1.99),
+(2026,508,2.17),
+(2026,509,2.17),
+(2026,510,2.17),
+(2026,511,2.17),
+(2026,763,5.39),
+(2026,764,5.39),
+(2026,765,5.39),
+(2026,766,5.39),
+(2026,848,2.84),
+(2026,849,2.84),
+(2026,850,2.84),
+(2026,851,2.84),
+(2026,1018,3.53),
+(2026,1019,3.53),
+(2026,1020,3.53),
+(2026,1021,3.53),
+(2026,1804,2.03),
+(2026,1805,2.03),
+(2026,1842,1.5),
+(2026,1843,1.5),
+(2026,1880,2.65),
+(2026,1881,2.65),
+(2026,1951,0.43),
+(2026,1952,0.43),
+(2026,1953,0.43),
+(2026,1954,0.43),
+(2026,1955,0.43),
+(2026,1956,1.57),
+(2026,1957,1.57),
+(2026,1989,0.1),
+(2026,2032,2.04),
+(2026,2033,2.04),
+(2028,128,3.67),
+(2028,132,5.22),
+(2028,135,4.57),
+(2028,136,4.88),
+(2028,151,5.22),
+(2028,154,4.57),
+(2028,155,4.88),
+(2028,593,3.86),
+(2028,594,3.86),
+(2028,595,3.86),
+(2028,596,3.86),
+(2028,678,3.74),
+(2028,679,3.74),
+(2028,680,3.74),
+(2028,681,3.74),
+(2028,933,2.06),
+(2028,934,2.06),
+(2028,935,2.06),
+(2028,936,2.06),
+(2028,1103,2.51),
+(2028,1104,2.51),
+(2028,1105,2.51),
+(2028,1106,2.51),
+(2028,1188,3.8),
+(2028,1189,3.8),
+(2028,1190,3.8),
+(2028,1191,3.8),
+(2028,1658,1.55),
+(2028,1659,1.55),
+(2030,135,3.35),
+(2030,136,6.4),
+(2030,154,3.35),
+(2030,155,6.4),
+(2030,763,9.88),
+(2030,764,9.88),
+(2030,765,9.88),
+(2030,766,9.88),
+(2030,848,2.75),
+(2030,849,2.75),
+(2030,850,2.75),
+(2030,851,2.75),
+(2030,1018,5.47),
+(2030,1019,5.47),
+(2030,1020,5.47),
+(2030,1021,5.47),
+(2030,2070,1.66),
+(2030,2071,1.66),
+(2030,2072,1.66),
+(2030,2073,1.66),
+(2030,2074,1.66),
+(2032,152,3.63),
+(2032,153,4.4),
+(2032,174,3.63),
+(2032,179,4.4),
+(2032,237,2.11),
+(2032,247,2.11),
+(2032,248,2.11),
+(2032,249,2.11),
+(2032,508,2.23),
+(2032,509,2.23),
+(2032,510,2.23),
+(2032,511,2.23),
+(2032,763,5.21),
+(2032,764,5.21),
+(2032,765,5.21),
+(2032,766,5.21),
+(2032,848,2.78),
+(2032,849,2.78),
+(2032,850,2.78),
+(2032,851,2.78),
+(2032,1018,3.64),
+(2032,1019,3.64),
+(2032,1020,3.64),
+(2032,1021,3.64),
+(2032,1805,2.02),
+(2032,1806,2.02),
+(2032,1843,1.55),
+(2032,1844,1.55),
+(2032,1881,2.71),
+(2032,1882,2.71),
+(2032,1957,1.71),
+(2032,1958,1.71),
+(2032,2033,2.03),
+(2032,2034,2.03),
+(2034,151,5.08),
+(2034,154,4.54),
+(2034,155,5.16),
+(2034,167,5.08),
+(2034,184,4.54),
+(2034,189,5.16),
+(2034,593,3.74),
+(2034,594,3.74),
+(2034,595,3.74),
+(2034,596,3.74),
+(2034,678,3.7),
+(2034,679,3.7),
+(2034,680,3.7),
+(2034,681,3.7),
+(2034,933,2.09),
+(2034,934,2.09),
+(2034,935,2.09),
+(2034,936,2.09),
+(2034,1103,2.53),
+(2034,1104,2.53),
+(2034,1105,2.53),
+(2034,1106,2.53),
+(2034,1188,3.73),
+(2034,1189,3.73),
+(2034,1190,3.73),
+(2034,1191,3.73),
+(2034,1608,3.83),
+(2034,1660,1.65),
+(2034,1661,1.65),
+(2036,154,3.75),
+(2036,155,5.55),
+(2036,184,3.75),
+(2036,189,5.55),
+(2036,763,9.52),
+(2036,764,9.52),
+(2036,765,9.52),
+(2036,766,9.52),
+(2036,848,3.03),
+(2036,849,3.03),
+(2036,850,3.03),
+(2036,851,3.03),
+(2036,1018,5.82),
+(2036,1019,5.82),
+(2036,1020,5.82),
+(2036,1021,5.82),
+(2036,2073,4),
+(2036,2074,4),
+(2038,174,3.55),
+(2038,175,3.55),
+(2038,179,4.68),
+(2038,180,4.68),
+(2038,247,2.03),
+(2038,250,2.03),
+(2038,251,2.03),
+(2038,252,2.03),
+(2038,511,2.15),
+(2038,512,2.15),
+(2038,513,2.15),
+(2038,514,2.15),
+(2038,766,5.3),
+(2038,767,5.3),
+(2038,768,5.3),
+(2038,769,5.3),
+(2038,851,2.78),
+(2038,852,2.78),
+(2038,853,2.78),
+(2038,854,2.78),
+(2038,1021,3.43),
+(2038,1022,3.43),
+(2038,1023,3.43),
+(2038,1024,3.43),
+(2038,1357,3.67),
+(2038,1803,2.89),
+(2038,1804,0.98),
+(2038,1805,0.98),
+(2038,1806,0.98),
+(2038,1841,2.99),
+(2038,1842,0.68),
+(2038,1843,0.68),
+(2038,1844,0.68),
+(2038,1845,0.68),
+(2038,1882,2.67),
+(2038,1883,2.67),
+(2038,1958,0.1),
+(2038,2034,1.95),
+(2038,2035,1.95),
+(2040,167,5.2),
+(2040,168,5.2),
+(2040,184,4.61),
+(2040,185,4.61),
+(2040,189,5.1),
+(2040,190,5.1),
+(2040,596,3.78),
+(2040,597,3.78),
+(2040,598,3.78),
+(2040,599,3.78),
+(2040,681,3.84),
+(2040,682,3.84),
+(2040,683,3.84),
+(2040,684,3.84),
+(2040,936,2.12),
+(2040,937,2.12),
+(2040,938,2.12),
+(2040,939,2.12),
+(2040,1106,2.43),
+(2040,1107,2.43),
+(2040,1108,2.43),
+(2040,1109,2.43),
+(2040,1191,3.66),
+(2040,1192,3.66),
+(2040,1193,3.66),
+(2040,1194,3.66),
+(2040,1608,1.92),
+(2040,1609,1.92),
+(2040,1660,0.76),
+(2040,1661,0.76),
+(2040,1662,0.76),
+(2040,1663,0.76),
+(2044,175,3.59),
+(2044,176,3.59),
+(2044,180,3.97),
+(2044,181,3.97),
+(2044,251,8.78),
+(2044,514,8.8),
+(2044,769,20.55),
+(2044,854,11.8),
+(2044,1024,14.3),
+(2044,1807,2.1),
+(2044,1808,2.1),
+(2044,1845,1.49),
+(2044,1846,1.49),
+(2044,1883,2.78),
+(2044,1884,2.78),
+(2044,1959,1.89),
+(2044,1960,1.89),
+(2044,2035,2.04),
+(2044,2036,2.04),
+(2046,168,5.15),
+(2046,171,5.15),
+(2046,185,4.33),
+(2046,186,4.33),
+(2046,190,4.97),
+(2046,191,4.97),
+(2046,599,14.97),
+(2046,684,15.23),
+(2046,939,9.3),
+(2046,1109,9.73),
+(2046,1194,15),
+(2046,1609,1.85),
+(2046,1610,1.85),
+(2046,1662,0.63),
+(2046,1663,0.63),
+(2046,1664,0.63),
+(2046,1665,0.63),
+(2046,1666,0.63),
+(2048,185,3.95),
+(2048,186,3.95),
+(2048,190,5.25),
+(2048,191,5.25),
+(2048,769,37.6),
+(2048,854,11.9),
+(2048,1024,24.3),
+(2048,2075,2.6),
+(2048,2076,2.6),
+(2048,2077,2.6),
+(2050,176,6.73),
+(2050,181,8.83),
+(2050,251,2.09),
+(2050,253,2.09),
+(2050,254,2.09),
+(2050,255,2.09),
+(2050,514,2.15),
+(2050,515,2.15),
+(2050,516,2.15),
+(2050,517,2.15),
+(2050,769,5.25),
+(2050,770,5.25),
+(2050,771,5.25),
+(2050,772,5.25),
+(2050,854,2.76),
+(2050,855,2.76),
+(2050,856,2.76),
+(2050,857,2.76),
+(2050,1024,3.64),
+(2050,1025,3.64),
+(2050,1026,3.64),
+(2050,1027,3.64),
+(2050,1808,4.13),
+(2050,1846,3.17),
+(2050,1884,5.7),
+(2050,1960,3.53),
+(2050,2036,4.17),
+(2052,171,10.28),
+(2052,186,9.02),
+(2052,191,9.9),
+(2052,599,3.73),
+(2052,600,3.73),
+(2052,601,3.73),
+(2052,602,3.73),
+(2052,684,3.68),
+(2052,685,3.68),
+(2052,686,3.68),
+(2052,687,3.68),
+(2052,939,2.29),
+(2052,940,2.29),
+(2052,941,2.29),
+(2052,942,2.29),
+(2052,1109,2.51),
+(2052,1110,2.51),
+(2052,1111,2.51),
+(2052,1112,2.51),
+(2052,1194,3.75),
+(2052,1195,3.75),
+(2052,1196,3.75),
+(2052,1197,3.75),
+(2052,1610,3.63),
+(2052,1664,1.12),
+(2052,1665,1.12),
+(2052,1666,1.12),
+(2054,186,8.1),
+(2054,191,9.7),
+(2054,769,10),
+(2054,770,10),
+(2054,771,10),
+(2054,772,10),
+(2054,854,3.08),
+(2054,855,3.08),
+(2054,856,3.08),
+(2054,857,3.08),
+(2054,1024,5.82),
+(2054,1025,5.82),
+(2054,1026,5.82),
+(2054,1027,5.82),
+(2054,2075,2.23),
+(2054,2076,2.23),
+(2054,2077,2.23),
+(2056,177,7.04),
+(2056,182,8.46),
+(2056,254,2.1),
+(2056,435,2.1),
+(2056,436,2.1),
+(2056,437,2.1),
+(2056,517,2.21),
+(2056,518,2.21),
+(2056,519,2.21),
+(2056,520,2.21),
+(2056,772,5.2),
+(2056,773,5.2),
+(2056,774,5.2),
+(2056,775,5.2),
+(2056,857,2.93),
+(2056,858,2.93),
+(2056,859,2.93),
+(2056,860,2.93),
+(2056,1027,3.74),
+(2056,1028,3.74),
+(2056,1029,3.74),
+(2056,1030,3.74),
+(2056,1809,3.58),
+(2056,1847,3.24),
+(2056,1885,5.2),
+(2056,1923,0.1),
+(2056,1961,3.46),
+(2056,2037,4.22),
+(2058,172,9.75),
+(2058,187,8.75),
+(2058,192,9.75),
+(2058,602,3.8),
+(2058,603,3.8),
+(2058,604,3.8),
+(2058,605,3.8),
+(2058,687,3.99),
+(2058,688,3.99),
+(2058,689,3.99),
+(2058,690,3.99),
+(2058,942,2.21),
+(2058,943,2.21),
+(2058,944,2.21),
+(2058,945,2.21),
+(2058,1112,2.48),
+(2058,1113,2.48),
+(2058,1114,2.48),
+(2058,1115,2.48),
+(2058,1197,3.86),
+(2058,1198,3.86),
+(2058,1199,3.86),
+(2058,1200,3.86),
+(2058,1611,3.45),
+(2058,1664,0.37),
+(2058,1665,0.37),
+(2058,1666,0.37),
+(2058,1667,0.37),
+(2058,1668,0.37),
+(2058,1669,0.37),
+(2058,1670,0.37),
+(2058,1671,0.37),
+(2062,178,6.87),
+(2062,183,9.13),
+(2062,254,2.14),
+(2062,435,2.14),
+(2062,436,2.14),
+(2062,437,2.14),
+(2062,517,2.27),
+(2062,518,2.27),
+(2062,519,2.27),
+(2062,520,2.27),
+(2062,605,0.1),
+(2062,772,5.23),
+(2062,773,5.23),
+(2062,774,5.23),
+(2062,775,5.23),
+(2062,857,2.96),
+(2062,858,2.96),
+(2062,859,2.96),
+(2062,860,2.96),
+(2062,1027,3.37),
+(2062,1028,3.37),
+(2062,1029,3.37),
+(2062,1030,3.37),
+(2062,1810,3.7),
+(2062,1848,3.57),
+(2062,1886,5.07),
+(2062,1962,3.5),
+(2062,2038,4.3),
+(2064,173,9.98),
+(2064,188,8.23),
+(2064,193,9.08),
+(2064,602,3.81),
+(2064,603,3.81),
+(2064,604,3.81),
+(2064,605,3.81),
+(2064,687,3.94),
+(2064,688,3.94),
+(2064,689,3.94),
+(2064,690,3.94),
+(2064,942,2.11),
+(2064,943,2.11),
+(2064,944,2.11),
+(2064,945,2.11),
+(2064,1112,2.61),
+(2064,1113,2.61),
+(2064,1114,2.61),
+(2064,1115,2.61),
+(2064,1197,3.9),
+(2064,1198,3.9),
+(2064,1199,3.9),
+(2064,1200,3.9),
+(2064,1607,3.88),
+(2064,1668,0.86),
+(2064,1669,0.86),
+(2064,1670,0.86),
+(2064,1671,0.86),
+(2064,1886,0.1),
+(2064,2078,0.05),
+(2064,2079,0.05),
+(2066,188,8.3),
+(2066,193,8.7),
+(2066,772,10.18),
+(2066,773,10.18),
+(2066,774,10.18),
+(2066,775,10.18),
+(2066,857,3.5),
+(2066,858,3.5),
+(2066,859,3.5),
+(2066,860,3.5),
+(2066,1027,5.43),
+(2066,1028,5.43),
+(2066,1029,5.43),
+(2066,1030,5.43),
+(2066,2078,3.2),
+(2066,2079,3.2),
+(2068,178,3.58),
+(2068,183,4.4),
+(2068,213,3.58),
+(2068,215,4.4),
+(2068,437,2.01),
+(2068,438,2.01),
+(2068,439,2.01),
+(2068,440,2.01),
+(2068,520,2.22),
+(2068,521,2.22),
+(2068,522,2.22),
+(2068,523,2.22),
+(2068,775,5.28),
+(2068,776,5.28),
+(2068,777,5.28),
+(2068,778,5.28),
+(2068,860,3.05),
+(2068,861,3.05),
+(2068,862,3.05),
+(2068,863,3.05),
+(2068,1030,3.42),
+(2068,1031,3.42),
+(2068,1032,3.42),
+(2068,1033,3.42),
+(2068,1318,0.1),
+(2068,1319,0.1),
+(2068,1364,0.17),
+(2068,1365,0.17),
+(2068,1410,0.22),
+(2068,1411,0.22),
+(2068,1456,0.08),
+(2068,1457,0.08),
+(2068,1502,0.18),
+(2068,1503,0.18),
+(2068,1810,1.73),
+(2068,1811,1.73),
+(2068,1848,1.48),
+(2068,1849,1.48),
+(2068,1886,2.37),
+(2068,1887,2.37),
+(2068,1925,0.1),
+(2068,1962,1.63),
+(2068,1963,1.63),
+(2068,2038,2),
+(2068,2039,2),
+(2070,173,4.61),
+(2070,188,3.69),
+(2070,193,4.4),
+(2070,211,4.61),
+(2070,217,3.69),
+(2070,219,4.4),
+(2070,521,0.1),
+(2070,605,3.41),
+(2070,606,3.41),
+(2070,607,3.41),
+(2070,608,3.41),
+(2070,690,3.47),
+(2070,691,3.47),
+(2070,692,3.47),
+(2070,693,3.47),
+(2070,860,0.1),
+(2070,945,2.03),
+(2070,946,2.03),
+(2070,947,2.03),
+(2070,948,2.03),
+(2070,1115,2.21),
+(2070,1116,2.21),
+(2070,1117,2.21),
+(2070,1118,2.21),
+(2070,1200,3.35),
+(2070,1201,3.35),
+(2070,1202,3.35),
+(2070,1203,3.35),
+(2070,1318,0.16),
+(2070,1319,0.16),
+(2070,1364,0.13),
+(2070,1365,0.13),
+(2070,1366,0.1),
+(2070,1410,0.15),
+(2070,1411,0.26),
+(2070,1456,0.2),
+(2070,1457,0.2),
+(2070,1502,0.18),
+(2070,1503,0.18),
+(2070,1607,4.16),
+(2070,1612,4.16),
+(2070,1668,1.68),
+(2070,1669,1.68),
+(2070,1670,1.68),
+(2070,1671,1.68),
+(2072,188,3.4),
+(2072,193,3.65),
+(2072,217,3.4),
+(2072,219,3.65),
+(2072,775,7.5),
+(2072,776,7.5),
+(2072,777,7.5),
+(2072,778,7.5),
+(2072,860,3.03),
+(2072,861,3.03),
+(2072,862,3.03),
+(2072,863,3.03),
+(2072,1030,3.7),
+(2072,1031,3.7),
+(2072,1032,3.7),
+(2072,1033,3.7),
+(2072,1318,0.15),
+(2072,1319,0.15),
+(2072,1364,0.25),
+(2072,1365,0.25),
+(2072,1410,0.2),
+(2072,1411,0.2),
+(2072,1456,0.1),
+(2072,1457,0.1),
+(2072,1502,0.25),
+(2072,1503,0.25),
+(2072,2078,13.65),
+(2072,2079,13.65),
+(2072,2114,0.03),
+(2072,2115,0.03),
+(2072,2116,0.03),
+(2072,2117,0.03),
+(2074,213,3.75),
+(2074,214,3.75),
+(2074,215,3.75),
+(2074,216,3.75),
+(2074,437,1.9),
+(2074,438,1.9),
+(2074,439,1.9),
+(2074,440,1.9),
+(2074,520,2.12),
+(2074,521,2.12),
+(2074,522,2.12),
+(2074,523,2.12),
+(2074,775,5.02),
+(2074,776,5.02),
+(2074,777,5.02),
+(2074,778,5.02),
+(2074,860,3.2),
+(2074,861,3.2),
+(2074,862,3.2),
+(2074,863,3.2),
+(2074,1030,3.54),
+(2074,1031,3.54),
+(2074,1032,3.54),
+(2074,1033,3.54),
+(2074,1319,0.1),
+(2074,1320,0.1),
+(2074,1365,0.18),
+(2074,1366,0.21),
+(2074,1411,0.17),
+(2074,1412,0.17),
+(2074,1457,0.13),
+(2074,1458,0.14),
+(2074,1503,0.15),
+(2074,1504,0.15),
+(2074,1811,1.76),
+(2074,1812,1.76),
+(2074,1849,1.6),
+(2074,1850,1.6),
+(2074,1887,2.95),
+(2074,1888,2.95),
+(2074,1963,1.69),
+(2074,1964,1.69),
+(2074,2039,2.26),
+(2074,2040,2.26),
+(2076,211,4.54),
+(2076,212,4.54),
+(2076,217,4),
+(2076,218,4),
+(2076,219,4.09),
+(2076,220,4.09),
+(2076,605,3.34),
+(2076,606,3.34),
+(2076,607,3.34),
+(2076,608,3.34),
+(2076,690,3.46),
+(2076,691,3.46),
+(2076,692,3.46),
+(2076,693,3.46),
+(2076,945,1.99),
+(2076,946,1.99),
+(2076,947,1.99),
+(2076,948,1.99),
+(2076,1115,2.32),
+(2076,1116,2.32),
+(2076,1117,2.32),
+(2076,1118,2.32),
+(2076,1200,3.21),
+(2076,1201,3.21),
+(2076,1202,3.21),
+(2076,1203,3.21),
+(2076,1319,0.11),
+(2076,1320,0.11),
+(2076,1365,0.19),
+(2076,1366,0.19),
+(2076,1411,0.1),
+(2076,1412,0.13),
+(2076,1457,0.1),
+(2076,1458,0.13),
+(2076,1503,0.1),
+(2076,1504,0.18),
+(2076,1612,4.45),
+(2076,1613,4.45),
+(2076,1668,1.21),
+(2076,1669,1.21),
+(2076,1670,1.21),
+(2076,1671,1.21),
+(2076,1672,1.21),
+(2076,1673,1.21),
+(2080,214,3.65),
+(2080,216,3.69),
+(2080,383,3.65),
+(2080,409,3.69),
+(2080,440,1.95),
+(2080,441,1.95),
+(2080,442,1.95),
+(2080,443,1.95),
+(2080,523,2.11),
+(2080,524,2.11),
+(2080,525,2.11),
+(2080,526,2.11),
+(2080,778,5.17),
+(2080,779,5.17),
+(2080,780,5.17),
+(2080,781,5.17),
+(2080,863,3.39),
+(2080,864,3.39),
+(2080,865,3.39),
+(2080,866,3.39),
+(2080,1033,3.51),
+(2080,1034,3.51),
+(2080,1035,3.51),
+(2080,1036,3.51),
+(2080,1320,0.1),
+(2080,1321,0.1),
+(2080,1366,0.13),
+(2080,1367,0.13),
+(2080,1412,0.3),
+(2080,1413,0.3),
+(2080,1458,0.23),
+(2080,1459,0.13),
+(2080,1504,0.16),
+(2080,1505,0.18),
+(2080,1812,1.64),
+(2080,1813,1.64),
+(2080,1850,1.73),
+(2080,1851,1.6),
+(2080,1888,2.82),
+(2080,1889,2.82),
+(2080,1964,1.6),
+(2080,1965,1.6),
+(2080,2040,2.19),
+(2080,2041,2.19),
+(2082,212,4.44),
+(2082,218,3.94),
+(2082,220,4.37),
+(2082,267,4.44),
+(2082,287,3.94),
+(2082,307,4.37),
+(2082,608,3.45),
+(2082,609,3.45),
+(2082,610,3.45),
+(2082,611,3.45),
+(2082,693,3.46),
+(2082,694,3.46),
+(2082,695,3.46),
+(2082,696,3.46),
+(2082,779,0.1),
+(2082,948,1.9),
+(2082,949,1.9),
+(2082,950,1.9),
+(2082,951,1.9),
+(2082,1118,2.03),
+(2082,1119,2.03),
+(2082,1120,2.03),
+(2082,1121,2.03),
+(2082,1203,3.42),
+(2082,1204,3.42),
+(2082,1205,3.42),
+(2082,1206,3.42),
+(2082,1320,0.13),
+(2082,1321,0.11),
+(2082,1366,0.15),
+(2082,1367,0.15),
+(2082,1412,0.13),
+(2082,1413,0.14),
+(2082,1458,0.13),
+(2082,1459,0.11),
+(2082,1504,0.08),
+(2082,1505,0.08),
+(2082,1613,4.38),
+(2082,1614,4.38),
+(2082,1672,1.52),
+(2082,1673,1.52),
+(2082,1674,1.52),
+(2082,1675,1.52),
+(2082,1676,1.52),
+(2084,218,3.55),
+(2084,220,3.7),
+(2084,287,3.55),
+(2084,307,3.7),
+(2084,442,0.1),
+(2084,523,0.1),
+(2084,693,0.1),
+(2084,778,7.57),
+(2084,779,7.57),
+(2084,780,7.57),
+(2084,781,7.57),
+(2084,863,2.9),
+(2084,864,2.9),
+(2084,865,2.9),
+(2084,866,2.9),
+(2084,949,0.1),
+(2084,1033,3.75),
+(2084,1034,3.75),
+(2084,1035,3.75),
+(2084,1036,3.75),
+(2084,1120,0.1),
+(2084,1320,0.15),
+(2084,1321,0.15),
+(2084,1366,0.3),
+(2084,1367,0.3),
+(2084,1412,0.1),
+(2084,1413,0.1),
+(2084,1458,0.2),
+(2084,1459,0.2),
+(2084,1504,0.25),
+(2084,1505,0.25),
+(2084,1927,0.1),
+(2084,2003,0.1),
+(2084,2041,0.1),
+(2084,2080,8.9),
+(2084,2081,8.9),
+(2084,2082,8.9),
+(2086,383,7.88),
+(2086,409,6.48),
+(2086,440,1.95),
+(2086,441,1.95),
+(2086,442,2.75),
+(2086,443,2.75),
+(2086,523,2.24),
+(2086,524,2.24),
+(2086,525,2.24),
+(2086,526,2.24),
+(2086,778,4.81),
+(2086,779,4.81),
+(2086,780,4.81),
+(2086,781,4.81),
+(2086,863,2.97),
+(2086,864,2.97),
+(2086,865,2.97),
+(2086,866,2.97),
+(2086,1033,2.73),
+(2086,1034,2.73),
+(2086,1035,2.73),
+(2086,1036,2.73),
+(2086,1321,0.35),
+(2086,1367,1.13),
+(2086,1413,1.63),
+(2086,1459,0.25),
+(2086,1505,0.45),
+(2086,1813,3.1),
+(2086,1851,2.52),
+(2086,1889,6.14),
+(2086,1965,7.86),
+(2086,2041,4.03),
+(2086,2042,3.45),
+(2088,267,9.1),
+(2088,287,7.55),
+(2088,307,8.15),
+(2088,608,3.52),
+(2088,609,3.52),
+(2088,610,3.52),
+(2088,611,3.52),
+(2088,693,3.8),
+(2088,694,3.8),
+(2088,695,3.8),
+(2088,696,3.8),
+(2088,948,1.81),
+(2088,949,1.81),
+(2088,950,1.81),
+(2088,951,1.81),
+(2088,1118,2.23),
+(2088,1119,2.23),
+(2088,1120,2.23),
+(2088,1121,2.23),
+(2088,1203,3.34),
+(2088,1204,3.34),
+(2088,1205,3.34),
+(2088,1206,3.34),
+(2088,1321,0.1),
+(2088,1367,0.15),
+(2088,1413,0.6),
+(2088,1459,0.2),
+(2088,1505,0.1),
+(2088,1614,6.3),
+(2088,1674,3.17),
+(2088,1675,3.17),
+(2088,1676,3.17),
+(2088,1719,0.1),
+(2090,287,7.1),
+(2090,307,3.4),
+(2090,308,3.4),
+(2090,443,0.1),
+(2090,778,7.45),
+(2090,779,7.45),
+(2090,780,7.45),
+(2090,781,7.45),
+(2090,863,4.9),
+(2090,864,4.9),
+(2090,865,4.9),
+(2090,866,4.9),
+(2090,951,0.1),
+(2090,1033,2.58),
+(2090,1034,2.58),
+(2090,1035,2.58),
+(2090,1036,2.58),
+(2090,1206,0.1),
+(2090,1321,0.2),
+(2090,1367,0.15),
+(2090,1368,0.15),
+(2090,1413,0.35),
+(2090,1414,0.35),
+(2090,1459,0.15),
+(2090,1460,0.15),
+(2090,1505,0.3),
+(2090,1506,0.3),
+(2090,1719,0.1),
+(2090,1814,0.1),
+(2090,1966,0.1),
+(2090,2080,8),
+(2090,2081,8),
+(2090,2082,8),
+(2092,384,7.73),
+(2092,410,5.4),
+(2092,443,2.62),
+(2092,444,5.16),
+(2092,445,2.62),
+(2092,446,2.62),
+(2092,526,1.99),
+(2092,527,1.99),
+(2092,528,2.14),
+(2092,529,1.99),
+(2092,781,6.45),
+(2092,782,8.04),
+(2092,783,6.45),
+(2092,784,6.45),
+(2092,866,2.81),
+(2092,867,2.81),
+(2092,868,2.81),
+(2092,869,2.81),
+(2092,952,0.1),
+(2092,1036,2.78),
+(2092,1037,2.78),
+(2092,1038,2.73),
+(2092,1039,2.78),
+(2092,1322,0.5),
+(2092,1368,1.3),
+(2092,1414,0.15),
+(2092,1506,0.2),
+(2092,1814,2.8),
+(2092,1852,2.45),
+(2092,1890,11.25),
+(2092,1966,7.38),
+(2092,2042,3.58),
+(2094,308,6.55),
+(2094,333,8.3),
+(2094,358,8.63),
+(2094,384,0.4),
+(2094,611,3.11),
+(2094,612,3.11),
+(2094,613,3.11),
+(2094,614,3.11),
+(2094,696,3.78),
+(2094,697,3.78),
+(2094,698,3.78),
+(2094,699,3.78),
+(2094,951,2.03),
+(2094,952,2.03),
+(2094,953,2.03),
+(2094,954,2.03),
+(2094,1121,2.1),
+(2094,1122,2.1),
+(2094,1123,2.1),
+(2094,1124,2.1),
+(2094,1206,3.27),
+(2094,1207,3.27),
+(2094,1208,3.27),
+(2094,1209,3.27),
+(2094,1322,0.4),
+(2094,1368,0.17),
+(2094,1414,0.33),
+(2094,1460,0.67),
+(2094,1506,0.2),
+(2094,1615,10.78),
+(2094,1677,1.48),
+(2094,1678,1.48),
+(2094,1679,1.48),
+(2094,1680,1.48),
+(2094,1681,1.48),
+(2094,2043,0.4),
+(2123,93,5.6),
+(2123,96,0.1),
+(2123,111,5.6),
+(2123,232,2.92),
+(2123,233,2.92),
+(2123,234,2.92),
+(2123,238,2.92),
+(2123,502,5.85),
+(2123,503,5.85),
+(2123,504,5.85),
+(2123,505,5.85),
+(2123,587,7.38),
+(2123,588,7.38),
+(2123,589,7.38),
+(2123,590,7.38),
+(2123,672,4.95),
+(2123,673,4.95),
+(2123,674,4.95),
+(2123,675,4.95),
+(2123,1313,0.1),
+(2123,1742,0.5),
+(2123,1743,0.5),
+(2123,1744,0.5),
+(2123,1745,0.5),
+(2123,1746,0.5),
+(2123,1747,0.5),
+(2123,1748,0.5),
+(2123,1749,0.5),
+(2123,1750,0.5),
+(2124,111,9.8),
+(2124,234,2.47),
+(2124,235,2.47),
+(2124,236,2.47),
+(2124,248,2.47),
+(2124,505,6.32),
+(2124,506,6.32),
+(2124,507,6.32),
+(2124,508,6.32),
+(2124,590,7.35),
+(2124,591,7.35),
+(2124,592,7.35),
+(2124,593,7.35),
+(2124,675,4.18),
+(2124,676,4.18),
+(2124,677,4.18),
+(2124,678,4.18),
+(2124,1742,0.73),
+(2124,1743,0.73),
+(2124,1744,0.73),
+(2124,1745,0.73),
+(2124,1746,0.73),
+(2124,1747,0.73),
+(2124,1748,0.73),
+(2124,1749,0.73),
+(2124,1750,0.73),
+(2124,1751,0.73),
+(2124,1752,0.73),
+(2124,1753,0.73),
+(2125,132,9.2),
+(2125,234,2.88),
+(2125,235,2.88),
+(2125,236,2.88),
+(2125,248,2.88),
+(2125,505,6.5),
+(2125,506,6.5),
+(2125,507,6.5),
+(2125,508,6.5),
+(2125,590,7.78),
+(2125,591,7.78),
+(2125,592,7.78),
+(2125,593,7.78),
+(2125,675,4.1),
+(2125,676,4.1),
+(2125,677,4.1),
+(2125,678,4.1),
+(2125,1742,0.66),
+(2125,1743,0.66),
+(2125,1744,0.66),
+(2125,1745,0.66),
+(2125,1746,0.66),
+(2125,1747,0.66),
+(2125,1751,0.66),
+(2125,1752,0.66),
+(2125,1753,0.66),
+(2126,132,4.85),
+(2126,151,4.85),
+(2126,237,3.05),
+(2126,247,3.05),
+(2126,248,3.05),
+(2126,249,3.05),
+(2126,508,6.9),
+(2126,509,6.9),
+(2126,510,6.9),
+(2126,511,6.9),
+(2126,593,6.57),
+(2126,594,6.57),
+(2126,595,6.57),
+(2126,596,6.57),
+(2126,678,4.3),
+(2126,679,4.3),
+(2126,680,4.3),
+(2126,681,4.3),
+(2126,1742,0.58),
+(2126,1743,0.58),
+(2126,1744,0.58),
+(2126,1745,0.58),
+(2126,1746,0.58),
+(2126,1747,0.58),
+(2126,1751,0.58),
+(2126,1752,0.58),
+(2126,1753,0.58),
+(2126,1754,0.58),
+(2126,1755,0.58),
+(2126,1756,0.58),
+(2128,167,5),
+(2128,168,5),
+(2128,247,2.63),
+(2128,250,2.63),
+(2128,251,2.63),
+(2128,252,2.63),
+(2128,511,7.05),
+(2128,512,7.05),
+(2128,513,7.05),
+(2128,514,7.05),
+(2128,596,6.63),
+(2128,597,6.63),
+(2128,598,6.63),
+(2128,599,6.63),
+(2128,681,4.45),
+(2128,682,4.45),
+(2128,683,4.45),
+(2128,684,4.45),
+(2128,1742,0.58),
+(2128,1743,0.58),
+(2128,1744,0.58),
+(2128,1745,0.58),
+(2128,1746,0.58),
+(2128,1747,0.58),
+(2128,1754,0.58),
+(2128,1755,0.58),
+(2128,1756,0.58),
+(2128,1757,0.58),
+(2128,1758,0.58),
+(2128,1759,0.58),
+(2129,168,5.85),
+(2129,171,5.85),
+(2129,251,10),
+(2129,514,23.8),
+(2129,599,28.4),
+(2129,684,19.3),
+(2129,1742,0.77),
+(2129,1743,0.77),
+(2129,1744,0.77),
+(2129,1745,0.77),
+(2129,1746,0.77),
+(2129,1747,0.77),
+(2129,1757,0.77),
+(2129,1758,0.77),
+(2129,1759,0.77),
+(2130,171,9.6),
+(2130,251,2.38),
+(2130,253,2.38),
+(2130,254,2.38),
+(2130,255,2.38),
+(2130,514,6.28),
+(2130,515,6.28),
+(2130,516,6.28),
+(2130,517,6.28),
+(2130,599,7.32),
+(2130,600,7.32),
+(2130,601,7.32),
+(2130,602,7.32),
+(2130,684,4.93),
+(2130,685,4.93),
+(2130,686,4.93),
+(2130,687,4.93),
+(2130,1742,0.78),
+(2130,1743,0.78),
+(2130,1744,0.78),
+(2130,1745,0.78),
+(2130,1746,0.78),
+(2130,1747,0.78),
+(2130,1760,0.78),
+(2130,1761,0.78),
+(2130,1762,0.78),
+(2132,173,9.7),
+(2132,254,2.35),
+(2132,435,2.35),
+(2132,436,2.35),
+(2132,437,2.35),
+(2132,517,6.1),
+(2132,518,6.1),
+(2132,519,6.1),
+(2132,520,6.1),
+(2132,602,7.5),
+(2132,603,7.5),
+(2132,604,7.5),
+(2132,605,7.5),
+(2132,687,4.97),
+(2132,688,4.97),
+(2132,689,4.97),
+(2132,690,4.97),
+(2132,1742,0.71),
+(2132,1743,0.71),
+(2132,1744,0.71),
+(2132,1745,0.71),
+(2132,1746,0.71),
+(2132,1747,0.71),
+(2132,1763,0.71),
+(2132,1764,0.71),
+(2132,1765,0.71),
+(2133,173,5.3),
+(2133,211,5.3),
+(2133,437,2.3),
+(2133,438,2.3),
+(2133,439,2.3),
+(2133,440,2.3),
+(2133,520,5.6),
+(2133,521,5.6),
+(2133,522,5.6),
+(2133,523,5.6),
+(2133,605,7.75),
+(2133,606,7.75),
+(2133,607,7.75),
+(2133,608,7.75),
+(2133,690,4.95),
+(2133,691,4.95),
+(2133,692,4.95),
+(2133,693,4.95),
+(2133,1742,0.58),
+(2133,1743,0.58),
+(2133,1744,0.58),
+(2133,1745,0.58),
+(2133,1746,0.58),
+(2133,1747,0.58),
+(2133,1763,0.58),
+(2133,1764,0.58),
+(2133,1765,0.58),
+(2133,1766,0.58),
+(2133,1767,0.58),
+(2133,1768,0.58),
+(2134,211,6.05),
+(2134,212,6.05),
+(2134,437,1.83),
+(2134,438,1.83),
+(2134,439,1.83),
+(2134,440,1.83),
+(2134,520,4.63),
+(2134,521,4.63),
+(2134,522,4.63),
+(2134,523,4.63),
+(2134,605,8.85),
+(2134,606,8.85),
+(2134,607,8.85),
+(2134,608,8.85),
+(2134,690,4.9),
+(2134,691,4.9),
+(2134,692,4.9),
+(2134,693,4.9),
+(2134,1742,0.78),
+(2134,1743,0.78),
+(2134,1744,0.78),
+(2134,1745,0.78),
+(2134,1746,0.78),
+(2134,1747,0.78),
+(2134,1766,0.78),
+(2134,1767,0.78),
+(2134,1768,0.78),
+(2134,1813,0.1),
+(2134,1889,0.1),
+(2136,267,17.8),
+(2136,440,1.77),
+(2136,441,1.77),
+(2136,442,1.77),
+(2136,443,1.77),
+(2136,523,3.15),
+(2136,524,3.15),
+(2136,525,3.15),
+(2136,526,3.15),
+(2136,608,8.82),
+(2136,609,8.82),
+(2136,610,8.82),
+(2136,611,8.82),
+(2136,693,4.78),
+(2136,694,4.78),
+(2136,695,4.78),
+(2136,696,4.78),
+(2136,863,0.03),
+(2136,864,0.03),
+(2136,865,0.03),
+(2136,866,0.03),
+(2136,951,0.1),
+(2136,1035,0.1),
+(2136,1203,0.03),
+(2136,1204,0.03),
+(2136,1205,0.03),
+(2136,1206,0.03),
+(2136,1328,0.1),
+(2136,1466,0.1),
+(2136,1512,0.1),
+(2136,1742,0.88),
+(2136,1743,0.88),
+(2136,1744,0.88),
+(2136,1745,0.88),
+(2136,1746,0.88),
+(2136,1747,0.88),
+(2136,1769,0.88),
+(2136,1770,0.88),
+(2136,1771,0.88),
+(3241,26,5.45),
+(3241,28,5.05),
+(3241,94,5.45),
+(3241,95,5.05),
+(3241,757,36.2),
+(3241,842,18.1),
+(3241,1012,15.5),
+(3241,2067,1.55),
+(3241,2068,1.55),
+(3241,2069,1.55),
+(3241,2070,1.55),
+(3241,2071,1.55),
+(3241,2072,1.55),
+(3242,94,5.8),
+(3242,95,4.7),
+(3242,112,5.8),
+(3242,113,4.7),
+(3242,757,8.73),
+(3242,758,8.73),
+(3242,759,8.73),
+(3242,760,8.73),
+(3242,842,4.57),
+(3242,843,4.57),
+(3242,844,4.57),
+(3242,845,4.57),
+(3242,1012,4.28),
+(3242,1013,4.28),
+(3242,1014,4.28),
+(3242,1015,4.28),
+(3242,2070,2.93),
+(3242,2071,2.93),
+(3242,2072,2.93),
+(3243,112,9.4),
+(3243,113,12.7),
+(3243,760,8.6),
+(3243,761,8.6),
+(3243,762,8.6),
+(3243,763,8.6),
+(3243,845,3.75),
+(3243,846,3.75),
+(3243,847,3.75),
+(3243,848,3.75),
+(3243,1015,5.4),
+(3243,1016,5.4),
+(3243,1017,5.4),
+(3243,1018,5.4),
+(3243,2070,2.27),
+(3243,2071,2.27),
+(3243,2072,2.27),
+(3244,133,7.8),
+(3244,134,12.4),
+(3244,760,8.95),
+(3244,761,8.95),
+(3244,762,8.95),
+(3244,763,8.95),
+(3244,845,3.58),
+(3244,846,3.58),
+(3244,847,3.58),
+(3244,848,3.58),
+(3244,1015,5.6),
+(3244,1016,5.6),
+(3244,1017,5.6),
+(3244,1018,5.6),
+(3244,2070,2.47),
+(3244,2071,2.47),
+(3244,2072,2.47),
+(3246,152,4.35),
+(3246,153,6.1),
+(3246,174,4.35),
+(3246,179,6.1),
+(3246,763,9.55),
+(3246,764,9.55),
+(3246,765,9.55),
+(3246,766,9.55),
+(3246,848,3),
+(3246,849,3),
+(3246,850,3),
+(3246,851,3),
+(3246,1018,5.47),
+(3246,1019,5.47),
+(3246,1020,5.47),
+(3246,1021,5.47),
+(3246,2073,3.55),
+(3246,2074,3.55),
+(3247,174,4.7),
+(3247,175,4.7),
+(3247,179,5.8),
+(3247,180,5.8),
+(3247,766,9.52),
+(3247,767,9.52),
+(3247,768,9.52),
+(3247,769,9.52),
+(3247,851,2.92),
+(3247,852,2.92),
+(3247,853,2.92),
+(3247,854,2.92),
+(3247,1021,5.6),
+(3247,1022,5.6),
+(3247,1023,5.6),
+(3247,1024,5.6),
+(3247,2073,1.38),
+(3247,2074,1.38),
+(3247,2075,1.38),
+(3247,2076,1.38),
+(3247,2077,1.38),
+(3248,175,3.85),
+(3248,176,3.85),
+(3248,180,4.35),
+(3248,181,4.35),
+(3248,769,41.8),
+(3248,854,18.7),
+(3248,1024,17.6),
+(3248,2075,1.83),
+(3248,2076,1.83),
+(3248,2077,1.83),
+(3249,176,7.9),
+(3249,181,14.4),
+(3249,769,8.63),
+(3249,770,8.63),
+(3249,771,8.63),
+(3249,772,8.63),
+(3249,854,2.5),
+(3249,855,2.5),
+(3249,856,2.5),
+(3249,857,2.5),
+(3249,1024,6.07),
+(3249,1025,6.07),
+(3249,1026,6.07),
+(3249,1027,6.07),
+(3249,2075,2.97),
+(3249,2076,2.97),
+(3249,2077,2.97),
+(3250,177,7.3),
+(3250,182,14.4),
+(3250,772,8.43),
+(3250,773,8.43),
+(3250,774,8.43),
+(3250,775,8.43),
+(3250,857,2.38),
+(3250,858,2.38),
+(3250,859,2.38),
+(3250,860,2.38),
+(3250,1027,6.53),
+(3250,1028,6.53),
+(3250,1029,6.53),
+(3250,1030,6.53),
+(3250,2075,2.97),
+(3250,2076,2.97),
+(3250,2077,2.97),
+(3251,178,7.8),
+(3251,183,11.7),
+(3251,772,8.98),
+(3251,773,8.98),
+(3251,774,8.98),
+(3251,775,8.98),
+(3251,857,2.92),
+(3251,858,2.92),
+(3251,859,2.92),
+(3251,860,2.92),
+(3251,1027,6.07),
+(3251,1028,6.07),
+(3251,1029,6.07),
+(3251,1030,6.07),
+(3251,2078,4.3),
+(3251,2079,4.3),
+(3253,213,3.02),
+(3253,214,4.35),
+(3253,215,6),
+(3253,216,3.85),
+(3253,775,8.68),
+(3253,776,8.68),
+(3253,777,6.89),
+(3253,778,6.89),
+(3253,860,3.13),
+(3253,861,4.11),
+(3253,862,3.13),
+(3253,863,3.13),
+(3253,1030,11.5),
+(3253,1031,11.5),
+(3253,1032,11.5),
+(3253,1033,11.5),
+(3253,2078,2.14),
+(3253,2079,2.14),
+(3253,2080,2.14),
+(3253,2081,2.14),
+(3253,2082,2.14),
+(3254,214,6.35),
+(3254,216,4.45),
+(3254,383,6.35),
+(3254,409,4.45),
+(3254,778,8.3),
+(3254,779,8.3),
+(3254,780,8.3),
+(3254,781,8.3),
+(3254,863,4.25),
+(3254,864,4.25),
+(3254,865,4.25),
+(3254,866,4.25),
+(3254,1033,5.13),
+(3254,1034,5.13),
+(3254,1035,5.13),
+(3254,1036,5.13),
+(3254,1205,0.1),
+(3254,1419,0.1),
+(3254,1719,0.1),
+(3254,2080,2.63),
+(3254,2081,2.63),
+(3254,2082,2.63),
+(3255,333,0.1),
+(3255,383,10.8),
+(3255,409,6.1),
+(3255,443,0.1),
+(3255,526,0.1),
+(3255,611,0.1),
+(3255,778,9.35),
+(3255,779,9.35),
+(3255,780,9.35),
+(3255,781,9.35),
+(3255,863,6.72),
+(3255,864,6.72),
+(3255,865,6.72),
+(3255,866,6.72),
+(3255,1033,3.45),
+(3255,1034,3.45),
+(3255,1035,3.45),
+(3255,1036,3.45),
+(3255,1121,0.1),
+(3255,1420,0.1),
+(3255,1466,0.1),
+(3255,1557,0.1),
+(3255,1719,0.1),
+(3255,2004,0.1),
+(3255,2042,0.1),
+(3255,2080,1.6),
+(3255,2081,1.6),
+(3255,2082,1.6),
+(3256,384,13.3),
+(3256,410,8.2),
+(3256,781,9.25),
+(3256,782,9.25),
+(3256,783,9.25),
+(3256,784,9.25),
+(3256,866,4.95),
+(3256,867,4.95),
+(3256,868,4.95),
+(3256,869,4.95),
+(3256,1036,4),
+(3256,1037,4),
+(3256,1038,4),
+(3256,1039,4),
+(3256,2080,1.9),
+(3256,2081,1.9),
+(3256,2082,1.9),
+(3259,96,3.6),
+(3259,97,4.75),
+(3259,114,3.6),
+(3259,115,4.75),
+(3259,927,4.95),
+(3259,928,4.95),
+(3259,929,4.95),
+(3259,930,4.95),
+(3259,1097,5.75),
+(3259,1098,5.75),
+(3259,1099,5.75),
+(3259,1100,5.75),
+(3259,1182,7.6),
+(3259,1183,7.6),
+(3259,1184,7.6),
+(3259,1185,7.6),
+(3259,2105,2.02),
+(3259,2106,2.02),
+(3259,2107,2.02),
+(3259,2108,2.02),
+(3259,2109,2.02),
+(3260,114,8),
+(3260,115,10.9),
+(3260,845,0.1),
+(3260,930,4.5),
+(3260,931,4.5),
+(3260,932,4.5),
+(3260,933,4.5),
+(3260,1100,5.82),
+(3260,1101,5.82),
+(3260,1102,5.82),
+(3260,1103,5.82),
+(3260,1185,7.68),
+(3260,1186,7.68),
+(3260,1187,7.68),
+(3260,1188,7.68),
+(3260,2105,1.8),
+(3260,2106,1.8),
+(3260,2107,1.8),
+(3260,2108,1.8),
+(3260,2109,1.8),
+(3261,135,7.6),
+(3261,136,9.8),
+(3261,930,5.28),
+(3261,931,5.28),
+(3261,932,5.28),
+(3261,933,5.28),
+(3261,1100,5.65),
+(3261,1101,5.65),
+(3261,1102,5.65),
+(3261,1103,5.65),
+(3261,1185,8.13),
+(3261,1186,8.13),
+(3261,1187,8.13),
+(3261,1188,8.13),
+(3261,2110,1.63),
+(3261,2111,1.63),
+(3261,2112,1.63),
+(3261,2113,1.63),
+(3263,154,3.25),
+(3263,155,5.3),
+(3263,184,3.25),
+(3263,189,5.3),
+(3263,933,4.88),
+(3263,934,4.88),
+(3263,935,4.88),
+(3263,936,4.88),
+(3263,1103,6.53),
+(3263,1104,6.53),
+(3263,1105,6.53),
+(3263,1106,6.53),
+(3263,1188,7.22),
+(3263,1189,7.22),
+(3263,1190,7.22),
+(3263,1191,7.22),
+(3263,1408,0.1),
+(3263,2110,2.1),
+(3263,2111,2.1),
+(3263,2112,2.1),
+(3263,2113,2.1),
+(3264,184,3.6),
+(3264,185,3.6),
+(3264,189,5.35),
+(3264,190,5.35),
+(3264,936,4.78),
+(3264,937,4.78),
+(3264,938,4.78),
+(3264,939,4.78),
+(3264,1106,6.47),
+(3264,1107,6.47),
+(3264,1108,6.47),
+(3264,1109,6.47),
+(3264,1191,7.35),
+(3264,1192,7.35),
+(3264,1193,7.35),
+(3264,1194,7.35),
+(3264,2110,1.85),
+(3264,2111,1.85),
+(3264,2112,1.85),
+(3264,2113,1.85),
+(3265,185,3.55),
+(3265,186,3.55),
+(3265,190,5.35),
+(3265,191,5.35),
+(3265,939,19.5),
+(3265,1109,21.7),
+(3265,1194,33.9),
+(3265,2110,0.88),
+(3265,2111,0.88),
+(3265,2112,0.88),
+(3265,2113,0.88),
+(3265,2114,0.88),
+(3265,2115,0.88),
+(3265,2116,0.88),
+(3265,2117,0.88),
+(3267,187,7),
+(3267,192,10.4),
+(3267,942,4.6),
+(3267,943,4.6),
+(3267,944,4.6),
+(3267,945,4.6),
+(3267,1112,5.9),
+(3267,1113,5.9),
+(3267,1114,5.9),
+(3267,1115,5.9),
+(3267,1197,8.32),
+(3267,1198,8.32),
+(3267,1199,8.32),
+(3267,1200,8.32),
+(3267,2114,1.83),
+(3267,2115,1.83),
+(3267,2116,1.83),
+(3267,2117,1.83),
+(3268,188,6.6),
+(3268,193,10.8),
+(3268,942,4.68),
+(3268,943,4.68),
+(3268,944,4.68),
+(3268,945,4.68),
+(3268,1112,5.68),
+(3268,1113,5.68),
+(3268,1114,5.68),
+(3268,1115,5.68),
+(3268,1197,8.43),
+(3268,1198,8.43),
+(3268,1199,8.43),
+(3268,1200,8.43),
+(3268,2114,1.85),
+(3268,2115,1.85),
+(3268,2116,1.85),
+(3268,2117,1.85),
+(3269,188,3.9),
+(3269,193,5.35),
+(3269,217,3.9),
+(3269,219,5.35),
+(3269,520,0.1),
+(3269,945,4.7),
+(3269,946,4.7),
+(3269,947,4.7),
+(3269,948,4.7),
+(3269,1115,5.2),
+(3269,1116,5.2),
+(3269,1117,5.2),
+(3269,1118,5.2),
+(3269,1200,9),
+(3269,1201,9),
+(3269,1202,9),
+(3269,1203,9),
+(3269,1463,0.1),
+(3269,2114,1.52),
+(3269,2115,1.52),
+(3269,2116,1.52),
+(3269,2117,1.52),
+(3271,218,4.15),
+(3271,220,5.2),
+(3271,287,4.15),
+(3271,307,5.2),
+(3271,948,3.97),
+(3271,949,3.97),
+(3271,950,3.97),
+(3271,951,3.97),
+(3271,1118,4.85),
+(3271,1119,4.85),
+(3271,1120,4.85),
+(3271,1121,4.85),
+(3271,1203,9.38),
+(3271,1204,9.38),
+(3271,1205,9.38),
+(3271,1206,9.38),
+(3271,1326,0.1),
+(3271,2118,2.13),
+(3271,2119,2.13),
+(3271,2120,2.13),
+(3271,2121,2.13),
+(3272,267,0.1),
+(3272,287,9.4),
+(3272,307,11.2),
+(3272,384,0.1),
+(3272,410,0.1),
+(3272,441,0.1),
+(3272,524,0.1),
+(3272,609,0.05),
+(3272,611,0.05),
+(3272,781,0.1),
+(3272,865,0.1),
+(3272,948,4.05),
+(3272,949,4.05),
+(3272,950,4.05),
+(3272,951,4.05),
+(3272,1036,0.1),
+(3272,1118,2.95),
+(3272,1119,2.95),
+(3272,1120,2.95),
+(3272,1121,2.95),
+(3272,1203,11.65),
+(3272,1204,11.65),
+(3272,1205,11.65),
+(3272,1206,11.65),
+(3272,1328,0.1),
+(3272,1420,0.1),
+(3272,1466,0.1),
+(3272,1557,0.1),
+(3272,1890,0.1),
+(3272,1928,0.1),
+(3272,2041,0.1),
+(3272,2118,1.15),
+(3272,2119,1.15),
+(3272,2120,1.15),
+(3272,2121,1.15),
+(3281,133,3.2),
+(3281,134,6.4),
+(3281,152,3.2),
+(3281,153,6.4),
+(3281,933,5.05),
+(3281,934,5.05),
+(3281,935,5.05),
+(3281,936,5.05),
+(3281,1103,6.43),
+(3281,1104,6.43),
+(3281,1105,6.43),
+(3281,1106,6.43),
+(3281,1188,7.1),
+(3281,1189,7.1),
+(3281,1190,7.1),
+(3281,1191,7.1),
+(3281,1951,0.1),
+(3281,2110,1.65),
+(3281,2111,1.65),
+(3281,2112,1.65),
+(3281,2113,1.65),
+(3282,152,3.05),
+(3282,153,6.4),
+(3282,174,3.05),
+(3282,179,6.4),
+(3282,933,4.65),
+(3282,934,4.65),
+(3282,935,4.65),
+(3282,936,4.65),
+(3282,1103,6.4),
+(3282,1104,6.4),
+(3282,1105,6.4),
+(3282,1106,6.4),
+(3282,1188,7.5),
+(3282,1189,7.5),
+(3282,1190,7.5),
+(3282,1191,7.5),
+(3282,2110,1.73),
+(3282,2111,1.73),
+(3282,2112,1.73),
+(3282,2113,1.73),
+(3283,174,3.4),
+(3283,175,3.4),
+(3283,179,6.2),
+(3283,180,6.2),
+(3283,936,4.72),
+(3283,937,4.72),
+(3283,938,4.72),
+(3283,939,4.72),
+(3283,1106,6.68),
+(3283,1107,6.68),
+(3283,1108,6.68),
+(3283,1109,6.68),
+(3283,1191,6.93),
+(3283,1192,6.93),
+(3283,1193,6.93),
+(3283,1194,6.93),
+(3283,2110,1.88),
+(3283,2111,1.88),
+(3283,2112,1.88),
+(3283,2113,1.88),
+(3285,176,7.8),
+(3285,181,12.9),
+(3285,939,4.8),
+(3285,940,4.8),
+(3285,941,4.8),
+(3285,942,4.8),
+(3285,1109,6.6),
+(3285,1110,6.6),
+(3285,1111,6.6),
+(3285,1112,6.6),
+(3285,1194,6.4),
+(3285,1195,6.4),
+(3285,1196,6.4),
+(3285,1197,6.4),
+(3285,2114,2.05),
+(3285,2115,2.05),
+(3285,2116,2.05),
+(3285,2117,2.05),
+(3286,177,7.7),
+(3286,182,11.7),
+(3286,942,5.15),
+(3286,943,5.15),
+(3286,944,5.15),
+(3286,945,5.15),
+(3286,1112,6.05),
+(3286,1113,6.05),
+(3286,1114,6.05),
+(3286,1115,6.05),
+(3286,1197,7.05),
+(3286,1198,7.05),
+(3286,1199,7.05),
+(3286,1200,7.05),
+(3286,2114,1.98),
+(3286,2115,1.98),
+(3286,2116,1.98),
+(3286,2117,1.98),
+(3288,178,3.2),
+(3288,183,3.45),
+(3288,213,3.2),
+(3288,215,3.45),
+(3288,945,4.07),
+(3288,946,4.07),
+(3288,947,4.07),
+(3288,948,4.07),
+(3288,1115,4.53),
+(3288,1116,4.53),
+(3288,1117,4.53),
+(3288,1118,4.53),
+(3288,1200,5.53),
+(3288,1201,5.53),
+(3288,1202,5.53),
+(3288,1203,5.53),
+(3288,1318,0.15),
+(3288,1319,0.15),
+(3288,1364,0.2),
+(3288,1365,0.2),
+(3288,1410,0.25),
+(3288,1411,0.25),
+(3288,1456,0.15),
+(3288,1457,0.15),
+(3288,1502,0.15),
+(3288,1503,0.15),
+(3288,2114,7.07),
+(3288,2115,7.07),
+(3288,2116,7.07),
+(3288,2117,7.07),
+(3289,212,0.1),
+(3289,213,3.2),
+(3289,214,3.2),
+(3289,215,4.05),
+(3289,216,4.05),
+(3289,778,0.1),
+(3289,945,3.13),
+(3289,946,3.13),
+(3289,947,3.13),
+(3289,948,3.13),
+(3289,1115,3.88),
+(3289,1116,3.88),
+(3289,1117,3.88),
+(3289,1118,3.88),
+(3289,1200,6.1),
+(3289,1201,6.1),
+(3289,1202,6.1),
+(3289,1203,6.1),
+(3289,1319,0.15),
+(3289,1320,0.15),
+(3289,1365,0.2),
+(3289,1366,0.2),
+(3289,1411,0.2),
+(3289,1412,0.2),
+(3289,1457,0.5),
+(3289,1458,0.5),
+(3289,1503,0.15),
+(3289,1504,0.15),
+(3289,1851,0.1),
+(3289,2114,3.85),
+(3289,2115,3.85),
+(3289,2116,3.85),
+(3289,2117,3.85),
+(3289,2118,3.85),
+(3289,2119,3.85),
+(3289,2120,3.85),
+(3289,2121,3.85),
+(3291,307,0.1),
+(3291,333,0.1),
+(3291,358,0.1),
+(3291,383,9.3),
+(3291,409,4.3),
+(3291,442,0.1),
+(3291,524,0.1),
+(3291,611,0.1),
+(3291,693,0.03),
+(3291,694,0.03),
+(3291,695,0.03),
+(3291,696,0.03),
+(3291,948,3.22),
+(3291,949,3.22),
+(3291,950,3.22),
+(3291,951,3.22),
+(3291,1034,0.05),
+(3291,1036,0.05),
+(3291,1118,3.1),
+(3291,1119,3.1),
+(3291,1120,3.1),
+(3291,1121,3.1),
+(3291,1203,9.18),
+(3291,1204,9.18),
+(3291,1205,9.18),
+(3291,1206,9.18),
+(3291,1321,0.3),
+(3291,1367,0.2),
+(3291,1413,0.7),
+(3291,1459,0.4),
+(3291,1505,0.6),
+(3291,2118,5.45),
+(3291,2119,5.45),
+(3291,2120,5.45),
+(3291,2121,5.45),
+(3295,1098,0.1),
+(3295,1310,8.8),
+(3295,1311,8.8),
+(3295,1356,9.8),
+(3295,1357,9.8),
+(3295,1402,12.45),
+(3295,1403,12.45),
+(3295,1448,9.55),
+(3295,1449,9.55),
+(3295,1494,9.35),
+(3295,1495,9.35),
+(3296,1311,8.65),
+(3296,1312,8.65),
+(3296,1357,9.25),
+(3296,1358,9.25),
+(3296,1403,13),
+(3296,1404,13),
+(3296,1449,9.5),
+(3296,1450,9.5),
+(3296,1495,9.5),
+(3296,1496,9.5),
+(3296,1708,0.1),
+(3297,1312,8.65),
+(3297,1313,8.65),
+(3297,1358,9.25),
+(3297,1359,9.25),
+(3297,1404,13.8),
+(3297,1405,13.8),
+(3297,1450,8.9),
+(3297,1451,8.9),
+(3297,1496,9.45),
+(3297,1497,9.45),
+(3298,1314,16.8),
+(3298,1360,19.4),
+(3298,1406,26.8),
+(3298,1452,17.8),
+(3298,1498,19.1),
+(3300,1316,7.85),
+(3300,1317,7.85),
+(3300,1362,10.1),
+(3300,1363,10.1),
+(3300,1408,13.65),
+(3300,1409,13.65),
+(3300,1454,8.75),
+(3300,1455,8.75),
+(3300,1500,9.7),
+(3300,1501,9.7),
+(3301,1317,7.7),
+(3301,1318,7.7),
+(3301,1363,9.8),
+(3301,1364,9.8),
+(3301,1409,13.55),
+(3301,1410,13.55),
+(3301,1455,8.95),
+(3301,1456,8.95),
+(3301,1501,10),
+(3301,1502,10),
+(3302,1318,7.7),
+(3302,1319,7.7),
+(3302,1364,10.75),
+(3302,1365,10.75),
+(3302,1410,12.85),
+(3302,1411,12.85),
+(3302,1456,8.8),
+(3302,1457,8.8),
+(3302,1502,9.85),
+(3302,1503,9.85),
+(3303,1319,7.1),
+(3303,1320,7.1),
+(3303,1365,10.3),
+(3303,1366,10.3),
+(3303,1411,13.5),
+(3303,1412,13.5),
+(3303,1457,8.8),
+(3303,1458,8.8),
+(3303,1503,10.25),
+(3303,1504,10.25),
+(3304,1320,9.84),
+(3304,1321,9.84),
+(3304,1366,9.93),
+(3304,1367,9.93),
+(3304,1412,9.84),
+(3304,1413,9.84),
+(3304,1458,10.1),
+(3304,1459,10.1),
+(3304,1504,10.34),
+(3304,1505,10.34),
+(3305,1321,7),
+(3305,1322,7),
+(3305,1367,11.85),
+(3305,1368,11.85),
+(3305,1413,12.7),
+(3305,1414,12.7),
+(3305,1459,8.2),
+(3305,1460,8.2),
+(3305,1505,10.2),
+(3305,1506,10.2),
+(3306,1323,14.3),
+(3306,1369,22.15),
+(3306,1415,22.9),
+(3306,1461,18.9),
+(3306,1507,21.7),
+(3307,1201,0.1),
+(3307,1324,12.7),
+(3307,1370,23.2),
+(3307,1416,26.2),
+(3307,1462,16.7),
+(3307,1508,21.1),
+(3308,441,0.1),
+(3308,1325,6.7),
+(3308,1326,6.7),
+(3308,1371,12.65),
+(3308,1372,12.65),
+(3308,1417,11.3),
+(3308,1418,11.3),
+(3308,1463,8.65),
+(3308,1464,8.65),
+(3308,1509,10.75),
+(3308,1510,10.75),
+(3308,2110,0.03),
+(3308,2111,0.03),
+(3308,2112,0.03),
+(3308,2113,0.03),
+(3309,441,0.1),
+(3309,524,0.05),
+(3309,526,0.05),
+(3309,865,0.1),
+(3309,949,0.05),
+(3309,951,0.05),
+(3309,1036,0.1),
+(3309,1203,0.03),
+(3309,1204,0.03),
+(3309,1205,0.03),
+(3309,1206,0.03),
+(3309,1326,6.15),
+(3309,1327,6.15),
+(3309,1372,12.7),
+(3309,1373,12.7),
+(3309,1418,12.7),
+(3309,1419,12.7),
+(3309,1464,7.95),
+(3309,1465,7.95),
+(3309,1510,6.97),
+(3309,1511,6.97),
+(3309,1512,6.97),
+(3309,1557,0.1),
+(3309,1719,0.1),
+(3309,1851,0.1),
+(3309,2003,0.1),
+(3310,139,0.1),
+(3310,445,0.1),
+(3310,526,0.1),
+(3310,868,0.1),
+(3310,1037,0.1),
+(3310,1122,0.1),
+(3310,1206,0.1),
+(3310,1327,6.95),
+(3310,1328,6.95),
+(3310,1373,10.4),
+(3310,1374,10.4),
+(3310,1419,9.63),
+(3310,1420,9.63),
+(3310,1421,9.63),
+(3310,1465,8.25),
+(3310,1466,8.25),
+(3310,1511,6.57),
+(3310,1512,6.57),
+(3310,1513,6.57),
+(3310,1720,0.1),
+(3310,1814,0.1),
+(3310,1966,0.1),
+(3325,1324,19.4),
+(3325,1370,27.4),
+(3325,1416,18.5),
+(3325,1462,17.8),
+(3325,1508,16.9),
+(3441,1320,8.6),
+(3441,1321,8.6),
+(3441,1366,9.9),
+(3441,1367,9.9),
+(3441,1412,12.7),
+(3441,1413,12.7),
+(3441,1458,6.5),
+(3441,1459,6.5),
+(3441,1504,12.3),
+(3441,1505,12.3),
+(3458,1321,24.2),
+(3458,1367,14),
+(3458,1413,19.7),
+(3458,1459,19.7),
+(3458,1505,22.3),
+(3461,308,3.65),
+(3461,333,3),
+(3461,358,4.5),
+(3461,384,2.8),
+(3461,410,2.22),
+(3461,411,0.95),
+(3461,443,0.81),
+(3461,444,0.81),
+(3461,445,0.81),
+(3461,446,0.81),
+(3461,526,1.68),
+(3461,527,1.68),
+(3461,528,1.68),
+(3461,529,1.68),
+(3461,611,2.71),
+(3461,612,2.71),
+(3461,613,2.71),
+(3461,614,2.71),
+(3461,696,1.68),
+(3461,697,1.68),
+(3461,698,1.68),
+(3461,699,1.68),
+(3461,781,2.73),
+(3461,782,2.73),
+(3461,783,2.73),
+(3461,784,2.73),
+(3461,866,1.33),
+(3461,867,1.33),
+(3461,868,1.33),
+(3461,869,1.33),
+(3461,951,1.64),
+(3461,952,1.64),
+(3461,953,1.64),
+(3461,954,1.64),
+(3461,1036,1.44),
+(3461,1037,1.44),
+(3461,1038,1.44),
+(3461,1039,1.44),
+(3461,1121,1.82),
+(3461,1122,1.82),
+(3461,1123,1.82),
+(3461,1124,1.82),
+(3461,1206,3.2),
+(3461,1207,3.2),
+(3461,1208,3.2),
+(3461,1209,3.2),
+(3461,1327,0.05),
+(3461,1328,0.05),
+(3461,1373,0.15),
+(3461,1374,0.15),
+(3461,1419,0.13),
+(3461,1420,0.13),
+(3461,1465,0.15),
+(3461,1466,0.15),
+(3461,1511,0.08),
+(3461,1512,0.08),
+(3461,1742,0.15),
+(3461,1743,0.15),
+(3461,1744,0.15),
+(3461,1745,0.15),
+(3461,1746,0.15),
+(3461,1747,0.15),
+(3461,1772,0.15),
+(3461,1773,0.15),
+(3461,1774,0.15),
+(3461,1775,0.15),
+(3461,1776,0.15),
+(3461,1777,0.15),
+(3461,1778,0.15),
+(3461,1779,0.15),
+(3461,1890,0.1),
+(3461,1967,0.1),
+(3461,2080,0.7),
+(3461,2081,0.7),
+(3461,2082,0.7),
+(3461,2118,0.54),
+(3461,2119,0.54),
+(3461,2120,0.54),
+(3461,2121,0.54),
+(3462,308,1.25),
+(3462,309,1.25),
+(3462,333,2),
+(3462,358,3.5),
+(3462,384,2.1),
+(3462,410,1.7),
+(3462,443,0.55),
+(3462,444,0.55),
+(3462,445,0.55),
+(3462,446,0.55),
+(3462,526,0.9),
+(3462,527,0.9),
+(3462,528,0.9),
+(3462,529,0.9),
+(3462,611,2.88),
+(3462,612,2.88),
+(3462,613,2.88),
+(3462,614,2.88),
+(3462,696,1.75),
+(3462,697,1.75),
+(3462,698,1.75),
+(3462,699,1.75),
+(3462,781,1.9),
+(3462,782,1.9),
+(3462,783,1.9),
+(3462,784,1.9),
+(3462,866,1.48),
+(3462,867,1.48),
+(3462,868,1.48),
+(3462,869,1.48),
+(3462,951,1.5),
+(3462,952,1.5),
+(3462,953,1.5),
+(3462,954,1.5),
+(3462,1036,0.95),
+(3462,1037,0.95),
+(3462,1038,0.95),
+(3462,1039,0.95),
+(3462,1121,0.63),
+(3462,1122,0.63),
+(3462,1123,0.63),
+(3462,1124,0.63),
+(3462,1206,2.9),
+(3462,1207,2.9),
+(3462,1208,2.9),
+(3462,1209,2.9),
+(3462,1322,0.15),
+(3462,1323,0.15),
+(3462,1368,0.6),
+(3462,1414,0.6),
+(3462,1460,0.6),
+(3462,1506,0.3),
+(3462,1742,0.82),
+(3462,1743,0.82),
+(3462,1744,0.82),
+(3462,1745,0.82),
+(3462,1746,0.82),
+(3462,1747,0.82),
+(3462,1772,0.82),
+(3462,1773,0.82),
+(3462,1774,0.82),
+(3462,1775,0.82),
+(3462,1776,0.82),
+(3462,1777,0.82),
+(3462,1778,0.82),
+(3462,1779,0.82),
+(3462,1890,0.1),
+(3462,1928,0.05),
+(3462,1929,0.05),
+(3462,1967,0.1),
+(3462,2043,0.1),
+(3462,2080,2.17),
+(3462,2081,2.17),
+(3462,2082,2.17),
+(3462,2118,1.52),
+(3462,2119,1.52),
+(3462,2120,1.52),
+(3462,2121,1.52),
+(3463,132,2.7),
+(3463,133,2.5),
+(3463,134,4.2),
+(3463,135,2.4),
+(3463,136,3.8),
+(3463,234,0.68),
+(3463,235,0.68),
+(3463,236,0.68),
+(3463,248,0.68),
+(3463,505,1.8),
+(3463,506,1.8),
+(3463,507,1.8),
+(3463,508,1.8),
+(3463,590,2.15),
+(3463,591,2.15),
+(3463,592,2.15),
+(3463,593,2.15),
+(3463,675,1.25),
+(3463,676,1.25),
+(3463,677,1.25),
+(3463,678,1.25),
+(3463,760,3.67),
+(3463,761,3.67),
+(3463,762,3.67),
+(3463,763,3.67),
+(3463,845,1.15),
+(3463,846,1.15),
+(3463,847,1.15),
+(3463,848,1.15),
+(3463,930,1.83),
+(3463,931,1.83),
+(3463,932,1.83),
+(3463,933,1.83),
+(3463,1015,1.65),
+(3463,1016,1.65),
+(3463,1017,1.65),
+(3463,1018,1.65),
+(3463,1100,1.98),
+(3463,1101,1.98),
+(3463,1102,1.98),
+(3463,1103,1.98),
+(3463,1185,3),
+(3463,1186,3),
+(3463,1187,3),
+(3463,1188,3),
+(3463,1312,0.3),
+(3463,1358,0.5),
+(3463,1404,0.4),
+(3463,1450,0.2),
+(3463,1496,0.3),
+(3463,1742,0.12),
+(3463,1743,0.12),
+(3463,1744,0.12),
+(3463,1745,0.12),
+(3463,1746,0.12),
+(3463,1747,0.12),
+(3463,1751,0.12),
+(3463,1752,0.12),
+(3463,1753,0.12),
+(3463,2070,0.9),
+(3463,2071,0.9),
+(3463,2072,0.9),
+(3463,2110,0.52),
+(3463,2111,0.52),
+(3463,2112,0.52),
+(3463,2113,0.52),
+(3476,132,2),
+(3476,133,2.9),
+(3476,134,2.7),
+(3476,135,2.3),
+(3476,136,3.2),
+(3476,234,0.85),
+(3476,235,0.85),
+(3476,236,1.68),
+(3476,248,1.68),
+(3476,505,2.41),
+(3476,506,2.41),
+(3476,507,2.41),
+(3476,508,2.41),
+(3476,590,2.49),
+(3476,591,2.49),
+(3476,592,2.49),
+(3476,593,2.49),
+(3476,675,1.54),
+(3476,676,1.54),
+(3476,677,1.54),
+(3476,678,1.54),
+(3476,760,3.34),
+(3476,761,3.34),
+(3476,762,3.34),
+(3476,763,3.34),
+(3476,845,0.99),
+(3476,846,0.99),
+(3476,847,0.99),
+(3476,848,0.99),
+(3476,930,1.51),
+(3476,931,1.51),
+(3476,932,1.51),
+(3476,933,1.51),
+(3476,1015,2),
+(3476,1016,2),
+(3476,1017,2.02),
+(3476,1018,2.02),
+(3476,1100,1.74),
+(3476,1101,1.74),
+(3476,1102,1.74),
+(3476,1103,1.74),
+(3476,1185,2.77),
+(3476,1186,2.77),
+(3476,1187,2.77),
+(3476,1188,2.77),
+(3476,1314,0.3),
+(3476,1360,0.3),
+(3476,1406,0.4),
+(3476,1452,0.3),
+(3476,1498,0.55),
+(3476,1742,0.27),
+(3476,1743,0.27),
+(3476,1744,0.27),
+(3476,1745,0.27),
+(3476,1746,0.27),
+(3476,1747,0.27),
+(3476,1751,0.27),
+(3476,1752,0.27),
+(3476,1753,0.27),
+(3476,2070,0.82),
+(3476,2071,0.82),
+(3476,2072,0.82),
+(3476,2110,0.85),
+(3476,2111,0.85),
+(3476,2112,0.85),
+(3476,2113,0.85),
+(3481,171,3.1),
+(3481,176,4.2),
+(3481,181,2.7),
+(3481,186,2.2),
+(3481,191,2.2),
+(3481,251,1.02),
+(3481,253,1.02),
+(3481,254,1.02),
+(3481,255,1.02),
+(3481,514,1.55),
+(3481,515,1.55),
+(3481,516,1.55),
+(3481,517,1.55),
+(3481,599,3.08),
+(3481,600,3.08),
+(3481,601,3.08),
+(3481,602,3.08),
+(3481,684,1.65),
+(3481,685,1.65),
+(3481,686,1.65),
+(3481,687,1.65),
+(3481,769,3.38),
+(3481,770,3.38),
+(3481,771,3.38),
+(3481,772,3.38),
+(3481,854,1.25),
+(3481,855,1.25),
+(3481,856,1.25),
+(3481,857,1.25),
+(3481,939,1.7),
+(3481,940,1.7),
+(3481,941,1.7),
+(3481,942,1.7),
+(3481,1024,1.65),
+(3481,1025,1.65),
+(3481,1026,1.65),
+(3481,1027,1.65),
+(3481,1109,1.58),
+(3481,1110,1.58),
+(3481,1111,1.58),
+(3481,1112,1.58),
+(3481,1194,3.35),
+(3481,1195,3.35),
+(3481,1196,3.35),
+(3481,1197,3.35),
+(3481,1319,0.3),
+(3481,1458,0.2),
+(3481,1503,0.3),
+(3481,1742,0.16),
+(3481,1743,0.16),
+(3481,1744,0.16),
+(3481,1745,0.16),
+(3481,1746,0.16),
+(3481,1747,0.16),
+(3481,1760,0.16),
+(3481,1761,0.16),
+(3481,1762,0.16),
+(3481,2075,0.4),
+(3481,2076,0.4),
+(3481,2077,0.4),
+(3481,2114,0.3),
+(3481,2115,0.3),
+(3481,2116,0.3),
+(3481,2117,0.3),
+(3482,172,2.2),
+(3482,177,2.9),
+(3482,182,4.6),
+(3482,187,3.2),
+(3482,192,3.6),
+(3482,254,0.77),
+(3482,435,0.77),
+(3482,436,0.77),
+(3482,437,0.77),
+(3482,517,1.9),
+(3482,518,1.9),
+(3482,519,1.9),
+(3482,520,1.9),
+(3482,602,1.67),
+(3482,603,1.67),
+(3482,604,1.67),
+(3482,605,1.67),
+(3482,687,1.15),
+(3482,688,1.15),
+(3482,689,1.15),
+(3482,690,1.15),
+(3482,772,3.55),
+(3482,773,3.55),
+(3482,774,3.55),
+(3482,775,3.55),
+(3482,857,1.1),
+(3482,858,1.1),
+(3482,859,1.1),
+(3482,860,1.1),
+(3482,942,1.75),
+(3482,943,1.75),
+(3482,944,1.75),
+(3482,945,1.75),
+(3482,1027,2.05),
+(3482,1028,2.05),
+(3482,1029,2.05),
+(3482,1030,2.05),
+(3482,1112,2.2),
+(3482,1113,2.2),
+(3482,1114,2.2),
+(3482,1115,2.2),
+(3482,1197,2.5),
+(3482,1198,2.5),
+(3482,1199,2.5),
+(3482,1200,2.5),
+(3482,1320,0.15),
+(3482,1321,0.15),
+(3482,1366,0.15),
+(3482,1367,0.15),
+(3482,1412,0.15),
+(3482,1413,0.15),
+(3482,1458,0.15),
+(3482,1459,0.15),
+(3482,1504,0.15),
+(3482,1505,0.15),
+(3482,1742,0.17),
+(3482,1743,0.17),
+(3482,1744,0.17),
+(3482,1745,0.17),
+(3482,1746,0.17),
+(3482,1747,0.17),
+(3482,1760,0.17),
+(3482,1761,0.17),
+(3482,1762,0.17),
+(3482,1763,0.17),
+(3482,1764,0.17),
+(3482,1765,0.17),
+(3482,2075,0.87),
+(3482,2076,0.87),
+(3482,2077,0.87),
+(3482,2114,0.73),
+(3482,2115,0.73),
+(3482,2116,0.73),
+(3482,2117,0.73),
+(3484,173,1.4),
+(3484,178,0.9),
+(3484,183,1.15),
+(3484,188,1.9),
+(3484,193,1.3),
+(3484,211,1.4),
+(3484,213,0.9),
+(3484,215,1.15),
+(3484,217,1.9),
+(3484,219,6.75),
+(3484,437,1.73),
+(3484,438,1.05),
+(3484,439,1.05),
+(3484,440,1.05),
+(3484,520,2.63),
+(3484,521,2.63),
+(3484,522,1.6),
+(3484,523,1.6),
+(3484,605,4.96),
+(3484,606,4.96),
+(3484,607,4.96),
+(3484,608,4.96),
+(3484,690,1.45),
+(3484,691,1.93),
+(3484,692,1.45),
+(3484,693,1.45),
+(3484,775,4.29),
+(3484,776,3.72),
+(3484,777,4.29),
+(3484,778,3.72),
+(3484,860,2.03),
+(3484,861,2.03),
+(3484,862,2.03),
+(3484,863,2.03),
+(3484,945,4.38),
+(3484,946,1.45),
+(3484,947,4.38),
+(3484,948,1.45),
+(3484,1030,1.2),
+(3484,1031,1.2),
+(3484,1032,1.2),
+(3484,1033,1.2),
+(3484,1115,1.52),
+(3484,1116,1.52),
+(3484,1117,1.52),
+(3484,1118,1.52),
+(3484,1200,4.34),
+(3484,1201,4.34),
+(3484,1202,3.83),
+(3484,1203,3.83),
+(3484,1369,0.2),
+(3484,1415,0.1),
+(3484,1461,2.7),
+(3484,1507,0.1),
+(3484,1742,0.08),
+(3484,1743,0.08),
+(3484,1744,0.08),
+(3484,1745,0.08),
+(3484,1746,0.08),
+(3484,1747,0.08),
+(3484,1763,0.08),
+(3484,1764,0.08),
+(3484,1765,0.08),
+(3484,1766,0.08),
+(3484,1767,0.08),
+(3484,1768,0.08),
+(3484,2078,2.3),
+(3484,2079,2.3),
+(3484,2114,0.28),
+(3484,2115,0.28),
+(3484,2116,0.28),
+(3484,2117,0.28),
+(3486,212,2.45),
+(3486,214,0.85),
+(3486,216,1.4),
+(3486,218,0.95),
+(3486,220,0.8),
+(3486,267,2.45),
+(3486,287,0.95),
+(3486,307,0.8),
+(3486,383,0.85),
+(3486,409,1.4),
+(3486,440,0.63),
+(3486,441,0.63),
+(3486,442,0.63),
+(3486,443,0.63),
+(3486,523,1.67),
+(3486,524,1.67),
+(3486,525,1.67),
+(3486,526,1.67),
+(3486,608,3.13),
+(3486,609,3.13),
+(3486,610,3.13),
+(3486,611,3.13),
+(3486,693,1.77),
+(3486,694,1.77),
+(3486,695,1.77),
+(3486,696,1.77),
+(3486,778,3.58),
+(3486,779,3.58),
+(3486,780,3.58),
+(3486,781,3.58),
+(3486,863,2.15),
+(3486,864,2.15),
+(3486,865,2.15),
+(3486,866,2.15),
+(3486,948,0.9),
+(3486,949,0.9),
+(3486,950,0.9),
+(3486,951,0.9),
+(3486,1033,2.92),
+(3486,1034,2.92),
+(3486,1035,2.92),
+(3486,1036,2.92),
+(3486,1118,1.17),
+(3486,1119,1.17),
+(3486,1120,1.17),
+(3486,1121,1.17),
+(3486,1203,2.6),
+(3486,1204,2.6),
+(3486,1205,2.6),
+(3486,1206,2.6),
+(3486,1371,0.5),
+(3486,1417,0.2),
+(3486,1509,0.5),
+(3486,1742,0.13),
+(3486,1743,0.13),
+(3486,1744,0.13),
+(3486,1745,0.13),
+(3486,1746,0.13),
+(3486,1747,0.13),
+(3486,1769,0.13),
+(3486,1770,0.13),
+(3486,1771,0.13),
+(3486,2080,0.83),
+(3486,2081,0.83),
+(3486,2082,0.83),
+(3486,2118,0.17),
+(3486,2119,0.17),
+(3486,2120,0.17),
+(3486,2121,0.17),
+(3499,1316,22.75),
+(3499,1362,23.85),
+(3499,1408,18.25),
+(3499,1454,18.8),
+(3499,1500,16.45),
+(3506,133,3.15),
+(3506,134,2.5),
+(3506,136,1.9),
+(3506,151,2.5),
+(3506,152,3.15),
+(3506,153,2.5),
+(3506,154,1.3),
+(3506,155,1.9),
+(3506,237,2.5),
+(3506,510,2.5),
+(3506,593,1.6),
+(3506,594,1.6),
+(3506,595,1.6),
+(3506,596,1.6),
+(3506,678,2.85),
+(3506,679,2.85),
+(3506,680,2.85),
+(3506,681,2.85),
+(3506,763,5.05),
+(3506,764,5.05),
+(3506,765,5.05),
+(3506,766,5.05),
+(3506,848,1.3),
+(3506,933,1.6),
+(3506,934,1.6),
+(3506,935,1.6),
+(3506,936,1.6),
+(3506,1018,1.3),
+(3506,1020,1.3),
+(3506,1103,2.22),
+(3506,1104,2.22),
+(3506,1105,2.22),
+(3506,1106,2.22),
+(3506,1188,6.95),
+(3506,1189,6.95),
+(3506,1404,1.3),
+(3506,1451,1.3),
+(3506,2110,0.63),
+(3506,2111,0.63),
+(3506,2112,0.63),
+(3506,2113,0.63),
+(3513,193,6.1),
+(3513,211,9.1),
+(3513,437,9.1),
+(3513,522,3),
+(3513,605,2.25),
+(3513,606,2.25),
+(3513,607,2.25),
+(3513,608,2.25),
+(3513,690,7.6),
+(3513,692,7.6),
+(3513,775,9.1),
+(3513,860,9.1),
+(3513,946,3),
+(3513,1115,3),
+(3513,1200,3),
+(3513,1202,3),
+(3513,1318,3),
+(3513,1742,0.33),
+(3513,1743,0.33),
+(3513,1744,0.33),
+(3513,1745,0.33),
+(3513,1746,0.33),
+(3513,1747,0.33),
+(3513,1766,0.33),
+(3513,1767,0.33),
+(3513,1768,0.33),
+(3513,2078,1.5),
+(3513,2079,1.5),
+(3513,2114,2.28),
+(3513,2115,2.28),
+(3513,2116,2.28),
+(3513,2117,2.28),
+(3539,132,5.05),
+(3539,151,5.05),
+(3539,237,2.75),
+(3539,247,2.75),
+(3539,248,2.75),
+(3539,249,2.75),
+(3539,508,6.93),
+(3539,509,6.93),
+(3539,510,6.93),
+(3539,511,6.93),
+(3539,593,6.97),
+(3539,594,6.97),
+(3539,595,6.97),
+(3539,596,6.97),
+(3539,678,4.03),
+(3539,679,4.03),
+(3539,680,4.03),
+(3539,681,4.03),
+(3539,1742,0.59),
+(3539,1743,0.59),
+(3539,1744,0.59),
+(3539,1745,0.59),
+(3539,1746,0.59),
+(3539,1747,0.59),
+(3539,1751,0.59),
+(3539,1752,0.59),
+(3539,1753,0.59),
+(3539,1754,0.59),
+(3539,1755,0.59),
+(3539,1756,0.59),
+(3541,167,4.65),
+(3541,168,4.65),
+(3541,247,2.85),
+(3541,250,2.85),
+(3541,251,2.85),
+(3541,252,2.85),
+(3541,511,7.55),
+(3541,512,7.55),
+(3541,513,7.55),
+(3541,514,7.55),
+(3541,596,6.65),
+(3541,597,6.65),
+(3541,598,6.65),
+(3541,599,6.65),
+(3541,681,3.97),
+(3541,682,3.97),
+(3541,683,3.97),
+(3541,684,3.97),
+(3541,1742,0.56),
+(3541,1743,0.56),
+(3541,1744,0.56),
+(3541,1745,0.56),
+(3541,1746,0.56),
+(3541,1747,0.56),
+(3541,1754,0.56),
+(3541,1755,0.56),
+(3541,1756,0.56),
+(3541,1757,0.56),
+(3541,1758,0.56),
+(3541,1759,0.56),
+(3542,168,4.6),
+(3542,171,4.6),
+(3542,251,10.8),
+(3542,514,29.8),
+(3542,599,26.4),
+(3542,684,17),
+(3542,1742,0.76),
+(3542,1743,0.76),
+(3542,1744,0.76),
+(3542,1745,0.76),
+(3542,1746,0.76),
+(3542,1747,0.76),
+(3542,1757,0.76),
+(3542,1758,0.76),
+(3542,1759,0.76),
+(3544,172,7.6),
+(3544,254,2.83),
+(3544,435,2.83),
+(3544,436,2.83),
+(3544,437,2.83),
+(3544,517,7.53),
+(3544,518,7.53),
+(3544,519,7.53),
+(3544,520,7.53),
+(3544,602,6.5),
+(3544,603,6.5),
+(3544,604,6.5),
+(3544,605,6.5),
+(3544,687,4.55),
+(3544,688,4.55),
+(3544,689,4.55),
+(3544,690,4.55),
+(3544,1742,0.58),
+(3544,1743,0.58),
+(3544,1744,0.58),
+(3544,1745,0.58),
+(3544,1746,0.58),
+(3544,1747,0.58),
+(3544,1760,0.58),
+(3544,1761,0.58),
+(3544,1762,0.58),
+(3544,1763,0.58),
+(3544,1764,0.58),
+(3544,1765,0.58),
+(3545,173,8.9),
+(3545,254,2.72),
+(3545,435,2.72),
+(3545,436,2.72),
+(3545,437,2.72),
+(3545,517,6.32),
+(3545,518,6.32),
+(3545,519,6.32),
+(3545,520,6.32),
+(3545,602,7.15),
+(3545,603,7.15),
+(3545,604,7.15),
+(3545,605,7.15),
+(3545,687,4.68),
+(3545,688,4.68),
+(3545,689,4.68),
+(3545,690,4.68),
+(3545,1742,0.83),
+(3545,1743,0.83),
+(3545,1744,0.83),
+(3545,1745,0.83),
+(3545,1746,0.83),
+(3545,1747,0.83),
+(3545,1763,0.83),
+(3545,1764,0.83),
+(3545,1765,0.83),
+(3547,211,4.1),
+(3547,212,4.1),
+(3547,218,0.1),
+(3547,437,1.77),
+(3547,438,1.77),
+(3547,439,1.77),
+(3547,440,1.77),
+(3547,520,4.13),
+(3547,521,4.13),
+(3547,522,4.13),
+(3547,523,4.13),
+(3547,605,5.72),
+(3547,606,5.72),
+(3547,607,5.72),
+(3547,608,5.72),
+(3547,690,3.45),
+(3547,691,3.45),
+(3547,692,3.45),
+(3547,693,3.45),
+(3547,1319,0.1),
+(3547,1320,0.1),
+(3547,1365,0.2),
+(3547,1366,0.2),
+(3547,1411,0.25),
+(3547,1412,0.25),
+(3547,1457,0.25),
+(3547,1458,0.25),
+(3547,1503,0.2),
+(3547,1504,0.2),
+(3547,1717,0.1),
+(3547,1742,3.28),
+(3547,1743,3.28),
+(3547,1744,3.28),
+(3547,1745,3.28),
+(3547,1746,3.28),
+(3547,1747,3.28),
+(3547,1766,3.28),
+(3547,1767,3.28),
+(3547,1768,3.28),
+(3548,212,5.75),
+(3548,267,5.75),
+(3548,440,1.6),
+(3548,441,1.6),
+(3548,442,1.6),
+(3548,443,1.6),
+(3548,523,2.95),
+(3548,524,2.95),
+(3548,525,2.95),
+(3548,526,2.95),
+(3548,608,6.57),
+(3548,609,6.57),
+(3548,610,6.57),
+(3548,611,6.57),
+(3548,693,3.45),
+(3548,694,3.45),
+(3548,695,3.45),
+(3548,696,3.45),
+(3548,778,0.05),
+(3548,779,0.05),
+(3548,865,0.1),
+(3548,949,0.1),
+(3548,1320,0.15),
+(3548,1321,0.15),
+(3548,1366,0.3),
+(3548,1367,0.3),
+(3548,1412,0.3),
+(3548,1413,0.3),
+(3548,1458,0.3),
+(3548,1459,0.3),
+(3548,1504,0.15),
+(3548,1505,0.15),
+(3548,1556,0.1),
+(3548,1719,0.1),
+(3548,1742,2.32),
+(3548,1743,2.32),
+(3548,1744,2.32),
+(3548,1745,2.32),
+(3548,1746,2.32),
+(3548,1747,2.32),
+(3548,1766,2.32),
+(3548,1767,2.32),
+(3548,1768,2.32),
+(3548,1769,2.32),
+(3548,1770,2.32),
+(3548,1771,2.32),
+(3548,1851,0.1),
+(4313,15,50),
+(4313,25,50),
+(4990,173,3.6),
+(4990,188,6.4),
+(4990,193,4),
+(4990,519,5.4),
+(4990,520,5.4),
+(4990,602,2.7),
+(4990,603,2.7),
+(4990,604,2.7),
+(4990,605,2.7),
+(4990,687,4.1),
+(4990,688,4.1),
+(4990,689,4.1),
+(4990,690,4.1),
+(4990,859,6.6),
+(4990,860,6.6),
+(4990,1027,2.2),
+(4990,1028,2.2),
+(4990,1029,2.2),
+(4990,1030,2.2),
+(4990,1112,2.5),
+(4990,1113,2.5),
+(4990,1114,2.5),
+(4990,1115,2.5),
+(4990,1197,3.9),
+(4990,1198,3.9),
+(4990,1199,3.9),
+(4990,1200,3.9),
+(5168,5,0.1),
+(5168,6,41.2),
+(5168,14,0.1),
+(5168,15,38.9),
+(5168,29,0.03),
+(5168,30,0.03),
+(5168,31,0.03),
+(5168,49,0.1),
+(5168,1307,0.1),
+(5168,1353,0.1),
+(5168,1399,0.1),
+(5168,1491,0.1),
+(5168,1547,9.9),
+(5168,1548,9.9),
+(5168,1704,0.1),
+(5168,1799,0.1),
+(5168,1837,0.1),
+(5168,1875,0.1),
+(5168,1913,0.1),
+(5168,1951,0.1),
+(5168,1989,0.1),
+(5168,2027,0.1),
+(5169,6,28.3),
+(5169,14,21.67),
+(5169,15,28.75),
+(5169,17,14.45),
+(5169,27,0.1),
+(5169,29,0.06),
+(5169,30,0.02),
+(5169,31,0.02),
+(5169,32,0.1),
+(5169,79,0.02),
+(5169,98,0.02),
+(5169,227,0.03),
+(5169,228,0.05),
+(5169,229,0.03),
+(5169,231,0.03),
+(5169,238,0.03),
+(5169,256,0.05),
+(5169,584,0.1),
+(5169,754,0.1),
+(5169,839,0.06),
+(5169,840,0.03),
+(5169,841,0.03),
+(5169,842,0.03),
+(5169,924,0.1),
+(5169,1011,0.1),
+(5169,1181,0.1),
+(5169,1307,0.1),
+(5169,1547,7),
+(5169,1548,7),
+(5169,1913,0.1),
+(5169,1914,0.1),
+(5169,1951,0.1),
+(5169,2028,0.1),
+(5169,2067,0.03),
+(5169,2068,0.03),
+(5169,2069,0.03),
+(5169,2105,0.02),
+(5169,2106,0.02),
+(5169,2107,0.02),
+(5169,2108,0.02),
+(5169,2109,0.02),
+(5170,6,15.4),
+(5170,15,18.45),
+(5170,16,0.1),
+(5170,23,10.2),
+(5170,29,0.03),
+(5170,30,0.04),
+(5170,31,0.03),
+(5170,32,0.1),
+(5170,64,0.1),
+(5170,79,0.04),
+(5170,227,0.1),
+(5170,584,0.1),
+(5170,754,0.1),
+(5170,839,0.1),
+(5170,1094,0.1),
+(5170,1307,0.1),
+(5170,1353,0.1),
+(5170,1445,0.1),
+(5170,1491,0.1),
+(5170,1492,0.1),
+(5170,1547,14.55),
+(5170,1548,14.55),
+(5170,1799,4.65),
+(5170,1800,4.65),
+(5170,1837,5.98),
+(5170,1838,4.05),
+(5170,1914,0.1),
+(5170,1989,4.1),
+(5170,1990,4.1),
+(5170,2027,3.23),
+(5170,2028,3.23),
+(5171,6,9.33),
+(5171,14,8.45),
+(5171,15,11),
+(5171,17,5.5),
+(5171,23,6.15),
+(5171,27,0.1),
+(5171,29,0.07),
+(5171,30,0.03),
+(5171,31,0.03),
+(5171,32,0.1),
+(5171,64,0.1),
+(5171,227,0.1),
+(5171,584,0.1),
+(5171,754,0.1),
+(5171,839,0.1),
+(5171,924,0.1),
+(5171,1009,0.1),
+(5171,1094,0.1),
+(5171,1179,0.1),
+(5171,1307,0.1),
+(5171,1354,0.1),
+(5171,1399,0.1),
+(5171,1446,0.1),
+(5171,1491,0.1),
+(5171,1492,0.1),
+(5171,1547,16.43),
+(5171,1548,16.43),
+(5171,1799,3.17),
+(5171,1800,3.17),
+(5171,1837,3.1),
+(5171,1875,2.55),
+(5171,1876,1.7),
+(5171,1913,2.88),
+(5171,1914,1.85),
+(5171,1951,1.8),
+(5171,1952,1.8),
+(5171,1989,2.63),
+(5171,1990,2.63),
+(5171,2027,5.25),
+(5171,2028,3.6),
+(5173,14,1.48),
+(5173,17,1.48),
+(5173,18,2.21),
+(5173,22,2.93),
+(5173,24,2.82),
+(5173,29,0.1),
+(5173,33,0.1),
+(5173,91,0.1),
+(5173,93,2.21),
+(5173,96,2.93),
+(5173,97,2.82),
+(5173,197,0.1),
+(5173,228,3),
+(5173,231,0.1),
+(5173,256,3),
+(5173,501,3),
+(5173,502,3),
+(5173,584,2.76),
+(5173,585,2.76),
+(5173,586,2.76),
+(5173,587,2.76),
+(5173,669,2.64),
+(5173,670,2.64),
+(5173,671,2.64),
+(5173,672,2.64),
+(5173,839,3),
+(5173,840,3),
+(5173,841,3),
+(5173,842,3),
+(5173,927,0.1),
+(5173,1009,2.82),
+(5173,1010,2.82),
+(5173,1011,2.82),
+(5173,1012,2.82),
+(5173,1013,2.56),
+(5173,1094,2.94),
+(5173,1095,2.94),
+(5173,1096,2.94),
+(5173,1097,2.94),
+(5173,1179,2.51),
+(5173,1180,2.51),
+(5173,1181,2.51),
+(5173,1182,2.51),
+(5173,1399,0.1),
+(5173,1547,0.63),
+(5173,1548,0.78),
+(5173,1549,0.78),
+(5173,1550,0.78),
+(5173,1913,0.1),
+(5173,1952,0.1),
+(5173,2067,0.03),
+(5173,2068,0.03),
+(5173,2069,0.03),
+(5174,18,3.05),
+(5174,22,3),
+(5174,24,2.9),
+(5174,28,0.1),
+(5174,93,3.05),
+(5174,96,3),
+(5174,97,2.9),
+(5174,228,2.9),
+(5174,256,2.9),
+(5174,501,2.9),
+(5174,502,2.9),
+(5174,584,2.7),
+(5174,585,2.7),
+(5174,586,2.7),
+(5174,587,2.7),
+(5174,669,2.72),
+(5174,670,2.72),
+(5174,671,2.72),
+(5174,672,2.72),
+(5174,839,3),
+(5174,840,3),
+(5174,841,3),
+(5174,842,3),
+(5174,925,0.05),
+(5174,927,0.05),
+(5174,1009,2.92),
+(5174,1010,2.92),
+(5174,1011,2.92),
+(5174,1012,2.92),
+(5174,1094,2.88),
+(5174,1095,2.88),
+(5174,1096,2.88),
+(5174,1097,2.88),
+(5174,1179,2.75),
+(5174,1180,2.75),
+(5174,1181,2.75),
+(5174,1182,2.75),
+(5174,1308,0.1),
+(5174,1401,0.1),
+(5174,1445,0.1),
+(5174,1547,0.68),
+(5174,1548,0.68),
+(5174,1549,0.68),
+(5174,1550,0.68),
+(5174,1914,0.1),
+(5174,1953,0.1),
+(5174,1990,0.1),
+(5174,2067,0.03),
+(5174,2068,0.03),
+(5174,2069,0.03),
+(5174,2105,0.02),
+(5174,2106,0.02),
+(5174,2107,0.02),
+(5174,2108,0.02),
+(5174,2109,0.02),
+(5175,22,3.08),
+(5175,24,2.83),
+(5175,28,3.42),
+(5175,49,0.1),
+(5175,95,3.42),
+(5175,96,3.08),
+(5175,97,2.83),
+(5175,505,0.1),
+(5175,584,2.82),
+(5175,585,2.82),
+(5175,586,2.82),
+(5175,587,2.82),
+(5175,669,2.7),
+(5175,670,2.7),
+(5175,671,2.7),
+(5175,672,2.7),
+(5175,761,0.1),
+(5175,839,2.9),
+(5175,840,2.9),
+(5175,841,2.9),
+(5175,842,2.9),
+(5175,924,2.79),
+(5175,925,2.79),
+(5175,926,2.79),
+(5175,927,2.79),
+(5175,1009,3.02),
+(5175,1010,3.02),
+(5175,1011,3.02),
+(5175,1012,3.02),
+(5175,1094,2.31),
+(5175,1095,2.31),
+(5175,1096,2.31),
+(5175,1097,2.31),
+(5175,1098,1.71),
+(5175,1099,1.71),
+(5175,1100,1.71),
+(5175,1179,1.61),
+(5175,1180,1.61),
+(5175,1181,1.61),
+(5175,1182,1.61),
+(5175,1183,1.61),
+(5175,1184,1.19),
+(5175,1185,1.19),
+(5175,1186,1.19),
+(5175,1307,0.1),
+(5175,1547,0.66),
+(5175,1548,0.66),
+(5175,1549,0.66),
+(5175,1550,0.66),
+(5175,2029,0.1),
+(5175,2070,0.03),
+(5175,2071,0.03),
+(5175,2072,0.03),
+(5175,2105,0.02),
+(5175,2106,0.02),
+(5175,2107,0.02),
+(5175,2108,0.02),
+(5175,2109,0.02),
+(5176,22,2.2),
+(5176,26,1.6),
+(5176,28,2.45),
+(5176,59,0.1),
+(5176,94,1.6),
+(5176,95,2.45),
+(5176,96,2.2),
+(5176,228,2.5),
+(5176,256,2.5),
+(5176,501,2.5),
+(5176,502,2.5),
+(5176,584,2.45),
+(5176,585,2.45),
+(5176,586,2.45),
+(5176,587,2.45),
+(5176,673,0.05),
+(5176,675,0.05),
+(5176,754,1.67),
+(5176,755,1.67),
+(5176,756,1.67),
+(5176,757,1.67),
+(5176,839,1.55),
+(5176,840,1.55),
+(5176,841,1.55),
+(5176,842,1.55),
+(5176,928,0.1),
+(5176,1009,1.16),
+(5176,1010,1.16),
+(5176,1011,1.16),
+(5176,1012,1.16),
+(5176,1013,1.16),
+(5176,1014,1.16),
+(5176,1015,1.16),
+(5176,1094,2.55),
+(5176,1095,2.55),
+(5176,1096,2.55),
+(5176,1097,2.55),
+(5176,1179,2.45),
+(5176,1180,2.45),
+(5176,1181,2.45),
+(5176,1182,2.45),
+(5176,1399,0.1),
+(5176,1447,0.1),
+(5176,1549,1.25),
+(5176,1550,1.25),
+(5176,1800,1.67),
+(5176,1801,1.67),
+(5176,1802,1.67),
+(5176,1838,0.73),
+(5176,1839,0.73),
+(5176,1840,0.73),
+(5176,1876,1),
+(5176,1877,1),
+(5176,1878,1),
+(5176,1914,0.1),
+(5176,1952,0.8),
+(5176,1953,0.8),
+(5176,1954,0.8),
+(5176,1991,1.73),
+(5176,1992,1.73),
+(5176,1993,1.73),
+(5176,2028,2.07),
+(5176,2029,2.07),
+(5176,2030,2.07),
+(5176,2070,0.03),
+(5176,2071,0.03),
+(5176,2072,0.03),
+(5176,2105,0.02),
+(5176,2106,0.02),
+(5176,2107,0.02),
+(5176,2108,0.02),
+(5176,2109,0.02),
+(5177,19,29.32),
+(5177,22,19.55),
+(5177,23,41.35),
+(5177,26,0.1),
+(5177,27,0.1),
+(5177,28,0.1),
+(5177,29,0.1),
+(5177,64,0.1),
+(5177,229,0.1),
+(5177,584,0.03),
+(5177,585,0.03),
+(5177,586,0.03),
+(5177,587,0.03),
+(5177,1009,0.03),
+(5177,1010,0.03),
+(5177,1011,0.03),
+(5177,1012,0.03),
+(5177,1096,0.1),
+(5177,1355,0.1),
+(5177,1401,0.1),
+(5177,1447,0.1),
+(5177,1548,9.75),
+(5177,1549,9.75),
+(5177,1706,0.1),
+(5177,1801,0.1),
+(5177,1953,0.1),
+(5177,1991,0.1),
+(5179,17,0.1),
+(5179,19,18.3),
+(5179,23,20.2),
+(5179,29,0.01),
+(5179,30,0.01),
+(5179,31,0.01),
+(5179,64,0.1),
+(5179,79,0.01),
+(5179,98,0.01),
+(5179,118,0.01),
+(5179,137,0.01),
+(5179,229,0.1),
+(5179,256,0.1),
+(5179,585,0.1),
+(5179,754,0.03),
+(5179,755,0.03),
+(5179,756,0.03),
+(5179,757,0.03),
+(5179,839,0.03),
+(5179,840,0.03),
+(5179,841,0.03),
+(5179,842,0.03),
+(5179,925,0.1),
+(5179,1010,0.1),
+(5179,1095,0.1),
+(5179,1181,0.1),
+(5179,1308,0.1),
+(5179,1492,0.1),
+(5179,1548,14.6),
+(5179,1549,14.6),
+(5179,1800,5.05),
+(5179,1801,5.05),
+(5179,1838,3.85),
+(5179,1839,3.85),
+(5179,1877,0.1),
+(5179,1990,4.2),
+(5179,1991,4.2),
+(5179,2028,3.1),
+(5179,2029,3.1),
+(5179,2105,0.02),
+(5179,2106,0.02),
+(5179,2107,0.02),
+(5179,2108,0.02),
+(5179,2109,0.02),
+(5180,17,10.4),
+(5180,19,11.2),
+(5180,23,13.7),
+(5180,29,0.1),
+(5180,229,0.1),
+(5180,670,0.1),
+(5180,1548,15.5),
+(5180,1549,15.5),
+(5180,1800,3.5),
+(5180,1801,3.5),
+(5180,1838,1.3),
+(5180,1839,1.3),
+(5180,1876,2.25),
+(5180,1877,2.25),
+(5180,1952,1.9),
+(5180,1953,1.9),
+(5180,1990,3),
+(5180,1991,3),
+(5180,2028,4.85),
+(5180,2029,4.85),
+(5180,2105,0.02),
+(5180,2106,0.02),
+(5180,2107,0.02),
+(5180,2108,0.02),
+(5180,2109,0.02),
+(5182,6,1.12),
+(5182,23,1.12),
+(5182,24,1.12),
+(5182,49,0.1),
+(5182,93,3.17),
+(5182,96,3.05),
+(5182,97,1.98),
+(5182,111,3.17),
+(5182,114,3.05),
+(5182,115,1.98),
+(5182,234,0.1),
+(5182,502,3.21),
+(5182,503,3.21),
+(5182,504,3.21),
+(5182,505,3.21),
+(5182,587,2.29),
+(5182,588,2.29),
+(5182,589,2.29),
+(5182,590,2.29),
+(5182,591,2.06),
+(5182,672,1.33),
+(5182,673,1.33),
+(5182,674,1.33),
+(5182,675,1.33),
+(5182,676,1.33),
+(5182,677,1.33),
+(5182,678,1.33),
+(5182,679,1.24),
+(5182,761,0.1),
+(5182,842,2.93),
+(5182,843,2.93),
+(5182,844,2.93),
+(5182,845,2.93),
+(5182,1012,2.46),
+(5182,1013,2.46),
+(5182,1014,2.46),
+(5182,1015,2.46),
+(5182,1016,1.64),
+(5182,1017,1.64),
+(5182,1018,1.64),
+(5182,1019,1.64),
+(5182,1097,3.1),
+(5182,1098,3.1),
+(5182,1099,3.1),
+(5182,1100,3.1),
+(5182,1182,2.29),
+(5182,1183,2.29),
+(5182,1184,2.29),
+(5182,1185,2.29),
+(5182,1403,0.1),
+(5182,1449,0.1),
+(5182,1548,0.68),
+(5182,1549,0.77),
+(5182,1550,0.77),
+(5182,1551,0.77),
+(5183,15,1.22),
+(5183,19,1.22),
+(5183,22,1.22),
+(5183,31,0.1),
+(5183,80,0.1),
+(5183,93,3),
+(5183,96,2.19),
+(5183,97,2.95),
+(5183,111,3),
+(5183,114,2.19),
+(5183,115,2.95),
+(5183,502,3.08),
+(5183,503,3.08),
+(5183,504,3.08),
+(5183,505,3.08),
+(5183,587,1.98),
+(5183,588,1.98),
+(5183,589,1.98),
+(5183,590,1.98),
+(5183,591,1.49),
+(5183,592,1.49),
+(5183,593,1.49),
+(5183,672,2.55),
+(5183,673,2.55),
+(5183,674,2.55),
+(5183,675,2.55),
+(5183,842,3.05),
+(5183,843,3.05),
+(5183,844,3.05),
+(5183,845,3.05),
+(5183,1012,3.13),
+(5183,1013,3.13),
+(5183,1014,3.13),
+(5183,1015,3.13),
+(5183,1097,3.05),
+(5183,1098,3.05),
+(5183,1099,3.05),
+(5183,1100,3.05),
+(5183,1182,2.46),
+(5183,1183,2.46),
+(5183,1184,2.46),
+(5183,1185,2.46),
+(5183,1548,0.63),
+(5183,1549,0.75),
+(5183,1550,0.75),
+(5183,1551,0.75),
+(5183,1951,0.1),
+(5183,2027,0.1),
+(5183,2032,0.1),
+(5183,2105,0.02),
+(5183,2106,0.02),
+(5183,2107,0.02),
+(5183,2108,0.02),
+(5183,2109,0.02),
+(5183,2110,0.03),
+(5183,2111,0.03),
+(5183,2112,0.03),
+(5183,2113,0.03),
+(5187,17,13.8),
+(5187,18,13.8),
+(5187,19,15.05),
+(5187,22,15.05),
+(5187,23,14.35),
+(5187,24,14.35),
+(5187,1401,0.1),
+(5187,1493,0.1),
+(5187,1548,4.5),
+(5187,1549,4.5),
+(5187,1550,4.5),
+(5188,19,9.35),
+(5188,22,9.35),
+(5188,23,10.2),
+(5188,24,10.2),
+(5188,29,0.1),
+(5188,757,0.1),
+(5188,1548,9.77),
+(5188,1549,9.77),
+(5188,1550,9.77),
+(5188,1800,3.33),
+(5188,1801,3.33),
+(5188,1802,3.33),
+(5188,1838,2.63),
+(5188,1839,2.63),
+(5188,1840,2.63),
+(5188,1915,0.1),
+(5188,1990,2.73),
+(5188,1991,2.73),
+(5188,1992,2.73),
+(5188,2028,1.9),
+(5188,2029,1.9),
+(5188,2030,1.9),
+(5189,17,4.45),
+(5189,18,4.45),
+(5189,19,5.7),
+(5189,22,5.7),
+(5189,23,6.9),
+(5189,24,6.9),
+(5189,29,0.01),
+(5189,30,0.01),
+(5189,31,0.01),
+(5189,79,0.01),
+(5189,98,0.01),
+(5189,118,0.01),
+(5189,137,0.01),
+(5189,238,0.1),
+(5189,502,0.1),
+(5189,1097,0.1),
+(5189,1548,9.83),
+(5189,1549,9.83),
+(5189,1550,9.83),
+(5189,1800,3.13),
+(5189,1801,3.13),
+(5189,1802,3.13),
+(5189,1840,0.1),
+(5189,1876,2.25),
+(5189,1877,2.25),
+(5189,1952,1.9),
+(5189,1953,1.9),
+(5189,1954,1.9),
+(5189,1990,2.23),
+(5189,1991,2.23),
+(5189,1992,2.23),
+(5189,2028,3.33),
+(5189,2029,3.33),
+(5189,2030,3.33),
+(5191,132,2.85),
+(5191,135,3.15),
+(5191,136,2.9),
+(5191,151,2.85),
+(5191,154,3.15),
+(5191,155,2.9),
+(5191,505,3.28),
+(5191,506,3.28),
+(5191,507,3.28),
+(5191,508,3.28),
+(5191,590,2.35),
+(5191,591,2.35),
+(5191,592,2.35),
+(5191,593,2.35),
+(5191,675,2.35),
+(5191,676,2.35),
+(5191,677,2.35),
+(5191,678,2.35),
+(5191,845,2.42),
+(5191,846,2.42),
+(5191,847,2.42),
+(5191,848,2.42),
+(5191,849,2.42),
+(5191,1015,3.47),
+(5191,1016,3.47),
+(5191,1017,3.47),
+(5191,1018,3.47),
+(5191,1100,3.13),
+(5191,1101,3.13),
+(5191,1102,3.13),
+(5191,1103,3.13),
+(5191,1185,2.28),
+(5191,1186,2.28),
+(5191,1187,2.28),
+(5191,1188,2.28),
+(5191,1550,0.63),
+(5191,1551,0.63),
+(5191,1552,0.63),
+(5191,1553,0.63),
+(5193,134,3.3),
+(5193,135,3.1),
+(5193,136,2.95),
+(5193,153,3.3),
+(5193,154,3.1),
+(5193,155,2.95),
+(5193,252,0.1),
+(5193,590,2.95),
+(5193,591,2.95),
+(5193,592,2.95),
+(5193,593,2.95),
+(5193,675,1.33),
+(5193,676,1.33),
+(5193,677,1.33),
+(5193,678,1.33),
+(5193,679,1.33),
+(5193,680,1.33),
+(5193,681,1.33),
+(5193,683,1.33),
+(5193,845,1.59),
+(5193,846,1.59),
+(5193,847,1.59),
+(5193,848,1.59),
+(5193,849,1.59),
+(5193,850,1.59),
+(5193,851,1.59),
+(5193,930,2.26),
+(5193,931,2.26),
+(5193,932,2.26),
+(5193,933,2.26),
+(5193,935,2.26),
+(5193,1015,3.08),
+(5193,1016,3.08),
+(5193,1017,3.08),
+(5193,1018,3.08),
+(5193,1100,2.92),
+(5193,1101,2.92),
+(5193,1102,2.92),
+(5193,1103,2.92),
+(5193,1185,2.4),
+(5193,1186,2.4),
+(5193,1187,2.4),
+(5193,1188,2.4),
+(5193,1549,0.56),
+(5193,1550,0.56),
+(5193,1551,0.56),
+(5193,1552,0.56),
+(5193,1553,0.56),
+(5193,2073,0.05),
+(5193,2074,0.05),
+(5193,2110,0.03),
+(5193,2111,0.03),
+(5193,2112,0.03),
+(5193,2113,0.03),
+(5194,133,1.45),
+(5194,134,2.75),
+(5194,135,2.1),
+(5194,152,1.45),
+(5194,153,2.75),
+(5194,154,2.1),
+(5194,505,2.88),
+(5194,506,2.88),
+(5194,507,2.88),
+(5194,508,2.88),
+(5194,590,2.4),
+(5194,591,2.4),
+(5194,592,2.4),
+(5194,593,2.4),
+(5194,760,1.45),
+(5194,761,1.45),
+(5194,762,1.45),
+(5194,763,1.45),
+(5194,845,1.17),
+(5194,846,1.17),
+(5194,847,1.17),
+(5194,848,1.17),
+(5194,1015,2.1),
+(5194,1016,2.1),
+(5194,1017,2.1),
+(5194,1018,2.1),
+(5194,1100,1.7),
+(5194,1101,1.7),
+(5194,1102,1.7),
+(5194,1103,1.7),
+(5194,1104,1.7),
+(5194,1105,1.7),
+(5194,1106,1.7),
+(5194,1185,1.34),
+(5194,1186,1.34),
+(5194,1187,1.34),
+(5194,1188,1.34),
+(5194,1189,1.34),
+(5194,1190,1.34),
+(5194,1191,1.34),
+(5194,1445,0.1),
+(5194,1549,0.48),
+(5194,1550,0.48),
+(5194,1551,0.48),
+(5194,1552,0.48),
+(5194,1553,0.48),
+(5194,1801,1.08),
+(5194,1802,1.08),
+(5194,1803,1.08),
+(5194,1804,1.08),
+(5194,1805,1.08),
+(5194,1840,0.43),
+(5194,1841,0.43),
+(5194,1842,0.43),
+(5194,1843,0.43),
+(5194,1877,0.58),
+(5194,1878,0.58),
+(5194,1879,0.58),
+(5194,1880,0.58),
+(5194,1881,0.58),
+(5194,1951,0.36),
+(5194,1952,0.36),
+(5194,1953,0.36),
+(5194,1954,0.36),
+(5194,1955,0.36),
+(5194,1956,0.36),
+(5194,1957,0.36),
+(5194,1991,1.14),
+(5194,1992,1.14),
+(5194,1993,1.14),
+(5194,1994,1.14),
+(5194,1995,1.14),
+(5194,2029,1.14),
+(5194,2030,1.14),
+(5194,2031,1.14),
+(5194,2032,1.14),
+(5194,2033,1.14),
+(5195,22,6.05),
+(5195,24,6.5),
+(5195,504,0.1),
+(5195,584,6.71),
+(5195,585,6.71),
+(5195,586,6.71),
+(5195,587,6.71),
+(5195,669,6.76),
+(5195,670,6.76),
+(5195,671,6.76),
+(5195,672,6.76),
+(5195,1012,0.1),
+(5195,1179,6.93),
+(5195,1180,6.93),
+(5195,1181,6.93),
+(5195,1182,6.93),
+(5195,1549,3.98),
+(5195,1550,1.97),
+(5195,1551,1.97),
+(5196,18,2.9),
+(5196,22,2.95),
+(5196,24,3.15),
+(5196,29,0.01),
+(5196,30,0.01),
+(5196,31,0.01),
+(5196,76,0.1),
+(5196,79,0.01),
+(5196,93,2.9),
+(5196,94,0.1),
+(5196,95,0.1),
+(5196,96,2.95),
+(5196,97,3.15),
+(5196,98,0.01),
+(5196,118,0.01),
+(5196,137,0.01),
+(5196,194,0.01),
+(5196,195,0.01),
+(5196,196,0.01),
+(5196,228,1.71),
+(5196,232,0.03),
+(5196,233,0.03),
+(5196,234,0.03),
+(5196,238,0.03),
+(5196,256,1.71),
+(5196,501,1.71),
+(5196,502,1.71),
+(5196,503,1.71),
+(5196,504,1.71),
+(5196,505,1.71),
+(5196,584,1.5),
+(5196,585,1.5),
+(5196,586,1.5),
+(5196,587,1.5),
+(5196,588,1.5),
+(5196,589,1.5),
+(5196,590,1.5),
+(5196,669,1.51),
+(5196,670,1.51),
+(5196,671,1.51),
+(5196,672,1.51),
+(5196,673,1.51),
+(5196,674,1.51),
+(5196,675,1.51),
+(5196,757,0.03),
+(5196,758,0.03),
+(5196,759,0.03),
+(5196,760,0.03),
+(5196,839,1.59),
+(5196,840,1.59),
+(5196,841,1.59),
+(5196,842,1.59),
+(5196,843,1.59),
+(5196,844,1.59),
+(5196,845,1.59),
+(5196,927,0.03),
+(5196,928,0.03),
+(5196,929,0.03),
+(5196,930,0.03),
+(5196,1009,1.74),
+(5196,1010,1.74),
+(5196,1011,1.74),
+(5196,1012,1.74),
+(5196,1013,1.74),
+(5196,1014,1.74),
+(5196,1015,1.74),
+(5196,1094,1.74),
+(5196,1095,1.74),
+(5196,1096,1.74),
+(5196,1097,1.74),
+(5196,1098,1.74),
+(5196,1099,1.74),
+(5196,1100,1.74),
+(5196,1179,1.5),
+(5196,1180,1.5),
+(5196,1181,1.5),
+(5196,1182,1.5),
+(5196,1183,1.5),
+(5196,1184,1.5),
+(5196,1185,1.5),
+(5196,1310,0.1),
+(5196,1356,0.1),
+(5196,1402,0.1),
+(5196,1448,0.1),
+(5196,1494,0.1),
+(5196,1549,0.87),
+(5196,1550,0.87),
+(5196,1551,0.87),
+(5196,1707,0.1),
+(5196,1878,0.1),
+(5196,1916,0.1),
+(5196,1954,0.1),
+(5196,1992,0.1),
+(5196,2030,0.1),
+(5197,18,0.1),
+(5197,22,4.45),
+(5197,24,4.8),
+(5197,26,0.1),
+(5197,28,0.1),
+(5197,29,0.1),
+(5197,33,0.1),
+(5197,76,0.1),
+(5197,194,0.05),
+(5197,195,0.05),
+(5197,238,0.1),
+(5197,502,0.1),
+(5197,584,5.42),
+(5197,585,5.42),
+(5197,586,5.42),
+(5197,587,5.42),
+(5197,669,5.44),
+(5197,670,5.44),
+(5197,671,5.44),
+(5197,672,5.44),
+(5197,757,0.1),
+(5197,842,0.1),
+(5197,927,0.1),
+(5197,1012,0.1),
+(5197,1097,0.1),
+(5197,1179,4.96),
+(5197,1180,4.96),
+(5197,1181,4.96),
+(5197,1182,4.96),
+(5197,1309,0.1),
+(5197,1355,0.1),
+(5197,1401,0.1),
+(5197,1447,0.1),
+(5197,1493,0.1),
+(5197,1549,4.5),
+(5197,1550,4.5),
+(5197,1551,4.5),
+(5197,1801,1.48),
+(5197,1802,1.48),
+(5197,1803,1.48),
+(5197,1839,1.51),
+(5197,1840,1.51),
+(5197,1841,1.17),
+(5197,1991,1.43),
+(5197,1992,1.43),
+(5197,1993,1.17),
+(5197,2029,1.02),
+(5197,2030,1.02),
+(5197,2031,0.83),
+(5201,151,2.7),
+(5201,154,3.3),
+(5201,155,3.15),
+(5201,167,2.7),
+(5201,184,3.3),
+(5201,189,3.15),
+(5201,508,3.02),
+(5201,509,3.02),
+(5201,510,3.02),
+(5201,511,3.02),
+(5201,593,1.87),
+(5201,594,1.87),
+(5201,595,1.87),
+(5201,596,1.87),
+(5201,597,1.34),
+(5201,598,1.34),
+(5201,599,1.34),
+(5201,678,2.64),
+(5201,679,2.64),
+(5201,680,2.64),
+(5201,681,2.64),
+(5201,848,2.94),
+(5201,849,2.94),
+(5201,850,2.94),
+(5201,851,2.94),
+(5201,1018,2.83),
+(5201,1019,2.83),
+(5201,1020,2.83),
+(5201,1021,2.83),
+(5201,1023,2.54),
+(5201,1103,3.1),
+(5201,1104,3.1),
+(5201,1105,3.1),
+(5201,1106,3.1),
+(5201,1188,2.59),
+(5201,1189,2.59),
+(5201,1190,2.59),
+(5201,1191,2.59),
+(5201,1361,0.1),
+(5201,1550,0.52),
+(5201,1551,0.52),
+(5201,1552,0.52),
+(5201,1553,0.52),
+(5201,1554,0.52),
+(5201,1883,0.1),
+(5201,2036,0.1),
+(5201,2110,0.03),
+(5201,2111,0.03),
+(5201,2112,0.03),
+(5201,2113,0.03),
+(5202,149,0.1),
+(5202,153,2.3),
+(5202,154,3.2),
+(5202,155,3.05),
+(5202,179,2.3),
+(5202,180,2.3),
+(5202,184,3.2),
+(5202,189,3.05),
+(5202,514,0.1),
+(5202,593,1.6),
+(5202,594,1.6),
+(5202,595,1.6),
+(5202,596,1.6),
+(5202,597,1.6),
+(5202,598,1.6),
+(5202,599,1.6),
+(5202,678,2.55),
+(5202,679,2.55),
+(5202,680,2.55),
+(5202,681,2.55),
+(5202,768,0.1),
+(5202,848,2.78),
+(5202,849,2.78),
+(5202,850,2.78),
+(5202,851,2.78),
+(5202,933,2.24),
+(5202,934,2.24),
+(5202,935,2.24),
+(5202,936,2.24),
+(5202,938,2.24),
+(5202,1018,3.15),
+(5202,1019,3.15),
+(5202,1020,3.15),
+(5202,1021,3.15),
+(5202,1103,3.05),
+(5202,1104,3.05),
+(5202,1105,3.05),
+(5202,1106,3.05),
+(5202,1188,2.35),
+(5202,1189,2.35),
+(5202,1190,2.35),
+(5202,1191,2.35),
+(5202,1453,0.1),
+(5202,1498,0.1),
+(5202,1550,0.56),
+(5202,1551,0.56),
+(5202,1552,0.56),
+(5202,1553,0.56),
+(5202,1554,0.56),
+(5204,96,5.8),
+(5204,97,6.5),
+(5204,587,6.68),
+(5204,588,6.68),
+(5204,589,6.68),
+(5204,590,6.68),
+(5204,672,6.78),
+(5204,673,6.78),
+(5204,674,6.78),
+(5204,675,6.78),
+(5204,1182,7.05),
+(5204,1183,7.05),
+(5204,1184,7.05),
+(5204,1185,7.05),
+(5204,1550,2.9),
+(5204,1551,2.9),
+(5205,93,5.1),
+(5205,96,6.1),
+(5205,97,6.2),
+(5205,502,3.03),
+(5205,503,3.03),
+(5205,504,3.03),
+(5205,505,3.03),
+(5205,587,2.4),
+(5205,588,2.4),
+(5205,589,2.4),
+(5205,590,2.4),
+(5205,672,2.45),
+(5205,673,2.45),
+(5205,674,2.45),
+(5205,675,2.45),
+(5205,842,2.88),
+(5205,843,2.88),
+(5205,844,2.88),
+(5205,845,2.88),
+(5205,1012,3.38),
+(5205,1013,3.38),
+(5205,1014,3.38),
+(5205,1015,3.38),
+(5205,1097,3.33),
+(5205,1098,3.33),
+(5205,1099,3.33),
+(5205,1100,3.33),
+(5205,1182,2.58),
+(5205,1183,2.58),
+(5205,1184,2.58),
+(5205,1185,2.58),
+(5205,1550,1.3),
+(5205,1551,1.3),
+(5206,94,0.1),
+(5206,96,4.4),
+(5206,97,4.8),
+(5206,587,5.25),
+(5206,588,5.25),
+(5206,589,5.25),
+(5206,590,5.25),
+(5206,672,5.15),
+(5206,673,5.15),
+(5206,674,5.15),
+(5206,675,5.15),
+(5206,1182,4.88),
+(5206,1183,4.88),
+(5206,1184,4.88),
+(5206,1185,4.88),
+(5206,1550,6.65),
+(5206,1551,6.65),
+(5206,1802,2.5),
+(5206,1803,2.5),
+(5206,1840,1.95),
+(5206,1841,1.95),
+(5206,1992,2.2),
+(5206,1993,2.2),
+(5206,2030,1.4),
+(5206,2031,1.4),
+(5207,93,3.2),
+(5207,96,3.9),
+(5207,97,4.9),
+(5207,587,3.58),
+(5207,588,3.58),
+(5207,589,3.58),
+(5207,590,3.58),
+(5207,672,3.78),
+(5207,673,3.78),
+(5207,674,3.78),
+(5207,675,3.78),
+(5207,1182,4.47),
+(5207,1183,4.47),
+(5207,1184,4.47),
+(5207,1185,4.47),
+(5207,1550,9.45),
+(5207,1551,9.45),
+(5207,1802,2.4),
+(5207,1803,2.4),
+(5207,1840,0.9),
+(5207,1841,0.9),
+(5207,1878,1.5),
+(5207,1879,1.5),
+(5207,1954,1.25),
+(5207,1955,1.25),
+(5207,1992,1.95),
+(5207,1993,1.95),
+(5207,2030,3),
+(5207,2031,3),
+(5209,168,2.6),
+(5209,171,2.6),
+(5209,185,3.25),
+(5209,186,3.25),
+(5209,190,3.1),
+(5209,191,3.1),
+(5209,511,3),
+(5209,512,3),
+(5209,513,3),
+(5209,514,3),
+(5209,596,2.42),
+(5209,597,2.42),
+(5209,598,2.42),
+(5209,599,2.42),
+(5209,681,2.65),
+(5209,682,2.65),
+(5209,683,2.65),
+(5209,684,2.65),
+(5209,851,3),
+(5209,852,3),
+(5209,853,3),
+(5209,854,3),
+(5209,1021,3.1),
+(5209,1022,3.1),
+(5209,1023,3.1),
+(5209,1024,3.1),
+(5209,1106,3.08),
+(5209,1107,3.08),
+(5209,1108,3.08),
+(5209,1109,3.08),
+(5209,1191,2.6),
+(5209,1192,2.6),
+(5209,1193,2.6),
+(5209,1194,2.6),
+(5209,1551,0.43),
+(5209,1552,0.43),
+(5209,1553,0.43),
+(5209,1554,0.43),
+(5209,1555,0.43),
+(5209,1556,0.43),
+(5211,180,3.8),
+(5211,181,3.8),
+(5211,185,3.3),
+(5211,186,3.3),
+(5211,190,3),
+(5211,191,3),
+(5211,596,2.6),
+(5211,597,2.6),
+(5211,598,2.6),
+(5211,599,2.6),
+(5211,681,2.33),
+(5211,682,2.33),
+(5211,683,2.33),
+(5211,684,2.33),
+(5211,851,2.75),
+(5211,852,2.75),
+(5211,853,2.75),
+(5211,854,2.75),
+(5211,936,2.7),
+(5211,937,2.7),
+(5211,938,2.7),
+(5211,939,2.7),
+(5211,1021,3.45),
+(5211,1022,3.45),
+(5211,1023,3.45),
+(5211,1024,3.45),
+(5211,1106,2.58),
+(5211,1107,2.58),
+(5211,1108,2.58),
+(5211,1109,2.58),
+(5211,1110,2.58),
+(5211,1191,2.28),
+(5211,1192,2.28),
+(5211,1193,2.28),
+(5211,1194,2.28),
+(5211,1551,0.45),
+(5211,1552,0.45),
+(5211,1553,0.45),
+(5211,1554,0.45),
+(5211,1555,0.45),
+(5211,1556,0.45),
+(5211,2035,0.1),
+(5212,171,0.1),
+(5212,175,1.85),
+(5212,176,1.85),
+(5212,180,2.9),
+(5212,181,2.9),
+(5212,185,2.35),
+(5212,186,2.35),
+(5212,254,0.05),
+(5212,436,0.05),
+(5212,511,1.5),
+(5212,512,1.5),
+(5212,513,1.5),
+(5212,514,1.5),
+(5212,515,1.5),
+(5212,516,1.5),
+(5212,517,1.5),
+(5212,596,1.76),
+(5212,597,1.76),
+(5212,598,1.76),
+(5212,599,1.76),
+(5212,601,1.76),
+(5212,684,0.03),
+(5212,685,0.03),
+(5212,686,0.03),
+(5212,687,0.03),
+(5212,766,1.8),
+(5212,767,1.8),
+(5212,768,1.8),
+(5212,769,1.8),
+(5212,851,1.4),
+(5212,852,1.4),
+(5212,853,1.4),
+(5212,854,1.4),
+(5212,939,0.1),
+(5212,1021,1.15),
+(5212,1022,1.15),
+(5212,1023,1.15),
+(5212,1024,1.15),
+(5212,1025,1.15),
+(5212,1026,1.15),
+(5212,1027,1.15),
+(5212,1028,1.15),
+(5212,1106,2.85),
+(5212,1107,2.85),
+(5212,1108,2.85),
+(5212,1109,2.85),
+(5212,1191,1.15),
+(5212,1192,1.15),
+(5212,1193,1.15),
+(5212,1194,1.15),
+(5212,1195,1.15),
+(5212,1196,1.15),
+(5212,1197,1.15),
+(5212,1199,1.15),
+(5212,1363,0.1),
+(5212,1408,0.1),
+(5212,1551,0.37),
+(5212,1552,0.37),
+(5212,1553,0.37),
+(5212,1554,0.37),
+(5212,1555,0.37),
+(5212,1556,0.37),
+(5212,1714,0.1),
+(5212,1803,0.87),
+(5212,1804,0.87),
+(5212,1805,0.87),
+(5212,1806,0.87),
+(5212,1807,0.87),
+(5212,1808,0.87),
+(5212,1841,0.25),
+(5212,1842,0.25),
+(5212,1843,0.25),
+(5212,1844,0.25),
+(5212,1845,0.25),
+(5212,1846,0.25),
+(5212,1879,0.32),
+(5212,1880,0.32),
+(5212,1881,0.32),
+(5212,1882,0.32),
+(5212,1883,0.32),
+(5212,1884,0.32),
+(5212,1885,0.32),
+(5212,1886,0.32),
+(5212,1955,0.24),
+(5212,1956,0.24),
+(5212,1957,0.24),
+(5212,1958,0.24),
+(5212,1959,0.24),
+(5212,1960,0.24),
+(5212,1961,0.24),
+(5212,1962,0.24),
+(5212,1993,0.9),
+(5212,1994,0.9),
+(5212,1995,0.9),
+(5212,1996,0.9),
+(5212,1997,0.9),
+(5212,1998,0.9),
+(5212,2031,0.71),
+(5212,2032,0.71),
+(5212,2033,0.71),
+(5212,2034,0.71),
+(5212,2035,0.71),
+(5212,2036,0.71),
+(5212,2037,0.71),
+(5212,2075,0.03),
+(5212,2076,0.03),
+(5212,2077,0.03),
+(5212,2114,0.03),
+(5212,2115,0.03),
+(5212,2116,0.03),
+(5212,2117,0.03),
+(5213,96,2.9),
+(5213,97,3.3),
+(5213,113,0.1),
+(5213,114,2.9),
+(5213,115,3.3),
+(5213,587,6.68),
+(5213,588,6.68),
+(5213,589,6.68),
+(5213,590,6.68),
+(5213,672,5.42),
+(5213,673,5.42),
+(5213,674,5.42),
+(5213,675,5.42),
+(5213,677,5.42),
+(5213,847,0.1),
+(5213,1015,0.05),
+(5213,1016,0.05),
+(5213,1101,0.1),
+(5213,1182,5.64),
+(5213,1183,5.64),
+(5213,1184,5.64),
+(5213,1185,5.64),
+(5213,1187,5.64),
+(5213,1311,0.1),
+(5213,1550,1.9),
+(5213,1551,1.9),
+(5213,1552,1.9),
+(5216,29,0.1),
+(5216,53,0.1),
+(5216,91,0.1),
+(5216,93,1.6),
+(5216,96,2.05),
+(5216,97,2.35),
+(5216,111,1.6),
+(5216,112,0.1),
+(5216,114,2.05),
+(5216,115,2.35),
+(5216,207,0.1),
+(5216,587,3.46),
+(5216,588,3.46),
+(5216,589,3.46),
+(5216,590,3.46),
+(5216,672,3.66),
+(5216,673,3.66),
+(5216,674,3.66),
+(5216,675,3.66),
+(5216,930,0.1),
+(5216,1015,0.1),
+(5216,1182,4.56),
+(5216,1183,4.56),
+(5216,1184,4.56),
+(5216,1185,4.56),
+(5216,1403,0.1),
+(5216,1449,0.1),
+(5216,1495,0.1),
+(5216,1550,6.48),
+(5216,1551,6.48),
+(5216,1552,6.48),
+(5216,1708,0.1),
+(5216,1802,2.42),
+(5216,1803,2.42),
+(5216,1840,0.74),
+(5216,1841,0.74),
+(5216,1842,0.63),
+(5216,1878,0.98),
+(5216,1879,0.98),
+(5216,1880,0.98),
+(5216,1918,0.1),
+(5216,1954,0.96),
+(5216,1955,0.96),
+(5216,1956,0.77),
+(5216,1992,1.27),
+(5216,1993,1.27),
+(5216,1994,1.27),
+(5216,2030,2.02),
+(5216,2031,2.02),
+(5216,2032,2.02),
+(5216,2070,0.03),
+(5216,2071,0.03),
+(5216,2072,0.03),
+(5216,2110,0.03),
+(5216,2111,0.03),
+(5216,2112,0.03),
+(5216,2113,0.03),
+(5218,171,2.35),
+(5218,172,2.35),
+(5218,186,3.35),
+(5218,187,3.35),
+(5218,191,3.35),
+(5218,192,3.35),
+(5218,255,0.1),
+(5218,514,3),
+(5218,515,3),
+(5218,516,3),
+(5218,517,3),
+(5218,599,2.25),
+(5218,600,2.25),
+(5218,601,2.25),
+(5218,602,2.25),
+(5218,684,2.55),
+(5218,685,2.55),
+(5218,686,2.55),
+(5218,687,2.55),
+(5218,854,2.95),
+(5218,855,2.95),
+(5218,856,2.95),
+(5218,857,2.95),
+(5218,941,0.02),
+(5218,942,0.02),
+(5218,943,0.02),
+(5218,944,0.02),
+(5218,945,0.02),
+(5218,1024,2.54),
+(5218,1025,2.54),
+(5218,1026,2.54),
+(5218,1027,2.54),
+(5218,1028,2.54),
+(5218,1109,3.2),
+(5218,1110,3.2),
+(5218,1111,3.2),
+(5218,1112,3.2),
+(5218,1194,2.72),
+(5218,1195,2.72),
+(5218,1196,2.72),
+(5218,1197,2.72),
+(5218,1408,0.03),
+(5218,1409,0.03),
+(5218,1410,0.03),
+(5218,1500,0.1),
+(5218,1552,0.4),
+(5218,1553,0.4),
+(5218,1554,0.4),
+(5218,1555,0.4),
+(5218,1556,0.4),
+(5218,1557,0.4),
+(5218,1961,0.1),
+(5219,29,0.1),
+(5219,171,2.57),
+(5219,172,2.57),
+(5219,178,0.1),
+(5219,186,3.25),
+(5219,187,3.25),
+(5219,191,2.55),
+(5219,192,2.55),
+(5219,193,2.1),
+(5219,254,0.1),
+(5219,436,0.1),
+(5219,514,3.11),
+(5219,515,3.11),
+(5219,516,3.11),
+(5219,517,3.11),
+(5219,599,1.6),
+(5219,600,1.6),
+(5219,601,1.6),
+(5219,602,1.6),
+(5219,603,1.6),
+(5219,604,1.36),
+(5219,605,1.36),
+(5219,684,2.48),
+(5219,685,2.48),
+(5219,686,2.48),
+(5219,687,2.48),
+(5219,854,2.95),
+(5219,855,2.95),
+(5219,856,2.95),
+(5219,857,2.95),
+(5219,941,0.1),
+(5219,943,0.1),
+(5219,1024,3.31),
+(5219,1025,3.31),
+(5219,1026,3.31),
+(5219,1027,3.31),
+(5219,1109,3.21),
+(5219,1110,3.21),
+(5219,1111,3.21),
+(5219,1112,3.21),
+(5219,1194,2.5),
+(5219,1195,2.5),
+(5219,1196,2.5),
+(5219,1197,2.5),
+(5219,1363,0.1),
+(5219,1552,0.4),
+(5219,1553,0.4),
+(5219,1554,0.4),
+(5219,1555,0.4),
+(5219,1556,0.4),
+(5219,1557,0.4),
+(5219,1885,0.1),
+(5219,2039,0.1),
+(5219,2114,0.03),
+(5219,2115,0.03),
+(5219,2116,0.03),
+(5219,2117,0.03),
+(5221,138,0.1),
+(5221,176,1.8),
+(5221,177,1.8),
+(5221,181,2.95),
+(5221,182,2.95),
+(5221,186,2),
+(5221,187,2),
+(5221,193,0.1),
+(5221,514,2.78),
+(5221,515,2.78),
+(5221,516,2.78),
+(5221,517,2.78),
+(5221,599,1.2),
+(5221,600,1.2),
+(5221,601,1.2),
+(5221,602,1.2),
+(5221,603,1.2),
+(5221,604,1.2),
+(5221,605,1.2),
+(5221,769,1.8),
+(5221,770,1.8),
+(5221,771,1.8),
+(5221,772,1.8),
+(5221,854,1.04),
+(5221,855,1.04),
+(5221,856,1.04),
+(5221,857,1.04),
+(5221,859,1.04),
+(5221,1024,1.9),
+(5221,1025,1.9),
+(5221,1026,1.9),
+(5221,1027,1.9),
+(5221,1029,1.9),
+(5221,1109,2.28),
+(5221,1110,2.28),
+(5221,1111,2.28),
+(5221,1112,2.28),
+(5221,1114,2.28),
+(5221,1194,2.25),
+(5221,1195,2.25),
+(5221,1196,2.25),
+(5221,1197,2.25),
+(5221,1409,0.1),
+(5221,1501,0.1),
+(5221,1552,0.32),
+(5221,1553,0.32),
+(5221,1554,0.32),
+(5221,1555,0.32),
+(5221,1556,0.32),
+(5221,1557,0.32),
+(5221,1804,0.92),
+(5221,1805,0.92),
+(5221,1806,0.92),
+(5221,1807,0.92),
+(5221,1808,0.92),
+(5221,1809,0.92),
+(5221,1846,0.47),
+(5221,1847,0.47),
+(5221,1848,0.47),
+(5221,1880,0.42),
+(5221,1881,0.42),
+(5221,1882,0.42),
+(5221,1883,0.42),
+(5221,1884,0.42),
+(5221,1885,0.42),
+(5221,1918,0.01),
+(5221,1919,0.01),
+(5221,1920,0.01),
+(5221,1921,0.01),
+(5221,1922,0.01),
+(5221,1923,0.01),
+(5221,1924,0.01),
+(5221,1956,0.35),
+(5221,1957,0.35),
+(5221,1958,0.35),
+(5221,1959,0.35),
+(5221,1960,0.35),
+(5221,1961,0.35),
+(5221,1994,1),
+(5221,1995,1),
+(5221,1996,1),
+(5221,1997,1),
+(5221,1998,1),
+(5221,1999,1),
+(5221,2032,0.87),
+(5221,2033,0.87),
+(5221,2034,0.87),
+(5221,2035,0.87),
+(5221,2036,0.87),
+(5221,2037,0.87),
+(5221,2114,0.03),
+(5221,2115,0.03),
+(5221,2116,0.03),
+(5221,2117,0.03),
+(5223,111,5.25),
+(5223,114,6.25),
+(5223,115,6.35),
+(5223,505,2.91),
+(5223,506,2.91),
+(5223,507,2.91),
+(5223,508,2.91),
+(5223,590,2.36),
+(5223,591,2.36),
+(5223,592,2.36),
+(5223,593,2.36),
+(5223,675,2.6),
+(5223,676,2.6),
+(5223,677,2.6),
+(5223,678,2.6),
+(5223,845,2.89),
+(5223,846,2.89),
+(5223,847,2.89),
+(5223,848,2.89),
+(5223,1015,3.22),
+(5223,1016,3.22),
+(5223,1017,3.22),
+(5223,1018,3.22),
+(5223,1100,3.21),
+(5223,1101,3.21),
+(5223,1102,3.21),
+(5223,1103,3.21),
+(5223,1185,2.7),
+(5223,1186,2.7),
+(5223,1187,2.7),
+(5223,1188,2.7),
+(5223,1551,1.04),
+(5223,1552,1.04),
+(5223,1553,0.83),
+(5224,110,0.1),
+(5224,114,4.45),
+(5224,115,4.95),
+(5224,207,0.05),
+(5224,210,0.05),
+(5224,590,5.25),
+(5224,591,5.25),
+(5224,592,5.25),
+(5224,593,5.25),
+(5224,675,5.22),
+(5224,676,5.22),
+(5224,677,5.22),
+(5224,678,5.22),
+(5224,845,0.03),
+(5224,846,0.03),
+(5224,847,0.03),
+(5224,848,0.03),
+(5224,1016,0.1),
+(5224,1101,0.1),
+(5224,1185,5.14),
+(5224,1186,5.14),
+(5224,1187,5.14),
+(5224,1188,5.14),
+(5224,1403,0.1),
+(5224,1550,3.33),
+(5224,1551,3.9),
+(5224,1552,3.9),
+(5224,1553,3.9),
+(5224,1803,1.5),
+(5224,1804,1.5),
+(5224,1805,1.5),
+(5224,1841,1.23),
+(5224,1842,1.23),
+(5224,1843,1.23),
+(5224,1879,0.1),
+(5224,1918,0.1),
+(5224,1919,0.1),
+(5224,1993,1.3),
+(5224,1994,1.3),
+(5224,1995,1.3),
+(5224,2031,0.9),
+(5224,2032,0.9),
+(5224,2033,0.9),
+(5227,173,2.55),
+(5227,188,3.2),
+(5227,193,3.1),
+(5227,211,2.55),
+(5227,217,3.2),
+(5227,219,3.1),
+(5227,517,3.15),
+(5227,518,3.15),
+(5227,519,3.15),
+(5227,520,3.15),
+(5227,602,2.33),
+(5227,603,2.33),
+(5227,604,2.33),
+(5227,605,2.33),
+(5227,687,2.58),
+(5227,688,2.58),
+(5227,689,2.58),
+(5227,690,2.58),
+(5227,857,2.97),
+(5227,858,2.97),
+(5227,859,2.97),
+(5227,860,2.97),
+(5227,1027,3.3),
+(5227,1028,3.3),
+(5227,1029,3.3),
+(5227,1030,3.3),
+(5227,1112,3.15),
+(5227,1113,3.15),
+(5227,1114,3.15),
+(5227,1115,3.15),
+(5227,1197,2.53),
+(5227,1198,2.53),
+(5227,1199,2.53),
+(5227,1200,2.53),
+(5227,1552,0.29),
+(5227,1553,0.29),
+(5227,1554,0.29),
+(5227,1555,0.29),
+(5227,1556,0.29),
+(5227,1557,0.29),
+(5227,1558,0.29),
+(5227,1559,0.29),
+(5231,114,3.05),
+(5231,115,3.6),
+(5231,135,3.05),
+(5231,136,3.6),
+(5231,590,6.22),
+(5231,591,6.22),
+(5231,592,6.22),
+(5231,593,6.22),
+(5231,675,6.68),
+(5231,676,6.68),
+(5231,677,6.68),
+(5231,678,6.68),
+(5231,1185,7.32),
+(5231,1186,7.32),
+(5231,1187,7.32),
+(5231,1188,7.32),
+(5231,1551,1.93),
+(5231,1552,1.93),
+(5231,1553,1.93),
+(5232,80,0.1),
+(5232,110,0.1),
+(5232,111,2.6),
+(5232,114,3.2),
+(5232,115,3.25),
+(5232,132,2.6),
+(5232,133,0.1),
+(5232,134,0.1),
+(5232,135,3.2),
+(5232,136,3.25),
+(5232,210,0.1),
+(5232,234,0.03),
+(5232,235,0.03),
+(5232,236,0.03),
+(5232,248,0.03),
+(5232,505,3),
+(5232,506,3),
+(5232,507,3),
+(5232,508,3),
+(5232,590,2.33),
+(5232,591,2.33),
+(5232,592,2.33),
+(5232,593,2.33),
+(5232,675,2.55),
+(5232,676,2.55),
+(5232,677,2.55),
+(5232,678,2.55),
+(5232,760,0.03),
+(5232,761,0.03),
+(5232,762,0.03),
+(5232,763,0.03),
+(5232,845,2.83),
+(5232,846,2.83),
+(5232,847,2.83),
+(5232,848,2.83),
+(5232,930,0.03),
+(5232,931,0.03),
+(5232,932,0.03),
+(5232,933,0.03),
+(5232,1015,3.28),
+(5232,1016,3.28),
+(5232,1017,3.28),
+(5232,1018,3.28),
+(5232,1100,3.15),
+(5232,1101,3.15),
+(5232,1102,3.15),
+(5232,1103,3.15),
+(5232,1185,2.72),
+(5232,1186,2.72),
+(5232,1187,2.72),
+(5232,1188,2.72),
+(5232,1312,0.1),
+(5232,1358,0.1),
+(5232,1404,0.1),
+(5232,1496,0.1),
+(5232,1550,0.5),
+(5232,1551,0.5),
+(5232,1552,0.5),
+(5232,1553,0.5),
+(5232,1554,0.5),
+(5232,1709,0.1),
+(5232,1880,0.1),
+(5232,1918,0.1),
+(5232,1956,0.1),
+(5232,1994,0.03),
+(5232,1995,0.03),
+(5232,1996,0.03),
+(5232,1997,0.03),
+(5232,2032,0.1),
+(5232,2138,0.03),
+(5232,2139,0.03),
+(5232,2140,0.03),
+(5232,2141,0.03),
+(5234,111,1.7),
+(5234,114,2),
+(5234,115,2.4),
+(5234,132,1.7),
+(5234,135,2),
+(5234,136,2.4),
+(5234,590,3.67),
+(5234,591,3.67),
+(5234,592,3.67),
+(5234,593,3.67),
+(5234,675,3.85),
+(5234,676,3.85),
+(5234,677,3.85),
+(5234,678,3.85),
+(5234,1185,4.82),
+(5234,1186,4.82),
+(5234,1187,4.82),
+(5234,1188,4.82),
+(5234,1551,5.07),
+(5234,1552,5.07),
+(5234,1553,5.07),
+(5234,1554,5.07),
+(5234,1803,1.05),
+(5234,1804,1.05),
+(5234,1805,1.05),
+(5234,1806,1.05),
+(5234,1841,0.32),
+(5234,1842,0.32),
+(5234,1843,0.32),
+(5234,1844,0.32),
+(5234,1879,0.63),
+(5234,1880,0.63),
+(5234,1881,0.63),
+(5234,1882,0.63),
+(5234,1955,0.6),
+(5234,1956,0.6),
+(5234,1957,0.6),
+(5234,1993,0.88),
+(5234,1994,0.88),
+(5234,1995,0.88),
+(5234,1996,0.88),
+(5234,2031,1.15),
+(5234,2032,1.15),
+(5234,2033,1.15),
+(5234,2034,1.15),
+(5236,211,2.35),
+(5236,212,2.35),
+(5236,217,3.45),
+(5236,218,3.45),
+(5236,219,3.25),
+(5236,220,3.25),
+(5236,437,0.03),
+(5236,438,0.03),
+(5236,439,0.03),
+(5236,440,0.03),
+(5236,520,2.92),
+(5236,521,2.92),
+(5236,522,2.92),
+(5236,523,2.92),
+(5236,605,2.25),
+(5236,606,2.25),
+(5236,607,2.25),
+(5236,608,2.25),
+(5236,690,2.04),
+(5236,691,2.04),
+(5236,692,2.04),
+(5236,693,2.04),
+(5236,695,2.04),
+(5236,860,2.4),
+(5236,861,2.4),
+(5236,862,2.4),
+(5236,863,2.4),
+(5236,864,2.4),
+(5236,949,0.1),
+(5236,1030,3.22),
+(5236,1031,3.22),
+(5236,1032,3.22),
+(5236,1033,3.22),
+(5236,1115,3.25),
+(5236,1116,3.25),
+(5236,1117,3.25),
+(5236,1118,3.25),
+(5236,1200,2.16),
+(5236,1201,2.16),
+(5236,1202,2.16),
+(5236,1203,2.16),
+(5236,1204,2.16),
+(5236,1321,0.1),
+(5236,1366,0.1),
+(5236,1553,0.3),
+(5236,1554,0.3),
+(5236,1555,0.3),
+(5236,1556,0.3),
+(5236,1557,0.3),
+(5236,1558,0.3),
+(5236,1559,0.3),
+(5236,1560,0.3),
+(5236,1926,0.1),
+(5236,2003,0.1),
+(5238,214,0.03),
+(5238,215,2.17),
+(5238,216,2.17),
+(5238,217,1.75),
+(5238,218,1.75),
+(5238,219,1.52),
+(5238,220,1.52),
+(5238,287,1.75),
+(5238,307,1.52),
+(5238,308,1.52),
+(5238,333,1.75),
+(5238,383,0.03),
+(5238,384,0.03),
+(5238,409,2.17),
+(5238,440,0.03),
+(5238,441,0.03),
+(5238,442,0.03),
+(5238,443,0.03),
+(5238,523,0.03),
+(5238,524,0.03),
+(5238,525,0.03),
+(5238,526,0.03),
+(5238,605,1.53),
+(5238,606,1.53),
+(5238,607,1.53),
+(5238,608,1.53),
+(5238,609,1.53),
+(5238,610,1.53),
+(5238,611,1.53),
+(5238,690,1.94),
+(5238,691,1.94),
+(5238,692,1.94),
+(5238,693,1.94),
+(5238,695,1.94),
+(5238,778,0.03),
+(5238,779,0.03),
+(5238,780,0.03),
+(5238,781,0.03),
+(5238,860,1.64),
+(5238,861,1.64),
+(5238,862,1.64),
+(5238,863,1.64),
+(5238,864,1.64),
+(5238,865,1.64),
+(5238,866,1.64),
+(5238,945,1.6),
+(5238,946,1.6),
+(5238,947,1.6),
+(5238,948,1.6),
+(5238,949,1.6),
+(5238,950,1.6),
+(5238,951,1.6),
+(5238,1030,1.71),
+(5238,1031,1.71),
+(5238,1032,1.71),
+(5238,1033,1.71),
+(5238,1034,1.71),
+(5238,1035,1.71),
+(5238,1036,1.71),
+(5238,1115,1.71),
+(5238,1116,1.71),
+(5238,1117,1.71),
+(5238,1118,1.71),
+(5238,1119,1.71),
+(5238,1120,1.71),
+(5238,1121,1.71),
+(5238,1200,1.46),
+(5238,1201,1.46),
+(5238,1202,1.46),
+(5238,1203,1.46),
+(5238,1204,1.46),
+(5238,1205,1.46),
+(5238,1206,1.46),
+(5238,1320,0.03),
+(5238,1321,0.03),
+(5238,1322,0.03),
+(5238,1366,0.03),
+(5238,1367,0.03),
+(5238,1368,0.03),
+(5238,1412,0.03),
+(5238,1413,0.03),
+(5238,1414,0.03),
+(5238,1458,0.1),
+(5238,1504,0.03),
+(5238,1505,0.03),
+(5238,1506,0.03),
+(5238,1557,0.75),
+(5238,1558,0.75),
+(5238,1559,0.75),
+(5238,1560,0.75),
+(5238,1718,0.03),
+(5238,1719,0.03),
+(5238,1720,0.03),
+(5238,1888,0.03),
+(5238,1889,0.03),
+(5238,1890,0.03),
+(5238,1927,0.05),
+(5238,1928,0.05),
+(5238,1964,0.03),
+(5238,1965,0.03),
+(5238,1966,0.03),
+(5238,2002,0.03),
+(5238,2003,0.03),
+(5238,2004,0.03),
+(5238,2041,0.05),
+(5238,2042,0.05),
+(5238,2080,0.03),
+(5238,2081,0.03),
+(5238,2082,0.03),
+(5238,2118,0.03),
+(5238,2119,0.03),
+(5238,2120,0.03),
+(5238,2121,0.03),
+(5239,212,0.1),
+(5239,213,1.7),
+(5239,214,1.7),
+(5239,215,3),
+(5239,216,3),
+(5239,217,2),
+(5239,218,2),
+(5239,440,0.1),
+(5239,520,2.83),
+(5239,521,2.83),
+(5239,522,2.83),
+(5239,523,2.83),
+(5239,605,1.56),
+(5239,606,1.56),
+(5239,607,1.56),
+(5239,608,1.56),
+(5239,610,1.56),
+(5239,775,1.4),
+(5239,776,1.4),
+(5239,777,1.4),
+(5239,778,1.4),
+(5239,779,1.4),
+(5239,860,1.15),
+(5239,861,1.15),
+(5239,862,1.15),
+(5239,863,1.15),
+(5239,946,0.1),
+(5239,1030,2.45),
+(5239,1031,2.45),
+(5239,1032,2.45),
+(5239,1033,2.45),
+(5239,1115,3.05),
+(5239,1116,3.05),
+(5239,1117,3.05),
+(5239,1118,3.05),
+(5239,1200,2.3),
+(5239,1201,2.3),
+(5239,1202,2.3),
+(5239,1203,2.3),
+(5239,1319,0.1),
+(5239,1457,0.1),
+(5239,1504,0.1),
+(5239,1553,0.26),
+(5239,1554,0.26),
+(5239,1555,0.26),
+(5239,1556,0.26),
+(5239,1557,0.26),
+(5239,1558,0.26),
+(5239,1559,0.26),
+(5239,1560,0.26),
+(5239,1717,0.03),
+(5239,1718,0.03),
+(5239,1719,0.03),
+(5239,1805,0.7),
+(5239,1806,0.7),
+(5239,1807,0.7),
+(5239,1808,0.7),
+(5239,1809,0.7),
+(5239,1810,0.7),
+(5239,1811,0.7),
+(5239,1812,0.7),
+(5239,1843,0.17),
+(5239,1844,0.17),
+(5239,1845,0.17),
+(5239,1846,0.17),
+(5239,1847,0.17),
+(5239,1848,0.17),
+(5239,1849,0.17),
+(5239,1850,0.17),
+(5239,1881,0.32),
+(5239,1882,0.32),
+(5239,1883,0.32),
+(5239,1884,0.32),
+(5239,1885,0.32),
+(5239,1886,0.32),
+(5239,1887,0.32),
+(5239,1888,0.32),
+(5239,1963,0.9),
+(5239,1964,0.9),
+(5239,1995,0.74),
+(5239,1996,0.74),
+(5239,1997,0.74),
+(5239,1998,0.74),
+(5239,1999,0.74),
+(5239,2000,0.74),
+(5239,2001,0.74),
+(5239,2002,0.74),
+(5239,2033,0.65),
+(5239,2034,0.65),
+(5239,2035,0.65),
+(5239,2036,0.65),
+(5239,2037,0.65),
+(5239,2038,0.65),
+(5239,2039,0.65),
+(5239,2040,0.65),
+(5239,2080,0.03),
+(5239,2081,0.03),
+(5239,2082,0.03),
+(5240,130,0.1),
+(5240,135,3.1),
+(5240,136,3.65),
+(5240,151,0.1),
+(5240,152,0.1),
+(5240,153,0.1),
+(5240,154,3.1),
+(5240,155,3.65),
+(5240,237,0.03),
+(5240,247,0.03),
+(5240,248,0.03),
+(5240,249,0.03),
+(5240,508,0.03),
+(5240,509,0.03),
+(5240,510,0.03),
+(5240,511,0.03),
+(5240,593,6.1),
+(5240,594,6.1),
+(5240,595,6.1),
+(5240,596,6.1),
+(5240,678,6.57),
+(5240,679,6.57),
+(5240,680,6.57),
+(5240,681,6.57),
+(5240,763,0.05),
+(5240,765,0.05),
+(5240,848,0.03),
+(5240,849,0.03),
+(5240,850,0.03),
+(5240,851,0.03),
+(5240,933,0.03),
+(5240,934,0.03),
+(5240,935,0.03),
+(5240,936,0.03),
+(5240,1018,0.05),
+(5240,1019,0.05),
+(5240,1103,0.03),
+(5240,1104,0.03),
+(5240,1105,0.03),
+(5240,1106,0.03),
+(5240,1188,7.45),
+(5240,1189,7.45),
+(5240,1190,7.45),
+(5240,1191,7.45),
+(5240,1313,0.1),
+(5240,1359,0.1),
+(5240,1405,0.1),
+(5240,1497,0.1),
+(5240,1551,1.18),
+(5240,1552,1.18),
+(5240,1553,1.18),
+(5240,1554,1.18),
+(5240,1555,1.18),
+(5240,1710,0.1),
+(5240,1805,0.1),
+(5240,1881,0.1),
+(5240,1919,0.1),
+(5240,1957,0.1),
+(5240,1995,0.1),
+(5240,2033,0.1),
+(5240,2073,0.05),
+(5240,2074,0.05),
+(5240,2110,0.03),
+(5240,2111,0.03),
+(5240,2112,0.03),
+(5240,2113,0.03),
+(5241,29,0.1),
+(5241,130,0.1),
+(5241,132,2.73),
+(5241,135,3.27),
+(5241,136,3.3),
+(5241,151,2.73),
+(5241,152,0.1),
+(5241,153,0.1),
+(5241,154,3.27),
+(5241,155,3.3),
+(5241,248,0.1),
+(5241,508,11.45),
+(5241,593,9.85),
+(5241,678,10.2),
+(5241,848,11.25),
+(5241,933,0.1),
+(5241,1018,12.7),
+(5241,1103,12.45),
+(5241,1188,10.8),
+(5241,1313,0.1),
+(5241,1359,0.1),
+(5241,1405,0.1),
+(5241,1451,0.1),
+(5241,1497,0.1),
+(5241,1552,0.68),
+(5241,1553,0.68),
+(5241,1554,0.68),
+(5241,1555,0.68),
+(5241,1710,0.1),
+(5241,1880,0.05),
+(5241,1881,0.05),
+(5241,1918,0.05),
+(5241,1919,0.05),
+(5241,1956,0.05),
+(5241,1957,0.05),
+(5241,1994,0.03),
+(5241,1995,0.03),
+(5241,1996,0.03),
+(5241,1997,0.03),
+(5241,2033,0.1),
+(5241,2138,0.03),
+(5241,2139,0.03),
+(5241,2140,0.03),
+(5241,2141,0.03),
+(5242,99,0.1),
+(5242,130,0.1),
+(5242,135,2.32),
+(5242,136,2.55),
+(5242,151,0.1),
+(5242,152,0.1),
+(5242,153,0.1),
+(5242,154,2.32),
+(5242,155,2.55),
+(5242,249,0.1),
+(5242,508,0.03),
+(5242,509,0.03),
+(5242,510,0.03),
+(5242,511,0.03),
+(5242,593,13.35),
+(5242,594,5.2),
+(5242,595,5.2),
+(5242,596,5.2),
+(5242,678,13.21),
+(5242,679,5.13),
+(5242,680,5.13),
+(5242,681,5.13),
+(5242,763,0.03),
+(5242,764,0.03),
+(5242,765,0.03),
+(5242,766,0.03),
+(5242,848,0.03),
+(5242,849,0.03),
+(5242,850,0.03),
+(5242,851,0.03),
+(5242,933,0.03),
+(5242,934,0.03),
+(5242,935,0.03),
+(5242,936,0.03),
+(5242,1018,0.03),
+(5242,1019,0.03),
+(5242,1020,0.03),
+(5242,1021,0.03),
+(5242,1103,0.03),
+(5242,1104,0.03),
+(5242,1105,0.03),
+(5242,1106,0.03),
+(5242,1188,12.76),
+(5242,1189,5.13),
+(5242,1190,5.13),
+(5242,1191,5.13),
+(5242,1313,0.1),
+(5242,1405,0.1),
+(5242,1451,0.1),
+(5242,1497,0.1),
+(5242,1551,2.74),
+(5242,1552,3.17),
+(5242,1553,3.17),
+(5242,1554,3.17),
+(5242,1555,3.17),
+(5242,1710,0.1),
+(5242,1804,1.2),
+(5242,1805,1.2),
+(5242,1806,1.2),
+(5242,1807,0.98),
+(5242,1842,0.97),
+(5242,1843,0.97),
+(5242,1844,0.97),
+(5242,1845,0.77),
+(5242,1881,0.1),
+(5242,1919,0.1),
+(5242,1920,0.1),
+(5242,1957,0.1),
+(5242,1994,1.07),
+(5242,1995,1.07),
+(5242,1996,1.07),
+(5242,1997,0.88),
+(5242,2032,0.76),
+(5242,2033,0.76),
+(5242,2034,0.76),
+(5242,2035,0.55),
+(5242,2073,0.05),
+(5242,2074,0.05),
+(5242,2110,0.03),
+(5242,2111,0.03),
+(5242,2112,0.03),
+(5242,2113,0.03),
+(5247,287,3.35),
+(5247,307,3.15),
+(5247,308,3.15),
+(5247,333,3.35),
+(5247,409,3.55),
+(5247,410,3.55),
+(5247,608,2.6),
+(5247,609,2.6),
+(5247,610,2.6),
+(5247,611,2.6),
+(5247,693,2.35),
+(5247,694,2.35),
+(5247,695,2.35),
+(5247,696,2.35),
+(5247,863,2.7),
+(5247,864,2.7),
+(5247,865,2.7),
+(5247,866,2.7),
+(5247,948,2.8),
+(5247,949,2.8),
+(5247,950,2.8),
+(5247,951,2.8),
+(5247,1033,3.22),
+(5247,1034,3.22),
+(5247,1035,3.22),
+(5247,1036,3.22),
+(5247,1118,3.15),
+(5247,1119,3.15),
+(5247,1120,3.15),
+(5247,1121,3.15),
+(5247,1203,2.5),
+(5247,1204,2.5),
+(5247,1205,2.5),
+(5247,1206,2.5),
+(5247,1554,0.31),
+(5247,1555,0.31),
+(5247,1556,0.31),
+(5247,1557,0.31),
+(5247,1558,0.31),
+(5247,1559,0.31),
+(5247,1560,0.31),
+(5247,1561,0.31),
+(5247,1562,0.31),
+(5249,154,6.1),
+(5249,155,7.4),
+(5249,593,6.03),
+(5249,594,6.03),
+(5249,595,6.03),
+(5249,596,6.03),
+(5249,678,6.55),
+(5249,679,6.55),
+(5249,680,6.55),
+(5249,681,6.55),
+(5249,1188,7.55),
+(5249,1189,7.55),
+(5249,1190,7.55),
+(5249,1191,7.55),
+(5249,1553,1.48),
+(5249,1554,1.48),
+(5249,1555,1.48),
+(5249,1556,1.48),
+(5250,29,0.1),
+(5250,151,5.3),
+(5250,154,6.6),
+(5250,155,6.2),
+(5250,508,2.97),
+(5250,509,2.97),
+(5250,510,2.97),
+(5250,511,2.97),
+(5250,593,2.45),
+(5250,594,2.45),
+(5250,595,2.45),
+(5250,596,2.45),
+(5250,678,2.53),
+(5250,679,2.53),
+(5250,680,2.53),
+(5250,681,2.53),
+(5250,848,2.8),
+(5250,849,2.8),
+(5250,850,2.8),
+(5250,851,2.8),
+(5250,1018,3.25),
+(5250,1019,3.25),
+(5250,1020,3.25),
+(5250,1021,3.25),
+(5250,1103,3.1),
+(5250,1104,3.1),
+(5250,1105,3.1),
+(5250,1106,3.1),
+(5250,1188,2.7),
+(5250,1189,2.7),
+(5250,1190,2.7),
+(5250,1191,2.7),
+(5250,1553,0.65),
+(5250,1554,0.65),
+(5250,1555,0.65),
+(5250,1556,0.65),
+(5251,154,4.5),
+(5251,155,4.8),
+(5251,593,5.28),
+(5251,594,5.28),
+(5251,595,5.28),
+(5251,596,5.28),
+(5251,678,4.95),
+(5251,679,4.95),
+(5251,680,4.95),
+(5251,681,4.95),
+(5251,1188,5.05),
+(5251,1189,5.05),
+(5251,1190,5.05),
+(5251,1191,5.05),
+(5251,1553,3.38),
+(5251,1554,3.38),
+(5251,1555,3.38),
+(5251,1556,3.38),
+(5251,1805,1.23),
+(5251,1806,1.23),
+(5251,1807,1.23),
+(5251,1808,1.23),
+(5251,1843,1),
+(5251,1844,1),
+(5251,1845,1),
+(5251,1846,1),
+(5251,1995,0.98),
+(5251,1996,0.98),
+(5251,1997,0.98),
+(5251,1998,0.98),
+(5251,2033,0.82),
+(5251,2034,0.82),
+(5251,2035,0.82),
+(5251,2036,0.82),
+(5252,151,3.5),
+(5252,154,4),
+(5252,155,4.5),
+(5252,593,3.8),
+(5252,594,3.8),
+(5252,595,3.8),
+(5252,596,3.8),
+(5252,678,4.03),
+(5252,679,4.03),
+(5252,680,4.03),
+(5252,681,4.03),
+(5252,1188,4.6),
+(5252,1189,4.6),
+(5252,1190,4.6),
+(5252,1191,4.6),
+(5252,1553,4.85),
+(5252,1554,4.85),
+(5252,1555,4.85),
+(5252,1556,4.85),
+(5252,1805,1.08),
+(5252,1806,1.08),
+(5252,1807,1.08),
+(5252,1808,1.08),
+(5252,1843,0.35),
+(5252,1844,0.35),
+(5252,1845,0.35),
+(5252,1846,0.35),
+(5252,1881,0.68),
+(5252,1882,0.68),
+(5252,1883,0.68),
+(5252,1884,0.68),
+(5252,1921,0.1),
+(5252,1957,0.73),
+(5252,1958,0.73),
+(5252,1959,0.73),
+(5252,1995,0.82),
+(5252,1996,0.82),
+(5252,1997,0.82),
+(5252,1998,0.82),
+(5252,2033,1.25),
+(5252,2034,1.25),
+(5252,2035,1.25),
+(5252,2036,1.25),
+(5253,112,3.8),
+(5253,113,5.9),
+(5253,114,4.5),
+(5253,234,2.42),
+(5253,235,2.42),
+(5253,236,2.42),
+(5253,248,2.42),
+(5253,505,3.2),
+(5253,506,3.2),
+(5253,507,3.2),
+(5253,508,3.2),
+(5253,760,1.9),
+(5253,761,1.9),
+(5253,762,1.9),
+(5253,763,1.9),
+(5253,845,1.55),
+(5253,846,1.55),
+(5253,847,1.55),
+(5253,848,1.55),
+(5253,930,2.67),
+(5253,931,2.67),
+(5253,932,2.67),
+(5253,933,2.67),
+(5253,1015,2.3),
+(5253,1016,2.3),
+(5253,1017,2.3),
+(5253,1018,2.3),
+(5253,1100,3.13),
+(5253,1101,3.13),
+(5253,1102,3.13),
+(5253,1103,3.13),
+(5253,1803,0.76),
+(5253,1804,0.76),
+(5253,1805,0.76),
+(5253,1806,0.76),
+(5253,1807,0.76),
+(5253,1841,0.26),
+(5253,1842,0.26),
+(5253,1843,0.26),
+(5253,1844,0.26),
+(5253,1845,0.26),
+(5253,1879,3.6),
+(5253,1955,0.68),
+(5253,1956,0.68),
+(5253,1957,0.68),
+(5253,1958,0.68),
+(5253,1959,0.68),
+(5253,2031,0.82),
+(5253,2032,0.82),
+(5253,2033,0.82),
+(5253,2034,0.82),
+(5253,2035,0.82),
+(5253,2036,0.82),
+(5254,308,2.3),
+(5254,309,2.3),
+(5254,310,2.3),
+(5254,333,2.3),
+(5254,334,2.3),
+(5254,335,2.3),
+(5254,358,2.35),
+(5254,359,2.35),
+(5254,385,0.05),
+(5254,386,0.05),
+(5254,411,0.1),
+(5254,445,0.02),
+(5254,446,0.02),
+(5254,447,0.02),
+(5254,448,0.02),
+(5254,449,0.02),
+(5254,526,1.61),
+(5254,527,1.61),
+(5254,528,1.61),
+(5254,529,1.61),
+(5254,530,1.61),
+(5254,531,1.61),
+(5254,532,1.61),
+(5254,611,1.26),
+(5254,612,1.26),
+(5254,613,1.26),
+(5254,614,1.26),
+(5254,615,1.26),
+(5254,616,1.26),
+(5254,617,1.26),
+(5254,696,2.75),
+(5254,697,2.75),
+(5254,698,2.75),
+(5254,699,2.75),
+(5254,782,0.03),
+(5254,784,0.03),
+(5254,786,0.03),
+(5254,866,1.7),
+(5254,867,1.7),
+(5254,868,1.7),
+(5254,869,1.7),
+(5254,870,1.7),
+(5254,871,1.7),
+(5254,872,1.7),
+(5254,956,0.1),
+(5254,1036,1.71),
+(5254,1037,1.71),
+(5254,1038,1.71),
+(5254,1039,1.71),
+(5254,1040,1.71),
+(5254,1041,1.71),
+(5254,1042,1.71),
+(5254,1121,1.76),
+(5254,1122,1.76),
+(5254,1123,1.76),
+(5254,1124,1.76),
+(5254,1125,1.76),
+(5254,1126,1.76),
+(5254,1127,1.76),
+(5254,1206,2.28),
+(5254,1207,2.28),
+(5254,1208,2.28),
+(5254,1209,2.28),
+(5254,1211,2.28),
+(5254,1323,0.05),
+(5254,1324,0.05),
+(5254,1369,0.1),
+(5254,1415,0.05),
+(5254,1416,0.05),
+(5254,1462,0.1),
+(5254,1507,0.1),
+(5254,1556,0.34),
+(5254,1557,0.34),
+(5254,1558,0.34),
+(5254,1559,0.34),
+(5254,1560,0.34),
+(5254,1561,0.34),
+(5254,1562,0.34),
+(5254,1563,0.34),
+(5254,1721,0.05),
+(5254,1722,0.05),
+(5254,1891,0.03),
+(5254,1892,0.03),
+(5254,1893,0.03),
+(5254,1930,0.05),
+(5254,1931,0.05),
+(5254,1967,0.05),
+(5254,1968,0.05),
+(5254,2043,0.03),
+(5254,2044,0.03),
+(5254,2045,0.03),
+(5254,2083,0.05),
+(5254,2084,0.05),
+(5255,308,1.7),
+(5255,309,1.7),
+(5255,310,1.7),
+(5255,311,1.7),
+(5255,333,2.27),
+(5255,334,2.27),
+(5255,335,2.27),
+(5255,358,2.3),
+(5255,359,2.3),
+(5255,385,0.1),
+(5255,411,0.03),
+(5255,412,0.03),
+(5255,413,0.03),
+(5255,446,0.03),
+(5255,447,0.03),
+(5255,448,0.03),
+(5255,449,0.03),
+(5255,526,2.3),
+(5255,527,2.3),
+(5255,528,2.3),
+(5255,529,2.3),
+(5255,530,2.3),
+(5255,611,1.27),
+(5255,612,1.27),
+(5255,613,1.27),
+(5255,614,1.27),
+(5255,615,1.27),
+(5255,616,1.27),
+(5255,617,1.27),
+(5255,696,1.51),
+(5255,697,1.51),
+(5255,698,1.51),
+(5255,699,1.51),
+(5255,700,1.51),
+(5255,701,1.51),
+(5255,702,1.51),
+(5255,785,0.05),
+(5255,787,0.05),
+(5255,866,1.64),
+(5255,867,1.64),
+(5255,868,1.64),
+(5255,869,1.64),
+(5255,870,1.64),
+(5255,871,1.64),
+(5255,872,1.64),
+(5255,954,0.03),
+(5255,955,0.03),
+(5255,956,0.03),
+(5255,957,0.03),
+(5255,1036,1.87),
+(5255,1037,1.87),
+(5255,1038,1.87),
+(5255,1039,1.87),
+(5255,1040,1.87),
+(5255,1041,1.87),
+(5255,1042,1.87),
+(5255,1121,1.76),
+(5255,1122,1.76),
+(5255,1123,1.76),
+(5255,1124,1.76),
+(5255,1125,1.76),
+(5255,1126,1.76),
+(5255,1127,1.76),
+(5255,1206,2.28),
+(5255,1207,2.28),
+(5255,1208,2.28),
+(5255,1209,2.28),
+(5255,1211,2.28),
+(5255,1324,0.1),
+(5255,1370,0.05),
+(5255,1371,0.05),
+(5255,1417,0.1),
+(5255,1461,0.1),
+(5255,1507,0.03),
+(5255,1508,0.03),
+(5255,1509,0.03),
+(5255,1562,1.25),
+(5255,1563,1.25),
+(5255,1723,0.1),
+(5255,1893,0.1),
+(5255,1968,0.1),
+(5255,2044,0.1),
+(5255,2085,0.03),
+(5255,2086,0.03),
+(5255,2087,0.03),
+(5255,2122,0.03),
+(5255,2123,0.03),
+(5255,2124,0.03),
+(5255,2125,0.03),
+(5256,308,3.05),
+(5256,309,3.05),
+(5256,333,3.35),
+(5256,334,3.35),
+(5256,410,3.4),
+(5256,411,3.4),
+(5256,611,2.58),
+(5256,612,2.58),
+(5256,613,2.58),
+(5256,614,2.58),
+(5256,696,2.35),
+(5256,697,2.35),
+(5256,698,2.35),
+(5256,699,2.35),
+(5256,866,2.85),
+(5256,867,2.85),
+(5256,868,2.85),
+(5256,869,2.85),
+(5256,951,2.9),
+(5256,952,2.9),
+(5256,953,2.9),
+(5256,954,2.9),
+(5256,1036,3.15),
+(5256,1037,3.15),
+(5256,1038,3.15),
+(5256,1039,3.15),
+(5256,1121,3.13),
+(5256,1122,3.13),
+(5256,1123,3.13),
+(5256,1124,3.13),
+(5256,1206,2.42),
+(5256,1207,2.42),
+(5256,1208,2.42),
+(5256,1209,2.42),
+(5256,1556,0.36),
+(5256,1557,0.36),
+(5256,1558,0.36),
+(5256,1559,0.36),
+(5256,1560,0.36),
+(5256,1561,0.36),
+(5256,1562,0.36),
+(5256,1563,0.36),
+(5257,311,0.1),
+(5257,333,2.3),
+(5257,334,2.3),
+(5257,360,0.1),
+(5257,384,0.98),
+(5257,385,0.98),
+(5257,386,0.98),
+(5257,387,0.98),
+(5257,410,1.77),
+(5257,411,1.77),
+(5257,412,1.77),
+(5257,448,0.1),
+(5257,526,1.44),
+(5257,527,1.44),
+(5257,528,1.44),
+(5257,529,1.44),
+(5257,530,1.44),
+(5257,531,1.44),
+(5257,532,1.44),
+(5257,611,1.23),
+(5257,612,1.23),
+(5257,613,1.23),
+(5257,614,1.23),
+(5257,615,1.23),
+(5257,616,1.23),
+(5257,617,1.23),
+(5257,699,0.03),
+(5257,700,0.03),
+(5257,701,0.03),
+(5257,702,0.03),
+(5257,781,1),
+(5257,782,1),
+(5257,783,1),
+(5257,784,1),
+(5257,785,1),
+(5257,786,1),
+(5257,787,1),
+(5257,866,1.08),
+(5257,867,1.08),
+(5257,868,1.08),
+(5257,869,1.08),
+(5257,870,1.08),
+(5257,954,0.05),
+(5257,955,0.05),
+(5257,1036,1.31),
+(5257,1037,1.31),
+(5257,1038,1.31),
+(5257,1039,1.31),
+(5257,1040,1.31),
+(5257,1041,1.31),
+(5257,1042,1.31),
+(5257,1121,1.56),
+(5257,1122,1.56),
+(5257,1123,1.56),
+(5257,1124,1.56),
+(5257,1125,1.56),
+(5257,1126,1.56),
+(5257,1127,1.56),
+(5257,1206,2.3),
+(5257,1207,2.3),
+(5257,1208,2.3),
+(5257,1209,2.3),
+(5257,1323,0.03),
+(5257,1324,0.03),
+(5257,1325,0.03),
+(5257,1370,0.1),
+(5257,1415,0.1),
+(5257,1461,0.05),
+(5257,1462,0.05),
+(5257,1508,0.1),
+(5257,1558,0.35),
+(5257,1559,0.35),
+(5257,1560,0.35),
+(5257,1561,0.35),
+(5257,1562,0.35),
+(5257,1563,0.35),
+(5257,1807,0.56),
+(5257,1808,0.56),
+(5257,1809,0.56),
+(5257,1810,0.56),
+(5257,1811,0.56),
+(5257,1812,0.56),
+(5257,1813,0.56),
+(5257,1814,0.56),
+(5257,1815,0.56),
+(5257,1816,0.56),
+(5257,1846,0.15),
+(5257,1847,0.15),
+(5257,1848,0.15),
+(5257,1849,0.15),
+(5257,1850,0.15),
+(5257,1851,0.15),
+(5257,1852,0.15),
+(5257,1853,0.15),
+(5257,1854,0.15),
+(5257,1855,0.15),
+(5257,1883,0.27),
+(5257,1884,0.27),
+(5257,1885,0.27),
+(5257,1886,0.27),
+(5257,1887,0.27),
+(5257,1888,0.27),
+(5257,1889,0.27),
+(5257,1890,0.27),
+(5257,1891,0.27),
+(5257,1892,0.27),
+(5257,1893,0.27),
+(5257,1930,0.05),
+(5257,1931,0.05),
+(5257,1959,0.22),
+(5257,1960,0.22),
+(5257,1961,0.22),
+(5257,1962,0.22),
+(5257,1963,0.22),
+(5257,1964,0.22),
+(5257,1965,0.22),
+(5257,1966,0.22),
+(5257,1967,0.22),
+(5257,1968,0.22),
+(5257,1969,0.22),
+(5257,1998,0.68),
+(5257,1999,0.68),
+(5257,2000,0.68),
+(5257,2001,0.68),
+(5257,2002,0.68),
+(5257,2003,0.68),
+(5257,2004,0.68),
+(5257,2005,0.68),
+(5257,2035,0.53),
+(5257,2036,0.53),
+(5257,2037,0.53),
+(5257,2038,0.53),
+(5257,2039,0.53),
+(5257,2040,0.53),
+(5257,2041,0.53),
+(5257,2042,0.53),
+(5257,2043,0.53),
+(5257,2044,0.53),
+(5257,2045,0.53),
+(5257,2085,0.03),
+(5257,2086,0.03),
+(5257,2087,0.03),
+(5257,2122,0.03),
+(5257,2123,0.03),
+(5257,2124,0.03),
+(5257,2125,0.03),
+(5258,154,2.95),
+(5258,155,3.58),
+(5258,184,2.95),
+(5258,189,3.58),
+(5258,593,6.24),
+(5258,594,6.24),
+(5258,595,6.24),
+(5258,596,6.24),
+(5258,678,6.78),
+(5258,679,6.78),
+(5258,680,6.78),
+(5258,681,6.78),
+(5258,766,0.1),
+(5258,1188,7.3),
+(5258,1189,7.3),
+(5258,1190,7.3),
+(5258,1191,7.3),
+(5258,1553,1.4),
+(5258,1554,1.4),
+(5258,1555,1.4),
+(5258,1556,1.4),
+(5261,151,1.7),
+(5261,154,1.95),
+(5261,155,2.4),
+(5261,167,1.7),
+(5261,174,0.1),
+(5261,179,0.1),
+(5261,184,1.95),
+(5261,189,2.4),
+(5261,511,0.1),
+(5261,593,3.85),
+(5261,594,3.85),
+(5261,595,3.85),
+(5261,596,3.85),
+(5261,678,3.92),
+(5261,679,3.92),
+(5261,680,3.92),
+(5261,681,3.92),
+(5261,766,0.1),
+(5261,851,0.1),
+(5261,1021,0.1),
+(5261,1106,0.1),
+(5261,1188,4.7),
+(5261,1189,4.7),
+(5261,1190,4.7),
+(5261,1191,4.7),
+(5261,1314,0.1),
+(5261,1360,0.1),
+(5261,1406,0.1),
+(5261,1553,4.8),
+(5261,1554,4.8),
+(5261,1555,4.8),
+(5261,1556,4.8),
+(5261,1805,1.13),
+(5261,1806,1.13),
+(5261,1807,1.13),
+(5261,1808,1.13),
+(5261,1843,0.65),
+(5261,1844,0.65),
+(5261,1881,0.65),
+(5261,1882,0.65),
+(5261,1883,0.65),
+(5261,1884,0.65),
+(5261,1957,0.52),
+(5261,1958,0.52),
+(5261,1959,0.52),
+(5261,1960,0.52),
+(5261,1995,0.8),
+(5261,1996,0.8),
+(5261,1997,0.8),
+(5261,1998,0.8),
+(5261,2033,1.2),
+(5261,2034,1.2),
+(5261,2035,1.2),
+(5261,2036,1.2),
+(5262,133,3.8),
+(5262,134,5.3),
+(5262,135,4.6),
+(5262,234,2.63),
+(5262,235,2.63),
+(5262,236,2.63),
+(5262,248,2.63),
+(5262,505,3.17),
+(5262,506,3.17),
+(5262,507,3.17),
+(5262,508,3.17),
+(5262,760,1.92),
+(5262,761,1.92),
+(5262,762,1.92),
+(5262,763,1.92),
+(5262,845,1.55),
+(5262,846,1.55),
+(5262,847,1.55),
+(5262,848,1.55),
+(5262,930,2.6),
+(5262,931,2.6),
+(5262,932,2.6),
+(5262,933,2.6),
+(5262,1015,2.25),
+(5262,1016,2.25),
+(5262,1017,2.25),
+(5262,1018,2.25),
+(5262,1100,3.22),
+(5262,1101,3.22),
+(5262,1102,3.22),
+(5262,1103,3.22),
+(5262,1804,0.82),
+(5262,1805,0.82),
+(5262,1806,0.82),
+(5262,1807,0.82),
+(5262,1808,0.82),
+(5262,1842,0.24),
+(5262,1843,0.24),
+(5262,1844,0.24),
+(5262,1845,0.24),
+(5262,1846,0.24),
+(5262,1880,0.78),
+(5262,1881,0.78),
+(5262,1882,0.78),
+(5262,1883,0.78),
+(5262,1884,0.78),
+(5262,1956,0.7),
+(5262,1957,0.7),
+(5262,1958,0.7),
+(5262,1959,0.7),
+(5262,1960,0.7),
+(5262,2032,0.84),
+(5262,2033,0.84),
+(5262,2034,0.84),
+(5262,2035,0.84),
+(5262,2036,0.84),
+(5263,310,3.6),
+(5263,311,3.6),
+(5263,335,3.35),
+(5263,336,3.35),
+(5263,360,2.15),
+(5263,361,2.15),
+(5263,529,2.78),
+(5263,530,2.78),
+(5263,531,2.78),
+(5263,532,2.78),
+(5263,614,2.17),
+(5263,615,2.17),
+(5263,616,2.17),
+(5263,617,2.17),
+(5263,699,2.6),
+(5263,700,2.6),
+(5263,701,2.6),
+(5263,702,2.6),
+(5263,869,2.92),
+(5263,870,2.92),
+(5263,871,2.92),
+(5263,872,2.92),
+(5263,1039,3.17),
+(5263,1040,3.17),
+(5263,1041,3.17),
+(5263,1042,3.17),
+(5263,1124,3.13),
+(5263,1125,3.13),
+(5263,1126,3.13),
+(5263,1127,3.13),
+(5263,1209,3.03),
+(5263,1210,3.03),
+(5263,1211,3.03),
+(5263,1212,3.03),
+(5263,1556,0.24),
+(5263,1557,0.24),
+(5263,1558,0.24),
+(5263,1559,0.24),
+(5263,1560,0.24),
+(5263,1561,0.24),
+(5263,1562,0.24),
+(5263,1563,0.24),
+(5263,1564,0.24),
+(5263,1565,0.24),
+(5266,335,1.53),
+(5266,336,1.53),
+(5266,337,1.53),
+(5266,360,0.1),
+(5266,386,1.7),
+(5266,387,1.7),
+(5266,412,2.85),
+(5266,413,2.85),
+(5266,529,2.1),
+(5266,530,2.1),
+(5266,531,2.1),
+(5266,532,2.1),
+(5266,534,2.1),
+(5266,614,2.17),
+(5266,615,2.17),
+(5266,616,2.17),
+(5266,617,2.17),
+(5266,703,0.1),
+(5266,784,1.75),
+(5266,785,1.75),
+(5266,786,1.75),
+(5266,787,1.75),
+(5266,869,0.76),
+(5266,870,0.76),
+(5266,871,0.76),
+(5266,872,0.76),
+(5266,873,0.76),
+(5266,874,0.76),
+(5266,875,0.76),
+(5266,957,0.1),
+(5266,1039,1.27),
+(5266,1040,1.27),
+(5266,1041,1.27),
+(5266,1042,1.27),
+(5266,1043,1.27),
+(5266,1044,1.27),
+(5266,1045,1.27),
+(5266,1124,2.83),
+(5266,1125,2.83),
+(5266,1126,2.83),
+(5266,1127,2.83),
+(5266,1209,2.4),
+(5266,1210,2.4),
+(5266,1211,2.4),
+(5266,1212,2.4),
+(5266,1325,0.1),
+(5266,1372,0.1),
+(5266,1416,0.1),
+(5266,1508,0.05),
+(5266,1509,0.05),
+(5266,1556,0.21),
+(5266,1557,0.21),
+(5266,1558,0.21),
+(5266,1559,0.21),
+(5266,1560,0.21),
+(5266,1561,0.21),
+(5266,1562,0.21),
+(5266,1563,0.21),
+(5266,1564,0.21),
+(5266,1565,0.21),
+(5266,1722,0.05),
+(5266,1723,0.05),
+(5266,1808,0.57),
+(5266,1809,0.57),
+(5266,1810,0.57),
+(5266,1811,0.57),
+(5266,1812,0.57),
+(5266,1813,0.57),
+(5266,1814,0.57),
+(5266,1815,0.57),
+(5266,1816,0.57),
+(5266,1817,0.57),
+(5266,1846,0.15),
+(5266,1847,0.15),
+(5266,1848,0.15),
+(5266,1849,0.15),
+(5266,1850,0.15),
+(5266,1851,0.15),
+(5266,1852,0.15),
+(5266,1853,0.15),
+(5266,1854,0.15),
+(5266,1855,0.15),
+(5266,1884,0.29),
+(5266,1885,0.29),
+(5266,1886,0.29),
+(5266,1887,0.29),
+(5266,1888,0.29),
+(5266,1889,0.29),
+(5266,1890,0.29),
+(5266,1891,0.29),
+(5266,1892,0.29),
+(5266,1893,0.29),
+(5266,1930,0.03),
+(5266,1931,0.03),
+(5266,1932,0.03),
+(5266,1960,0.22),
+(5266,1961,0.22),
+(5266,1962,0.22),
+(5266,1963,0.22),
+(5266,1964,0.22),
+(5266,1965,0.22),
+(5266,1966,0.22),
+(5266,1967,0.22),
+(5266,1968,0.22),
+(5266,1969,0.22),
+(5266,1970,0.22),
+(5266,1998,0.49),
+(5266,1999,0.49),
+(5266,2000,0.49),
+(5266,2001,0.49),
+(5266,2002,0.49),
+(5266,2003,0.49),
+(5266,2004,0.49),
+(5266,2005,0.49),
+(5266,2006,0.49),
+(5266,2007,0.49),
+(5266,2008,0.49),
+(5266,2036,0.51),
+(5266,2037,0.51),
+(5266,2038,0.51),
+(5266,2039,0.51),
+(5266,2040,0.51),
+(5266,2041,0.51),
+(5266,2042,0.51),
+(5266,2043,0.51),
+(5266,2044,0.51),
+(5266,2045,0.51),
+(5266,2085,0.03),
+(5266,2086,0.03),
+(5266,2087,0.03),
+(5266,2122,0.03),
+(5266,2123,0.03),
+(5266,2124,0.03),
+(5266,2125,0.03),
+(5268,167,4.23),
+(5268,168,2.65),
+(5268,174,0.1),
+(5268,179,0.05),
+(5268,180,0.05),
+(5268,184,4.65),
+(5268,185,3.2),
+(5268,189,4.7),
+(5268,190,3.2),
+(5268,247,0.03),
+(5268,250,0.03),
+(5268,251,0.03),
+(5268,252,0.03),
+(5268,511,2.88),
+(5268,512,2.88),
+(5268,513,2.88),
+(5268,514,2.88),
+(5268,596,2.54),
+(5268,597,2.54),
+(5268,598,2.54),
+(5268,599,2.54),
+(5268,681,2.65),
+(5268,682,2.65),
+(5268,683,2.65),
+(5268,684,2.65),
+(5268,767,0.1),
+(5268,851,2.83),
+(5268,852,2.83),
+(5268,853,2.83),
+(5268,854,2.83),
+(5268,938,0.1),
+(5268,1021,3.13),
+(5268,1022,3.13),
+(5268,1023,3.13),
+(5268,1024,3.13),
+(5268,1106,2.98),
+(5268,1107,2.98),
+(5268,1108,2.98),
+(5268,1109,2.98),
+(5268,1191,2.75),
+(5268,1192,2.75),
+(5268,1193,2.75),
+(5268,1194,2.75),
+(5268,1453,0.1),
+(5268,1499,0.1),
+(5268,1554,2.85),
+(5268,2034,0.1),
+(5269,81,0.1),
+(5269,119,0.1),
+(5269,184,2.2),
+(5269,185,2.2),
+(5269,189,4.7),
+(5269,247,0.03),
+(5269,250,0.03),
+(5269,251,0.03),
+(5269,252,0.03),
+(5269,596,5.35),
+(5269,597,5.35),
+(5269,598,5.35),
+(5269,599,5.35),
+(5269,681,5.15),
+(5269,682,5.15),
+(5269,683,5.15),
+(5269,684,5.15),
+(5269,767,0.1),
+(5269,853,0.1),
+(5269,937,0.1),
+(5269,1021,0.03),
+(5269,1022,0.03),
+(5269,1023,0.03),
+(5269,1024,0.03),
+(5269,1108,0.1),
+(5269,1191,5.25),
+(5269,1192,5.25),
+(5269,1193,5.25),
+(5269,1194,5.25),
+(5269,1361,0.1),
+(5269,1453,0.1),
+(5269,1554,3.28),
+(5269,1555,3.28),
+(5269,1556,3.28),
+(5269,1557,3.28),
+(5269,1806,0.95),
+(5269,1807,0.95),
+(5269,1808,0.95),
+(5269,1809,0.95),
+(5269,1844,0.98),
+(5269,1845,0.98),
+(5269,1846,0.98),
+(5269,1847,0.98),
+(5269,1921,0.1),
+(5269,1996,0.9),
+(5269,1997,0.9),
+(5269,1998,0.9),
+(5269,1999,0.9),
+(5269,2034,0.82),
+(5269,2035,0.82),
+(5269,2036,0.82),
+(5269,2037,0.82),
+(5270,167,3.5),
+(5270,184,3.9),
+(5270,189,4.5),
+(5270,252,0.1),
+(5270,596,3.8),
+(5270,597,3.8),
+(5270,598,3.8),
+(5270,599,3.8),
+(5270,681,3.95),
+(5270,682,3.95),
+(5270,683,3.95),
+(5270,684,3.95),
+(5270,937,0.1),
+(5270,1191,4.72),
+(5270,1192,4.72),
+(5270,1193,4.72),
+(5270,1194,4.72),
+(5270,1453,0.1),
+(5270,1554,4.88),
+(5270,1555,4.88),
+(5270,1556,4.88),
+(5270,1557,4.88),
+(5270,1806,1),
+(5270,1807,1),
+(5270,1808,1),
+(5270,1809,1),
+(5270,1844,1.5),
+(5270,1882,3.2),
+(5270,1958,0.55),
+(5270,1959,0.55),
+(5270,1960,0.55),
+(5270,1961,0.55),
+(5270,1996,0.75),
+(5270,1997,0.75),
+(5270,1998,0.75),
+(5270,1999,0.75),
+(5270,2034,1.15),
+(5270,2035,1.15),
+(5270,2036,1.15),
+(5270,2037,1.15),
+(5272,311,3.4),
+(5272,312,3.4),
+(5272,336,3.35),
+(5272,337,3.35),
+(5272,361,2.35),
+(5272,362,2.35),
+(5272,532,2.67),
+(5272,533,2.67),
+(5272,534,2.67),
+(5272,535,2.67),
+(5272,617,2.45),
+(5272,618,2.45),
+(5272,619,2.45),
+(5272,620,2.45),
+(5272,702,2.88),
+(5272,703,2.88),
+(5272,704,2.88),
+(5272,705,2.88),
+(5272,872,2.9),
+(5272,873,2.9),
+(5272,874,2.9),
+(5272,875,2.9),
+(5272,1042,2.7),
+(5272,1043,2.7),
+(5272,1044,2.7),
+(5272,1045,2.7),
+(5272,1127,3.1),
+(5272,1128,3.1),
+(5272,1129,3.1),
+(5272,1130,3.1),
+(5272,1212,3.1),
+(5272,1213,3.1),
+(5272,1214,3.1),
+(5272,1215,3.1),
+(5272,1557,0.26),
+(5272,1558,0.26),
+(5272,1559,0.26),
+(5272,1560,0.26),
+(5272,1561,0.26),
+(5272,1562,0.26),
+(5272,1563,0.26),
+(5272,1564,0.26),
+(5272,1565,0.26),
+(5272,1566,0.26),
+(5273,311,3.6),
+(5273,312,3.6),
+(5273,336,3.35),
+(5273,337,3.35),
+(5273,361,2.3),
+(5273,362,2.3),
+(5273,532,2.65),
+(5273,533,2.65),
+(5273,534,2.65),
+(5273,535,2.65),
+(5273,617,2.33),
+(5273,618,2.33),
+(5273,619,2.33),
+(5273,620,2.33),
+(5273,702,2.92),
+(5273,703,2.92),
+(5273,704,2.92),
+(5273,705,2.92),
+(5273,872,2.88),
+(5273,873,2.88),
+(5273,874,2.88),
+(5273,875,2.88),
+(5273,1042,2.92),
+(5273,1043,2.92),
+(5273,1044,2.92),
+(5273,1045,2.92),
+(5273,1127,3.08),
+(5273,1128,3.08),
+(5273,1129,3.08),
+(5273,1130,3.08),
+(5273,1212,3),
+(5273,1213,3),
+(5273,1214,3),
+(5273,1215,3),
+(5273,1557,0.25),
+(5273,1558,0.25),
+(5273,1559,0.25),
+(5273,1560,0.25),
+(5273,1561,0.25),
+(5273,1562,0.25),
+(5273,1563,0.25),
+(5273,1564,0.25),
+(5273,1565,0.25),
+(5273,1566,0.25),
+(5274,311,3.05),
+(5274,312,3.05),
+(5274,336,2.84),
+(5274,337,2.84),
+(5274,338,2.23),
+(5274,413,2.52),
+(5274,414,2.52),
+(5274,415,1.93),
+(5274,452,0.05),
+(5274,453,0.05),
+(5274,537,0.05),
+(5274,538,0.05),
+(5274,617,2.18),
+(5274,618,2.18),
+(5274,619,2.18),
+(5274,620,2.18),
+(5274,621,1.63),
+(5274,622,1.63),
+(5274,623,1.63),
+(5274,702,2.46),
+(5274,703,2.46),
+(5274,704,2.46),
+(5274,705,2.46),
+(5274,793,0.1),
+(5274,872,2.84),
+(5274,873,2.84),
+(5274,874,2.84),
+(5274,875,2.84),
+(5274,957,2.91),
+(5274,958,2.91),
+(5274,959,2.91),
+(5274,960,2.91),
+(5274,1042,2.69),
+(5274,1043,2.69),
+(5274,1044,2.69),
+(5274,1045,2.69),
+(5274,1046,2.38),
+(5274,1127,2.92),
+(5274,1128,2.92),
+(5274,1129,2.92),
+(5274,1130,2.92),
+(5274,1212,2.66),
+(5274,1213,2.66),
+(5274,1214,2.66),
+(5274,1215,2.66),
+(5274,1327,0.05),
+(5274,1328,0.05),
+(5274,1512,0.1),
+(5274,1557,0.29),
+(5274,1558,0.29),
+(5274,1559,0.29),
+(5274,1560,0.29),
+(5274,1561,0.29),
+(5274,1562,0.29),
+(5274,1563,0.29),
+(5274,1564,0.29),
+(5274,1565,0.87),
+(5274,1566,0.87),
+(5274,1932,0.1),
+(5274,1972,0.1),
+(5274,2047,0.1),
+(5276,185,6.1),
+(5276,190,6.9),
+(5276,596,6.22),
+(5276,597,6.22),
+(5276,598,6.22),
+(5276,599,6.22),
+(5276,681,6.63),
+(5276,682,6.63),
+(5276,683,6.63),
+(5276,684,6.63),
+(5276,1191,7.47),
+(5276,1192,7.47),
+(5276,1193,7.47),
+(5276,1194,7.47),
+(5276,1555,5.7),
+(5278,185,4.7),
+(5278,190,4.6),
+(5278,596,5.28),
+(5278,597,5.28),
+(5278,598,5.28),
+(5278,599,5.28),
+(5278,681,5.25),
+(5278,682,5.25),
+(5278,683,5.25),
+(5278,684,5.25),
+(5278,1191,5.32),
+(5278,1192,5.32),
+(5278,1193,5.32),
+(5278,1194,5.32),
+(5278,1555,3.28),
+(5278,1556,3.28),
+(5278,1557,3.28),
+(5278,1558,3.28),
+(5278,1807,4.2),
+(5278,1845,3.7),
+(5278,1997,0.9),
+(5278,1998,0.9),
+(5278,1999,0.9),
+(5278,2000,0.9),
+(5278,2035,2.8),
+(5279,168,3.3),
+(5279,185,4),
+(5279,190,4.5),
+(5279,596,3.9),
+(5279,597,3.9),
+(5279,598,3.9),
+(5279,599,3.9),
+(5279,681,4.05),
+(5279,682,4.05),
+(5279,683,4.05),
+(5279,684,4.05),
+(5279,1191,4.72),
+(5279,1192,4.72),
+(5279,1193,4.72),
+(5279,1194,4.72),
+(5279,1555,4.8),
+(5279,1556,4.8),
+(5279,1557,4.8),
+(5279,1558,4.8),
+(5279,1807,0.9),
+(5279,1808,0.9),
+(5279,1809,0.9),
+(5279,1810,0.9),
+(5279,1845,1.6),
+(5279,1883,2.8),
+(5279,1959,2.2),
+(5279,1997,0.8),
+(5279,1998,0.8),
+(5279,1999,0.8),
+(5279,2000,0.8),
+(5279,2035,1.2),
+(5279,2036,1.2),
+(5279,2037,1.2),
+(5279,2038,1.2),
+(5280,133,2.1),
+(5280,134,2.75),
+(5280,135,2.35),
+(5280,152,2.1),
+(5280,153,2.75),
+(5280,154,2.35),
+(5280,237,2.63),
+(5280,247,2.63),
+(5280,248,2.63),
+(5280,249,2.63),
+(5280,508,2.9),
+(5280,509,2.9),
+(5280,510,2.9),
+(5280,511,2.9),
+(5280,763,1.95),
+(5280,764,1.95),
+(5280,765,1.95),
+(5280,766,1.95),
+(5280,848,1.67),
+(5280,849,1.67),
+(5280,850,1.67),
+(5280,851,1.67),
+(5280,933,2.72),
+(5280,934,2.72),
+(5280,935,2.72),
+(5280,936,2.72),
+(5280,1018,2.4),
+(5280,1019,2.4),
+(5280,1020,2.4),
+(5280,1021,2.4),
+(5280,1103,3),
+(5280,1104,3),
+(5280,1105,3),
+(5280,1106,3),
+(5280,1804,0.54),
+(5280,1805,0.54),
+(5280,1806,0.54),
+(5280,1807,0.54),
+(5280,1808,0.54),
+(5280,1809,0.54),
+(5280,1810,0.54),
+(5280,1842,0.21),
+(5280,1843,0.21),
+(5280,1844,0.21),
+(5280,1845,0.21),
+(5280,1846,0.21),
+(5280,1847,0.21),
+(5280,1848,0.21),
+(5280,1880,0.54),
+(5280,1881,0.54),
+(5280,1882,0.54),
+(5280,1883,0.54),
+(5280,1884,0.54),
+(5280,1885,0.54),
+(5280,1886,0.54),
+(5280,1956,0.4),
+(5280,1957,0.4),
+(5280,1958,0.4),
+(5280,1959,0.4),
+(5280,1960,0.4),
+(5280,1961,0.4),
+(5280,1962,0.4),
+(5280,2032,0.66),
+(5280,2033,0.66),
+(5280,2034,0.66),
+(5280,2035,0.66),
+(5280,2036,0.66),
+(5280,2037,0.66),
+(5280,2038,0.66),
+(5281,313,3.35),
+(5281,314,3.35),
+(5281,338,3.2),
+(5281,339,3.2),
+(5281,363,2.25),
+(5281,364,2.25),
+(5281,535,2.78),
+(5281,536,2.78),
+(5281,537,2.78),
+(5281,538,2.78),
+(5281,620,2.42),
+(5281,621,2.42),
+(5281,622,2.42),
+(5281,623,2.42),
+(5281,705,2.78),
+(5281,706,2.78),
+(5281,707,2.78),
+(5281,708,2.78),
+(5281,875,2.85),
+(5281,876,2.85),
+(5281,877,2.85),
+(5281,878,2.85),
+(5281,1045,3.05),
+(5281,1046,3.05),
+(5281,1047,3.05),
+(5281,1048,3.05),
+(5281,1130,3.15),
+(5281,1131,3.15),
+(5281,1132,3.15),
+(5281,1133,3.15),
+(5281,1215,2.92),
+(5281,1216,2.92),
+(5281,1217,2.92),
+(5281,1218,2.92),
+(5281,1558,0.22),
+(5281,1559,0.22),
+(5281,1560,0.22),
+(5281,1561,0.22),
+(5281,1562,0.22),
+(5281,1563,0.22),
+(5281,1564,0.22),
+(5281,1565,0.22),
+(5281,1566,0.22),
+(5281,1567,0.22),
+(5281,1568,0.22),
+(5282,313,3.45),
+(5282,314,3.45),
+(5282,338,3.4),
+(5282,339,3.4),
+(5282,363,2.05),
+(5282,364,2.05),
+(5282,390,0.1),
+(5282,455,0.1),
+(5282,535,2.75),
+(5282,536,2.75),
+(5282,537,2.75),
+(5282,538,2.75),
+(5282,620,2.5),
+(5282,621,2.5),
+(5282,622,2.5),
+(5282,623,2.5),
+(5282,705,2.72),
+(5282,706,2.72),
+(5282,707,2.72),
+(5282,708,2.72),
+(5282,875,2.95),
+(5282,876,2.95),
+(5282,877,2.95),
+(5282,878,2.95),
+(5282,960,0.1),
+(5282,1045,2.9),
+(5282,1046,2.9),
+(5282,1047,2.9),
+(5282,1048,2.9),
+(5282,1130,3.08),
+(5282,1131,3.08),
+(5282,1132,3.08),
+(5282,1133,3.08),
+(5282,1215,3.05),
+(5282,1216,3.05),
+(5282,1217,3.05),
+(5282,1218,3.05),
+(5282,1374,0.1),
+(5282,1465,0.05),
+(5282,1466,0.05),
+(5282,1512,0.1),
+(5282,1558,0.21),
+(5282,1559,0.21),
+(5282,1560,0.21),
+(5282,1561,0.21),
+(5282,1562,0.21),
+(5282,1563,0.21),
+(5282,1564,0.21),
+(5282,1565,0.21),
+(5282,1566,0.21),
+(5282,1567,0.21),
+(5282,1568,0.21),
+(5282,1972,0.1),
+(5282,2126,0.03),
+(5282,2127,0.03),
+(5282,2128,0.03),
+(5282,2129,0.03),
+(5282,2147,0.1),
+(5282,2154,0.1),
+(5283,313,3.15),
+(5283,314,3.15),
+(5283,338,3.25),
+(5283,339,3.25),
+(5283,415,3.15),
+(5283,416,3.15),
+(5283,620,2.83),
+(5283,621,2.83),
+(5283,622,2.83),
+(5283,623,2.83),
+(5283,705,2.33),
+(5283,706,2.33),
+(5283,707,2.33),
+(5283,708,2.33),
+(5283,875,2.78),
+(5283,876,2.78),
+(5283,877,2.78),
+(5283,878,2.78),
+(5283,960,2.95),
+(5283,961,2.95),
+(5283,962,2.95),
+(5283,963,2.95),
+(5283,1045,3.03),
+(5283,1046,3.03),
+(5283,1047,3.03),
+(5283,1048,3.03),
+(5283,1130,2.95),
+(5283,1131,2.95),
+(5283,1132,2.95),
+(5283,1133,2.95),
+(5283,1215,2.75),
+(5283,1216,2.75),
+(5283,1217,2.75),
+(5283,1218,2.75),
+(5283,1558,0.25),
+(5283,1559,0.25),
+(5283,1560,0.25),
+(5283,1561,0.25),
+(5283,1562,0.25),
+(5283,1563,0.25),
+(5283,1564,0.25),
+(5283,1565,0.25),
+(5283,1566,0.25),
+(5283,1567,0.25),
+(5283,1568,0.25),
+(5285,185,3.2),
+(5285,186,3.2),
+(5285,190,3.5),
+(5285,191,3.5),
+(5285,599,25.3),
+(5285,684,26.6),
+(5285,1194,29.1),
+(5285,1555,1.12),
+(5285,1556,1.12),
+(5285,1557,1.12),
+(5285,1558,1.12),
+(5285,1559,1.12),
+(5286,168,2.7),
+(5286,171,2.7),
+(5286,185,3.4),
+(5286,186,3.4),
+(5286,190,3.2),
+(5286,191,3.2),
+(5286,514,11.3),
+(5286,599,10.1),
+(5286,684,10.4),
+(5286,854,11.7),
+(5286,1024,12.2),
+(5286,1109,12.3),
+(5286,1194,10.8),
+(5286,1555,0.54),
+(5286,1556,0.54),
+(5286,1557,0.54),
+(5286,1558,0.54),
+(5286,1559,0.54),
+(5287,185,2.3),
+(5287,186,2.3),
+(5287,190,2.2),
+(5287,191,2.2),
+(5287,599,20.3),
+(5287,684,19.5),
+(5287,1194,20.2),
+(5287,1558,0.05),
+(5287,1559,0.05),
+(5287,1807,4.35),
+(5287,1808,4.35),
+(5287,1845,1.72),
+(5287,1846,1.72),
+(5287,1847,1.72),
+(5287,1848,1.72),
+(5287,1849,1.72),
+(5287,1997,1.44),
+(5287,1998,1.44),
+(5287,1999,1.44),
+(5287,2000,1.44),
+(5287,2001,1.44),
+(5287,2035,1.32),
+(5287,2036,1.32),
+(5287,2037,1.32),
+(5287,2038,1.32),
+(5287,2039,1.32),
+(5289,152,4.1),
+(5289,153,5.5),
+(5289,154,4.6),
+(5289,237,2.63),
+(5289,247,2.63),
+(5289,248,2.63),
+(5289,249,2.63),
+(5289,508,2.95),
+(5289,509,2.95),
+(5289,510,2.95),
+(5289,511,2.95),
+(5289,763,2.03),
+(5289,764,2.03),
+(5289,765,2.03),
+(5289,766,2.03),
+(5289,848,1.65),
+(5289,849,1.65),
+(5289,850,1.65),
+(5289,851,1.65),
+(5289,933,2.6),
+(5289,934,2.6),
+(5289,935,2.6),
+(5289,936,2.6),
+(5289,1018,2.4),
+(5289,1019,2.4),
+(5289,1020,2.4),
+(5289,1021,2.4),
+(5289,1103,3.05),
+(5289,1104,3.05),
+(5289,1105,3.05),
+(5289,1106,3.05),
+(5289,1805,0.53),
+(5289,1806,0.53),
+(5289,1807,0.53),
+(5289,1808,0.53),
+(5289,1809,0.53),
+(5289,1810,0.53),
+(5289,1811,0.53),
+(5289,1843,1.5),
+(5289,1881,0.53),
+(5289,1882,0.53),
+(5289,1883,0.53),
+(5289,1884,0.53),
+(5289,1885,0.53),
+(5289,1886,0.53),
+(5289,1887,0.53),
+(5289,1957,0.44),
+(5289,1958,0.44),
+(5289,1959,0.44),
+(5289,1960,0.44),
+(5289,1961,0.44),
+(5289,1962,0.44),
+(5289,1963,0.44),
+(5289,2033,0.67),
+(5289,2034,0.67),
+(5289,2035,0.67),
+(5289,2036,0.67),
+(5289,2037,0.67),
+(5289,2038,0.67),
+(5289,2039,0.67),
+(5290,314,3.52),
+(5290,315,3.52),
+(5290,339,3.38),
+(5290,340,3.38),
+(5290,364,2.35),
+(5290,365,2.35),
+(5290,538,2.73),
+(5290,539,2.73),
+(5290,540,2.73),
+(5290,541,2.73),
+(5290,623,2.44),
+(5290,624,2.44),
+(5290,625,2.44),
+(5290,626,2.44),
+(5290,708,2.89),
+(5290,709,2.89),
+(5290,710,2.89),
+(5290,711,2.89),
+(5290,878,2.94),
+(5290,879,2.94),
+(5290,880,2.94),
+(5290,881,2.94),
+(5290,1048,2.92),
+(5290,1049,2.92),
+(5290,1050,2.92),
+(5290,1051,2.92),
+(5290,1133,2.9),
+(5290,1134,2.9),
+(5290,1135,2.9),
+(5290,1136,2.9),
+(5290,1218,3.04),
+(5290,1219,3.04),
+(5290,1220,3.04),
+(5290,1221,3.04),
+(5290,1568,1.18),
+(5290,1569,1.18),
+(5293,339,2.32),
+(5293,340,2.32),
+(5293,390,1.78),
+(5293,391,1.78),
+(5293,416,2.6),
+(5293,417,2.6),
+(5293,538,2.59),
+(5293,539,2.59),
+(5293,540,2.59),
+(5293,541,2.59),
+(5293,623,2.2),
+(5293,624,2.2),
+(5293,625,2.2),
+(5293,626,2.2),
+(5293,793,1.97),
+(5293,794,1.97),
+(5293,795,1.97),
+(5293,796,1.97),
+(5293,878,1.39),
+(5293,879,1.39),
+(5293,880,1.39),
+(5293,881,1.39),
+(5293,1048,2.36),
+(5293,1049,2.36),
+(5293,1050,2.36),
+(5293,1051,2.36),
+(5293,1133,2.66),
+(5293,1134,2.66),
+(5293,1135,2.66),
+(5293,1136,2.66),
+(5293,1218,2.29),
+(5293,1219,2.29),
+(5293,1220,2.29),
+(5293,1221,2.29),
+(5293,1558,0.16),
+(5293,1559,0.17),
+(5293,1560,0.17),
+(5293,1561,0.17),
+(5293,1562,0.17),
+(5293,1563,0.17),
+(5293,1564,0.17),
+(5293,1565,0.17),
+(5293,1566,0.17),
+(5293,1567,0.17),
+(5293,1568,0.17),
+(5293,1569,0.17),
+(5293,1810,0.42),
+(5293,1811,0.45),
+(5293,1812,0.45),
+(5293,1813,0.45),
+(5293,1814,0.45),
+(5293,1815,0.45),
+(5293,1816,0.45),
+(5293,1817,0.45),
+(5293,1818,0.45),
+(5293,1819,0.45),
+(5293,1820,0.45),
+(5293,1821,0.45),
+(5293,1849,0.15),
+(5293,1850,0.15),
+(5293,1851,0.15),
+(5293,1852,0.15),
+(5293,1853,0.15),
+(5293,1854,0.15),
+(5293,1855,0.15),
+(5293,1856,0.15),
+(5293,1857,0.15),
+(5293,1858,0.42),
+(5293,1859,0.42),
+(5293,1886,0.27),
+(5293,1887,0.27),
+(5293,1888,0.27),
+(5293,1889,0.27),
+(5293,1890,0.27),
+(5293,1891,0.27),
+(5293,1892,0.27),
+(5293,1893,0.27),
+(5293,1894,0.27),
+(5293,1895,0.27),
+(5293,1896,0.27),
+(5293,1897,0.27),
+(5293,1963,0.2),
+(5293,1964,0.2),
+(5293,1965,0.2),
+(5293,1966,0.2),
+(5293,1967,0.2),
+(5293,1968,0.2),
+(5293,1969,0.2),
+(5293,1970,0.2),
+(5293,1971,0.2),
+(5293,1972,0.67),
+(5293,1973,0.67),
+(5293,2001,0.45),
+(5293,2002,0.45),
+(5293,2003,0.45),
+(5293,2004,0.45),
+(5293,2005,0.45),
+(5293,2006,0.45),
+(5293,2007,0.45),
+(5293,2008,0.45),
+(5293,2009,0.45),
+(5293,2010,0.45),
+(5293,2011,0.45),
+(5293,2038,0.46),
+(5293,2039,0.5),
+(5293,2040,0.5),
+(5293,2041,0.5),
+(5293,2042,0.5),
+(5293,2043,0.5),
+(5293,2044,0.5),
+(5293,2045,0.5),
+(5293,2046,0.5),
+(5293,2047,0.5),
+(5293,2048,0.5),
+(5293,2049,0.5),
+(5294,186,5.8),
+(5294,191,6.6),
+(5294,599,6.63),
+(5294,600,6.63),
+(5294,601,6.63),
+(5294,602,6.63),
+(5294,684,6.63),
+(5294,685,6.63),
+(5294,686,6.63),
+(5294,687,6.63),
+(5294,1194,7.22),
+(5294,1195,7.22),
+(5294,1196,7.22),
+(5294,1197,7.22),
+(5294,1556,1.14),
+(5294,1557,1.14),
+(5294,1558,1.14),
+(5294,1559,1.14),
+(5294,1560,1.14),
+(5295,171,5.4),
+(5295,186,6.2),
+(5295,191,6.4),
+(5295,514,2.88),
+(5295,515,2.88),
+(5295,516,2.88),
+(5295,517,2.88),
+(5295,599,2.58),
+(5295,600,2.58),
+(5295,601,2.58),
+(5295,602,2.58),
+(5295,684,2.75),
+(5295,685,2.75),
+(5295,686,2.75),
+(5295,687,2.75),
+(5295,854,2.85),
+(5295,855,2.85),
+(5295,856,2.85),
+(5295,857,2.85),
+(5295,1024,2.97),
+(5295,1025,2.97),
+(5295,1026,2.97),
+(5295,1027,2.97),
+(5295,1109,3.13),
+(5295,1110,3.13),
+(5295,1111,3.13),
+(5295,1112,3.13),
+(5295,1194,2.67),
+(5295,1195,2.67),
+(5295,1196,2.67),
+(5295,1197,2.67),
+(5295,1553,0.65),
+(5295,1554,0.65),
+(5295,1555,0.65),
+(5295,1556,0.65),
+(5296,186,4.8),
+(5296,191,4.6),
+(5296,599,5.15),
+(5296,600,5.15),
+(5296,601,5.15),
+(5296,602,5.15),
+(5296,684,5),
+(5296,685,5),
+(5296,686,5),
+(5296,687,5),
+(5296,1194,5.35),
+(5296,1195,5.35),
+(5296,1196,5.35),
+(5296,1197,5.35),
+(5296,1556,2.6),
+(5296,1557,2.6),
+(5296,1558,2.6),
+(5296,1559,2.6),
+(5296,1560,2.6),
+(5296,1808,0.88),
+(5296,1809,0.88),
+(5296,1810,0.88),
+(5296,1811,0.88),
+(5296,1812,0.88),
+(5296,1846,1.13),
+(5296,1847,1.13),
+(5296,1848,1.13),
+(5296,1849,1.13),
+(5296,1998,3.6),
+(5296,2036,0.64),
+(5296,2037,0.64),
+(5296,2038,0.64),
+(5296,2039,0.64),
+(5296,2040,0.64),
+(5298,152,2.75),
+(5298,153,2.55),
+(5298,154,2.55),
+(5298,174,2.75),
+(5298,179,2.55),
+(5298,184,2.55),
+(5298,237,2.35),
+(5298,247,2.35),
+(5298,248,2.35),
+(5298,249,2.35),
+(5298,508,2.42),
+(5298,509,2.42),
+(5298,510,2.42),
+(5298,511,2.42),
+(5298,763,2.17),
+(5298,764,2.17),
+(5298,765,2.17),
+(5298,766,2.17),
+(5298,848,2),
+(5298,849,2),
+(5298,850,2),
+(5298,851,2),
+(5298,933,2.5),
+(5298,934,2.5),
+(5298,935,2.5),
+(5298,936,2.5),
+(5298,1018,2.4),
+(5298,1019,2.4),
+(5298,1020,2.4),
+(5298,1021,2.4),
+(5298,1103,2.53),
+(5298,1104,2.53),
+(5298,1105,2.53),
+(5298,1106,2.53),
+(5298,1805,0.43),
+(5298,1806,0.43),
+(5298,1807,0.43),
+(5298,1808,0.43),
+(5298,1809,0.43),
+(5298,1810,0.43),
+(5298,1811,0.43),
+(5298,1812,0.43),
+(5298,1843,0.25),
+(5298,1844,0.25),
+(5298,1845,0.25),
+(5298,1846,0.25),
+(5298,1847,0.25),
+(5298,1848,0.25),
+(5298,1849,0.25),
+(5298,1850,0.25),
+(5298,1881,0.54),
+(5298,1882,0.54),
+(5298,1883,0.54),
+(5298,1884,0.54),
+(5298,1885,0.54),
+(5298,1886,0.54),
+(5298,1887,0.54),
+(5298,1888,0.54),
+(5298,1957,0.36),
+(5298,1958,0.36),
+(5298,1959,0.36),
+(5298,1960,0.36),
+(5298,1961,0.36),
+(5298,1962,0.36),
+(5298,1963,0.36),
+(5298,1964,0.36),
+(5298,2033,0.74),
+(5298,2034,0.74),
+(5298,2035,0.74),
+(5298,2036,0.74),
+(5298,2037,0.74),
+(5298,2038,0.74),
+(5298,2039,0.74),
+(5298,2040,0.74),
+(5299,316,3.25),
+(5299,317,3.25),
+(5299,341,3.15),
+(5299,342,3.15),
+(5299,366,2.8),
+(5299,367,2.8),
+(5299,541,2.65),
+(5299,542,2.65),
+(5299,543,2.65),
+(5299,544,2.65),
+(5299,626,2.85),
+(5299,627,2.85),
+(5299,628,2.85),
+(5299,629,2.85),
+(5299,711,2.46),
+(5299,712,2.46),
+(5299,713,2.46),
+(5299,714,2.46),
+(5299,715,2.46),
+(5299,881,2.67),
+(5299,882,2.67),
+(5299,883,2.67),
+(5299,884,2.67),
+(5299,1051,2.63),
+(5299,1052,2.63),
+(5299,1053,2.63),
+(5299,1054,2.63),
+(5299,1136,2.78),
+(5299,1137,2.78),
+(5299,1138,2.78),
+(5299,1139,2.78),
+(5299,1221,3.03),
+(5299,1222,3.03),
+(5299,1223,3.03),
+(5299,1224,3.03),
+(5299,1560,0.22),
+(5299,1561,0.22),
+(5299,1562,0.22),
+(5299,1563,0.22),
+(5299,1564,0.22),
+(5299,1565,0.22),
+(5299,1566,0.22),
+(5299,1567,0.22),
+(5299,1568,0.22),
+(5299,1569,0.22),
+(5299,1570,0.22),
+(5299,1571,0.22),
+(5300,316,3.15),
+(5300,317,3.15),
+(5300,341,3.25),
+(5300,342,3.25),
+(5300,366,2.75),
+(5300,367,2.75),
+(5300,541,2.83),
+(5300,542,2.83),
+(5300,543,2.83),
+(5300,544,2.83),
+(5300,626,2.75),
+(5300,627,2.75),
+(5300,628,2.75),
+(5300,629,2.75),
+(5300,711,3.1),
+(5300,712,3.1),
+(5300,713,3.1),
+(5300,714,3.1),
+(5300,881,2.85),
+(5300,882,2.85),
+(5300,883,2.85),
+(5300,884,2.85),
+(5300,1051,2.55),
+(5300,1052,2.55),
+(5300,1053,2.55),
+(5300,1054,2.55),
+(5300,1136,2.6),
+(5300,1137,2.6),
+(5300,1138,2.6),
+(5300,1139,2.6),
+(5300,1221,3.08),
+(5300,1222,3.08),
+(5300,1223,3.08),
+(5300,1224,3.08),
+(5300,1559,0.21),
+(5300,1560,0.21),
+(5300,1561,0.21),
+(5300,1562,0.21),
+(5300,1563,0.21),
+(5300,1564,0.21),
+(5300,1565,0.21),
+(5300,1566,0.21),
+(5300,1567,0.21),
+(5300,1568,0.21),
+(5300,1569,0.21),
+(5300,1570,0.21),
+(5300,1571,0.21),
+(5301,316,3.15),
+(5301,317,3.15),
+(5301,341,3.2),
+(5301,342,3.2),
+(5301,418,2.55),
+(5301,419,2.55),
+(5301,626,3.1),
+(5301,627,3.1),
+(5301,628,3.1),
+(5301,629,3.1),
+(5301,711,2.65),
+(5301,712,2.65),
+(5301,713,2.65),
+(5301,714,2.65),
+(5301,881,2.78),
+(5301,882,2.78),
+(5301,883,2.78),
+(5301,884,2.78),
+(5301,966,2.92),
+(5301,967,2.92),
+(5301,968,2.92),
+(5301,969,2.92),
+(5301,1051,2.7),
+(5301,1052,2.7),
+(5301,1053,2.7),
+(5301,1054,2.7),
+(5301,1136,2.65),
+(5301,1137,2.65),
+(5301,1138,2.65),
+(5301,1139,2.65),
+(5301,1221,3),
+(5301,1222,3),
+(5301,1223,3),
+(5301,1224,3),
+(5301,1560,0.24),
+(5301,1561,0.24),
+(5301,1562,0.24),
+(5301,1563,0.24),
+(5301,1564,0.24),
+(5301,1565,0.24),
+(5301,1566,0.24),
+(5301,1567,0.24),
+(5301,1568,0.24),
+(5301,1569,0.24),
+(5301,1570,0.24),
+(5301,1571,0.24),
+(5301,1913,0.1),
+(5301,2161,0.1),
+(5303,172,0.1),
+(5303,187,5.5),
+(5303,192,6.3),
+(5303,602,26),
+(5303,687,27.1),
+(5303,1197,29),
+(5303,1557,1.52),
+(5303,1558,1.52),
+(5303,1559,1.52),
+(5303,1560,1.52),
+(5303,1999,0.1),
+(5304,172,5.65),
+(5304,187,5.8),
+(5304,192,7.8),
+(5304,517,10.45),
+(5304,602,9.95),
+(5304,687,10.35),
+(5304,857,11.7),
+(5304,1027,12.2),
+(5304,1112,12.6),
+(5304,1197,11.3),
+(5304,1557,1.26),
+(5304,1558,0.73),
+(5304,1559,0.73),
+(5304,1560,0.73),
+(5307,174,4.8),
+(5307,179,5.1),
+(5307,184,5),
+(5307,247,9.8),
+(5307,511,8.9),
+(5307,766,9.5),
+(5307,851,9),
+(5307,936,9.2),
+(5307,1021,9.5),
+(5307,1106,9.1),
+(5307,1498,0.1),
+(5307,1806,0.41),
+(5307,1807,0.41),
+(5307,1808,0.41),
+(5307,1809,0.41),
+(5307,1810,0.41),
+(5307,1811,0.41),
+(5307,1812,0.41),
+(5307,1813,0.41),
+(5307,1844,0.25),
+(5307,1845,0.25),
+(5307,1846,0.25),
+(5307,1847,0.25),
+(5307,1848,0.25),
+(5307,1849,0.25),
+(5307,1850,0.25),
+(5307,1851,0.25),
+(5307,1882,0.54),
+(5307,1883,0.54),
+(5307,1884,0.54),
+(5307,1885,0.54),
+(5307,1886,0.54),
+(5307,1887,0.54),
+(5307,1888,0.54),
+(5307,1889,0.54),
+(5307,1958,0.44),
+(5307,1959,0.44),
+(5307,1960,0.44),
+(5307,1961,0.44),
+(5307,1962,0.44),
+(5307,1963,0.44),
+(5307,1964,0.44),
+(5307,1965,0.44),
+(5307,2034,0.86),
+(5307,2035,0.86),
+(5307,2036,0.86),
+(5307,2037,0.86),
+(5307,2038,0.86),
+(5307,2039,0.86),
+(5307,2040,0.86),
+(5307,2041,0.86),
+(5308,317,3.2),
+(5308,318,3.2),
+(5308,342,3.35),
+(5308,343,3.35),
+(5308,367,2.6),
+(5308,368,2.6),
+(5308,544,2.92),
+(5308,545,2.92),
+(5308,546,2.92),
+(5308,547,2.92),
+(5308,629,2.67),
+(5308,630,2.67),
+(5308,631,2.67),
+(5308,632,2.67),
+(5308,714,2.9),
+(5308,715,2.9),
+(5308,716,2.9),
+(5308,717,2.9),
+(5308,884,2.85),
+(5308,885,2.85),
+(5308,886,2.85),
+(5308,887,2.85),
+(5308,1054,2.5),
+(5308,1055,2.5),
+(5308,1056,2.5),
+(5308,1057,2.5),
+(5308,1139,2.8),
+(5308,1140,2.8),
+(5308,1141,2.8),
+(5308,1142,2.8),
+(5308,1224,3.1),
+(5308,1225,3.1),
+(5308,1226,3.1),
+(5308,1227,3.1),
+(5308,1561,0.23),
+(5308,1562,0.23),
+(5308,1563,0.23),
+(5308,1564,0.23),
+(5308,1565,0.23),
+(5308,1566,0.23),
+(5308,1567,0.23),
+(5308,1568,0.23),
+(5308,1569,0.23),
+(5308,1570,0.23),
+(5308,1571,0.23),
+(5308,1572,0.23),
+(5309,317,3.2),
+(5309,318,3.2),
+(5309,342,3.35),
+(5309,343,3.35),
+(5309,367,2.9),
+(5309,368,2.9),
+(5309,544,2.78),
+(5309,545,2.78),
+(5309,546,2.78),
+(5309,547,2.78),
+(5309,629,2.8),
+(5309,630,2.8),
+(5309,631,2.8),
+(5309,632,2.8),
+(5309,714,3.05),
+(5309,715,3.05),
+(5309,716,3.05),
+(5309,717,3.05),
+(5309,884,2.78),
+(5309,885,2.78),
+(5309,886,2.78),
+(5309,887,2.78),
+(5309,972,0.1),
+(5309,1054,2.65),
+(5309,1055,2.65),
+(5309,1056,2.65),
+(5309,1057,2.65),
+(5309,1139,2.63),
+(5309,1140,2.63),
+(5309,1141,2.63),
+(5309,1142,2.63),
+(5309,1224,2.95),
+(5309,1225,2.95),
+(5309,1226,2.95),
+(5309,1227,2.95),
+(5309,1379,0.1),
+(5309,1571,1.3),
+(5309,1572,1.3),
+(5309,1901,0.1),
+(5310,317,3.2),
+(5310,318,3.2),
+(5310,342,3.25),
+(5310,343,3.25),
+(5310,419,2.75),
+(5310,420,2.75),
+(5310,629,2.88),
+(5310,630,2.88),
+(5310,631,2.88),
+(5310,632,2.88),
+(5310,714,2.65),
+(5310,715,2.65),
+(5310,716,2.65),
+(5310,717,2.65),
+(5310,884,2.9),
+(5310,885,2.9),
+(5310,886,2.9),
+(5310,887,2.9),
+(5310,969,2.97),
+(5310,970,2.97),
+(5310,971,2.97),
+(5310,972,2.97),
+(5310,1054,2.6),
+(5310,1055,2.6),
+(5310,1056,2.6),
+(5310,1057,2.6),
+(5310,1139,2.83),
+(5310,1140,2.83),
+(5310,1141,2.83),
+(5310,1142,2.83),
+(5310,1224,2.85),
+(5310,1225,2.85),
+(5310,1226,2.85),
+(5310,1227,2.85),
+(5310,1571,1.55),
+(5310,1572,1.55),
+(5310,2158,0.1),
+(5311,342,2.18),
+(5311,343,2.18),
+(5311,393,1.59),
+(5311,394,1.59),
+(5311,395,1.17),
+(5311,396,1.17),
+(5311,419,2.25),
+(5311,420,2.25),
+(5311,544,2.18),
+(5311,545,2.18),
+(5311,546,2.18),
+(5311,547,2.18),
+(5311,629,1.91),
+(5311,630,1.91),
+(5311,631,1.91),
+(5311,632,1.91),
+(5311,634,1.74),
+(5311,799,2.14),
+(5311,800,2.14),
+(5311,801,2.14),
+(5311,802,2.14),
+(5311,884,1.75),
+(5311,885,1.75),
+(5311,886,1.75),
+(5311,887,1.75),
+(5311,1054,2.2),
+(5311,1055,2.2),
+(5311,1056,2.2),
+(5311,1057,2.2),
+(5311,1139,2.31),
+(5311,1140,2.31),
+(5311,1141,2.31),
+(5311,1142,2.31),
+(5311,1224,2.3),
+(5311,1225,2.3),
+(5311,1226,2.3),
+(5311,1227,2.3),
+(5311,1380,0.1),
+(5311,1516,0.1),
+(5311,1560,0.15),
+(5311,1561,0.15),
+(5311,1562,0.15),
+(5311,1563,0.15),
+(5311,1564,0.15),
+(5311,1565,0.15),
+(5311,1566,0.15),
+(5311,1567,0.15),
+(5311,1568,0.15),
+(5311,1569,0.15),
+(5311,1570,0.15),
+(5311,1571,0.58),
+(5311,1572,0.58),
+(5311,1812,0.41),
+(5311,1813,0.39),
+(5311,1814,0.39),
+(5311,1815,0.39),
+(5311,1816,0.39),
+(5311,1817,0.39),
+(5311,1818,0.39),
+(5311,1819,0.39),
+(5311,1820,0.39),
+(5311,1821,0.39),
+(5311,1822,0.39),
+(5311,1823,0.39),
+(5311,1824,0.39),
+(5311,1850,0.14),
+(5311,1851,0.14),
+(5311,1852,0.14),
+(5311,1853,0.14),
+(5311,1854,0.14),
+(5311,1855,0.14),
+(5311,1856,0.14),
+(5311,1857,0.14),
+(5311,1858,0.14),
+(5311,1859,0.14),
+(5311,1860,0.14),
+(5311,1861,0.14),
+(5311,1862,0.14),
+(5311,1863,0.14),
+(5311,1888,0.29),
+(5311,1889,0.29),
+(5311,1890,0.29),
+(5311,1891,0.29),
+(5311,1892,0.29),
+(5311,1893,0.29),
+(5311,1894,0.29),
+(5311,1895,0.29),
+(5311,1896,0.29),
+(5311,1897,0.29),
+(5311,1898,0.29),
+(5311,1899,0.29),
+(5311,1900,0.29),
+(5311,1964,0.19),
+(5311,1965,0.19),
+(5311,1966,0.19),
+(5311,1967,0.19),
+(5311,1968,0.19),
+(5311,1969,0.19),
+(5311,1970,0.19),
+(5311,1971,0.19),
+(5311,1972,0.19),
+(5311,1973,0.19),
+(5311,1974,0.19),
+(5311,1975,0.67),
+(5311,1976,0.67),
+(5311,2002,0.39),
+(5311,2003,0.39),
+(5311,2004,0.39),
+(5311,2005,0.39),
+(5311,2006,0.39),
+(5311,2007,0.39),
+(5311,2008,0.39),
+(5311,2009,0.39),
+(5311,2010,0.39),
+(5311,2011,0.39),
+(5311,2012,0.39),
+(5311,2013,0.39),
+(5311,2014,0.39),
+(5311,2040,0.5),
+(5311,2041,0.5),
+(5311,2042,0.5),
+(5311,2043,0.5),
+(5311,2044,0.5),
+(5311,2045,0.5),
+(5311,2046,0.5),
+(5311,2047,0.5),
+(5311,2048,0.5),
+(5311,2049,0.5),
+(5311,2050,0.5),
+(5311,2051,0.5),
+(5311,2052,0.5),
+(5311,2130,0.03),
+(5311,2131,0.03),
+(5311,2132,0.03),
+(5311,2133,0.03),
+(5311,2158,0.1),
+(5312,187,2.6),
+(5312,188,2.6),
+(5312,192,3.1),
+(5312,193,3.1),
+(5312,436,0.1),
+(5312,519,0.1),
+(5312,602,6.8),
+(5312,603,6.8),
+(5312,604,6.8),
+(5312,605,6.8),
+(5312,687,7.15),
+(5312,688,7.15),
+(5312,689,7.15),
+(5312,690,7.15),
+(5312,774,0.1),
+(5312,858,0.1),
+(5312,943,0.1),
+(5312,1197,6.68),
+(5312,1198,6.68),
+(5312,1199,6.68),
+(5312,1200,6.68),
+(5312,1557,1.18),
+(5312,1558,1.18),
+(5312,1559,1.18),
+(5312,1560,1.18),
+(5312,1561,1.18),
+(5312,1848,0.1),
+(5312,1924,0.1),
+(5313,172,3),
+(5313,173,3),
+(5313,183,0.1),
+(5313,187,3.2),
+(5313,188,3.2),
+(5313,192,2.85),
+(5313,193,2.85),
+(5313,517,2.58),
+(5313,518,2.58),
+(5313,519,2.58),
+(5313,520,2.58),
+(5313,602,2.85),
+(5313,603,2.85),
+(5313,604,2.85),
+(5313,605,2.85),
+(5313,687,2.97),
+(5313,688,2.97),
+(5313,689,2.97),
+(5313,690,2.97),
+(5313,857,3.1),
+(5313,858,3.1),
+(5313,859,3.1),
+(5313,860,3.1),
+(5313,944,0.1),
+(5313,1027,2.65),
+(5313,1028,2.65),
+(5313,1029,2.65),
+(5313,1030,2.65),
+(5313,1112,2.72),
+(5313,1113,2.72),
+(5313,1114,2.72),
+(5313,1115,2.72),
+(5313,1197,2.85),
+(5313,1198,2.85),
+(5313,1199,2.85),
+(5313,1200,2.85),
+(5313,1502,0.1),
+(5313,1554,0.56),
+(5313,1555,0.56),
+(5313,1556,0.56),
+(5313,1557,0.56),
+(5313,1558,0.56),
+(5313,1886,0.1),
+(5313,2114,0.03),
+(5313,2115,0.03),
+(5313,2116,0.03),
+(5313,2117,0.03),
+(5315,172,2.55),
+(5315,173,2.55),
+(5315,187,1.45),
+(5315,188,1.45),
+(5315,192,1.38),
+(5315,193,1.38),
+(5315,602,4.47),
+(5315,603,4.47),
+(5315,604,4.47),
+(5315,605,4.47),
+(5315,687,4.31),
+(5315,688,4.31),
+(5315,689,4.31),
+(5315,690,4.31),
+(5315,1197,4.23),
+(5315,1198,4.23),
+(5315,1199,4.23),
+(5315,1200,4.23),
+(5315,1557,7.67),
+(5315,1558,7.67),
+(5315,1559,4.1),
+(5315,1560,4.1),
+(5315,1561,4.1),
+(5315,1809,1.25),
+(5315,1810,1.25),
+(5315,1811,0.44),
+(5315,1812,0.44),
+(5315,1813,0.44),
+(5315,1814,0.44),
+(5315,1815,0.44),
+(5315,1847,0.5),
+(5315,1848,0.5),
+(5315,1885,1.15),
+(5315,1886,1.15),
+(5315,1961,0.72),
+(5315,1962,0.72),
+(5315,1999,1.47),
+(5315,2000,1.47),
+(5315,2001,0.4),
+(5315,2002,0.4),
+(5315,2003,0.4),
+(5315,2037,1.8),
+(5315,2038,1.8),
+(5315,2078,0.05),
+(5315,2079,0.05),
+(5317,319,3.55),
+(5317,320,3.55),
+(5317,344,2.95),
+(5317,345,2.95),
+(5317,369,2.8),
+(5317,370,2.8),
+(5317,547,2.58),
+(5317,548,2.58),
+(5317,549,2.58),
+(5317,550,2.58),
+(5317,632,3.17),
+(5317,633,3.17),
+(5317,634,3.17),
+(5317,635,3.17),
+(5317,717,2.9),
+(5317,718,2.9),
+(5317,719,2.9),
+(5317,720,2.9),
+(5317,806,0.1),
+(5317,887,2.9),
+(5317,888,2.9),
+(5317,889,2.9),
+(5317,890,2.9),
+(5317,1057,2.13),
+(5317,1058,2.13),
+(5317,1059,2.13),
+(5317,1060,2.13),
+(5317,1142,2.6),
+(5317,1143,2.6),
+(5317,1144,2.6),
+(5317,1145,2.6),
+(5317,1227,3.33),
+(5317,1228,3.33),
+(5317,1229,3.33),
+(5317,1230,3.33),
+(5317,1381,0.1),
+(5317,1427,0.1),
+(5317,1573,1.45),
+(5317,1574,1.45),
+(5317,2016,0.1),
+(5318,319,3.05),
+(5318,320,3.05),
+(5318,344,3.1),
+(5318,345,3.1),
+(5318,369,2.95),
+(5318,370,2.95),
+(5318,547,1.9),
+(5318,548,1.9),
+(5318,549,1.9),
+(5318,550,1.9),
+(5318,552,1.9),
+(5318,632,3.05),
+(5318,633,3.05),
+(5318,634,3.05),
+(5318,635,3.05),
+(5318,717,3.08),
+(5318,718,3.08),
+(5318,719,3.08),
+(5318,720,3.08),
+(5318,887,2.75),
+(5318,888,2.75),
+(5318,889,2.75),
+(5318,890,2.75),
+(5318,1057,2.5),
+(5318,1058,2.5),
+(5318,1059,2.5),
+(5318,1060,2.5),
+(5318,1142,2.5),
+(5318,1143,2.5),
+(5318,1144,2.5),
+(5318,1145,2.5),
+(5318,1227,3.55),
+(5318,1228,3.55),
+(5318,1229,3.55),
+(5318,1230,3.55),
+(5318,1573,1.35),
+(5318,1574,1.35),
+(5319,319,3.02),
+(5319,320,3.02),
+(5319,344,3.28),
+(5319,345,3.28),
+(5319,421,2.5),
+(5319,422,2.5),
+(5319,549,0.1),
+(5319,632,3),
+(5319,633,3),
+(5319,634,3),
+(5319,635,3),
+(5319,717,3),
+(5319,718,3),
+(5319,719,3),
+(5319,720,3),
+(5319,887,3.04),
+(5319,888,3.04),
+(5319,889,3.04),
+(5319,890,3.04),
+(5319,972,2.81),
+(5319,973,2.81),
+(5319,974,2.81),
+(5319,975,2.81),
+(5319,1057,2.48),
+(5319,1058,2.48),
+(5319,1059,2.48),
+(5319,1060,2.48),
+(5319,1142,2.57),
+(5319,1143,2.57),
+(5319,1144,2.57),
+(5319,1145,2.57),
+(5319,1227,2.93),
+(5319,1228,2.93),
+(5319,1229,2.93),
+(5319,1230,2.93),
+(5319,1380,0.1),
+(5319,1573,1.68),
+(5319,1574,1.68),
+(5319,1902,0.1),
+(5319,1978,0.1),
+(5319,2130,0.03),
+(5319,2131,0.03),
+(5319,2132,0.03),
+(5319,2133,0.03),
+(5319,2158,0.1),
+(5321,188,5.8),
+(5321,193,5.5),
+(5321,602,7.3),
+(5321,603,7.3),
+(5321,604,7.3),
+(5321,605,7.3),
+(5321,687,6.7),
+(5321,688,6.7),
+(5321,689,6.7),
+(5321,690,6.7),
+(5321,1197,6.97),
+(5321,1198,6.97),
+(5321,1199,6.97),
+(5321,1200,6.97),
+(5321,1319,0.1),
+(5321,1558,4.7),
+(5321,2078,0.05),
+(5321,2079,0.05),
+(5322,173,6.8),
+(5322,188,6),
+(5322,193,5.8),
+(5322,517,2.53),
+(5322,518,2.53),
+(5322,519,2.53),
+(5322,520,2.53),
+(5322,602,3.1),
+(5322,603,3.1),
+(5322,604,3.1),
+(5322,605,3.1),
+(5322,687,2.9),
+(5322,688,2.9),
+(5322,689,2.9),
+(5322,690,2.9),
+(5322,857,2.78),
+(5322,858,2.78),
+(5322,859,2.78),
+(5322,860,2.78),
+(5322,1027,2.83),
+(5322,1028,2.83),
+(5322,1029,2.83),
+(5322,1030,2.83),
+(5322,1112,2.55),
+(5322,1113,2.55),
+(5322,1114,2.55),
+(5322,1115,2.55),
+(5322,1197,2.8),
+(5322,1198,2.8),
+(5322,1199,2.8),
+(5322,1200,2.8),
+(5322,1558,3.8),
+(5324,173,3.7),
+(5324,188,3.6),
+(5324,193,3.9),
+(5324,602,4.9),
+(5324,603,4.9),
+(5324,604,4.9),
+(5324,605,4.9),
+(5324,687,4.75),
+(5324,688,4.75),
+(5324,689,4.75),
+(5324,690,4.75),
+(5324,1197,4.3),
+(5324,1198,4.3),
+(5324,1199,4.3),
+(5324,1200,4.3),
+(5324,1558,3.82),
+(5324,1559,3.82),
+(5324,1560,3.82),
+(5324,1561,3.82),
+(5324,1562,3.82),
+(5324,1810,2.6),
+(5324,1848,1.2),
+(5324,1886,2.2),
+(5324,1962,1.2),
+(5324,2000,1.9),
+(5324,2038,0.94),
+(5324,2039,0.94),
+(5324,2040,0.94),
+(5324,2041,0.94),
+(5324,2042,0.94),
+(5324,2078,0.05),
+(5324,2079,0.05),
+(5326,320,2.4),
+(5326,321,2.4),
+(5326,345,3.4),
+(5326,346,3.4),
+(5326,370,3.55),
+(5326,371,3.55),
+(5326,550,2.45),
+(5326,551,2.45),
+(5326,552,2.45),
+(5326,553,2.45),
+(5326,635,3.05),
+(5326,636,3.05),
+(5326,637,3.05),
+(5326,638,3.05),
+(5326,720,3.58),
+(5326,721,3.58),
+(5326,722,3.58),
+(5326,723,3.58),
+(5326,890,2.92),
+(5326,891,2.92),
+(5326,892,2.92),
+(5326,893,2.92),
+(5326,1060,2),
+(5326,1061,2),
+(5326,1062,2),
+(5326,1063,2),
+(5326,1145,2.45),
+(5326,1146,2.45),
+(5326,1147,2.45),
+(5326,1148,2.45),
+(5326,1230,3.17),
+(5326,1231,3.17),
+(5326,1232,3.17),
+(5326,1233,3.17),
+(5326,1574,1.25),
+(5326,1575,1.25),
+(5838,167,0.1),
+(5838,174,0.1),
+(5838,189,0.1),
+(5838,1314,0.1),
+(5838,1406,0.1),
+(5838,1452,0.1),
+(5838,1711,12.49),
+(5838,1712,12.49),
+(5838,1713,12.49),
+(5838,1714,12.49),
+(5838,1715,12.49),
+(5838,1716,12.49),
+(5838,1717,12.49),
+(5838,1718,12.49),
+(5850,175,5.7),
+(5850,180,4.2),
+(5850,185,6.7),
+(5850,247,2.22),
+(5850,250,2.22),
+(5850,251,2.22),
+(5850,252,2.22),
+(5850,511,2.28),
+(5850,512,2.28),
+(5850,513,2.28),
+(5850,514,2.28),
+(5850,683,0.1),
+(5850,766,2.3),
+(5850,767,2.3),
+(5850,768,2.3),
+(5850,769,2.3),
+(5850,851,2.7),
+(5850,852,2.7),
+(5850,853,2.7),
+(5850,854,2.7),
+(5850,936,2),
+(5850,937,2),
+(5850,938,2),
+(5850,939,2),
+(5850,1021,2.25),
+(5850,1022,2.25),
+(5850,1023,2.25),
+(5850,1024,2.25),
+(5850,1106,1.95),
+(5850,1107,1.95),
+(5850,1108,1.95),
+(5850,1109,1.95),
+(5850,1361,0.1),
+(5850,1552,0.1),
+(5850,1807,2.6),
+(5850,1845,3.5),
+(5850,1883,4.7),
+(5850,1959,4.1),
+(5850,2035,5.6),
+(5851,111,4.8),
+(5851,113,7.4),
+(5851,114,6.5),
+(5851,115,0.1),
+(5851,234,2.65),
+(5851,235,2.65),
+(5851,236,2.65),
+(5851,248,2.65),
+(5851,505,2.67),
+(5851,506,2.67),
+(5851,507,2.67),
+(5851,508,2.67),
+(5851,590,2.05),
+(5851,591,2.05),
+(5851,592,2.05),
+(5851,593,2.05),
+(5851,675,2.38),
+(5851,676,2.38),
+(5851,677,2.38),
+(5851,678,2.38),
+(5851,760,3.55),
+(5851,761,3.55),
+(5851,762,3.55),
+(5851,763,3.55),
+(5851,845,3.2),
+(5851,846,3.2),
+(5851,847,3.2),
+(5851,848,3.2),
+(5851,931,0.1),
+(5851,1015,3.15),
+(5851,1016,3.15),
+(5851,1017,3.15),
+(5851,1018,3.15),
+(5851,1708,2.5),
+(5852,80,0.1),
+(5852,110,0.1),
+(5852,132,4.55),
+(5852,134,7.1),
+(5852,135,5.85),
+(5852,136,0.1),
+(5852,210,0.1),
+(5852,234,2.8),
+(5852,235,2.8),
+(5852,236,2.8),
+(5852,248,2.8),
+(5852,505,2.71),
+(5852,506,2.71),
+(5852,507,2.71),
+(5852,508,2.71),
+(5852,590,2.16),
+(5852,591,2.16),
+(5852,592,2.16),
+(5852,593,2.16),
+(5852,675,2.31),
+(5852,676,2.31),
+(5852,677,2.31),
+(5852,678,2.31),
+(5852,760,3.45),
+(5852,761,3.45),
+(5852,762,3.45),
+(5852,763,3.45),
+(5852,845,3.36),
+(5852,846,3.36),
+(5852,847,3.36),
+(5852,848,3.36),
+(5852,931,0.1),
+(5852,1015,3.18),
+(5852,1016,3.18),
+(5852,1017,3.18),
+(5852,1018,3.18),
+(5852,1185,0.03),
+(5852,1186,0.03),
+(5852,1187,0.03),
+(5852,1188,0.03),
+(5852,1312,0.1),
+(5852,1358,0.1),
+(5852,1404,0.1),
+(5852,1450,0.1),
+(5852,1550,0.1),
+(5852,1709,1.54),
+(5852,1710,0.58),
+(5852,1711,0.58),
+(5852,1712,0.58),
+(5852,1713,0.58),
+(5852,2032,0.1),
+(5853,130,0.1),
+(5853,132,5.8),
+(5853,134,6.1),
+(5853,135,6.1),
+(5853,248,11.8),
+(5853,508,11.2),
+(5853,593,9.9),
+(5853,678,10),
+(5853,763,12.1),
+(5853,848,12.4),
+(5853,1018,11.5),
+(5853,1709,3.1),
+(5853,1994,0.03),
+(5853,1995,0.03),
+(5853,1996,0.03),
+(5853,1997,0.03),
+(5854,132,2.8),
+(5854,134,3.23),
+(5854,135,3),
+(5854,151,2.8),
+(5854,153,3.23),
+(5854,154,3),
+(5854,237,2.83),
+(5854,247,2.83),
+(5854,248,2.83),
+(5854,249,2.83),
+(5854,508,2.84),
+(5854,509,2.84),
+(5854,510,2.84),
+(5854,511,2.84),
+(5854,593,2.39),
+(5854,594,2.39),
+(5854,595,2.39),
+(5854,596,2.39),
+(5854,678,2.49),
+(5854,679,2.49),
+(5854,680,2.49),
+(5854,681,2.49),
+(5854,763,3.1),
+(5854,764,3.1),
+(5854,765,3.1),
+(5854,766,3.1),
+(5854,848,3.2),
+(5854,849,3.2),
+(5854,850,3.2),
+(5854,851,3.2),
+(5854,1018,3),
+(5854,1019,3),
+(5854,1020,3),
+(5854,1021,3),
+(5854,1709,0.39),
+(5854,1710,0.39),
+(5854,1711,0.39),
+(5854,1712,0.39),
+(5854,1713,0.39),
+(5854,1714,0.39),
+(5854,1715,0.39),
+(5855,151,5.5),
+(5855,153,6.2),
+(5855,154,6.5),
+(5855,237,2.78),
+(5855,247,2.78),
+(5855,248,2.78),
+(5855,249,2.78),
+(5855,508,2.8),
+(5855,509,2.8),
+(5855,510,2.8),
+(5855,511,2.8),
+(5855,593,2.4),
+(5855,594,2.4),
+(5855,595,2.4),
+(5855,596,2.4),
+(5855,678,2.45),
+(5855,679,2.45),
+(5855,680,2.45),
+(5855,681,2.45),
+(5855,763,3.13),
+(5855,764,3.13),
+(5855,765,3.13),
+(5855,766,3.13),
+(5855,848,3.25),
+(5855,849,3.25),
+(5855,850,3.25),
+(5855,851,3.25),
+(5855,1018,3),
+(5855,1019,3),
+(5855,1020,3),
+(5855,1021,3),
+(5855,1710,2.6),
+(5856,151,3.07),
+(5856,153,2.83),
+(5856,154,3),
+(5856,167,3.07),
+(5856,179,2.83),
+(5856,184,3),
+(5856,237,2.89),
+(5856,247,2.89),
+(5856,248,2.89),
+(5856,249,2.89),
+(5856,508,2.81),
+(5856,509,2.81),
+(5856,510,2.81),
+(5856,511,2.81),
+(5856,593,2.7),
+(5856,594,2.7),
+(5856,595,2.7),
+(5856,596,2.7),
+(5856,678,2.6),
+(5856,679,2.6),
+(5856,680,2.6),
+(5856,681,2.6),
+(5856,763,2.94),
+(5856,764,2.94),
+(5856,765,2.94),
+(5856,766,2.94),
+(5856,848,3.06),
+(5856,849,3.06),
+(5856,850,3.06),
+(5856,851,3.06),
+(5856,1018,2.8),
+(5856,1019,2.8),
+(5856,1020,2.8),
+(5856,1021,2.8),
+(5856,1710,0.38),
+(5856,1711,0.38),
+(5856,1712,0.38),
+(5856,1713,0.38),
+(5856,1714,0.38),
+(5856,1715,0.38),
+(5856,1716,0.38),
+(5856,1717,0.38),
+(5857,167,6.8),
+(5857,179,5.3),
+(5857,184,6),
+(5857,247,11.3),
+(5857,511,11.3),
+(5857,596,11.7),
+(5857,681,11.3),
+(5857,766,10.9),
+(5857,851,11.9),
+(5857,936,0.1),
+(5857,1021,10.1),
+(5857,1406,0.1),
+(5857,1711,0.4),
+(5857,1712,0.4),
+(5857,1713,0.4),
+(5857,1714,0.4),
+(5857,1715,0.4),
+(5857,1716,0.4),
+(5857,1717,0.4),
+(5857,1718,0.4),
+(5858,167,3.2),
+(5858,168,3.2),
+(5858,175,0.1),
+(5858,179,2.95),
+(5858,180,2.95),
+(5858,184,3.05),
+(5858,185,3.05),
+(5858,247,2.6),
+(5858,250,2.6),
+(5858,251,2.6),
+(5858,252,2.6),
+(5858,511,2.58),
+(5858,512,2.58),
+(5858,513,2.58),
+(5858,514,2.58),
+(5858,596,3.17),
+(5858,597,3.17),
+(5858,598,3.17),
+(5858,599,3.17),
+(5858,681,3.08),
+(5858,682,3.08),
+(5858,683,3.08),
+(5858,684,3.08),
+(5858,766,2.4),
+(5858,767,2.4),
+(5858,768,2.4),
+(5858,769,2.4),
+(5858,851,2.72),
+(5858,852,2.72),
+(5858,853,2.72),
+(5858,854,2.72),
+(5858,1021,3.15),
+(5858,1022,3.15),
+(5858,1023,3.15),
+(5858,1024,3.15),
+(5858,1107,0.1),
+(5858,1711,0.36),
+(5858,1712,0.36),
+(5858,1713,0.36),
+(5858,1714,0.36),
+(5858,1715,0.36),
+(5858,1716,0.36),
+(5858,1717,0.36),
+(5858,1718,0.36),
+(5859,82,0.1),
+(5859,168,5.8),
+(5859,180,4.6),
+(5859,185,6.1),
+(5859,247,2.78),
+(5859,250,2.78),
+(5859,251,2.78),
+(5859,252,2.78),
+(5859,511,2.67),
+(5859,512,2.67),
+(5859,513,2.67),
+(5859,514,2.67),
+(5859,596,3.08),
+(5859,597,3.08),
+(5859,598,3.08),
+(5859,599,3.08),
+(5859,681,3),
+(5859,682,3),
+(5859,683,3),
+(5859,684,3),
+(5859,766,2.83),
+(5859,767,2.83),
+(5859,768,2.83),
+(5859,769,2.83),
+(5859,851,2.97),
+(5859,852,2.97),
+(5859,853,2.97),
+(5859,854,2.97),
+(5859,1021,2.6),
+(5859,1022,2.6),
+(5859,1023,2.6),
+(5859,1024,2.6),
+(5859,1712,3.6),
+(6272,5,3.58),
+(6272,16,4.18),
+(6272,25,3.58),
+(6272,27,4.18),
+(6272,31,0.1),
+(6272,227,8.07),
+(6272,228,8.5),
+(6272,754,19.93),
+(6272,839,11.73),
+(6272,1009,13.17),
+(6272,1799,2.12),
+(6272,1800,2.12),
+(6272,1837,1.62),
+(6272,1838,1.62),
+(6272,1875,1.95),
+(6272,1876,1.95),
+(6272,1913,1.9),
+(6272,1914,1.9),
+(6272,1951,2.18),
+(6272,1952,2.18),
+(6272,1989,0.1),
+(6272,2027,1.75),
+(6272,2028,1.75),
+(6273,5,7.8),
+(6273,16,8.4),
+(6273,227,7.5),
+(6273,228,8.55),
+(6273,754,18.05),
+(6273,839,10.45),
+(6273,1009,12.7),
+(6273,1799,4.95),
+(6273,1837,3.5),
+(6273,1875,6.25),
+(6273,1951,5.35),
+(6273,2027,6.5),
+(6278,6,9.1),
+(6278,14,10.1),
+(6278,15,9.5),
+(6278,29,0.05),
+(6278,31,0.05),
+(6278,32,0.1),
+(6278,48,3.63),
+(6278,49,0.1),
+(6278,584,15),
+(6278,669,15.13),
+(6278,839,0.05),
+(6278,841,0.05),
+(6278,924,9.27),
+(6278,1094,9.47),
+(6278,1179,15.43),
+(6278,1492,0.1),
+(6278,1647,3.37),
+(6278,1876,0.1),
+(6279,6,4.7),
+(6279,14,5.05),
+(6279,15,4.5),
+(6279,17,5.05),
+(6279,19,4.5),
+(6279,23,4.7),
+(6279,48,1.85),
+(6279,62,1.85),
+(6279,584,14.6),
+(6279,669,15.2),
+(6279,924,9.2),
+(6279,1094,9.9),
+(6279,1179,15.5),
+(6279,1647,1.1),
+(6279,1648,1.1),
+(6279,1649,1.1),
+(6279,1876,0.1),
+(8652,341,0.65),
+(8652,342,0.65),
+(8652,392,0.35),
+(8652,393,0.35),
+(8652,543,0.05),
+(8652,544,0.05),
+(8652,796,0.05),
+(8652,797,0.05),
+(8652,798,0.05),
+(8652,799,0.05),
+(8652,881,0.4),
+(8652,882,0.4),
+(8652,883,0.4),
+(8652,884,0.4),
+(8652,1052,0.2),
+(8652,1054,0.2),
+(8652,1822,6.9),
+(8652,1823,6.9),
+(8652,1860,4.15),
+(8652,1861,4.15),
+(8652,1898,6.4),
+(8652,1899,6.4),
+(8652,1974,6.75),
+(8652,1975,6.75),
+(8652,2012,6),
+(8652,2013,6),
+(8652,2050,7.95),
+(8652,2051,7.95),
+(8652,2090,3.73),
+(8652,2091,3.73),
+(8652,2092,3.73),
+(8652,2126,2.1),
+(8652,2127,2.1),
+(8652,2128,2.1),
+(8652,2129,2.1),
+(8654,2143,24.75),
+(8654,2144,24.75),
+(8654,2146,12.63),
+(8654,2147,12.63),
+(8654,2148,12.63),
+(8654,2153,12.63),
+(8655,2143,6.23),
+(8655,2144,6.23),
+(8655,2145,6.23),
+(8655,2146,6.22),
+(8655,2147,6.22),
+(8655,2148,6.22),
+(8655,2149,14.1),
+(8655,2150,14.1),
+(8655,2151,14.1),
+(8655,2153,6.22),
+(8655,2154,14.1),
+(8657,2146,5.46),
+(8657,2147,5.46),
+(8657,2148,5.46),
+(8657,2149,19.52),
+(8657,2150,19.52),
+(8657,2151,19.52),
+(8657,2153,5.46),
+(8657,2154,19.52),
+(8658,2152,19.1),
+(8658,2153,21.7),
+(8658,2154,59.3),
+(8659,2152,22.95),
+(8659,2153,30.7),
+(8659,2154,46.35),
+(8660,2152,55.5),
+(8660,2153,44.5),
+(8661,2152,4.6),
+(8661,2153,20),
+(8661,2154,75.4),
+(8662,2156,35.9),
+(8662,2157,64.1),
+(8663,2155,34.5),
+(8663,2156,42.4),
+(8663,2157,23.2),
+(8664,2155,31.2),
+(8664,2156,34.9),
+(8664,2157,34),
+(8665,2155,27),
+(8665,2156,73),
+(8666,2161,53.8),
+(8666,2162,46.2),
+(8667,2161,37),
+(8667,2162,18.5),
+(8667,2163,44.4),
+(8668,2161,14.8),
+(8668,2162,11.1),
+(8668,2163,74.1),
+(8669,2162,20),
+(8669,2163,80),
+(8670,2158,95.2),
+(8670,2160,4.8),
+(8671,2158,63.6),
+(8671,2159,18.2),
+(8671,2160,18.2),
+(8672,2158,69.2),
+(8672,2159,19.2),
+(8672,2160,11.5),
+(8673,2159,63),
+(8673,2160,37),
+(8675,2143,8.13),
+(8675,2144,8.13),
+(8675,2145,8.13),
+(8675,2146,6.93),
+(8675,2147,6.93),
+(8675,2148,6.93),
+(8675,2149,11.98),
+(8675,2150,11.98),
+(8675,2151,11.98),
+(8675,2153,6.93),
+(8675,2154,11.98);
diff --git a/src/server/database/Database/Implementation/CharacterDatabase.cpp b/src/server/database/Database/Implementation/CharacterDatabase.cpp
index b4a5d2793cd..358faecb9f5 100644
--- a/src/server/database/Database/Implementation/CharacterDatabase.cpp
+++ b/src/server/database/Database/Implementation/CharacterDatabase.cpp
@@ -24,7 +24,7 @@ void CharacterDatabaseConnection::DoPrepareStatements()
m_stmts.resize(MAX_CHARACTERDATABASE_STATEMENTS);
#define SelectItemInstanceContent "ii.guid, ii.itemEntry, ii.creatorGuid, ii.giftCreatorGuid, ii.count, ii.duration, ii.charges, ii.flags, ii.enchantments, " \
- "ii.durability, ii.playedTime, ii.text, ii.battlePetSpeciesId, ii.battlePetBreedData, ii.battlePetLevel, ii.battlePetDisplayId, ii.context, " \
+ "ii.durability, ii.playedTime, ii.text, ii.battlePetSpeciesId, ii.battlePetBreedData, ii.battlePetLevel, ii.battlePetDisplayId, ii.randomPropertiesId, ii.randomPropertiesSeed, ii.context, " \
"iit.itemModifiedAppearanceAllSpecs, iit.itemModifiedAppearanceSpec1, iit.itemModifiedAppearanceSpec2, iit.itemModifiedAppearanceSpec3, iit.itemModifiedAppearanceSpec4, iit.itemModifiedAppearanceSpec5, " \
"iit.spellItemEnchantmentAllSpecs, iit.spellItemEnchantmentSpec1, iit.spellItemEnchantmentSpec2, iit.spellItemEnchantmentSpec3, iit.spellItemEnchantmentSpec4, iit.spellItemEnchantmentSpec5, " \
"iit.secondaryItemModifiedAppearanceAllSpecs, iit.secondaryItemModifiedAppearanceSpec1, iit.secondaryItemModifiedAppearanceSpec2, iit.secondaryItemModifiedAppearanceSpec3, iit.secondaryItemModifiedAppearanceSpec4, iit.itemModifiedAppearanceSpec5, " \
@@ -190,8 +190,8 @@ void CharacterDatabaseConnection::DoPrepareStatements()
PrepareStatement(CHAR_DEL_ITEM_BOP_TRADE, "DELETE FROM item_soulbound_trade_data WHERE itemGuid = ? LIMIT 1", CONNECTION_ASYNC);
PrepareStatement(CHAR_INS_ITEM_BOP_TRADE, "INSERT INTO item_soulbound_trade_data VALUES (?, ?)", CONNECTION_ASYNC);
PrepareStatement(CHAR_REP_INVENTORY_ITEM, "REPLACE INTO character_inventory (guid, bag, slot, item) VALUES (?, ?, ?, ?)", CONNECTION_ASYNC);
- PrepareStatement(CHAR_REP_ITEM_INSTANCE, "REPLACE INTO item_instance (itemEntry, owner_guid, creatorGuid, giftCreatorGuid, count, duration, charges, flags, enchantments, durability, playedTime, text, battlePetSpeciesId, battlePetBreedData, battlePetLevel, battlePetDisplayId, context, guid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", CONNECTION_ASYNC);
- PrepareStatement(CHAR_UPD_ITEM_INSTANCE, "UPDATE item_instance SET itemEntry = ?, owner_guid = ?, creatorGuid = ?, giftCreatorGuid = ?, count = ?, duration = ?, charges = ?, flags = ?, enchantments = ?, durability = ?, playedTime = ?, text = ?, battlePetSpeciesId = ?, battlePetBreedData = ?, battlePetLevel = ?, battlePetDisplayId = ?, context = ? WHERE guid = ?", CONNECTION_ASYNC);
+ PrepareStatement(CHAR_REP_ITEM_INSTANCE, "REPLACE INTO item_instance (itemEntry, owner_guid, creatorGuid, giftCreatorGuid, count, duration, charges, flags, enchantments, durability, playedTime, text, battlePetSpeciesId, battlePetBreedData, battlePetLevel, battlePetDisplayId, randomPropertiesId, randomPropertiesSeed, context, guid) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", CONNECTION_ASYNC);
+ PrepareStatement(CHAR_UPD_ITEM_INSTANCE, "UPDATE item_instance SET itemEntry = ?, owner_guid = ?, creatorGuid = ?, giftCreatorGuid = ?, count = ?, duration = ?, charges = ?, flags = ?, enchantments = ?, durability = ?, playedTime = ?, text = ?, battlePetSpeciesId = ?, battlePetBreedData = ?, battlePetLevel = ?, battlePetDisplayId = ?, randomPropertiesId = ?, randomPropertiesSeed = ?, context = ? WHERE guid = ?", CONNECTION_ASYNC);
PrepareStatement(CHAR_UPD_ITEM_INSTANCE_ON_LOAD, "UPDATE item_instance SET duration = ?, flags = ?, durability = ? WHERE guid = ?", CONNECTION_ASYNC);
PrepareStatement(CHAR_DEL_ITEM_INSTANCE, "DELETE FROM item_instance WHERE guid = ?", CONNECTION_ASYNC);
PrepareStatement(CHAR_DEL_ITEM_INSTANCE_BY_OWNER, "DELETE FROM item_instance WHERE owner_guid = ?", CONNECTION_ASYNC);
@@ -625,8 +625,8 @@ void CharacterDatabaseConnection::DoPrepareStatements()
PrepareStatement(CHAR_DEL_CHAR_TRAIT_CONFIGS_BY_CHAR, "DELETE FROM character_trait_config WHERE guid = ?", CONNECTION_ASYNC);
// Void Storage
- PrepareStatement(CHAR_SEL_CHAR_VOID_STORAGE, "SELECT itemId, itemEntry, slot, creatorGuid, fixedScalingLevel, context FROM character_void_storage WHERE playerGuid = ?", CONNECTION_ASYNC);
- PrepareStatement(CHAR_REP_CHAR_VOID_STORAGE_ITEM, "REPLACE INTO character_void_storage (itemId, playerGuid, itemEntry, slot, creatorGuid, fixedScalingLevel, context) VALUES (?, ?, ?, ?, ?, ?, ?)", CONNECTION_ASYNC);
+ PrepareStatement(CHAR_SEL_CHAR_VOID_STORAGE, "SELECT itemId, itemEntry, slot, creatorGuid, fixedScalingLevel, randomPropertiesId, randomPropertiesSeed, context FROM character_void_storage WHERE playerGuid = ?", CONNECTION_ASYNC);
+ PrepareStatement(CHAR_REP_CHAR_VOID_STORAGE_ITEM, "REPLACE INTO character_void_storage (itemId, playerGuid, itemEntry, slot, creatorGuid, fixedScalingLevel, randomPropertiesId, randomPropertiesSeed, context) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)", CONNECTION_ASYNC);
PrepareStatement(CHAR_DEL_CHAR_VOID_STORAGE_ITEM_BY_CHAR_GUID, "DELETE FROM character_void_storage WHERE playerGuid = ?", CONNECTION_ASYNC);
PrepareStatement(CHAR_DEL_CHAR_VOID_STORAGE_ITEM_BY_SLOT, "DELETE FROM character_void_storage WHERE slot = ? AND playerGuid = ?", CONNECTION_ASYNC);
@@ -637,10 +637,10 @@ void CharacterDatabaseConnection::DoPrepareStatements()
PrepareStatement(CHAR_DEL_CHAR_CUF_PROFILES, "DELETE FROM character_cuf_profiles WHERE guid = ?", CONNECTION_ASYNC);
// Items that hold loot or money
- PrepareStatement(CHAR_SEL_ITEMCONTAINER_ITEMS, "SELECT container_id, item_id, item_count, item_index, follow_rules, ffa, blocked, counted, under_threshold, needs_quest, context FROM item_loot_items", CONNECTION_SYNCH);
+ PrepareStatement(CHAR_SEL_ITEMCONTAINER_ITEMS, "SELECT container_id, item_id, item_count, item_index, follow_rules, ffa, blocked, counted, under_threshold, needs_quest, random_properties_id, random_properties_seed, context FROM item_loot_items", CONNECTION_SYNCH);
PrepareStatement(CHAR_DEL_ITEMCONTAINER_ITEMS, "DELETE FROM item_loot_items WHERE container_id = ?", CONNECTION_ASYNC);
PrepareStatement(CHAR_DEL_ITEMCONTAINER_ITEM, "DELETE FROM item_loot_items WHERE container_id = ? AND item_id = ? AND item_count = ? AND item_index = ?", CONNECTION_ASYNC);
- PrepareStatement(CHAR_INS_ITEMCONTAINER_ITEMS, "INSERT INTO item_loot_items (container_id, item_id, item_count, item_index, follow_rules, ffa, blocked, counted, under_threshold, needs_quest, context) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", CONNECTION_ASYNC);
+ PrepareStatement(CHAR_INS_ITEMCONTAINER_ITEMS, "INSERT INTO item_loot_items (container_id, item_id, item_count, item_index, follow_rules, ffa, blocked, counted, under_threshold, needs_quest, random_properties_id, random_properties_seed, context) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", CONNECTION_ASYNC);
PrepareStatement(CHAR_SEL_ITEMCONTAINER_MONEY, "SELECT container_id, money FROM item_loot_money", CONNECTION_SYNCH);
PrepareStatement(CHAR_DEL_ITEMCONTAINER_MONEY, "DELETE FROM item_loot_money WHERE container_id = ?", CONNECTION_ASYNC);
PrepareStatement(CHAR_INS_ITEMCONTAINER_MONEY, "INSERT INTO item_loot_money (container_id, money) VALUES (?, ?)", CONNECTION_ASYNC);
diff --git a/src/server/game/AuctionHouse/AuctionHouseMgr.cpp b/src/server/game/AuctionHouse/AuctionHouseMgr.cpp
index 7e72ffdb8d7..0d149078279 100644
--- a/src/server/game/AuctionHouse/AuctionHouseMgr.cpp
+++ b/src/server/game/AuctionHouse/AuctionHouseMgr.cpp
@@ -525,12 +525,12 @@ void AuctionHouseMgr::LoadAuctions()
}
Item* item = NewItemOrBag(proto);
- if (!item->LoadFromDB(itemGuid, ObjectGuid::Create<HighGuid::Player>(fields[44].GetUInt64()), fields, itemEntry))
+ if (!item->LoadFromDB(itemGuid, ObjectGuid::Create<HighGuid::Player>(fields[46].GetUInt64()), fields, itemEntry))
{
delete item;
continue;
}
- uint32 auctionId = fields[45].GetUInt32();
+ uint32 auctionId = fields[47].GetUInt32();
itemsByAuction[auctionId].push_back(item);
++count;
diff --git a/src/server/game/DataStores/DB2Stores.cpp b/src/server/game/DataStores/DB2Stores.cpp
index 6b50a5cfc07..bae0ec127b6 100644
--- a/src/server/game/DataStores/DB2Stores.cpp
+++ b/src/server/game/DataStores/DB2Stores.cpp
@@ -770,6 +770,8 @@ uint32 DB2Manager::LoadStores(std::string const& dataPath, LocaleConstant defaul
LOAD_DB2(sItemModifiedAppearanceExtraStore);
LOAD_DB2(sItemNameDescriptionStore);
LOAD_DB2(sItemPriceBaseStore);
+ LOAD_DB2(sItemRandomPropertiesStore);
+ LOAD_DB2(sItemRandomSuffixStore);
LOAD_DB2(sItemSearchNameStore);
LOAD_DB2(sItemSetStore);
LOAD_DB2(sItemSetSpellStore);
diff --git a/src/server/game/Entities/Item/Item.cpp b/src/server/game/Entities/Item/Item.cpp
index be53397f52e..700c841b398 100644
--- a/src/server/game/Entities/Item/Item.cpp
+++ b/src/server/game/Entities/Item/Item.cpp
@@ -431,6 +431,8 @@ void Item::SaveToDB(CharacterDatabaseTransaction trans)
stmt->setUInt32(++index, GetModifier(ITEM_MODIFIER_BATTLE_PET_BREED_DATA));
stmt->setUInt32(++index, GetModifier(ITEM_MODIFIER_BATTLE_PET_LEVEL));
stmt->setUInt32(++index, GetModifier(ITEM_MODIFIER_BATTLE_PET_DISPLAY_ID));
+ stmt->setInt32(++index, m_itemData->RandomPropertiesID);
+ stmt->setInt32(++index, m_itemData->PropertySeed);
stmt->setUInt8(++index, uint8(m_itemData->Context));
stmt->setUInt64(++index, GetGUID().GetCounter());
@@ -662,47 +664,48 @@ bool Item::LoadFromDB(ObjectGuid::LowType guid, ObjectGuid ownerGuid, Field* fie
SetModifier(ITEM_MODIFIER_BATTLE_PET_LEVEL, fields[14].GetUInt16());
SetModifier(ITEM_MODIFIER_BATTLE_PET_DISPLAY_ID, fields[15].GetUInt32());
- SetContext(ItemContext(fields[16].GetUInt8()));
+ SetItemRandomProperties(ItemRandomProperties(fields[16].GetInt32(), fields[17].GetInt32()));
+ SetContext(ItemContext(fields[18].GetUInt8()));
// load charges after bonuses, they can add more item effects
std::vector<std::string_view> tokens = Trinity::Tokenize(fields[6].GetStringView(), ' ', false);
for (uint8 i = 0; i < m_itemData->SpellCharges.size() && i < _bonusData.EffectCount && i < tokens.size(); ++i)
SetSpellCharges(i, Trinity::StringTo<int32>(tokens[i]).value_or(0));
- SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_ALL_SPECS, fields[17].GetUInt32());
- SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_SPEC_1, fields[18].GetUInt32());
- SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_SPEC_2, fields[19].GetUInt32());
- SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_SPEC_3, fields[20].GetUInt32());
- SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_SPEC_4, fields[21].GetUInt32());
- SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_SPEC_5, fields[22].GetUInt32());
-
- SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_ALL_SPECS, fields[23].GetUInt32());
- SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_SPEC_1, fields[24].GetUInt32());
- SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_SPEC_2, fields[25].GetUInt32());
- SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_SPEC_3, fields[26].GetUInt32());
- SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_SPEC_4, fields[27].GetUInt32());
- SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_SPEC_5, fields[28].GetUInt32());
-
- SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_ALL_SPECS, fields[29].GetUInt32());
- SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_SPEC_1, fields[30].GetUInt32());
- SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_SPEC_2, fields[31].GetUInt32());
- SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_SPEC_3, fields[32].GetUInt32());
- SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_SPEC_4, fields[33].GetUInt32());
- SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_SPEC_5, fields[34].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_ALL_SPECS, fields[19].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_SPEC_1, fields[20].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_SPEC_2, fields[21].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_SPEC_3, fields[22].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_SPEC_4, fields[23].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_APPEARANCE_SPEC_5, fields[24].GetUInt32());
+
+ SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_ALL_SPECS, fields[25].GetUInt32());
+ SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_SPEC_1, fields[26].GetUInt32());
+ SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_SPEC_2, fields[27].GetUInt32());
+ SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_SPEC_3, fields[28].GetUInt32());
+ SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_SPEC_4, fields[29].GetUInt32());
+ SetModifier(ITEM_MODIFIER_ENCHANT_ILLUSION_SPEC_5, fields[30].GetUInt32());
+
+ SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_ALL_SPECS, fields[31].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_SPEC_1, fields[32].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_SPEC_2, fields[33].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_SPEC_3, fields[34].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_SPEC_4, fields[35].GetUInt32());
+ SetModifier(ITEM_MODIFIER_TRANSMOG_SECONDARY_APPEARANCE_SPEC_5, fields[36].GetUInt32());
uint32 const gemFields = 3;
ItemDynamicFieldGems gemData[MAX_GEM_SOCKETS];
memset(gemData, 0, sizeof(gemData));
for (uint32 i = 0; i < MAX_GEM_SOCKETS; ++i)
{
- gemData[i].ItemId = fields[35 + i * gemFields].GetUInt32();
- std::vector<std::string_view> gemBonusListIDs = Trinity::Tokenize(fields[36 + i * gemFields].GetStringView(), ' ', false);
+ gemData[i].ItemId = fields[37 + i * gemFields].GetUInt32();
+ std::vector<std::string_view> gemBonusListIDs = Trinity::Tokenize(fields[38 + i * gemFields].GetStringView(), ' ', false);
uint32 b = 0;
for (std::string_view token : gemBonusListIDs)
if (Optional<uint16> bonusListID = Trinity::StringTo<uint16>(token))
gemData[i].BonusListIDs[b++] = *bonusListID;
- gemData[i].Context = fields[37 + i * gemFields].GetUInt8();
+ gemData[i].Context = fields[39 + i * gemFields].GetUInt8();
if (gemData[i].ItemId)
SetGem(i, &gemData[i]);
}
@@ -800,6 +803,43 @@ uint32 Item::GetSkill()
return proto->GetSkill();
}
+void Item::SetItemRandomProperties(ItemRandomProperties randomProperties)
+{
+ if (!randomProperties.RandomPropertiesID)
+ return;
+
+ if (randomProperties.RandomPropertiesID > 0)
+ {
+ ItemRandomPropertiesEntry const* randomPropertiesEntry = sItemRandomPropertiesStore.LookupEntry(randomProperties.RandomPropertiesID);
+ if (randomPropertiesEntry)
+ {
+ if (m_itemData->RandomPropertiesID != randomProperties.RandomPropertiesID)
+ {
+ SetUpdateFieldValue(m_values.ModifyValue(&Item::m_itemData).ModifyValue(&UF::ItemData::RandomPropertiesID), randomProperties.RandomPropertiesID);
+ SetState(ITEM_CHANGED, GetOwner());
+ }
+ for (uint32 i = PROP_ENCHANTMENT_SLOT_2; i < PROP_ENCHANTMENT_SLOT_2 + 3; ++i)
+ SetEnchantment(EnchantmentSlot(i), randomPropertiesEntry->Enchantment[i - PROP_ENCHANTMENT_SLOT_2], 0, 0);
+ }
+ }
+ else
+ {
+ ItemRandomSuffixEntry const* randomSuffixEntry = sItemRandomSuffixStore.LookupEntry(std::abs(randomProperties.RandomPropertiesID));
+ if (randomSuffixEntry)
+ {
+ if (m_itemData->RandomPropertiesID != randomProperties.RandomPropertiesID || !m_itemData->PropertySeed)
+ {
+ SetUpdateFieldValue(m_values.ModifyValue(&Item::m_itemData).ModifyValue(&UF::ItemData::RandomPropertiesID), randomProperties.RandomPropertiesID);
+ SetUpdateFieldValue(m_values.ModifyValue(&Item::m_itemData).ModifyValue(&UF::ItemData::PropertySeed), randomProperties.RandomPropertiesSeed);
+ SetState(ITEM_CHANGED, GetOwner());
+ }
+
+ for (uint32 i = PROP_ENCHANTMENT_SLOT_0; i < PROP_ENCHANTMENT_SLOT_0 + 3; ++i)
+ SetEnchantment(EnchantmentSlot(i), randomSuffixEntry->Enchantment[i - PROP_ENCHANTMENT_SLOT_0], 0, 0);
+ }
+ }
+}
+
void Item::SetState(ItemUpdateState state, Player* forplayer)
{
if (uState == ITEM_NEW && state == ITEM_REMOVED)
diff --git a/src/server/game/Entities/Item/Item.h b/src/server/game/Entities/Item/Item.h
index 3ddfc5a2c78..5b45452be49 100644
--- a/src/server/game/Entities/Item/Item.h
+++ b/src/server/game/Entities/Item/Item.h
@@ -221,6 +221,8 @@ class TC_GAME_API Item : public Object
uint32 GetSkill();
+ void SetItemRandomProperties(ItemRandomProperties randomProperties);
+
void SetEnchantment(EnchantmentSlot slot, uint32 id, uint32 duration, uint32 charges, ObjectGuid caster = ObjectGuid::Empty);
void SetEnchantmentDuration(EnchantmentSlot slot, uint32 duration, Player* owner);
void SetEnchantmentCharges(EnchantmentSlot slot, uint32 charges);
diff --git a/src/server/game/Entities/Item/ItemEnchantmentMgr.cpp b/src/server/game/Entities/Item/ItemEnchantmentMgr.cpp
index e13ea59471b..3634f5c8ed4 100644
--- a/src/server/game/Entities/Item/ItemEnchantmentMgr.cpp
+++ b/src/server/game/Entities/Item/ItemEnchantmentMgr.cpp
@@ -26,64 +26,81 @@
#include <list>
#include <vector>
-namespace
+/*static*/ ItemEnchantmentMgr* ItemEnchantmentMgr::instance()
{
- struct RandomBonusListIds
- {
- std::vector<int32> BonusListIDs;
- std::vector<double> Chances;
- };
-
- std::unordered_map<uint32, RandomBonusListIds> _storage;
+ static ItemEnchantmentMgr instance;
+ return &instance;
}
-ItemRandomBonusListId GenerateItemRandomBonusListId(uint32 item_id)
+void ItemEnchantmentMgr::LoadRandomEnchantmentsTable()
{
- ItemTemplate const* itemProto = sObjectMgr->GetItemTemplate(item_id);
- if (!itemProto)
- return 0;
+ uint32 oldMSTime = getMSTime();
- // item must have one from this field values not null if it can have random enchantments
- if (!itemProto->RandomBonusListTemplateId)
- return 0;
+ _storage.clear();
+
+ // 0 1 2
+ QueryResult result = WorldDatabase.Query("SELECT Id, EnchantmentId, Chance FROM item_random_enchantment_template");
- auto tab = _storage.find(itemProto->RandomBonusListTemplateId);
- if (tab == _storage.end())
+ if (result)
{
- TC_LOG_ERROR("sql.sql", "Item RandomBonusListTemplateId id #{} used in `item_template_addon` but it does not have records in `item_random_bonus_list_template` table.", itemProto->RandomBonusListTemplateId);
- return 0;
- }
+ uint32 count = 0;
+
+ do
+ {
+ Field* fields = result->Fetch();
+
+ uint32 id = fields[0].GetUInt32();
+ uint32 enchantmentId = fields[1].GetUInt32();
+ float chance = fields[2].GetFloat();
+
+ if (!sItemRandomPropertiesStore.LookupEntry(enchantmentId) && !sItemRandomSuffixStore.LookupEntry(enchantmentId))
+ {
+ TC_LOG_ERROR("sql.sql", "ItemRandomProperties/ItemRandomSuffix Id {} used in `item_random_enchantment_template` by id {} doesn't have exist in its corresponding db2 file.", enchantmentId, id);
+ continue;
+ }
+
+ if (chance < 0.000001f || chance > 100.0f)
+ {
+ TC_LOG_ERROR("sql.sql", "Enchantment Id {} used in `item_random_enchantment_template` by id {} has invalid chance {}", enchantmentId, id, chance);
+ continue;
+ }
+
+ RandomEnchantmentData& ids = _storage[id];
+ ids.EnchantmentIDs.push_back(enchantmentId);
+ ids.Chances.push_back(chance);
- return *Trinity::Containers::SelectRandomWeightedContainerElement(tab->second.BonusListIDs, std::span(tab->second.Chances));
+ ++count;
+ } while (result->NextRow());
+
+ TC_LOG_INFO("server.loading", ">> Loaded {} Random item enchantment definitions in {} ms", count, GetMSTimeDiffToNow(oldMSTime));
+ }
+ else
+ TC_LOG_INFO("server.loading", ">> Loaded 0 Random item bonus list definitions. DB table `item_random_enchantment_template` is empty.");
}
-TC_GAME_API float GetRandomPropertyPoints(uint32 itemLevel, uint32 quality, uint32 inventoryType, uint32 subClass)
+static int32 GetRandomPropertyPoints(uint32 itemLevel, uint32 quality, uint32 inventoryType)
{
- uint32 propIndex;
+ uint32 propIndex = 0;
switch (inventoryType)
{
+ // Items of that type don`t have points
+ case INVTYPE_NON_EQUIP:
+ case INVTYPE_BAG:
+ case INVTYPE_TABARD:
+ case INVTYPE_AMMO:
+ case INVTYPE_QUIVER:
+ case INVTYPE_RELIC:
+ return 0;
+ // Select point coefficient
case INVTYPE_HEAD:
case INVTYPE_BODY:
case INVTYPE_CHEST:
case INVTYPE_LEGS:
- case INVTYPE_RANGED:
case INVTYPE_2HWEAPON:
case INVTYPE_ROBE:
- case INVTYPE_THROWN:
propIndex = 0;
break;
- case INVTYPE_RANGEDRIGHT:
- if (subClass == ITEM_SUBCLASS_WEAPON_WAND)
- propIndex = 3;
- else
- propIndex = 0;
- break;
- case INVTYPE_WEAPON:
- case INVTYPE_WEAPONMAINHAND:
- case INVTYPE_WEAPONOFFHAND:
- propIndex = 3;
- break;
case INVTYPE_SHOULDERS:
case INVTYPE_WAIST:
case INVTYPE_FEET:
@@ -99,7 +116,14 @@ TC_GAME_API float GetRandomPropertyPoints(uint32 itemLevel, uint32 quality, uint
case INVTYPE_HOLDABLE:
propIndex = 2;
break;
- case INVTYPE_RELIC:
+ case INVTYPE_WEAPON:
+ case INVTYPE_WEAPONMAINHAND:
+ case INVTYPE_WEAPONOFFHAND:
+ propIndex = 3;
+ break;
+ case INVTYPE_RANGED:
+ case INVTYPE_THROWN:
+ case INVTYPE_RANGEDRIGHT:
propIndex = 4;
break;
default:
@@ -125,3 +149,56 @@ TC_GAME_API float GetRandomPropertyPoints(uint32 itemLevel, uint32 quality, uint
return 0;
}
+
+ItemRandomProperties ItemEnchantmentMgr::GenerateRandomProperties(uint32 itemId)
+{
+ ItemRandomProperties properties;
+ ItemTemplate const* itemProto = sObjectMgr->GetItemTemplate(itemId);
+ if (!itemProto)
+ return properties;
+
+ if (!itemProto->GetRandomSelect() && !itemProto->GetRandomSuffixGroupID())
+ return properties;
+
+ if (uint16 randomSelect = itemProto->GetRandomSelect())
+ {
+ auto tab = _storage.find(randomSelect);
+ if (tab == _storage.end())
+ {
+ TC_LOG_ERROR("sql.sql", "Item RandomSelect Id {} used but it does not have records in `item_random_enchantment_template` table.", randomSelect);
+ return properties;
+ }
+
+ uint32 randomPropertiesId = *Trinity::Containers::SelectRandomWeightedContainerElement(tab->second.EnchantmentIDs, std::span(tab->second.Chances));
+ ItemRandomPropertiesEntry const* randomPropertiesEntry = sItemRandomPropertiesStore.LookupEntry(randomPropertiesId);
+ if (!randomPropertiesEntry)
+ {
+ TC_LOG_ERROR("sql.sql", "Enchantment Id {} used but it doesn't have records in 'ItemRandomProperties.db2'", randomPropertiesId);
+ return properties;
+ }
+
+ properties.RandomPropertiesID = static_cast<int32>(randomPropertiesEntry->ID);
+ }
+ else if (uint16 randomSuffix = itemProto->GetRandomSuffixGroupID())
+ {
+ auto tab = _storage.find(randomSuffix);
+ if (tab == _storage.end())
+ {
+ TC_LOG_ERROR("sql.sql", "Item RandomSuffixGroupID Id {} used but it does not have records in `item_random_enchantment_template` table.", randomSuffix);
+ return properties;
+ }
+
+ uint32 randomSuffixId = *Trinity::Containers::SelectRandomWeightedContainerElement(tab->second.EnchantmentIDs, std::span(tab->second.Chances));
+ ItemRandomSuffixEntry const* randomSuffixEntry = sItemRandomSuffixStore.LookupEntry(randomSuffixId);
+ if (!randomSuffixEntry)
+ {
+ TC_LOG_ERROR("sql.sql", "Enchantment id Id {} used but it doesn't have records in 'ItemRandomSuffixEntry.db2'", randomSuffixId);
+ return properties;
+ }
+
+ properties.RandomPropertiesID = -static_cast<int32>(randomSuffixEntry->ID);
+ properties.RandomPropertiesSeed = GetRandomPropertyPoints(itemProto->GetItemLevel(), itemProto->GetQuality(), itemProto->GetInventoryType());
+ }
+
+ return properties;
+}
diff --git a/src/server/game/Entities/Item/ItemEnchantmentMgr.h b/src/server/game/Entities/Item/ItemEnchantmentMgr.h
index 05000adf6e2..6bfc43ab36f 100644
--- a/src/server/game/Entities/Item/ItemEnchantmentMgr.h
+++ b/src/server/game/Entities/Item/ItemEnchantmentMgr.h
@@ -20,9 +20,34 @@
#include "Common.h"
-using ItemRandomBonusListId = uint32;
+struct ItemRandomProperties
+{
+ ItemRandomProperties(int32 randomPropertiesId = 0, int32 randomPropertiesSeed = 0) : RandomPropertiesID(randomPropertiesId), RandomPropertiesSeed(randomPropertiesSeed) { }
-TC_GAME_API ItemRandomBonusListId GenerateItemRandomBonusListId(uint32 item_id);
-TC_GAME_API float GetRandomPropertyPoints(uint32 itemLevel, uint32 quality, uint32 inventoryType, uint32 subclass);
+ int32 RandomPropertiesID = 0;
+ int32 RandomPropertiesSeed = 0;
+};
+
+
+struct RandomEnchantmentData
+{
+ std::vector<uint16> EnchantmentIDs;
+ std::vector<double> Chances;
+};
+
+
+class TC_GAME_API ItemEnchantmentMgr
+{
+public:
+ static ItemEnchantmentMgr* instance();
+
+ void LoadRandomEnchantmentsTable();
+ ItemRandomProperties GenerateRandomProperties(uint32 itemId);
+
+private:
+ std::unordered_map<uint32, RandomEnchantmentData> _storage;
+};
+
+#define sItemEnchantmentMgr ItemEnchantmentMgr::instance()
#endif
diff --git a/src/server/game/Entities/Item/ItemTemplate.h b/src/server/game/Entities/Item/ItemTemplate.h
index 6f824208833..29eadab8fe7 100644
--- a/src/server/game/Entities/Item/ItemTemplate.h
+++ b/src/server/game/Entities/Item/ItemTemplate.h
@@ -811,6 +811,8 @@ struct TC_GAME_API ItemTemplate
int32 GetScalingStatValue() const { return BasicData->ScalingStatValue; }
uint16 GetMinDamage(uint8 index) const { return BasicData->MinDamage[index]; }
uint16 GetMaxDamage(uint8 index) const { return BasicData->MaxDamage[index]; }
+ uint16 GetRandomSuffixGroupID() const { return BasicData->ItemRandomSuffixGroupID; }
+ uint16 GetRandomSelect() const { return BasicData->RandomSelect; }
uint32 MaxDurability;
std::vector<ItemEffectEntry const*> Effects;
@@ -822,7 +824,6 @@ struct TC_GAME_API ItemTemplate
uint32 MaxMoneyLoot;
uint32 FlagsCu;
float SpellPPMRate;
- uint32 RandomBonusListTemplateId;
std::bitset<MAX_CLASSES * MAX_SPECIALIZATIONS> Specializations[3]; // one set for 1-40 level range and another for 41-109 and one for 110
uint32 ItemSpecClassMask;
diff --git a/src/server/game/Entities/Player/Player.cpp b/src/server/game/Entities/Player/Player.cpp
index 3d5ba089e49..a93c6444d3b 100644
--- a/src/server/game/Entities/Player/Player.cpp
+++ b/src/server/game/Entities/Player/Player.cpp
@@ -588,7 +588,7 @@ bool Player::StoreNewItemInBestSlots(uint32 itemId, uint32 amount, ItemContext c
InventoryResult msg = CanStoreNewItem(INVENTORY_SLOT_BAG_0, NULL_SLOT, sDest, itemId, amount);
if (msg == EQUIP_ERR_OK)
{
- StoreNewItem(sDest, itemId, true, GuidSet(), context);
+ StoreNewItem(sDest, itemId, true, sItemEnchantmentMgr->GenerateRandomProperties(itemId), GuidSet(), context);
return true; // stored
}
@@ -3934,7 +3934,7 @@ void Player::DeleteFromDB(ObjectGuid playerguid, uint32 accountId, bool updateRe
do
{
Field* fields = resultItems->Fetch();
- uint64 mailId = fields[44].GetUInt64();
+ uint64 mailId = fields[46].GetUInt64();
if (Item* mailItem = _LoadMailedItem(playerguid, nullptr, mailId, nullptr, fields))
itemsByMail[mailId].push_back(mailItem);
@@ -11199,7 +11199,7 @@ InventoryResult Player::CanRollNeedForItem(ItemTemplate const* proto, Map const*
}
// Return stored item (if stored to stack, it can diff. from pItem). And pItem ca be deleted in this case.
-Item* Player::StoreNewItem(ItemPosCountVec const& pos, uint32 itemId, bool update, GuidSet const& allowedLooters /*= GuidSet()*/, ItemContext context /*= ItemContext::NONE*/, bool addToCollection /*= true*/)
+Item* Player::StoreNewItem(ItemPosCountVec const& pos, uint32 itemId, bool update, ItemRandomProperties randomProperties /*= ItemRandomProperties()*/, GuidSet const& allowedLooters /*= GuidSet()*/, ItemContext context /*= ItemContext::NONE*/, bool addToCollection /*= true*/)
{
uint32 count = 0;
for (ItemPosCountVec::const_iterator itr = pos.begin(); itr != pos.end(); ++itr)
@@ -11216,6 +11216,7 @@ Item* Player::StoreNewItem(ItemPosCountVec const& pos, uint32 itemId, bool updat
UpdateCriteria(CriteriaType::AcquireItem, itemId, count);
item->SetFixedLevel(GetLevel());
+ item->SetItemRandomProperties(randomProperties);
if (allowedLooters.size() > 1 && item->GetTemplate()->GetMaxStackSize() == 1 && item->IsSoulBound())
{
@@ -13167,50 +13168,42 @@ void Player::ApplyEnchantment(Item* item, EnchantmentSlot slot, bool apply, bool
}
break;
case ITEM_ENCHANTMENT_TYPE_RESISTANCE:
- if (pEnchant->ScalingClass)
+ if (!enchant_amount)
{
- int32 scalingClass = pEnchant->ScalingClass;
- if ((*m_unitData->MinItemLevel || *m_unitData->MaxItemLevel) && pEnchant->ScalingClassRestricted)
- scalingClass = pEnchant->ScalingClassRestricted;
-
- uint8 minLevel = pEnchant->GetFlags().HasFlag(SpellItemEnchantmentFlags::ScaleAsAGem) ? 1 : 60;
- uint8 scalingLevel = GetLevel();
- uint8 maxLevel = uint8(pEnchant->MaxLevel ? pEnchant->MaxLevel : sSpellScalingGameTable.GetTableRowCount() - 1);
-
- if (minLevel > GetLevel())
- scalingLevel = minLevel;
- else if (maxLevel < GetLevel())
- scalingLevel = maxLevel;
-
- if (GtSpellScalingEntry const* spellScaling = sSpellScalingGameTable.GetRow(scalingLevel))
- enchant_amount = uint32(pEnchant->EffectScalingPoints[s] * GetSpellScalingColumnForClass(spellScaling, scalingClass));
+ ItemRandomSuffixEntry const* randomSuffixEntries = sItemRandomSuffixStore.LookupEntry(std::abs(item->m_itemData->RandomPropertiesID));
+ if (randomSuffixEntries)
+ {
+ for (int k = 0; k < MAX_ITEM_ENCHANTMENT_EFFECTS; ++k)
+ {
+ if (randomSuffixEntries->Enchantment[k] == enchant_id)
+ {
+ enchant_amount = uint32((static_cast<double>(randomSuffixEntries->AllocationPct[k]) * item->m_itemData->PropertySeed) / 10000);
+ break;
+ }
+ }
+ }
}
- enchant_amount = std::max(enchant_amount, 1u);
+
HandleStatFlatModifier(UnitMods(UNIT_MOD_RESISTANCE_START + enchant_spell_id), TOTAL_VALUE, float(enchant_amount), apply);
break;
case ITEM_ENCHANTMENT_TYPE_STAT:
{
- if (pEnchant->ScalingClass)
+ if (!enchant_amount)
{
- int32 scalingClass = pEnchant->ScalingClass;
- if ((*m_unitData->MinItemLevel || *m_unitData->MaxItemLevel) && pEnchant->ScalingClassRestricted)
- scalingClass = pEnchant->ScalingClassRestricted;
-
- uint8 minLevel = pEnchant->GetFlags().HasFlag(SpellItemEnchantmentFlags::ScaleAsAGem) ? 1 : 60;
- uint8 scalingLevel = GetLevel();
- uint8 maxLevel = uint8(pEnchant->MaxLevel ? pEnchant->MaxLevel : sSpellScalingGameTable.GetTableRowCount() - 1);
-
- if (minLevel > GetLevel())
- scalingLevel = minLevel;
- else if (maxLevel < GetLevel())
- scalingLevel = maxLevel;
-
- if (GtSpellScalingEntry const* spellScaling = sSpellScalingGameTable.GetRow(scalingLevel))
- enchant_amount = uint32(pEnchant->EffectScalingPoints[s] * GetSpellScalingColumnForClass(spellScaling, scalingClass));
+ ItemRandomSuffixEntry const* randomSuffixEntry = sItemRandomSuffixStore.LookupEntry(std::abs(item->m_itemData->RandomPropertiesID));
+ if (randomSuffixEntry)
+ {
+ for (uint8 k = 0; k < MAX_ITEM_ENCHANTMENT_EFFECTS; ++k)
+ {
+ if (randomSuffixEntry->Enchantment[k] == enchant_id)
+ {
+ enchant_amount = uint32((static_cast<double>(randomSuffixEntry->AllocationPct[k]) * item->m_itemData->PropertySeed) / 10000);
+ break;
+ }
+ }
+ }
}
- enchant_amount = std::max(enchant_amount, 1u);
-
TC_LOG_DEBUG("entities.player.items", "Adding {} to stat nb {}", enchant_amount, enchant_spell_id);
switch (enchant_spell_id)
{
@@ -14603,7 +14596,7 @@ void Player::RewardQuestPackage(uint32 questPackageId, ItemContext context, uint
ItemPosCountVec dest;
if (CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, questPackageItem->ItemID, questPackageItem->ItemQuantity) == EQUIP_ERR_OK)
{
- Item* item = StoreNewItem(dest, questPackageItem->ItemID, true, {}, context);
+ Item* item = StoreNewItem(dest, questPackageItem->ItemID, true, sItemEnchantmentMgr->GenerateRandomProperties(questPackageItem->ItemID), {}, context);
SendNewItem(item, questPackageItem->ItemQuantity, true, false);
}
}
@@ -14622,7 +14615,7 @@ void Player::RewardQuestPackage(uint32 questPackageId, ItemContext context, uint
ItemPosCountVec dest;
if (CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, questPackageItem->ItemID, questPackageItem->ItemQuantity) == EQUIP_ERR_OK)
{
- Item* item = StoreNewItem(dest, questPackageItem->ItemID, true, {}, context);
+ Item* item = StoreNewItem(dest, questPackageItem->ItemID, true, sItemEnchantmentMgr->GenerateRandomProperties(questPackageItem->ItemID), {}, context);
SendNewItem(item, questPackageItem->ItemQuantity, true, false);
}
}
@@ -14682,7 +14675,7 @@ void Player::RewardQuest(Quest const* quest, LootItemType rewardType, uint32 rew
ItemPosCountVec dest;
if (CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, itemId, quest->RewardItemCount[i]) == EQUIP_ERR_OK)
{
- Item* item = StoreNewItem(dest, itemId, true, {}, ItemContext::Quest_Reward);
+ Item* item = StoreNewItem(dest, itemId, true, sItemEnchantmentMgr->GenerateRandomProperties(itemId), {}, ItemContext::Quest_Reward);
SendNewItem(item, quest->RewardItemCount[i], true, false);
}
else if (quest->IsDFQuest())
@@ -14727,7 +14720,7 @@ void Player::RewardQuest(Quest const* quest, LootItemType rewardType, uint32 rew
ItemPosCountVec dest;
if (CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, rewardId, quest->RewardChoiceItemCount[i]) == EQUIP_ERR_OK)
{
- Item* item = StoreNewItem(dest, rewardId, true, {}, ItemContext::Quest_Reward);
+ Item* item = StoreNewItem(dest, rewardId, true, sItemEnchantmentMgr->GenerateRandomProperties(rewardId), {}, ItemContext::Quest_Reward);
SendNewItem(item, quest->RewardChoiceItemCount[i], true, false);
}
}
@@ -18062,8 +18055,8 @@ void Player::_LoadInventory(PreparedQueryResult result, uint32 timeDiff)
Field* fields = result->Fetch();
if (Item* item = _LoadItem(trans, zoneId, timeDiff, fields))
{
- ObjectGuid bagGuid = fields[44].GetUInt64() ? ObjectGuid::Create<HighGuid::Item>(fields[44].GetUInt64()) : ObjectGuid::Empty;
- uint8 slot = fields[45].GetUInt8();
+ ObjectGuid bagGuid = fields[46].GetUInt64() ? ObjectGuid::Create<HighGuid::Item>(fields[44].GetUInt64()) : ObjectGuid::Empty;
+ uint8 slot = fields[47].GetUInt8();
GetSession()->GetCollectionMgr()->CheckHeirloomUpgrades(item);
GetSession()->GetCollectionMgr()->AddItemAppearance(item);
@@ -18188,6 +18181,7 @@ void Player::_LoadVoidStorage(PreparedQueryResult result)
uint8 slot = fields[2].GetUInt8();
ObjectGuid creatorGuid = fields[3].GetUInt64() ? ObjectGuid::Create<HighGuid::Player>(fields[3].GetUInt64()) : ObjectGuid::Empty;
uint32 fixedScalingLevel = fields[4].GetUInt32();
+ ItemRandomProperties randomProperties = ItemRandomProperties(fields[5].GetInt32(), fields[6].GetInt32());
ItemContext context = ItemContext(fields[5].GetUInt8());
if (!itemId)
{
@@ -18210,7 +18204,7 @@ void Player::_LoadVoidStorage(PreparedQueryResult result)
continue;
}
- _voidStorageItems[slot] = new VoidStorageItem(itemId, itemEntry, creatorGuid, fixedScalingLevel, context);
+ _voidStorageItems[slot] = new VoidStorageItem(itemId, itemEntry, creatorGuid, fixedScalingLevel, randomProperties, context);
WorldPackets::Item::ItemInstance voidInstance;
voidInstance.Initialize(_voidStorageItems[slot]);
@@ -19852,7 +19846,9 @@ void Player::_SaveVoidStorage(CharacterDatabaseTransaction trans)
stmt->setUInt8(3, i);
stmt->setUInt64(4, _voidStorageItems[i]->CreatorGuid.GetCounter());
stmt->setUInt32(5, _voidStorageItems[i]->FixedScalingLevel);
- stmt->setUInt8(6, AsUnderlyingType(_voidStorageItems[i]->Context));
+ stmt->setInt32(6, _voidStorageItems[i]->RandomProperties.RandomPropertiesID);
+ stmt->setInt32(7, _voidStorageItems[i]->RandomProperties.RandomPropertiesSeed);
+ stmt->setUInt8(8, AsUnderlyingType(_voidStorageItems[i]->Context));
}
trans->Append(stmt);
@@ -21987,7 +21983,7 @@ inline bool Player::_StoreOrEquipNewItem(uint32 vendorslot, uint32 item, uint8 c
}
Item* it = bStore ?
- StoreNewItem(vDest, item, true, {}, ItemContext::Vendor, false) :
+ StoreNewItem(vDest, item, true, sItemEnchantmentMgr->GenerateRandomProperties(item), {}, ItemContext::Vendor, false) :
EquipNewItem(uiDest, item, ItemContext::Vendor, true);
if (it)
{
@@ -25520,7 +25516,7 @@ void Player::StoreLootItem(ObjectGuid lootWorldObjectGuid, uint8 lootSlot, Loot*
InventoryResult msg = CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, item->itemid, item->count);
if (msg == EQUIP_ERR_OK)
{
- Item* newitem = StoreNewItem(dest, item->itemid, true, item->GetAllowedLooters(), item->context);
+ Item* newitem = StoreNewItem(dest, item->itemid, true, sItemEnchantmentMgr->GenerateRandomProperties(item->itemid), item->GetAllowedLooters(), item->context);
if (ffaItem)
{
@@ -27367,7 +27363,7 @@ bool Player::AddItem(uint32 itemId, uint32 count)
return false;
}
- Item* item = StoreNewItem(dest, itemId, true);
+ Item* item = StoreNewItem(dest, itemId, true, sItemEnchantmentMgr->GenerateRandomProperties(itemId));
if (item)
SendNewItem(item, count, true, false);
else
diff --git a/src/server/game/Entities/Player/Player.h b/src/server/game/Entities/Player/Player.h
index 976e52fbc93..b4a32eba905 100644
--- a/src/server/game/Entities/Player/Player.h
+++ b/src/server/game/Entities/Player/Player.h
@@ -1006,15 +1006,16 @@ struct BGData
struct VoidStorageItem
{
VoidStorageItem() : ItemId(0), ItemEntry(0), FixedScalingLevel(0), Context(ItemContext::NONE) { }
- VoidStorageItem(uint64 id, uint32 entry, ObjectGuid const& creator, uint32 fixedScalingLevel, ItemContext context) :
- ItemId(id), ItemEntry(entry), CreatorGuid(creator), FixedScalingLevel(fixedScalingLevel), Context(context) { }
+ VoidStorageItem(uint64 id, uint32 entry, ObjectGuid const& creator, uint32 fixedScalingLevel, ItemRandomProperties randomProperties, ItemContext context) :
+ ItemId(id), ItemEntry(entry), CreatorGuid(creator), FixedScalingLevel(fixedScalingLevel), RandomProperties(randomProperties), Context(context) { }
VoidStorageItem(VoidStorageItem&& vsi) noexcept : ItemId(vsi.ItemId), ItemEntry(vsi.ItemEntry), CreatorGuid(vsi.CreatorGuid),
- FixedScalingLevel(vsi.FixedScalingLevel), Context(vsi.Context) { }
+ FixedScalingLevel(vsi.FixedScalingLevel), RandomProperties(vsi.RandomProperties), Context(vsi.Context) { }
uint64 ItemId;
uint32 ItemEntry;
ObjectGuid CreatorGuid;
uint32 FixedScalingLevel;
+ ItemRandomProperties RandomProperties;
ItemContext Context;
};
@@ -1365,7 +1366,7 @@ class TC_GAME_API Player : public Unit, public GridObject<Player>
bool HasItemTotemCategory(uint32 TotemCategory) const;
InventoryResult CanUseItem(ItemTemplate const* pItem, bool skipRequiredLevelCheck = false) const;
InventoryResult CanRollNeedForItem(ItemTemplate const* item, Map const* map, bool restrictOnlyLfg) const;
- Item* StoreNewItem(ItemPosCountVec const& pos, uint32 itemId, bool update, GuidSet const& allowedLooters = GuidSet(),
+ Item* StoreNewItem(ItemPosCountVec const& pos, uint32 itemId, bool update, ItemRandomProperties randomProperties = ItemRandomProperties(), GuidSet const& allowedLooters = GuidSet(),
ItemContext context = ItemContext::NONE, bool addToCollection = true);
Item* StoreItem(ItemPosCountVec const& pos, Item* pItem, bool update);
Item* EquipNewItem(uint16 pos, uint32 item, ItemContext context, bool update);
diff --git a/src/server/game/Globals/ObjectMgr.cpp b/src/server/game/Globals/ObjectMgr.cpp
index 1605dfc11cd..355f88be2c1 100644
--- a/src/server/game/Globals/ObjectMgr.cpp
+++ b/src/server/game/Globals/ObjectMgr.cpp
@@ -3248,7 +3248,6 @@ void ObjectMgr::LoadItemTemplates()
itemTemplate.MaxMoneyLoot = 0;
itemTemplate.FlagsCu = 0;
itemTemplate.SpellPPMRate = 0.0f;
- itemTemplate.RandomBonusListTemplateId = 0;
itemTemplate.ItemSpecClassMask = 0;
if (std::vector<ItemSpecOverrideEntry const*> const* itemSpecOverrides = sDB2Manager.GetItemSpecOverrides(sparse->ID))
@@ -3320,7 +3319,7 @@ void ObjectMgr::LoadItemTemplateAddon()
uint32 oldMSTime = getMSTime();
uint32 count = 0;
- QueryResult result = WorldDatabase.Query("SELECT Id, FlagsCu, FoodType, MinMoneyLoot, MaxMoneyLoot, SpellPPMChance, RandomBonusListTemplateId FROM item_template_addon");
+ QueryResult result = WorldDatabase.Query("SELECT Id, FlagsCu, FoodType, MinMoneyLoot, MaxMoneyLoot, SpellPPMChance FROM item_template_addon");
if (result)
{
do
@@ -3346,7 +3345,6 @@ void ObjectMgr::LoadItemTemplateAddon()
itemTemplate->MinMoneyLoot = minMoneyLoot;
itemTemplate->MaxMoneyLoot = maxMoneyLoot;
itemTemplate->SpellPPMRate = fields[5].GetFloat();
- itemTemplate->RandomBonusListTemplateId = fields[6].GetUInt32();
++count;
} while (result->NextRow());
}
diff --git a/src/server/game/Guilds/GuildMgr.cpp b/src/server/game/Guilds/GuildMgr.cpp
index 7781fe83b85..6b2e939f2c6 100644
--- a/src/server/game/Guilds/GuildMgr.cpp
+++ b/src/server/game/Guilds/GuildMgr.cpp
@@ -431,7 +431,7 @@ void GuildMgr::LoadGuilds()
do
{
Field* fields = result->Fetch();
- uint64 guildId = fields[44].GetUInt64();
+ uint64 guildId = fields[46].GetUInt64();
if (Guild* guild = GetGuildById(guildId))
guild->LoadBankItemFromDB(fields);
diff --git a/src/server/game/Handlers/LootHandler.cpp b/src/server/game/Handlers/LootHandler.cpp
index 45ac22bcef5..a6bbe5a38d8 100644
--- a/src/server/game/Handlers/LootHandler.cpp
+++ b/src/server/game/Handlers/LootHandler.cpp
@@ -462,7 +462,7 @@ void WorldSession::HandleLootMasterGiveOpcode(WorldPackets::Loot::MasterLootItem
}
// now move item from loot to target inventory
- Item* newitem = target->StoreNewItem(dest, item.itemid, true, item.GetAllowedLooters(), item.context);
+ Item* newitem = target->StoreNewItem(dest, item.itemid, true, item.randomProperties, item.GetAllowedLooters(), item.context);
aeResult.Add(newitem, item.count, loot->loot_type, loot->GetDungeonEncounterId());
// mark as looted
diff --git a/src/server/game/Handlers/QuestHandler.cpp b/src/server/game/Handlers/QuestHandler.cpp
index a108fcc9fae..5cd6cb11557 100644
--- a/src/server/game/Handlers/QuestHandler.cpp
+++ b/src/server/game/Handlers/QuestHandler.cpp
@@ -834,7 +834,7 @@ void WorldSession::HandlePlayerChoiceResponse(WorldPackets::Quest::ChoiceRespons
ItemPosCountVec dest;
if (_player->CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, item.Id, item.Quantity) == EQUIP_ERR_OK)
{
- Item* newItem = _player->StoreNewItem(dest, item.Id, true, {}, ItemContext::Quest_Reward);
+ Item* newItem = _player->StoreNewItem(dest, item.Id, true, sItemEnchantmentMgr->GenerateRandomProperties(item.Id), {}, ItemContext::Quest_Reward);
_player->SendNewItem(newItem, item.Quantity, true, false);
}
}
diff --git a/src/server/game/Handlers/VoidStorageHandler.cpp b/src/server/game/Handlers/VoidStorageHandler.cpp
index d451b8a623e..24704d76c18 100644
--- a/src/server/game/Handlers/VoidStorageHandler.cpp
+++ b/src/server/game/Handlers/VoidStorageHandler.cpp
@@ -148,7 +148,8 @@ void WorldSession::HandleVoidStorageTransfer(WorldPackets::VoidStorage::VoidStor
continue;
}
- VoidStorageItem itemVS(sObjectMgr->GenerateVoidStorageItemId(), item->GetEntry(), item->GetCreator(), item->GetModifier(ITEM_MODIFIER_TIMEWALKER_LEVEL), item->GetContext());
+ VoidStorageItem itemVS(sObjectMgr->GenerateVoidStorageItemId(), item->GetEntry(), item->GetCreator(), item->GetModifier(ITEM_MODIFIER_TIMEWALKER_LEVEL),
+ ItemRandomProperties(item->m_itemData->RandomPropertiesID, item->m_itemData->PropertySeed), item->GetContext());
WorldPackets::VoidStorage::VoidItem voidItem;
voidItem.Guid = ObjectGuid::Create<HighGuid::Item>(itemVS.ItemId);
@@ -185,7 +186,7 @@ void WorldSession::HandleVoidStorageTransfer(WorldPackets::VoidStorage::VoidStor
return;
}
- Item* item = _player->StoreNewItem(dest, itemVS->ItemEntry, true, GuidSet(), itemVS->Context);
+ Item* item = _player->StoreNewItem(dest, itemVS->ItemEntry, true, itemVS->RandomProperties, GuidSet(), itemVS->Context);
item->SetCreator(itemVS->CreatorGuid);
item->SetBinding(true);
GetCollectionMgr()->AddItemAppearance(item);
diff --git a/src/server/game/Loot/Loot.cpp b/src/server/game/Loot/Loot.cpp
index 2cc6f2b9017..02e8024221b 100644
--- a/src/server/game/Loot/Loot.cpp
+++ b/src/server/game/Loot/Loot.cpp
@@ -51,6 +51,7 @@ LootItem::LootItem(LootStoreItem const& li)
needs_quest = li.needs_quest;
+ randomProperties = sItemEnchantmentMgr->GenerateRandomProperties(itemid);
context = ItemContext::NONE;
count = 0;
is_looted = false;
@@ -885,7 +886,7 @@ bool Loot::AutoStore(Player* player, uint8 bag, uint8 slot, bool broadcast, bool
--unlootedCount;
- Item* pItem = player->StoreNewItem(dest, lootItem->itemid, true, GuidSet(), lootItem->context);
+ Item* pItem = player->StoreNewItem(dest, lootItem->itemid, true, lootItem->randomProperties, GuidSet(), lootItem->context);
player->SendNewItem(pItem, lootItem->count, false, createdByPlayer, broadcast);
player->ApplyItemLootedSpell(pItem, true);
}
diff --git a/src/server/game/Loot/Loot.h b/src/server/game/Loot/Loot.h
index f985ca71486..33bee4568c8 100644
--- a/src/server/game/Loot/Loot.h
+++ b/src/server/game/Loot/Loot.h
@@ -176,6 +176,7 @@ struct TC_GAME_API LootItem
{
uint32 itemid;
uint32 LootListId;
+ ItemRandomProperties randomProperties;
ItemContext context;
ConditionContainer conditions; // additional loot condition
GuidSet allowedGUIDs;
diff --git a/src/server/game/Loot/LootItemStorage.cpp b/src/server/game/Loot/LootItemStorage.cpp
index a580c3f3117..5953cd8a53d 100644
--- a/src/server/game/Loot/LootItemStorage.cpp
+++ b/src/server/game/Loot/LootItemStorage.cpp
@@ -35,7 +35,7 @@ namespace
StoredLootItem::StoredLootItem(LootItem const& lootItem) : ItemId(lootItem.itemid), Count(lootItem.count), ItemIndex(lootItem.LootListId), FollowRules(lootItem.follow_loot_rules),
FFA(lootItem.freeforall), Blocked(lootItem.is_blocked), Counted(lootItem.is_counted), UnderThreshold(lootItem.is_underthreshold),
-NeedsQuest(lootItem.needs_quest), Context(lootItem.context)
+NeedsQuest(lootItem.needs_quest), RandomProperties(lootItem.randomProperties), Context(lootItem.context)
{
}
@@ -79,7 +79,9 @@ void LootItemStorage::LoadStorageFromDB()
lootItem.is_counted = fields[7].GetBool();
lootItem.is_underthreshold = fields[8].GetBool();
lootItem.needs_quest = fields[9].GetBool();
- lootItem.context = ItemContext(fields[10].GetUInt8());
+ lootItem.randomProperties.RandomPropertiesID = fields[10].GetInt32();
+ lootItem.randomProperties.RandomPropertiesSeed = fields[11].GetInt32();
+ lootItem.context = ItemContext(fields[12].GetUInt8());
storedContainer.AddLootItem(lootItem, trans);
@@ -146,6 +148,7 @@ bool LootItemStorage::LoadStoredLoot(Item* item, Player* player)
li.is_counted = storedItemPair.second.Counted;
li.is_underthreshold = storedItemPair.second.UnderThreshold;
li.needs_quest = storedItemPair.second.NeedsQuest;
+ li.randomProperties = storedItemPair.second.RandomProperties;
li.context = storedItemPair.second.Context;
// Copy the extra loot conditions from the item in the loot template
@@ -276,7 +279,7 @@ void StoredLootContainer::AddLootItem(LootItem const& lootItem, CharacterDatabas
CharacterDatabasePreparedStatement* stmt = CharacterDatabase.GetPreparedStatement(CHAR_INS_ITEMCONTAINER_ITEMS);
- // container_id, item_id, item_count, item_index, follow_rules, ffa, blocked, counted, under_threshold, needs_quest, rnd_prop, rnd_suffix
+ // container_id, item_id, item_count, item_index, follow_rules, ffa, blocked, counted, under_threshold, needs_quest, random_properties_id, random_properties_seed, context
stmt->setUInt64(0, _containerId);
stmt->setUInt32(1, lootItem.itemid);
stmt->setUInt32(2, lootItem.count);
@@ -287,7 +290,9 @@ void StoredLootContainer::AddLootItem(LootItem const& lootItem, CharacterDatabas
stmt->setBool(7, lootItem.is_counted);
stmt->setBool(8, lootItem.is_underthreshold);
stmt->setBool(9, lootItem.needs_quest);
- stmt->setUInt8(10, AsUnderlyingType(lootItem.context));
+ stmt->setInt32(9, lootItem.randomProperties.RandomPropertiesID);
+ stmt->setInt32(10, lootItem.randomProperties.RandomPropertiesSeed);
+ stmt->setUInt8(11, AsUnderlyingType(lootItem.context));
trans->Append(stmt);
}
diff --git a/src/server/game/Loot/LootItemStorage.h b/src/server/game/Loot/LootItemStorage.h
index bd96cc90588..21bcfe6feec 100644
--- a/src/server/game/Loot/LootItemStorage.h
+++ b/src/server/game/Loot/LootItemStorage.h
@@ -45,6 +45,7 @@ struct StoredLootItem
bool Counted;
bool UnderThreshold;
bool NeedsQuest;
+ ItemRandomProperties RandomProperties;
ItemContext Context;
};
diff --git a/src/server/game/Spells/SpellEffects.cpp b/src/server/game/Spells/SpellEffects.cpp
index d6a7e320cd1..4984c56ab60 100644
--- a/src/server/game/Spells/SpellEffects.cpp
+++ b/src/server/game/Spells/SpellEffects.cpp
@@ -1365,7 +1365,7 @@ void Spell::DoCreateItem(uint32 itemId, ItemContext context /*= ItemContext::NON
if (num_to_add)
{
// create the new item and store it
- Item* pItem = player->StoreNewItem(dest, newitemid, true, GuidSet(), context);
+ Item* pItem = player->StoreNewItem(dest, newitemid, true, sItemEnchantmentMgr->GenerateRandomProperties(newitemid), GuidSet(), context);
// was it successful? return error if not
if (!pItem)
diff --git a/src/server/game/Spells/SpellInfo.cpp b/src/server/game/Spells/SpellInfo.cpp
index 581578ebc10..eba12d8a794 100644
--- a/src/server/game/Spells/SpellInfo.cpp
+++ b/src/server/game/Spells/SpellInfo.cpp
@@ -550,7 +550,7 @@ int32 SpellEffectInfo::CalcValue(WorldObject const* caster /*= nullptr*/, int32
return int32(round(value));
}
-int32 SpellEffectInfo::CalcBaseValue(WorldObject const* caster, Unit const* target, uint32 itemId, int32 itemLevel) const
+int32 SpellEffectInfo::CalcBaseValue(WorldObject const* caster, Unit const* target, uint32 itemId, int32 /*itemLevel*/) const
{
if (Scaling.Coefficient != 0.0f)
{
@@ -575,6 +575,7 @@ int32 SpellEffectInfo::CalcBaseValue(WorldObject const* caster, Unit const* targ
if (!Scaling.Class)
return 0;
+ /*
uint32 effectiveItemLevel = itemLevel != -1 ? uint32(itemLevel) : 1u;
if (_spellInfo->Scaling.ScalesFromItemLevel || _spellInfo->HasAttribute(SPELL_ATTR11_SCALES_WITH_ITEM_LEVEL))
{
@@ -594,6 +595,7 @@ int32 SpellEffectInfo::CalcBaseValue(WorldObject const* caster, Unit const* targ
}
else
value = GetSpellScalingColumnForClass(sSpellScalingGameTable.GetRow(level), Scaling.Class);
+ */
}
value *= Scaling.Coefficient;
@@ -4250,12 +4252,15 @@ inline float CalcPPMItemLevelMod(SpellProcsPerMinuteModEntry const* mod, int32 i
if (itemLevel == mod->Param)
return 0.0f;
+ /*
float itemLevelPoints = GetRandomPropertyPoints(itemLevel, ITEM_QUALITY_RARE, INVTYPE_CHEST, 0);
float basePoints = GetRandomPropertyPoints(mod->Param, ITEM_QUALITY_RARE, INVTYPE_CHEST, 0);
if (itemLevelPoints == basePoints)
return 0.0f;
return ((itemLevelPoints / basePoints) - 1.0f) * mod->Coeff;
+ */
+ return 0;
}
float SpellInfo::CalcProcPPM(Unit* caster, int32 itemLevel) const
diff --git a/src/server/game/World/World.cpp b/src/server/game/World/World.cpp
index c24e120b13f..3bb2165bda1 100644
--- a/src/server/game/World/World.cpp
+++ b/src/server/game/World/World.cpp
@@ -1963,6 +1963,9 @@ void World::SetInitialWorldSettings()
TC_LOG_INFO("server.loading", "Loading Disables"); // must be before loading quests and items
DisableMgr::LoadDisables();
+ TC_LOG_INFO("server.loading", "Loading Item Random Enchantments Table...");
+ sItemEnchantmentMgr->LoadRandomEnchantmentsTable();
+
TC_LOG_INFO("server.loading", "Loading Items..."); // must be after LoadRandomEnchantmentsTable and LoadPageTexts
sObjectMgr->LoadItemTemplates();
diff --git a/src/server/scripts/Commands/cs_misc.cpp b/src/server/scripts/Commands/cs_misc.cpp
index 12b08a05c6d..3d1030eda32 100644
--- a/src/server/scripts/Commands/cs_misc.cpp
+++ b/src/server/scripts/Commands/cs_misc.cpp
@@ -1290,7 +1290,7 @@ public:
return false;
}
- Item* item = playerTarget->StoreNewItem(dest, itemId, true, GuidSet(), itemContext);
+ Item* item = playerTarget->StoreNewItem(dest, itemId, true, sItemEnchantmentMgr->GenerateRandomProperties(itemId), GuidSet(), itemContext);
// remove binding (let GM give it to another player later)
if (player == playerTarget)
@@ -1443,7 +1443,7 @@ public:
return false;
}
- Item* item = playerTarget->StoreNewItem(dest, itemId, true, GuidSet(), itemContext);
+ Item* item = playerTarget->StoreNewItem(dest, itemId, true, sItemEnchantmentMgr->GenerateRandomProperties(itemId), GuidSet(), itemContext);
// remove binding (let GM give it to another player later)
if (player == playerTarget)
@@ -1497,7 +1497,7 @@ public:
InventoryResult msg = playerTarget->CanStoreNewItem(NULL_BAG, NULL_SLOT, dest, itemTemplatePair.first, 1);
if (msg == EQUIP_ERR_OK)
{
- Item* item = playerTarget->StoreNewItem(dest, itemTemplatePair.first, true, GuidSet(), itemContext);
+ Item* item = playerTarget->StoreNewItem(dest, itemTemplatePair.first, true, sItemEnchantmentMgr->GenerateRandomProperties(itemTemplatePair.first), GuidSet(), itemContext);
// remove binding (let GM give it to another player later)
if (player == playerTarget)