Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save whoacowboy/5e8cfda13d333c9b8b1c9665c4a6ad1f to your computer and use it in GitHub Desktop.
Save whoacowboy/5e8cfda13d333c9b8b1c9665c4a6ad1f to your computer and use it in GitHub Desktop.
SO Database Optimization
# ************************************************************
# Sequel Ace SQL dump
# Version 20062
#
# https://sequel-ace.com/
# https://github.com/Sequel-Ace/Sequel-Ace
#
# Host: 127.0.0.1 (MySQL 8.0.36)
# Database: stackoverflow
# Generation Time: 2024-06-09 20:58:56 +0000
# ************************************************************
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
SET NAMES utf8mb4;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE='NO_AUTO_VALUE_ON_ZERO', SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
# Dump of table categories
# ------------------------------------------------------------
DROP TABLE IF EXISTS `categories`;
CREATE TABLE `categories` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `categories_slug_index` (`slug`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` (`id`, `name`, `slug`)
VALUES
(1,'Category 1','category-1'),
(2,'Category 2','category-2'),
(3,'Category 3','category-3'),
(4,'Category 4','category-4'),
(5,'Category 5','category-5'),
(6,'Category 6','category-6'),
(7,'Category 7','category-7'),
(8,'Category 8','category-8'),
(9,'Category 9','category-9'),
(10,'Category 10','category-10'),
(11,'Category 11','category-11'),
(12,'Category 12','category-12'),
(13,'Category 13','category-13'),
(14,'Category 14','category-14'),
(15,'Category 15','category-15');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table customer_product
# ------------------------------------------------------------
DROP TABLE IF EXISTS `customer_product`;
CREATE TABLE `customer_product` (
`id` int NOT NULL AUTO_INCREMENT,
`customer_id` int unsigned NOT NULL,
`product_id` int unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `customer_id` (`customer_id`,`product_id`),
KEY `customer_id_2` (`customer_id`),
KEY `product_id` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `customer_product` WRITE;
/*!40000 ALTER TABLE `customer_product` DISABLE KEYS */;
INSERT INTO `customer_product` (`id`, `customer_id`, `product_id`)
VALUES
(1,1,1),
(11,1,11),
(21,1,21),
(31,1,31),
(41,1,41),
(51,1,51),
(61,1,61),
(71,1,71),
(81,1,81),
(91,1,91),
(101,1,101),
(111,1,111),
(121,1,121),
(131,1,131),
(141,1,141),
(151,1,151),
(161,1,161),
(171,1,171),
(181,1,181),
(191,1,191),
(201,1,201),
(211,1,211),
(221,1,221),
(231,1,231),
(241,1,241),
(251,1,251),
(261,1,261),
(271,1,271),
(281,1,281),
(291,1,291),
(2,2,2),
(12,2,12),
(22,2,22),
(32,2,32),
(42,2,42),
(52,2,52),
(62,2,62),
(72,2,72),
(82,2,82),
(92,2,92),
(102,2,102),
(112,2,112),
(122,2,122),
(132,2,132),
(142,2,142),
(152,2,152),
(162,2,162),
(172,2,172),
(182,2,182),
(192,2,192),
(202,2,202),
(212,2,212),
(222,2,222),
(232,2,232),
(242,2,242),
(252,2,252),
(262,2,262),
(272,2,272),
(282,2,282),
(292,2,292),
(3,3,3),
(13,3,13),
(23,3,23),
(33,3,33),
(43,3,43),
(53,3,53),
(63,3,63),
(73,3,73),
(83,3,83),
(93,3,93),
(103,3,103),
(113,3,113),
(123,3,123),
(133,3,133),
(143,3,143),
(153,3,153),
(163,3,163),
(173,3,173),
(183,3,183),
(193,3,193),
(203,3,203),
(213,3,213),
(223,3,223),
(233,3,233),
(243,3,243),
(253,3,253),
(263,3,263),
(273,3,273),
(283,3,283),
(293,3,293),
(4,4,4),
(14,4,14),
(24,4,24),
(34,4,34),
(44,4,44),
(54,4,54),
(64,4,64),
(74,4,74),
(84,4,84),
(94,4,94),
(104,4,104),
(114,4,114),
(124,4,124),
(134,4,134),
(144,4,144),
(154,4,154),
(164,4,164),
(174,4,174),
(184,4,184),
(194,4,194),
(204,4,204),
(214,4,214),
(224,4,224),
(234,4,234),
(244,4,244),
(254,4,254),
(264,4,264),
(274,4,274),
(284,4,284),
(294,4,294),
(5,5,5),
(15,5,15),
(25,5,25),
(35,5,35),
(45,5,45),
(55,5,55),
(65,5,65),
(75,5,75),
(85,5,85),
(95,5,95),
(105,5,105),
(115,5,115),
(125,5,125),
(135,5,135),
(145,5,145),
(155,5,155),
(165,5,165),
(175,5,175),
(185,5,185),
(195,5,195),
(205,5,205),
(215,5,215),
(225,5,225),
(235,5,235),
(245,5,245),
(255,5,255),
(265,5,265),
(275,5,275),
(285,5,285),
(295,5,295),
(6,6,6),
(16,6,16),
(26,6,26),
(36,6,36),
(46,6,46),
(56,6,56),
(66,6,66),
(76,6,76),
(86,6,86),
(96,6,96),
(106,6,106),
(116,6,116),
(126,6,126),
(136,6,136),
(146,6,146),
(156,6,156),
(166,6,166),
(176,6,176),
(186,6,186),
(196,6,196),
(206,6,206),
(216,6,216),
(226,6,226),
(236,6,236),
(246,6,246),
(256,6,256),
(266,6,266),
(276,6,276),
(286,6,286),
(296,6,296),
(7,7,7),
(17,7,17),
(27,7,27),
(37,7,37),
(47,7,47),
(57,7,57),
(67,7,67),
(77,7,77),
(87,7,87),
(97,7,97),
(107,7,107),
(117,7,117),
(127,7,127),
(137,7,137),
(147,7,147),
(157,7,157),
(167,7,167),
(177,7,177),
(187,7,187),
(197,7,197),
(207,7,207),
(217,7,217),
(227,7,227),
(237,7,237),
(247,7,247),
(257,7,257),
(267,7,267),
(277,7,277),
(287,7,287),
(297,7,297),
(8,8,8),
(18,8,18),
(28,8,28),
(38,8,38),
(48,8,48),
(58,8,58),
(68,8,68),
(78,8,78),
(88,8,88),
(98,8,98),
(108,8,108),
(118,8,118),
(128,8,128),
(138,8,138),
(148,8,148),
(158,8,158),
(168,8,168),
(178,8,178),
(188,8,188),
(198,8,198),
(208,8,208),
(218,8,218),
(228,8,228),
(238,8,238),
(248,8,248),
(258,8,258),
(268,8,268),
(278,8,278),
(288,8,288),
(298,8,298),
(9,9,9),
(19,9,19),
(29,9,29),
(39,9,39),
(49,9,49),
(59,9,59),
(69,9,69),
(79,9,79),
(89,9,89),
(99,9,99),
(109,9,109),
(119,9,119),
(129,9,129),
(139,9,139),
(149,9,149),
(159,9,159),
(169,9,169),
(179,9,179),
(189,9,189),
(199,9,199),
(209,9,209),
(219,9,219),
(229,9,229),
(239,9,239),
(249,9,249),
(259,9,259),
(269,9,269),
(279,9,279),
(289,9,289),
(299,9,299),
(10,10,10),
(20,10,20),
(30,10,30),
(40,10,40),
(50,10,50),
(60,10,60),
(70,10,70),
(80,10,80),
(90,10,90),
(100,10,100),
(110,10,110),
(120,10,120),
(130,10,130),
(140,10,140),
(150,10,150),
(160,10,160),
(170,10,170),
(180,10,180),
(190,10,190),
(200,10,200),
(210,10,210),
(220,10,220),
(230,10,230),
(240,10,240),
(250,10,250),
(260,10,260),
(270,10,270),
(280,10,280),
(290,10,290),
(300,10,300);
/*!40000 ALTER TABLE `customer_product` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table customers
# ------------------------------------------------------------
DROP TABLE IF EXISTS `customers`;
CREATE TABLE `customers` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`order` int DEFAULT '0',
`type_id` int DEFAULT '1',
`uuid` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
LOCK TABLES `customers` WRITE;
/*!40000 ALTER TABLE `customers` DISABLE KEYS */;
INSERT INTO `customers` (`id`, `name`, `order`, `type_id`, `uuid`)
VALUES
(1,'Customer 1',1,1,'ca259f51-cff5-32d0-9bd9-358d9b153512'),
(2,'Customer 2',2,1,'5fe35d36-3a65-378d-87b1-5b6ea20a09f7'),
(3,'Customer 3',3,4,'27fbef24-79c4-3f6d-b490-bd6987d7a22f'),
(4,'Customer 4',4,3,'5186bcdc-96f6-31b8-8c32-d36fa6549e28'),
(5,'Customer 5',5,4,'13e8a920-46b5-391a-ac9f-2d8246763279'),
(6,'Customer 6',6,1,'10165612-e736-3128-bd10-24b9462f377d'),
(7,'Customer 7',7,1,'d66a9950-95a5-3c8c-9ca9-0248bcfb7f42'),
(8,'Customer 8',8,3,'ed321fa1-1947-37b8-baf4-f7375ab81bec'),
(9,'Customer 9',9,1,'4a191bbd-e809-3b5c-b045-31e0d2ab7bf0'),
(10,'Customer 10',10,2,'9a88c9e8-efb4-360c-9ce7-e1e78651973d');
/*!40000 ALTER TABLE `customers` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table product_categories
# ------------------------------------------------------------
DROP TABLE IF EXISTS `product_categories`;
CREATE TABLE `product_categories` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`product_id` int unsigned NOT NULL,
`category_id` int unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `product_id_index` (`product_id`),
KEY `category_id_index` (`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `product_categories` WRITE;
/*!40000 ALTER TABLE `product_categories` DISABLE KEYS */;
INSERT INTO `product_categories` (`id`, `product_id`, `category_id`)
VALUES
(1,1,1),
(2,1,3),
(3,1,4),
(4,1,5),
(5,1,7),
(6,1,11),
(7,2,0),
(8,2,1),
(9,2,3),
(10,2,4),
(11,2,8),
(12,2,11),
(13,3,0),
(14,3,1),
(15,3,3),
(16,3,7),
(17,3,8),
(18,3,10),
(19,4,0),
(20,4,1),
(21,4,5),
(22,4,6),
(23,4,8),
(24,4,11),
(25,5,1),
(26,5,3),
(27,5,4),
(28,5,5),
(29,5,7),
(30,5,11),
(31,6,0),
(32,6,1),
(33,6,6),
(34,6,7),
(35,6,8),
(36,6,11),
(37,7,0),
(38,7,2),
(39,7,3),
(40,7,4),
(41,7,5),
(42,7,10),
(43,8,0),
(44,8,1),
(45,8,2),
(46,8,4),
(47,8,7),
(48,8,10),
(49,9,0),
(50,9,4),
(51,9,5),
(52,9,7),
(53,9,8),
(54,9,10),
(55,10,0),
(56,10,2),
(57,10,3),
(58,10,4),
(59,10,8),
(60,10,11),
(61,11,0),
(62,11,3),
(63,11,4),
(64,11,6),
(65,11,8),
(66,11,11),
(67,12,0),
(68,12,5),
(69,12,6),
(70,12,7),
(71,12,8),
(72,12,11),
(73,13,1),
(74,13,2),
(75,13,3),
(76,13,4),
(77,13,7),
(78,13,11),
(79,14,1),
(80,14,2),
(81,14,3),
(82,14,5),
(83,14,8),
(84,14,11),
(85,15,2),
(86,15,3),
(87,15,4),
(88,15,5),
(89,15,6),
(90,15,10),
(91,16,0),
(92,16,2),
(93,16,3),
(94,16,5),
(95,16,6),
(96,16,10),
(97,17,0),
(98,17,3),
(99,17,5),
(100,17,7),
(101,17,8),
(102,17,10),
(103,18,0),
(104,18,2),
(105,18,3),
(106,18,4),
(107,18,8),
(108,18,10),
(109,19,2),
(110,19,4),
(111,19,5),
(112,19,6),
(113,19,8),
(114,19,11),
(115,20,0),
(116,20,1),
(117,20,4),
(118,20,6),
(119,20,8),
(120,20,11),
(121,21,0),
(122,21,3),
(123,21,5),
(124,21,6),
(125,21,8),
(126,21,11),
(127,22,0),
(128,22,1),
(129,22,3),
(130,22,4),
(131,22,8),
(132,22,11),
(133,23,1),
(134,23,2),
(135,23,5),
(136,23,6),
(137,23,7),
(138,23,10),
(139,24,0),
(140,24,2),
(141,24,3),
(142,24,5),
(143,24,8),
(144,24,11),
(145,25,0),
(146,25,1),
(147,25,4),
(148,25,5),
(149,25,8),
(150,25,11),
(151,26,0),
(152,26,2),
(153,26,4),
(154,26,7),
(155,26,8),
(156,26,10),
(157,27,0),
(158,27,2),
(159,27,5),
(160,27,6),
(161,27,8),
(162,27,11),
(163,28,0),
(164,28,2),
(165,28,4),
(166,28,5),
(167,28,7),
(168,28,10),
(169,29,0),
(170,29,1),
(171,29,3),
(172,29,6),
(173,29,7),
(174,29,11),
(175,30,0),
(176,30,3),
(177,30,4),
(178,30,5),
(179,30,6),
(180,30,11),
(181,31,0),
(182,31,1),
(183,31,4),
(184,31,6),
(185,31,7),
(186,31,10),
(187,32,1),
(188,32,2),
(189,32,4),
(190,32,5),
(191,32,8),
(192,32,11),
(193,33,0),
(194,33,1),
(195,33,3),
(196,33,4),
(197,33,6),
(198,33,10),
(199,34,1),
(200,34,2),
(201,34,5),
(202,34,6),
(203,34,8),
(204,34,11),
(205,35,0),
(206,35,1),
(207,35,2),
(208,35,6),
(209,35,8),
(210,35,11),
(211,36,0),
(212,36,2),
(213,36,5),
(214,36,6),
(215,36,8),
(216,36,11),
(217,37,0),
(218,37,1),
(219,37,3),
(220,37,4),
(221,37,8),
(222,37,10),
(223,38,0),
(224,38,1),
(225,38,4),
(226,38,6),
(227,38,7),
(228,38,11),
(229,39,1),
(230,39,2),
(231,39,3),
(232,39,4),
(233,39,7),
(234,39,10),
(235,40,1),
(236,40,2),
(237,40,3),
(238,40,5),
(239,40,8),
(240,40,11),
(241,41,0),
(242,41,1),
(243,41,2),
(244,41,3),
(245,41,6),
(246,41,10),
(247,42,1),
(248,42,4),
(249,42,6),
(250,42,7),
(251,42,8),
(252,42,10),
(253,43,0),
(254,43,1),
(255,43,3),
(256,43,4),
(257,43,7),
(258,43,11),
(259,44,0),
(260,44,1),
(261,44,5),
(262,44,6),
(263,44,8),
(264,44,11),
(265,45,1),
(266,45,5),
(267,45,6),
(268,45,7),
(269,45,8),
(270,45,11),
(271,46,0),
(272,46,3),
(273,46,4),
(274,46,6),
(275,46,7),
(276,46,11),
(277,47,0),
(278,47,2),
(279,47,4),
(280,47,7),
(281,47,8),
(282,47,11),
(283,48,0),
(284,48,3),
(285,48,5),
(286,48,6),
(287,48,7),
(288,48,10),
(289,49,0),
(290,49,3),
(291,49,4),
(292,49,6),
(293,49,7),
(294,49,10),
(295,50,1),
(296,50,2),
(297,50,5),
(298,50,6),
(299,50,7),
(300,50,10),
(301,51,1),
(302,51,3),
(303,51,4),
(304,51,5),
(305,51,6),
(306,51,10),
(307,52,1),
(308,52,4),
(309,52,6),
(310,52,7),
(311,52,8),
(312,52,10),
(313,53,1),
(314,53,3),
(315,53,4),
(316,53,6),
(317,53,8),
(318,53,10),
(319,54,0),
(320,54,2),
(321,54,4),
(322,54,6),
(323,54,7),
(324,54,10),
(325,55,0),
(326,55,2),
(327,55,5),
(328,55,6),
(329,55,8),
(330,55,11),
(331,56,1),
(332,56,2),
(333,56,3),
(334,56,4),
(335,56,5),
(336,56,10),
(337,57,1),
(338,57,3),
(339,57,4),
(340,57,5),
(341,57,8),
(342,57,10),
(343,58,1),
(344,58,2),
(345,58,3),
(346,58,4),
(347,58,7),
(348,58,11),
(349,59,0),
(350,59,1),
(351,59,2),
(352,59,6),
(353,59,7),
(354,59,10),
(355,60,0),
(356,60,4),
(357,60,6),
(358,60,7),
(359,60,8),
(360,60,11),
(361,61,0),
(362,61,2),
(363,61,3),
(364,61,4),
(365,61,7),
(366,61,11),
(367,62,4),
(368,62,5),
(369,62,6),
(370,62,7),
(371,62,8),
(372,62,10),
(373,63,1),
(374,63,2),
(375,63,4),
(376,63,5),
(377,63,7),
(378,63,11),
(379,64,1),
(380,64,2),
(381,64,6),
(382,64,7),
(383,64,8),
(384,64,11),
(385,65,1),
(386,65,2),
(387,65,4),
(388,65,7),
(389,65,8),
(390,65,10),
(391,66,0),
(392,66,2),
(393,66,3),
(394,66,7),
(395,66,8),
(396,66,10),
(397,67,0),
(398,67,2),
(399,67,5),
(400,67,6),
(401,67,8),
(402,67,10),
(403,68,1),
(404,68,2),
(405,68,4),
(406,68,6),
(407,68,7),
(408,68,10),
(409,69,2),
(410,69,3),
(411,69,4),
(412,69,6),
(413,69,8),
(414,69,10),
(415,70,0),
(416,70,3),
(417,70,4),
(418,70,6),
(419,70,7),
(420,70,11),
(421,71,0),
(422,71,1),
(423,71,2),
(424,71,5),
(425,71,6),
(426,71,11),
(427,72,2),
(428,72,4),
(429,72,5),
(430,72,6),
(431,72,8),
(432,72,10),
(433,73,2),
(434,73,4),
(435,73,6),
(436,73,7),
(437,73,8),
(438,73,11),
(439,74,0),
(440,74,1),
(441,74,3),
(442,74,5),
(443,74,8),
(444,74,10),
(445,75,0),
(446,75,2),
(447,75,3),
(448,75,5),
(449,75,8),
(450,75,10),
(451,76,0),
(452,76,2),
(453,76,4),
(454,76,5),
(455,76,6),
(456,76,11),
(457,77,2),
(458,77,3),
(459,77,4),
(460,77,6),
(461,77,7),
(462,77,11),
(463,78,0),
(464,78,1),
(465,78,3),
(466,78,5),
(467,78,6),
(468,78,11),
(469,79,0),
(470,79,1),
(471,79,2),
(472,79,5),
(473,79,7),
(474,79,11),
(475,80,0),
(476,80,2),
(477,80,6),
(478,80,7),
(479,80,8),
(480,80,10),
(481,81,0),
(482,81,2),
(483,81,3),
(484,81,4),
(485,81,7),
(486,81,10),
(487,82,0),
(488,82,1),
(489,82,3),
(490,82,6),
(491,82,7),
(492,82,11),
(493,83,0),
(494,83,2),
(495,83,3),
(496,83,4),
(497,83,5),
(498,83,10),
(499,84,0),
(500,84,2),
(501,84,3),
(502,84,6),
(503,84,8),
(504,84,10),
(505,85,1),
(506,85,3),
(507,85,4),
(508,85,6),
(509,85,8),
(510,85,10),
(511,86,0),
(512,86,1),
(513,86,2),
(514,86,4),
(515,86,8),
(516,86,10),
(517,87,0),
(518,87,3),
(519,87,4),
(520,87,7),
(521,87,8),
(522,87,11),
(523,88,0),
(524,88,4),
(525,88,5),
(526,88,6),
(527,88,8),
(528,88,11),
(529,89,0),
(530,89,2),
(531,89,5),
(532,89,6),
(533,89,8),
(534,89,11),
(535,90,0),
(536,90,1),
(537,90,2),
(538,90,6),
(539,90,8),
(540,90,11),
(541,91,1),
(542,91,3),
(543,91,5),
(544,91,6),
(545,91,7),
(546,91,11),
(547,92,0),
(548,92,1),
(549,92,4),
(550,92,5),
(551,92,6),
(552,92,11),
(553,93,0),
(554,93,4),
(555,93,6),
(556,93,7),
(557,93,8),
(558,93,10),
(559,94,0),
(560,94,1),
(561,94,5),
(562,94,6),
(563,94,8),
(564,94,10),
(565,95,2),
(566,95,3),
(567,95,6),
(568,95,7),
(569,95,8),
(570,95,10),
(571,96,0),
(572,96,2),
(573,96,3),
(574,96,4),
(575,96,8),
(576,96,10),
(577,97,2),
(578,97,4),
(579,97,6),
(580,97,7),
(581,97,8),
(582,97,11),
(583,98,2),
(584,98,3),
(585,98,5),
(586,98,7),
(587,98,8),
(588,98,11),
(589,99,0),
(590,99,1),
(591,99,2),
(592,99,5),
(593,99,7),
(594,99,10),
(595,100,0),
(596,100,2),
(597,100,4),
(598,100,6),
(599,100,7),
(600,100,11),
(601,101,1),
(602,101,3),
(603,101,5),
(604,101,6),
(605,101,7),
(606,101,10),
(607,102,0),
(608,102,1),
(609,102,2),
(610,102,4),
(611,102,8),
(612,102,10),
(613,103,2),
(614,103,4),
(615,103,5),
(616,103,6),
(617,103,7),
(618,103,10),
(619,104,0),
(620,104,1),
(621,104,5),
(622,104,6),
(623,104,8),
(624,104,10),
(625,105,0),
(626,105,2),
(627,105,3),
(628,105,5),
(629,105,6),
(630,105,11),
(631,106,0),
(632,106,1),
(633,106,3),
(634,106,4),
(635,106,7),
(636,106,11),
(637,107,0),
(638,107,1),
(639,107,5),
(640,107,7),
(641,107,8),
(642,107,11),
(643,108,0),
(644,108,2),
(645,108,4),
(646,108,5),
(647,108,6),
(648,108,10),
(649,109,1),
(650,109,2),
(651,109,4),
(652,109,5),
(653,109,8),
(654,109,11),
(655,110,1),
(656,110,3),
(657,110,5),
(658,110,7),
(659,110,8),
(660,110,11),
(661,111,2),
(662,111,3),
(663,111,4),
(664,111,7),
(665,111,8),
(666,111,10),
(667,112,0),
(668,112,3),
(669,112,4),
(670,112,6),
(671,112,8),
(672,112,10),
(673,113,1),
(674,113,3),
(675,113,4),
(676,113,5),
(677,113,8),
(678,113,10),
(679,114,0),
(680,114,1),
(681,114,2),
(682,114,6),
(683,114,8),
(684,114,10),
(685,115,0),
(686,115,3),
(687,115,4),
(688,115,5),
(689,115,8),
(690,115,11),
(691,116,2),
(692,116,5),
(693,116,6),
(694,116,7),
(695,116,8),
(696,116,10),
(697,117,2),
(698,117,3),
(699,117,4),
(700,117,7),
(701,117,8),
(702,117,11),
(703,118,1),
(704,118,3),
(705,118,4),
(706,118,6),
(707,118,8),
(708,118,11),
(709,119,1),
(710,119,3),
(711,119,4),
(712,119,6),
(713,119,8),
(714,119,11),
(715,120,1),
(716,120,2),
(717,120,5),
(718,120,7),
(719,120,8),
(720,120,11),
(721,121,1),
(722,121,3),
(723,121,5),
(724,121,6),
(725,121,8),
(726,121,11),
(727,122,1),
(728,122,3),
(729,122,5),
(730,122,6),
(731,122,7),
(732,122,11),
(733,123,1),
(734,123,3),
(735,123,4),
(736,123,5),
(737,123,6),
(738,123,10),
(739,124,1),
(740,124,2),
(741,124,4),
(742,124,6),
(743,124,8),
(744,124,10),
(745,125,0),
(746,125,4),
(747,125,5),
(748,125,6),
(749,125,8),
(750,125,11),
(751,126,1),
(752,126,4),
(753,126,6),
(754,126,7),
(755,126,8),
(756,126,10),
(757,127,0),
(758,127,1),
(759,127,3),
(760,127,7),
(761,127,8),
(762,127,11),
(763,128,1),
(764,128,2),
(765,128,4),
(766,128,6),
(767,128,8),
(768,128,11),
(769,129,3),
(770,129,4),
(771,129,5),
(772,129,6),
(773,129,8),
(774,129,11),
(775,130,1),
(776,130,3),
(777,130,4),
(778,130,5),
(779,130,6),
(780,130,10),
(781,131,0),
(782,131,1),
(783,131,4),
(784,131,5),
(785,131,6),
(786,131,11),
(787,132,0),
(788,132,2),
(789,132,3),
(790,132,5),
(791,132,8),
(792,132,11),
(793,133,0),
(794,133,1),
(795,133,2),
(796,133,3),
(797,133,6),
(798,133,10),
(799,134,1),
(800,134,2),
(801,134,3),
(802,134,4),
(803,134,8),
(804,134,11),
(805,135,0),
(806,135,2),
(807,135,3),
(808,135,4),
(809,135,7),
(810,135,11),
(811,136,1),
(812,136,2),
(813,136,3),
(814,136,5),
(815,136,6),
(816,136,10),
(817,137,0),
(818,137,1),
(819,137,2),
(820,137,5),
(821,137,7),
(822,137,10),
(823,138,0),
(824,138,3),
(825,138,5),
(826,138,6),
(827,138,7),
(828,138,11),
(829,139,0),
(830,139,4),
(831,139,6),
(832,139,7),
(833,139,8),
(834,139,11),
(835,140,2),
(836,140,4),
(837,140,6),
(838,140,7),
(839,140,8),
(840,140,10),
(841,141,2),
(842,141,3),
(843,141,4),
(844,141,7),
(845,141,8),
(846,141,10),
(847,142,2),
(848,142,3),
(849,142,4),
(850,142,7),
(851,142,8),
(852,142,11),
(853,143,0),
(854,143,1),
(855,143,3),
(856,143,7),
(857,143,8),
(858,143,11),
(859,144,1),
(860,144,5),
(861,144,6),
(862,144,7),
(863,144,8),
(864,144,10),
(865,145,1),
(866,145,2),
(867,145,3),
(868,145,4),
(869,145,6),
(870,145,10),
(871,146,0),
(872,146,2),
(873,146,3),
(874,146,4),
(875,146,8),
(876,146,11),
(877,147,0),
(878,147,1),
(879,147,4),
(880,147,6),
(881,147,8),
(882,147,10),
(883,148,0),
(884,148,1),
(885,148,4),
(886,148,5),
(887,148,7),
(888,148,11),
(889,149,2),
(890,149,3),
(891,149,4),
(892,149,7),
(893,149,8),
(894,149,10),
(895,150,1),
(896,150,4),
(897,150,5),
(898,150,6),
(899,150,8),
(900,150,10),
(901,151,0),
(902,151,1),
(903,151,3),
(904,151,7),
(905,151,8),
(906,151,10),
(907,152,0),
(908,152,1),
(909,152,2),
(910,152,7),
(911,152,8),
(912,152,11),
(913,153,0),
(914,153,2),
(915,153,5),
(916,153,6),
(917,153,7),
(918,153,11),
(919,154,1),
(920,154,3),
(921,154,5),
(922,154,6),
(923,154,8),
(924,154,10),
(925,155,0),
(926,155,2),
(927,155,4),
(928,155,5),
(929,155,6),
(930,155,10),
(931,156,1),
(932,156,2),
(933,156,3),
(934,156,4),
(935,156,7),
(936,156,10),
(937,157,0),
(938,157,4),
(939,157,6),
(940,157,7),
(941,157,8),
(942,157,10),
(943,158,0),
(944,158,2),
(945,158,3),
(946,158,6),
(947,158,7),
(948,158,11),
(949,159,0),
(950,159,1),
(951,159,5),
(952,159,6),
(953,159,8),
(954,159,11),
(955,160,0),
(956,160,1),
(957,160,2),
(958,160,5),
(959,160,8),
(960,160,11),
(961,161,2),
(962,161,3),
(963,161,4),
(964,161,5),
(965,161,6),
(966,161,11),
(967,162,0),
(968,162,3),
(969,162,5),
(970,162,7),
(971,162,8),
(972,162,10),
(973,163,1),
(974,163,2),
(975,163,3),
(976,163,4),
(977,163,5),
(978,163,11),
(979,164,3),
(980,164,4),
(981,164,5),
(982,164,7),
(983,164,8),
(984,164,11),
(985,165,0),
(986,165,2),
(987,165,3),
(988,165,4),
(989,165,5),
(990,165,11),
(991,166,2),
(992,166,3),
(993,166,4),
(994,166,5),
(995,166,8),
(996,166,11),
(997,167,1),
(998,167,3),
(999,167,4),
(1000,167,5),
(1001,167,6),
(1002,167,11),
(1003,168,0),
(1004,168,1),
(1005,168,2),
(1006,168,4),
(1007,168,6),
(1008,168,10),
(1009,169,0),
(1010,169,3),
(1011,169,4),
(1012,169,7),
(1013,169,8),
(1014,169,10),
(1015,170,0),
(1016,170,1),
(1017,170,2),
(1018,170,5),
(1019,170,7),
(1020,170,11),
(1021,171,0),
(1022,171,5),
(1023,171,6),
(1024,171,7),
(1025,171,8),
(1026,171,11),
(1027,172,0),
(1028,172,1),
(1029,172,3),
(1030,172,5),
(1031,172,6),
(1032,172,11),
(1033,173,0),
(1034,173,3),
(1035,173,4),
(1036,173,6),
(1037,173,8),
(1038,173,10),
(1039,174,1),
(1040,174,3),
(1041,174,6),
(1042,174,7),
(1043,174,8),
(1044,174,10),
(1045,175,1),
(1046,175,2),
(1047,175,5),
(1048,175,6),
(1049,175,7),
(1050,175,11),
(1051,176,0),
(1052,176,1),
(1053,176,2),
(1054,176,6),
(1055,176,7),
(1056,176,10),
(1057,177,0),
(1058,177,1),
(1059,177,4),
(1060,177,7),
(1061,177,8),
(1062,177,10),
(1063,178,0),
(1064,178,1),
(1065,178,2),
(1066,178,5),
(1067,178,8),
(1068,178,10),
(1069,179,0),
(1070,179,3),
(1071,179,4),
(1072,179,5),
(1073,179,8),
(1074,179,10),
(1075,180,1),
(1076,180,2),
(1077,180,3),
(1078,180,4),
(1079,180,6),
(1080,180,11),
(1081,181,0),
(1082,181,1),
(1083,181,2),
(1084,181,3),
(1085,181,8),
(1086,181,10),
(1087,182,4),
(1088,182,5),
(1089,182,6),
(1090,182,7),
(1091,182,8),
(1092,182,10),
(1093,183,1),
(1094,183,3),
(1095,183,5),
(1096,183,7),
(1097,183,8),
(1098,183,11),
(1099,184,1),
(1100,184,2),
(1101,184,3),
(1102,184,5),
(1103,184,6),
(1104,184,10),
(1105,185,0),
(1106,185,2),
(1107,185,4),
(1108,185,6),
(1109,185,8),
(1110,185,11),
(1111,186,1),
(1112,186,4),
(1113,186,5),
(1114,186,7),
(1115,186,8),
(1116,186,11),
(1117,187,0),
(1118,187,2),
(1119,187,6),
(1120,187,7),
(1121,187,8),
(1122,187,11),
(1123,188,0),
(1124,188,4),
(1125,188,5),
(1126,188,6),
(1127,188,7),
(1128,188,11),
(1129,189,0),
(1130,189,1),
(1131,189,2),
(1132,189,3),
(1133,189,6),
(1134,189,10),
(1135,190,1),
(1136,190,3),
(1137,190,4),
(1138,190,5),
(1139,190,6),
(1140,190,10),
(1141,191,0),
(1142,191,1),
(1143,191,4),
(1144,191,6),
(1145,191,7),
(1146,191,10),
(1147,192,0),
(1148,192,3),
(1149,192,4),
(1150,192,5),
(1151,192,6),
(1152,192,10),
(1153,193,1),
(1154,193,2),
(1155,193,5),
(1156,193,7),
(1157,193,8),
(1158,193,11),
(1159,194,2),
(1160,194,3),
(1161,194,5),
(1162,194,6),
(1163,194,7),
(1164,194,10),
(1165,195,0),
(1166,195,2),
(1167,195,3),
(1168,195,6),
(1169,195,8),
(1170,195,10),
(1171,196,1),
(1172,196,2),
(1173,196,4),
(1174,196,7),
(1175,196,8),
(1176,196,11),
(1177,197,0),
(1178,197,1),
(1179,197,2),
(1180,197,6),
(1181,197,8),
(1182,197,10),
(1183,198,0),
(1184,198,1),
(1185,198,2),
(1186,198,3),
(1187,198,7),
(1188,198,10),
(1189,199,1),
(1190,199,2),
(1191,199,3),
(1192,199,4),
(1193,199,8),
(1194,199,11),
(1195,200,0),
(1196,200,1),
(1197,200,2),
(1198,200,4),
(1199,200,7),
(1200,200,10),
(1201,201,1),
(1202,201,5),
(1203,201,6),
(1204,201,7),
(1205,201,8),
(1206,201,10),
(1207,202,1),
(1208,202,2),
(1209,202,5),
(1210,202,6),
(1211,202,8),
(1212,202,11),
(1213,203,3),
(1214,203,5),
(1215,203,6),
(1216,203,7),
(1217,203,8),
(1218,203,11),
(1219,204,0),
(1220,204,1),
(1221,204,2),
(1222,204,3),
(1223,204,5),
(1224,204,11),
(1225,205,0),
(1226,205,2),
(1227,205,3),
(1228,205,6),
(1229,205,8),
(1230,205,11),
(1231,206,2),
(1232,206,4),
(1233,206,5),
(1234,206,6),
(1235,206,7),
(1236,206,11),
(1237,207,0),
(1238,207,5),
(1239,207,6),
(1240,207,7),
(1241,207,8),
(1242,207,11),
(1243,208,0),
(1244,208,4),
(1245,208,5),
(1246,208,6),
(1247,208,8),
(1248,208,11),
(1249,209,0),
(1250,209,2),
(1251,209,5),
(1252,209,6),
(1253,209,7),
(1254,209,11),
(1255,210,0),
(1256,210,1),
(1257,210,3),
(1258,210,4),
(1259,210,5),
(1260,210,10),
(1261,211,0),
(1262,211,1),
(1263,211,5),
(1264,211,6),
(1265,211,8),
(1266,211,11),
(1267,212,1),
(1268,212,2),
(1269,212,4),
(1270,212,6),
(1271,212,7),
(1272,212,11),
(1273,213,1),
(1274,213,2),
(1275,213,3),
(1276,213,5),
(1277,213,6),
(1278,213,10),
(1279,214,0),
(1280,214,2),
(1281,214,4),
(1282,214,5),
(1283,214,8),
(1284,214,10),
(1285,215,0),
(1286,215,1),
(1287,215,2),
(1288,215,4),
(1289,215,6),
(1290,215,11),
(1291,216,1),
(1292,216,3),
(1293,216,4),
(1294,216,5),
(1295,216,7),
(1296,216,10),
(1297,217,0),
(1298,217,1),
(1299,217,2),
(1300,217,7),
(1301,217,8),
(1302,217,10),
(1303,218,0),
(1304,218,1),
(1305,218,4),
(1306,218,5),
(1307,218,7),
(1308,218,11),
(1309,219,3),
(1310,219,4),
(1311,219,5),
(1312,219,7),
(1313,219,8),
(1314,219,11),
(1315,220,0),
(1316,220,1),
(1317,220,3),
(1318,220,5),
(1319,220,8),
(1320,220,10),
(1321,221,1),
(1322,221,2),
(1323,221,4),
(1324,221,5),
(1325,221,8),
(1326,221,11),
(1327,222,1),
(1328,222,2),
(1329,222,5),
(1330,222,7),
(1331,222,8),
(1332,222,11),
(1333,223,0),
(1334,223,2),
(1335,223,3),
(1336,223,4),
(1337,223,8),
(1338,223,11),
(1339,224,1),
(1340,224,3),
(1341,224,4),
(1342,224,7),
(1343,224,8),
(1344,224,11),
(1345,225,1),
(1346,225,3),
(1347,225,4),
(1348,225,5),
(1349,225,6),
(1350,225,10),
(1351,226,2),
(1352,226,3),
(1353,226,5),
(1354,226,6),
(1355,226,8),
(1356,226,11),
(1357,227,0),
(1358,227,1),
(1359,227,4),
(1360,227,5),
(1361,227,7),
(1362,227,11),
(1363,228,0),
(1364,228,2),
(1365,228,3),
(1366,228,5),
(1367,228,8),
(1368,228,11),
(1369,229,3),
(1370,229,4),
(1371,229,5),
(1372,229,6),
(1373,229,7),
(1374,229,10),
(1375,230,2),
(1376,230,3),
(1377,230,5),
(1378,230,7),
(1379,230,8),
(1380,230,10),
(1381,231,0),
(1382,231,1),
(1383,231,2),
(1384,231,3),
(1385,231,8),
(1386,231,11),
(1387,232,0),
(1388,232,2),
(1389,232,4),
(1390,232,7),
(1391,232,8),
(1392,232,10),
(1393,233,3),
(1394,233,4),
(1395,233,5),
(1396,233,6),
(1397,233,8),
(1398,233,11),
(1399,234,0),
(1400,234,1),
(1401,234,3),
(1402,234,5),
(1403,234,7),
(1404,234,11),
(1405,235,0),
(1406,235,1),
(1407,235,5),
(1408,235,6),
(1409,235,8),
(1410,235,10),
(1411,236,1),
(1412,236,4),
(1413,236,5),
(1414,236,6),
(1415,236,7),
(1416,236,10),
(1417,237,0),
(1418,237,4),
(1419,237,5),
(1420,237,6),
(1421,237,8),
(1422,237,11),
(1423,238,0),
(1424,238,1),
(1425,238,3),
(1426,238,5),
(1427,238,7),
(1428,238,10),
(1429,239,4),
(1430,239,5),
(1431,239,6),
(1432,239,7),
(1433,239,8),
(1434,239,11),
(1435,240,0),
(1436,240,2),
(1437,240,3),
(1438,240,6),
(1439,240,8),
(1440,240,10),
(1441,241,3),
(1442,241,4),
(1443,241,5),
(1444,241,7),
(1445,241,8),
(1446,241,10),
(1447,242,0),
(1448,242,1),
(1449,242,2),
(1450,242,6),
(1451,242,8),
(1452,242,10),
(1453,243,0),
(1454,243,1),
(1455,243,3),
(1456,243,5),
(1457,243,6),
(1458,243,11),
(1459,244,0),
(1460,244,1),
(1461,244,4),
(1462,244,5),
(1463,244,7),
(1464,244,10),
(1465,245,0),
(1466,245,4),
(1467,245,5),
(1468,245,6),
(1469,245,7),
(1470,245,11),
(1471,246,0),
(1472,246,1),
(1473,246,3),
(1474,246,6),
(1475,246,7),
(1476,246,10),
(1477,247,0),
(1478,247,1),
(1479,247,3),
(1480,247,4),
(1481,247,5),
(1482,247,11),
(1483,248,1),
(1484,248,4),
(1485,248,6),
(1486,248,7),
(1487,248,8),
(1488,248,11),
(1489,249,2),
(1490,249,3),
(1491,249,6),
(1492,249,7),
(1493,249,8),
(1494,249,11),
(1495,250,1),
(1496,250,2),
(1497,250,3),
(1498,250,5),
(1499,250,7),
(1500,250,10),
(1501,251,0),
(1502,251,1),
(1503,251,2),
(1504,251,7),
(1505,251,8),
(1506,251,11),
(1507,252,0),
(1508,252,2),
(1509,252,3),
(1510,252,5),
(1511,252,8),
(1512,252,11),
(1513,253,0),
(1514,253,2),
(1515,253,3),
(1516,253,5),
(1517,253,7),
(1518,253,10),
(1519,254,1),
(1520,254,2),
(1521,254,4),
(1522,254,6),
(1523,254,8),
(1524,254,10),
(1525,255,0),
(1526,255,3),
(1527,255,4),
(1528,255,6),
(1529,255,8),
(1530,255,11),
(1531,256,0),
(1532,256,1),
(1533,256,4),
(1534,256,7),
(1535,256,8),
(1536,256,11),
(1537,257,0),
(1538,257,2),
(1539,257,4),
(1540,257,5),
(1541,257,6),
(1542,257,11),
(1543,258,0),
(1544,258,1),
(1545,258,2),
(1546,258,3),
(1547,258,5),
(1548,258,11),
(1549,259,1),
(1550,259,2),
(1551,259,3),
(1552,259,5),
(1553,259,8),
(1554,259,11),
(1555,260,1),
(1556,260,2),
(1557,260,3),
(1558,260,6),
(1559,260,7),
(1560,260,10),
(1561,261,2),
(1562,261,4),
(1563,261,5),
(1564,261,6),
(1565,261,8),
(1566,261,10),
(1567,262,0),
(1568,262,3),
(1569,262,5),
(1570,262,6),
(1571,262,8),
(1572,262,11),
(1573,263,0),
(1574,263,1),
(1575,263,2),
(1576,263,4),
(1577,263,8),
(1578,263,11),
(1579,264,1),
(1580,264,2),
(1581,264,3),
(1582,264,5),
(1583,264,7),
(1584,264,10),
(1585,265,3),
(1586,265,4),
(1587,265,6),
(1588,265,7),
(1589,265,8),
(1590,265,11),
(1591,266,1),
(1592,266,2),
(1593,266,4),
(1594,266,6),
(1595,266,8),
(1596,266,11),
(1597,267,0),
(1598,267,1),
(1599,267,3),
(1600,267,4),
(1601,267,6),
(1602,267,10),
(1603,268,0),
(1604,268,1),
(1605,268,3),
(1606,268,7),
(1607,268,8),
(1608,268,10),
(1609,269,2),
(1610,269,3),
(1611,269,4),
(1612,269,6),
(1613,269,7),
(1614,269,10),
(1615,270,0),
(1616,270,2),
(1617,270,6),
(1618,270,7),
(1619,270,8),
(1620,270,10),
(1621,271,4),
(1622,271,5),
(1623,271,6),
(1624,271,7),
(1625,271,8),
(1626,271,10),
(1627,272,1),
(1628,272,3),
(1629,272,4),
(1630,272,7),
(1631,272,8),
(1632,272,10),
(1633,273,0),
(1634,273,1),
(1635,273,4),
(1636,273,7),
(1637,273,8),
(1638,273,11),
(1639,274,1),
(1640,274,2),
(1641,274,5),
(1642,274,6),
(1643,274,7),
(1644,274,11),
(1645,275,0),
(1646,275,2),
(1647,275,4),
(1648,275,5),
(1649,275,8),
(1650,275,11),
(1651,276,0),
(1652,276,1),
(1653,276,2),
(1654,276,4),
(1655,276,8),
(1656,276,11),
(1657,277,0),
(1658,277,4),
(1659,277,5),
(1660,277,6),
(1661,277,8),
(1662,277,10),
(1663,278,0),
(1664,278,2),
(1665,278,4),
(1666,278,6),
(1667,278,8),
(1668,278,10),
(1669,279,0),
(1670,279,3),
(1671,279,4),
(1672,279,7),
(1673,279,8),
(1674,279,11),
(1675,280,1),
(1676,280,2),
(1677,280,4),
(1678,280,5),
(1679,280,7),
(1680,280,10),
(1681,281,0),
(1682,281,2),
(1683,281,3),
(1684,281,6),
(1685,281,8),
(1686,281,11),
(1687,282,1),
(1688,282,3),
(1689,282,4),
(1690,282,6),
(1691,282,8),
(1692,282,11),
(1693,283,1),
(1694,283,3),
(1695,283,5),
(1696,283,6),
(1697,283,7),
(1698,283,11),
(1699,284,1),
(1700,284,3),
(1701,284,4),
(1702,284,6),
(1703,284,8),
(1704,284,10),
(1705,285,2),
(1706,285,3),
(1707,285,4),
(1708,285,5),
(1709,285,7),
(1710,285,11),
(1711,286,2),
(1712,286,3),
(1713,286,5),
(1714,286,7),
(1715,286,8),
(1716,286,11),
(1717,287,0),
(1718,287,1),
(1719,287,2),
(1720,287,7),
(1721,287,8),
(1722,287,11),
(1723,288,0),
(1724,288,2),
(1725,288,3),
(1726,288,5),
(1727,288,7),
(1728,288,10),
(1729,289,1),
(1730,289,2),
(1731,289,4),
(1732,289,5),
(1733,289,6),
(1734,289,11),
(1735,290,0),
(1736,290,1),
(1737,290,3),
(1738,290,5),
(1739,290,8),
(1740,290,11),
(1741,291,0),
(1742,291,3),
(1743,291,4),
(1744,291,6),
(1745,291,7),
(1746,291,11),
(1747,292,0),
(1748,292,1),
(1749,292,3),
(1750,292,5),
(1751,292,7),
(1752,292,11),
(1753,293,1),
(1754,293,3),
(1755,293,6),
(1756,293,7),
(1757,293,8),
(1758,293,11),
(1759,294,1),
(1760,294,2),
(1761,294,6),
(1762,294,7),
(1763,294,8),
(1764,294,11),
(1765,295,0),
(1766,295,1),
(1767,295,2),
(1768,295,3),
(1769,295,8),
(1770,295,10),
(1771,296,1),
(1772,296,3),
(1773,296,4),
(1774,296,5),
(1775,296,7),
(1776,296,10),
(1777,297,0),
(1778,297,1),
(1779,297,2),
(1780,297,5),
(1781,297,8),
(1782,297,10),
(1783,298,0),
(1784,298,1),
(1785,298,3),
(1786,298,5),
(1787,298,7),
(1788,298,10),
(1789,299,1),
(1790,299,3),
(1791,299,5),
(1792,299,7),
(1793,299,8),
(1794,299,11),
(1795,300,0),
(1796,300,1),
(1797,300,2),
(1798,300,3),
(1799,300,4),
(1800,300,10);
/*!40000 ALTER TABLE `product_categories` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table product_set
# ------------------------------------------------------------
DROP TABLE IF EXISTS `product_set`;
CREATE TABLE `product_set` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`set_id` int unsigned NOT NULL,
`product_id` int unsigned NOT NULL,
`order` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `product_set_set_id_foreign` (`set_id`),
KEY `product_set_product_id_foreign` (`product_id`),
KEY `product_id` (`product_id`),
KEY `set_id` (`set_id`),
CONSTRAINT `product_set_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
CONSTRAINT `product_set_set_id_foreign` FOREIGN KEY (`set_id`) REFERENCES `sets` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `product_set` WRITE;
/*!40000 ALTER TABLE `product_set` DISABLE KEYS */;
INSERT INTO `product_set` (`id`, `set_id`, `product_id`, `order`)
VALUES
(1,1,1,13),
(2,2,2,2),
(3,3,3,8),
(4,4,4,12),
(5,5,5,16),
(6,6,6,13),
(7,7,7,10),
(8,8,8,16),
(9,9,9,11),
(10,10,10,12),
(11,11,11,2),
(12,12,12,4),
(13,13,13,7),
(14,14,14,19),
(15,15,15,8),
(16,16,16,13),
(17,17,17,20),
(18,18,18,14),
(19,19,19,11),
(20,20,20,8),
(21,1,21,18),
(22,2,22,15),
(23,3,23,14),
(24,4,24,6),
(25,5,25,6),
(26,6,26,15),
(27,7,27,5),
(28,8,28,4),
(29,9,29,12),
(30,10,30,13),
(31,11,31,12),
(32,12,32,13),
(33,13,33,18),
(34,14,34,17),
(35,15,35,4),
(36,16,36,6),
(37,17,37,19),
(38,18,38,20),
(39,19,39,19),
(40,20,40,5),
(41,1,41,16),
(42,2,42,17),
(43,3,43,16),
(44,4,44,2),
(45,5,45,4),
(46,6,46,20),
(47,7,47,1),
(48,8,48,5),
(49,9,49,18),
(50,10,50,16),
(51,11,51,14),
(52,12,52,1),
(53,13,53,17),
(54,14,54,20),
(55,15,55,19),
(56,16,56,3),
(57,17,57,9),
(58,18,58,18),
(59,19,59,7),
(60,20,60,10),
(61,1,61,6),
(62,2,62,1),
(63,3,63,10),
(64,4,64,1),
(65,5,65,20),
(66,6,66,14),
(67,7,67,9),
(68,8,68,16),
(69,9,69,14),
(70,10,70,12),
(71,11,71,9),
(72,12,72,8),
(73,13,73,7),
(74,14,74,19),
(75,15,75,7),
(76,16,76,6),
(77,17,77,1),
(78,18,78,1),
(79,19,79,6),
(80,20,80,19),
(81,1,81,12),
(82,2,82,14),
(83,3,83,14),
(84,4,84,19),
(85,5,85,13),
(86,6,86,11),
(87,7,87,11),
(88,8,88,2),
(89,9,89,10),
(90,10,90,9),
(91,11,91,18),
(92,12,92,3),
(93,13,93,12),
(94,14,94,5),
(95,15,95,9),
(96,16,96,10),
(97,17,97,4),
(98,18,98,9),
(99,19,99,8),
(100,20,100,19),
(101,1,101,17),
(102,2,102,2),
(103,3,103,1),
(104,4,104,11),
(105,5,105,20),
(106,6,106,7),
(107,7,107,12),
(108,8,108,10),
(109,9,109,7),
(110,10,110,3),
(111,11,111,7),
(112,12,112,9),
(113,13,113,14),
(114,14,114,16),
(115,15,115,12),
(116,16,116,15),
(117,17,117,14),
(118,18,118,10),
(119,19,119,4),
(120,20,120,3),
(121,1,121,9),
(122,2,122,12),
(123,3,123,15),
(124,4,124,5),
(125,5,125,3),
(126,6,126,4),
(127,7,127,16),
(128,8,128,6),
(129,9,129,12),
(130,10,130,13),
(131,11,131,17),
(132,12,132,9),
(133,13,133,3),
(134,14,134,9),
(135,15,135,16),
(136,16,136,18),
(137,17,137,2),
(138,18,138,3),
(139,19,139,10),
(140,20,140,9),
(141,1,141,4),
(142,2,142,14),
(143,3,143,17),
(144,4,144,17),
(145,5,145,7),
(146,6,146,5),
(147,7,147,12),
(148,8,148,10),
(149,9,149,1),
(150,10,150,12),
(151,11,151,8),
(152,12,152,19),
(153,13,153,15),
(154,14,154,17),
(155,15,155,16),
(156,16,156,14),
(157,17,157,11),
(158,18,158,6),
(159,19,159,3),
(160,20,160,17),
(161,1,161,1),
(162,2,162,12),
(163,3,163,12),
(164,4,164,14),
(165,5,165,16),
(166,6,166,9),
(167,7,167,4),
(168,8,168,20),
(169,9,169,10),
(170,10,170,15),
(171,11,171,8),
(172,12,172,20),
(173,13,173,7),
(174,14,174,10),
(175,15,175,6),
(176,16,176,7),
(177,17,177,17),
(178,18,178,2),
(179,19,179,5),
(180,20,180,8),
(181,1,181,8),
(182,2,182,9),
(183,3,183,4),
(184,4,184,5),
(185,5,185,15),
(186,6,186,8),
(187,7,187,1),
(188,8,188,17),
(189,9,189,16),
(190,10,190,13),
(191,11,191,5),
(192,12,192,9),
(193,13,193,10),
(194,14,194,6),
(195,15,195,5),
(196,16,196,18),
(197,17,197,11),
(198,18,198,14),
(199,19,199,4),
(200,20,200,8),
(201,1,201,13),
(202,2,202,19),
(203,3,203,13),
(204,4,204,5),
(205,5,205,4),
(206,6,206,6),
(207,7,207,17),
(208,8,208,9),
(209,9,209,20),
(210,10,210,3),
(211,11,211,18),
(212,12,212,1),
(213,13,213,14),
(214,14,214,12),
(215,15,215,20),
(216,16,216,16),
(217,17,217,7),
(218,18,218,1),
(219,19,219,18),
(220,20,220,14),
(221,1,221,10),
(222,2,222,17),
(223,3,223,2),
(224,4,224,12),
(225,5,225,18),
(226,6,226,2),
(227,7,227,6),
(228,8,228,2),
(229,9,229,17),
(230,10,230,7),
(231,11,231,12),
(232,12,232,13),
(233,13,233,12),
(234,14,234,8),
(235,15,235,9),
(236,16,236,9),
(237,17,237,12),
(238,18,238,15),
(239,19,239,10),
(240,20,240,12),
(241,1,241,11),
(242,2,242,17),
(243,3,243,19),
(244,4,244,15),
(245,5,245,18),
(246,6,246,20),
(247,7,247,6),
(248,8,248,1),
(249,9,249,20),
(250,10,250,11),
(251,11,251,15),
(252,12,252,18),
(253,13,253,5),
(254,14,254,10),
(255,15,255,3),
(256,16,256,3),
(257,17,257,20),
(258,18,258,11),
(259,19,259,16),
(260,20,260,10),
(261,1,261,11),
(262,2,262,6),
(263,3,263,11),
(264,4,264,9),
(265,5,265,10),
(266,6,266,6),
(267,7,267,18),
(268,8,268,12),
(269,9,269,12),
(270,10,270,18),
(271,11,271,19),
(272,12,272,12),
(273,13,273,18),
(274,14,274,3),
(275,15,275,8),
(276,16,276,18),
(277,17,277,13),
(278,18,278,18),
(279,19,279,5),
(280,20,280,9),
(281,1,281,19),
(282,2,282,2),
(283,3,283,20),
(284,4,284,1),
(285,5,285,16),
(286,6,286,5),
(287,7,287,20),
(288,8,288,8),
(289,9,289,8),
(290,10,290,9),
(291,11,291,4),
(292,12,292,5),
(293,13,293,3),
(294,14,294,4),
(295,15,295,11),
(296,16,296,6),
(297,17,297,20),
(298,18,298,1),
(299,19,299,6),
(300,20,300,4);
/*!40000 ALTER TABLE `product_set` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table product_state
# ------------------------------------------------------------
DROP TABLE IF EXISTS `product_state`;
CREATE TABLE `product_state` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`product_id` int unsigned NOT NULL,
`state_id` int unsigned NOT NULL,
`status_id` int unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `product_state_product_id_index` (`product_id`),
KEY `product_state_state_id_index` (`state_id`),
KEY `product_state_status_id_index` (`status_id`),
CONSTRAINT `product_state_product_id_foreign` FOREIGN KEY (`product_id`) REFERENCES `products` (`id`) ON DELETE CASCADE,
CONSTRAINT `product_state_state_id_foreign` FOREIGN KEY (`state_id`) REFERENCES `states` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `product_state` WRITE;
/*!40000 ALTER TABLE `product_state` DISABLE KEYS */;
INSERT INTO `product_state` (`id`, `product_id`, `state_id`, `status_id`)
VALUES
(1,1,1,17),
(2,1,2,17),
(3,1,3,17),
(4,1,4,17),
(5,1,5,17),
(6,2,1,17),
(7,2,2,17),
(8,2,3,17),
(9,2,4,17),
(10,2,5,17),
(11,3,1,17),
(12,3,2,17),
(13,3,3,17),
(14,3,4,17),
(15,3,5,17),
(16,4,1,17),
(17,4,2,17),
(18,4,3,17),
(19,4,4,19),
(20,4,5,17),
(21,5,1,19),
(22,5,2,17),
(23,5,3,17),
(24,5,4,17),
(25,5,5,17),
(26,6,1,17),
(27,6,2,17),
(28,6,3,17),
(29,6,4,17),
(30,6,5,17),
(31,7,1,17),
(32,7,2,17),
(33,7,3,17),
(34,7,4,17),
(35,7,5,17),
(36,8,1,17),
(37,8,2,17),
(38,8,3,19),
(39,8,4,17),
(40,8,5,17),
(41,9,1,17),
(42,9,2,17),
(43,9,3,17),
(44,9,4,17),
(45,9,5,17),
(46,10,1,17),
(47,10,2,17),
(48,10,3,17),
(49,10,4,17),
(50,10,5,17),
(51,11,1,17),
(52,11,2,17),
(53,11,3,17),
(54,11,4,17),
(55,11,5,17),
(56,12,1,19),
(57,12,2,17),
(58,12,3,17),
(59,12,4,17),
(60,12,5,17),
(61,13,1,17),
(62,13,2,17),
(63,13,3,17),
(64,13,4,19),
(65,13,5,17),
(66,14,1,17),
(67,14,2,17),
(68,14,3,17),
(69,14,4,17),
(70,14,5,17),
(71,15,1,17),
(72,15,2,17),
(73,15,3,17),
(74,15,4,17),
(75,15,5,17),
(76,16,1,17),
(77,16,2,17),
(78,16,3,17),
(79,16,4,17),
(80,16,5,17),
(81,17,1,17),
(82,17,2,17),
(83,17,3,17),
(84,17,4,17),
(85,17,5,17),
(86,18,1,17),
(87,18,2,17),
(88,18,3,17),
(89,18,4,17),
(90,18,5,17),
(91,19,1,17),
(92,19,2,17),
(93,19,3,17),
(94,19,4,17),
(95,19,5,17),
(96,20,1,17),
(97,20,2,17),
(98,20,3,17),
(99,20,4,19),
(100,20,5,17),
(101,21,1,17),
(102,21,2,17),
(103,21,3,17),
(104,21,4,17),
(105,21,5,17),
(106,22,1,17),
(107,22,2,17),
(108,22,3,17),
(109,22,4,17),
(110,22,5,17),
(111,23,1,19),
(112,23,2,17),
(113,23,3,19),
(114,23,4,17),
(115,23,5,19),
(116,24,1,17),
(117,24,2,17),
(118,24,3,17),
(119,24,4,17),
(120,24,5,17),
(121,25,1,17),
(122,25,2,17),
(123,25,3,17),
(124,25,4,17),
(125,25,5,17),
(126,26,1,17),
(127,26,2,17),
(128,26,3,17),
(129,26,4,17),
(130,26,5,17),
(131,27,1,17),
(132,27,2,17),
(133,27,3,17),
(134,27,4,17),
(135,27,5,17),
(136,28,1,17),
(137,28,2,17),
(138,28,3,17),
(139,28,4,17),
(140,28,5,17),
(141,29,1,17),
(142,29,2,17),
(143,29,3,17),
(144,29,4,17),
(145,29,5,17),
(146,30,1,19),
(147,30,2,19),
(148,30,3,17),
(149,30,4,17),
(150,30,5,17),
(151,31,1,17),
(152,31,2,17),
(153,31,3,17),
(154,31,4,17),
(155,31,5,17),
(156,32,1,17),
(157,32,2,17),
(158,32,3,17),
(159,32,4,17),
(160,32,5,17),
(161,33,1,17),
(162,33,2,17),
(163,33,3,19),
(164,33,4,17),
(165,33,5,19),
(166,34,1,17),
(167,34,2,17),
(168,34,3,17),
(169,34,4,17),
(170,34,5,17),
(171,35,1,17),
(172,35,2,17),
(173,35,3,17),
(174,35,4,17),
(175,35,5,17),
(176,36,1,17),
(177,36,2,17),
(178,36,3,17),
(179,36,4,17),
(180,36,5,17),
(181,37,1,17),
(182,37,2,17),
(183,37,3,17),
(184,37,4,17),
(185,37,5,17),
(186,38,1,17),
(187,38,2,17),
(188,38,3,17),
(189,38,4,17),
(190,38,5,17),
(191,39,1,17),
(192,39,2,17),
(193,39,3,17),
(194,39,4,17),
(195,39,5,17),
(196,40,1,17),
(197,40,2,17),
(198,40,3,17),
(199,40,4,17),
(200,40,5,17),
(201,41,1,17),
(202,41,2,19),
(203,41,3,17),
(204,41,4,17),
(205,41,5,17),
(206,42,1,17),
(207,42,2,17),
(208,42,3,17),
(209,42,4,17),
(210,42,5,17),
(211,43,1,17),
(212,43,2,17),
(213,43,3,17),
(214,43,4,17),
(215,43,5,17),
(216,44,1,17),
(217,44,2,17),
(218,44,3,17),
(219,44,4,19),
(220,44,5,17),
(221,45,1,19),
(222,45,2,17),
(223,45,3,17),
(224,45,4,17),
(225,45,5,17),
(226,46,1,17),
(227,46,2,17),
(228,46,3,17),
(229,46,4,17),
(230,46,5,17),
(231,47,1,17),
(232,47,2,17),
(233,47,3,17),
(234,47,4,17),
(235,47,5,17),
(236,48,1,17),
(237,48,2,17),
(238,48,3,19),
(239,48,4,17),
(240,48,5,17),
(241,49,1,17),
(242,49,2,17),
(243,49,3,17),
(244,49,4,17),
(245,49,5,17),
(246,50,1,17),
(247,50,2,17),
(248,50,3,17),
(249,50,4,17),
(250,50,5,17),
(251,51,1,17),
(252,51,2,17),
(253,51,3,17),
(254,51,4,17),
(255,51,5,17),
(256,52,1,17),
(257,52,2,17),
(258,52,3,17),
(259,52,4,19),
(260,52,5,17),
(261,53,1,17),
(262,53,2,17),
(263,53,3,17),
(264,53,4,17),
(265,53,5,19),
(266,54,1,17),
(267,54,2,17),
(268,54,3,17),
(269,54,4,17),
(270,54,5,17),
(271,55,1,17),
(272,55,2,17),
(273,55,3,17),
(274,55,4,17),
(275,55,5,17),
(276,56,1,17),
(277,56,2,17),
(278,56,3,17),
(279,56,4,17),
(280,56,5,17),
(281,57,1,17),
(282,57,2,17),
(283,57,3,17),
(284,57,4,17),
(285,57,5,19),
(286,58,1,17),
(287,58,2,17),
(288,58,3,17),
(289,58,4,17),
(290,58,5,17),
(291,59,1,17),
(292,59,2,17),
(293,59,3,17),
(294,59,4,17),
(295,59,5,17),
(296,60,1,17),
(297,60,2,17),
(298,60,3,17),
(299,60,4,17),
(300,60,5,17),
(301,61,1,17),
(302,61,2,17),
(303,61,3,17),
(304,61,4,17),
(305,61,5,17),
(306,62,1,19),
(307,62,2,17),
(308,62,3,17),
(309,62,4,17),
(310,62,5,17),
(311,63,1,17),
(312,63,2,17),
(313,63,3,17),
(314,63,4,17),
(315,63,5,17),
(316,64,1,17),
(317,64,2,17),
(318,64,3,17),
(319,64,4,17),
(320,64,5,17),
(321,65,1,17),
(322,65,2,17),
(323,65,3,17),
(324,65,4,17),
(325,65,5,17),
(326,66,1,17),
(327,66,2,17),
(328,66,3,17),
(329,66,4,17),
(330,66,5,17),
(331,67,1,17),
(332,67,2,17),
(333,67,3,17),
(334,67,4,17),
(335,67,5,17),
(336,68,1,17),
(337,68,2,17),
(338,68,3,17),
(339,68,4,17),
(340,68,5,17),
(341,69,1,17),
(342,69,2,17),
(343,69,3,17),
(344,69,4,17),
(345,69,5,17),
(346,70,1,17),
(347,70,2,17),
(348,70,3,17),
(349,70,4,19),
(350,70,5,17),
(351,71,1,17),
(352,71,2,17),
(353,71,3,17),
(354,71,4,17),
(355,71,5,17),
(356,72,1,17),
(357,72,2,17),
(358,72,3,17),
(359,72,4,17),
(360,72,5,17),
(361,73,1,17),
(362,73,2,17),
(363,73,3,17),
(364,73,4,17),
(365,73,5,17),
(366,74,1,17),
(367,74,2,17),
(368,74,3,17),
(369,74,4,17),
(370,74,5,17),
(371,75,1,17),
(372,75,2,17),
(373,75,3,17),
(374,75,4,17),
(375,75,5,17),
(376,76,1,17),
(377,76,2,17),
(378,76,3,17),
(379,76,4,17),
(380,76,5,17),
(381,77,1,17),
(382,77,2,17),
(383,77,3,17),
(384,77,4,17),
(385,77,5,17),
(386,78,1,17),
(387,78,2,17),
(388,78,3,17),
(389,78,4,17),
(390,78,5,17),
(391,79,1,17),
(392,79,2,17),
(393,79,3,17),
(394,79,4,17),
(395,79,5,17),
(396,80,1,17),
(397,80,2,17),
(398,80,3,19),
(399,80,4,17),
(400,80,5,19),
(401,81,1,17),
(402,81,2,17),
(403,81,3,17),
(404,81,4,19),
(405,81,5,17),
(406,82,1,17),
(407,82,2,17),
(408,82,3,17),
(409,82,4,17),
(410,82,5,17),
(411,83,1,17),
(412,83,2,17),
(413,83,3,17),
(414,83,4,17),
(415,83,5,17),
(416,84,1,17),
(417,84,2,17),
(418,84,3,17),
(419,84,4,17),
(420,84,5,17),
(421,85,1,17),
(422,85,2,17),
(423,85,3,17),
(424,85,4,17),
(425,85,5,17),
(426,86,1,19),
(427,86,2,17),
(428,86,3,17),
(429,86,4,17),
(430,86,5,17),
(431,87,1,17),
(432,87,2,17),
(433,87,3,17),
(434,87,4,17),
(435,87,5,17),
(436,88,1,17),
(437,88,2,17),
(438,88,3,17),
(439,88,4,17),
(440,88,5,17),
(441,89,1,17),
(442,89,2,17),
(443,89,3,17),
(444,89,4,17),
(445,89,5,17),
(446,90,1,17),
(447,90,2,17),
(448,90,3,19),
(449,90,4,17),
(450,90,5,17),
(451,91,1,17),
(452,91,2,17),
(453,91,3,17),
(454,91,4,19),
(455,91,5,17),
(456,92,1,17),
(457,92,2,17),
(458,92,3,17),
(459,92,4,17),
(460,92,5,17),
(461,93,1,17),
(462,93,2,17),
(463,93,3,17),
(464,93,4,17),
(465,93,5,17),
(466,94,1,19),
(467,94,2,17),
(468,94,3,17),
(469,94,4,17),
(470,94,5,17),
(471,95,1,17),
(472,95,2,17),
(473,95,3,17),
(474,95,4,17),
(475,95,5,17),
(476,96,1,17),
(477,96,2,17),
(478,96,3,17),
(479,96,4,17),
(480,96,5,17),
(481,97,1,17),
(482,97,2,17),
(483,97,3,17),
(484,97,4,17),
(485,97,5,17),
(486,98,1,17),
(487,98,2,17),
(488,98,3,19),
(489,98,4,17),
(490,98,5,17),
(491,99,1,17),
(492,99,2,17),
(493,99,3,17),
(494,99,4,17),
(495,99,5,17),
(496,100,1,17),
(497,100,2,17),
(498,100,3,17),
(499,100,4,17),
(500,100,5,17),
(501,101,1,17),
(502,101,2,17),
(503,101,3,17),
(504,101,4,17),
(505,101,5,17),
(506,102,1,17),
(507,102,2,17),
(508,102,3,17),
(509,102,4,17),
(510,102,5,17),
(511,103,1,17),
(512,103,2,17),
(513,103,3,17),
(514,103,4,17),
(515,103,5,17),
(516,104,1,17),
(517,104,2,17),
(518,104,3,17),
(519,104,4,17),
(520,104,5,17),
(521,105,1,17),
(522,105,2,17),
(523,105,3,17),
(524,105,4,17),
(525,105,5,17),
(526,106,1,17),
(527,106,2,17),
(528,106,3,17),
(529,106,4,17),
(530,106,5,17),
(531,107,1,17),
(532,107,2,17),
(533,107,3,17),
(534,107,4,17),
(535,107,5,17),
(536,108,1,17),
(537,108,2,17),
(538,108,3,17),
(539,108,4,17),
(540,108,5,17),
(541,109,1,17),
(542,109,2,17),
(543,109,3,17),
(544,109,4,17),
(545,109,5,19),
(546,110,1,17),
(547,110,2,17),
(548,110,3,17),
(549,110,4,17),
(550,110,5,17),
(551,111,1,17),
(552,111,2,17),
(553,111,3,17),
(554,111,4,17),
(555,111,5,17),
(556,112,1,17),
(557,112,2,17),
(558,112,3,17),
(559,112,4,17),
(560,112,5,17),
(561,113,1,17),
(562,113,2,17),
(563,113,3,17),
(564,113,4,17),
(565,113,5,17),
(566,114,1,17),
(567,114,2,17),
(568,114,3,17),
(569,114,4,17),
(570,114,5,17),
(571,115,1,19),
(572,115,2,17),
(573,115,3,17),
(574,115,4,17),
(575,115,5,19),
(576,116,1,17),
(577,116,2,17),
(578,116,3,17),
(579,116,4,17),
(580,116,5,17),
(581,117,1,17),
(582,117,2,17),
(583,117,3,17),
(584,117,4,17),
(585,117,5,17),
(586,118,1,17),
(587,118,2,17),
(588,118,3,17),
(589,118,4,19),
(590,118,5,17),
(591,119,1,17),
(592,119,2,17),
(593,119,3,17),
(594,119,4,17),
(595,119,5,17),
(596,120,1,19),
(597,120,2,17),
(598,120,3,17),
(599,120,4,17),
(600,120,5,17),
(601,121,1,17),
(602,121,2,17),
(603,121,3,17),
(604,121,4,17),
(605,121,5,17),
(606,122,1,17),
(607,122,2,17),
(608,122,3,17),
(609,122,4,17),
(610,122,5,17),
(611,123,1,17),
(612,123,2,17),
(613,123,3,17),
(614,123,4,17),
(615,123,5,17),
(616,124,1,17),
(617,124,2,17),
(618,124,3,17),
(619,124,4,17),
(620,124,5,17),
(621,125,1,17),
(622,125,2,17),
(623,125,3,17),
(624,125,4,17),
(625,125,5,17),
(626,126,1,17),
(627,126,2,17),
(628,126,3,17),
(629,126,4,17),
(630,126,5,17),
(631,127,1,19),
(632,127,2,17),
(633,127,3,17),
(634,127,4,17),
(635,127,5,17),
(636,128,1,17),
(637,128,2,17),
(638,128,3,17),
(639,128,4,17),
(640,128,5,17),
(641,129,1,17),
(642,129,2,17),
(643,129,3,17),
(644,129,4,17),
(645,129,5,17),
(646,130,1,17),
(647,130,2,17),
(648,130,3,17),
(649,130,4,17),
(650,130,5,17),
(651,131,1,17),
(652,131,2,17),
(653,131,3,17),
(654,131,4,17),
(655,131,5,17),
(656,132,1,17),
(657,132,2,19),
(658,132,3,17),
(659,132,4,17),
(660,132,5,17),
(661,133,1,17),
(662,133,2,17),
(663,133,3,17),
(664,133,4,17),
(665,133,5,17),
(666,134,1,17),
(667,134,2,19),
(668,134,3,17),
(669,134,4,17),
(670,134,5,17),
(671,135,1,17),
(672,135,2,17),
(673,135,3,17),
(674,135,4,19),
(675,135,5,17),
(676,136,1,17),
(677,136,2,17),
(678,136,3,17),
(679,136,4,17),
(680,136,5,17),
(681,137,1,17),
(682,137,2,17),
(683,137,3,17),
(684,137,4,17),
(685,137,5,17),
(686,138,1,17),
(687,138,2,17),
(688,138,3,17),
(689,138,4,17),
(690,138,5,19),
(691,139,1,19),
(692,139,2,17),
(693,139,3,17),
(694,139,4,17),
(695,139,5,17),
(696,140,1,17),
(697,140,2,17),
(698,140,3,17),
(699,140,4,17),
(700,140,5,19),
(701,141,1,17),
(702,141,2,17),
(703,141,3,17),
(704,141,4,17),
(705,141,5,17),
(706,142,1,17),
(707,142,2,17),
(708,142,3,17),
(709,142,4,17),
(710,142,5,17),
(711,143,1,17),
(712,143,2,17),
(713,143,3,17),
(714,143,4,17),
(715,143,5,19),
(716,144,1,17),
(717,144,2,17),
(718,144,3,17),
(719,144,4,17),
(720,144,5,17),
(721,145,1,17),
(722,145,2,17),
(723,145,3,17),
(724,145,4,17),
(725,145,5,17),
(726,146,1,17),
(727,146,2,17),
(728,146,3,17),
(729,146,4,17),
(730,146,5,17),
(731,147,1,17),
(732,147,2,17),
(733,147,3,17),
(734,147,4,17),
(735,147,5,17),
(736,148,1,17),
(737,148,2,17),
(738,148,3,17),
(739,148,4,17),
(740,148,5,17),
(741,149,1,17),
(742,149,2,17),
(743,149,3,19),
(744,149,4,17),
(745,149,5,17),
(746,150,1,17),
(747,150,2,17),
(748,150,3,17),
(749,150,4,17),
(750,150,5,17),
(751,151,1,17),
(752,151,2,17),
(753,151,3,17),
(754,151,4,17),
(755,151,5,17),
(756,152,1,17),
(757,152,2,17),
(758,152,3,19),
(759,152,4,17),
(760,152,5,17),
(761,153,1,17),
(762,153,2,17),
(763,153,3,17),
(764,153,4,17),
(765,153,5,17),
(766,154,1,17),
(767,154,2,17),
(768,154,3,17),
(769,154,4,17),
(770,154,5,17),
(771,155,1,19),
(772,155,2,19),
(773,155,3,17),
(774,155,4,17),
(775,155,5,17),
(776,156,1,17),
(777,156,2,17),
(778,156,3,17),
(779,156,4,17),
(780,156,5,17),
(781,157,1,19),
(782,157,2,17),
(783,157,3,19),
(784,157,4,17),
(785,157,5,17),
(786,158,1,17),
(787,158,2,17),
(788,158,3,17),
(789,158,4,17),
(790,158,5,17),
(791,159,1,17),
(792,159,2,17),
(793,159,3,17),
(794,159,4,17),
(795,159,5,17),
(796,160,1,19),
(797,160,2,17),
(798,160,3,17),
(799,160,4,17),
(800,160,5,17),
(801,161,1,17),
(802,161,2,17),
(803,161,3,17),
(804,161,4,19),
(805,161,5,17),
(806,162,1,17),
(807,162,2,19),
(808,162,3,17),
(809,162,4,17),
(810,162,5,17),
(811,163,1,17),
(812,163,2,17),
(813,163,3,17),
(814,163,4,17),
(815,163,5,17),
(816,164,1,17),
(817,164,2,17),
(818,164,3,17),
(819,164,4,17),
(820,164,5,19),
(821,165,1,17),
(822,165,2,17),
(823,165,3,17),
(824,165,4,17),
(825,165,5,17),
(826,166,1,17),
(827,166,2,17),
(828,166,3,17),
(829,166,4,17),
(830,166,5,17),
(831,167,1,17),
(832,167,2,17),
(833,167,3,17),
(834,167,4,17),
(835,167,5,17),
(836,168,1,17),
(837,168,2,17),
(838,168,3,17),
(839,168,4,17),
(840,168,5,17),
(841,169,1,17),
(842,169,2,17),
(843,169,3,19),
(844,169,4,17),
(845,169,5,17),
(846,170,1,17),
(847,170,2,19),
(848,170,3,17),
(849,170,4,17),
(850,170,5,17),
(851,171,1,17),
(852,171,2,17),
(853,171,3,17),
(854,171,4,17),
(855,171,5,17),
(856,172,1,17),
(857,172,2,17),
(858,172,3,19),
(859,172,4,17),
(860,172,5,17),
(861,173,1,17),
(862,173,2,17),
(863,173,3,17),
(864,173,4,17),
(865,173,5,17),
(866,174,1,17),
(867,174,2,17),
(868,174,3,17),
(869,174,4,17),
(870,174,5,17),
(871,175,1,17),
(872,175,2,19),
(873,175,3,17),
(874,175,4,17),
(875,175,5,17),
(876,176,1,17),
(877,176,2,17),
(878,176,3,17),
(879,176,4,17),
(880,176,5,17),
(881,177,1,17),
(882,177,2,17),
(883,177,3,17),
(884,177,4,17),
(885,177,5,17),
(886,178,1,17),
(887,178,2,17),
(888,178,3,17),
(889,178,4,17),
(890,178,5,17),
(891,179,1,17),
(892,179,2,17),
(893,179,3,17),
(894,179,4,17),
(895,179,5,17),
(896,180,1,17),
(897,180,2,17),
(898,180,3,17),
(899,180,4,17),
(900,180,5,17),
(901,181,1,17),
(902,181,2,17),
(903,181,3,17),
(904,181,4,17),
(905,181,5,17),
(906,182,1,17),
(907,182,2,19),
(908,182,3,17),
(909,182,4,17),
(910,182,5,17),
(911,183,1,17),
(912,183,2,17),
(913,183,3,17),
(914,183,4,17),
(915,183,5,17),
(916,184,1,17),
(917,184,2,17),
(918,184,3,17),
(919,184,4,17),
(920,184,5,17),
(921,185,1,17),
(922,185,2,17),
(923,185,3,17),
(924,185,4,17),
(925,185,5,17),
(926,186,1,17),
(927,186,2,17),
(928,186,3,17),
(929,186,4,17),
(930,186,5,19),
(931,187,1,17),
(932,187,2,17),
(933,187,3,17),
(934,187,4,17),
(935,187,5,17),
(936,188,1,19),
(937,188,2,17),
(938,188,3,17),
(939,188,4,17),
(940,188,5,17),
(941,189,1,17),
(942,189,2,17),
(943,189,3,17),
(944,189,4,17),
(945,189,5,17),
(946,190,1,17),
(947,190,2,17),
(948,190,3,17),
(949,190,4,17),
(950,190,5,17),
(951,191,1,17),
(952,191,2,17),
(953,191,3,17),
(954,191,4,17),
(955,191,5,17),
(956,192,1,19),
(957,192,2,17),
(958,192,3,17),
(959,192,4,17),
(960,192,5,17),
(961,193,1,17),
(962,193,2,17),
(963,193,3,19),
(964,193,4,17),
(965,193,5,17),
(966,194,1,17),
(967,194,2,17),
(968,194,3,17),
(969,194,4,17),
(970,194,5,17),
(971,195,1,17),
(972,195,2,17),
(973,195,3,17),
(974,195,4,17),
(975,195,5,17),
(976,196,1,17),
(977,196,2,17),
(978,196,3,17),
(979,196,4,17),
(980,196,5,17),
(981,197,1,17),
(982,197,2,17),
(983,197,3,17),
(984,197,4,17),
(985,197,5,17),
(986,198,1,17),
(987,198,2,17),
(988,198,3,19),
(989,198,4,17),
(990,198,5,17),
(991,199,1,17),
(992,199,2,17),
(993,199,3,17),
(994,199,4,17),
(995,199,5,17),
(996,200,1,17),
(997,200,2,17),
(998,200,3,17),
(999,200,4,17),
(1000,200,5,17),
(1001,201,1,19),
(1002,201,2,17),
(1003,201,3,17),
(1004,201,4,17),
(1005,201,5,17),
(1006,202,1,17),
(1007,202,2,17),
(1008,202,3,17),
(1009,202,4,17),
(1010,202,5,19),
(1011,203,1,17),
(1012,203,2,17),
(1013,203,3,17),
(1014,203,4,17),
(1015,203,5,17),
(1016,204,1,17),
(1017,204,2,17),
(1018,204,3,17),
(1019,204,4,17),
(1020,204,5,19),
(1021,205,1,17),
(1022,205,2,17),
(1023,205,3,17),
(1024,205,4,17),
(1025,205,5,17),
(1026,206,1,17),
(1027,206,2,17),
(1028,206,3,17),
(1029,206,4,19),
(1030,206,5,17),
(1031,207,1,17),
(1032,207,2,19),
(1033,207,3,17),
(1034,207,4,17),
(1035,207,5,17),
(1036,208,1,17),
(1037,208,2,17),
(1038,208,3,17),
(1039,208,4,17),
(1040,208,5,17),
(1041,209,1,19),
(1042,209,2,17),
(1043,209,3,17),
(1044,209,4,17),
(1045,209,5,17),
(1046,210,1,17),
(1047,210,2,17),
(1048,210,3,17),
(1049,210,4,17),
(1050,210,5,17),
(1051,211,1,17),
(1052,211,2,17),
(1053,211,3,17),
(1054,211,4,17),
(1055,211,5,17),
(1056,212,1,17),
(1057,212,2,17),
(1058,212,3,17),
(1059,212,4,17),
(1060,212,5,17),
(1061,213,1,17),
(1062,213,2,17),
(1063,213,3,17),
(1064,213,4,17),
(1065,213,5,17),
(1066,214,1,17),
(1067,214,2,17),
(1068,214,3,17),
(1069,214,4,17),
(1070,214,5,19),
(1071,215,1,17),
(1072,215,2,17),
(1073,215,3,17),
(1074,215,4,17),
(1075,215,5,17),
(1076,216,1,17),
(1077,216,2,17),
(1078,216,3,17),
(1079,216,4,17),
(1080,216,5,17),
(1081,217,1,17),
(1082,217,2,19),
(1083,217,3,17),
(1084,217,4,17),
(1085,217,5,17),
(1086,218,1,17),
(1087,218,2,17),
(1088,218,3,17),
(1089,218,4,17),
(1090,218,5,17),
(1091,219,1,17),
(1092,219,2,17),
(1093,219,3,17),
(1094,219,4,17),
(1095,219,5,17),
(1096,220,1,17),
(1097,220,2,17),
(1098,220,3,17),
(1099,220,4,19),
(1100,220,5,17),
(1101,221,1,17),
(1102,221,2,17),
(1103,221,3,17),
(1104,221,4,17),
(1105,221,5,17),
(1106,222,1,17),
(1107,222,2,17),
(1108,222,3,17),
(1109,222,4,19),
(1110,222,5,17),
(1111,223,1,17),
(1112,223,2,17),
(1113,223,3,17),
(1114,223,4,17),
(1115,223,5,19),
(1116,224,1,17),
(1117,224,2,17),
(1118,224,3,17),
(1119,224,4,17),
(1120,224,5,17),
(1121,225,1,17),
(1122,225,2,17),
(1123,225,3,17),
(1124,225,4,17),
(1125,225,5,17),
(1126,226,1,17),
(1127,226,2,17),
(1128,226,3,17),
(1129,226,4,17),
(1130,226,5,17),
(1131,227,1,17),
(1132,227,2,17),
(1133,227,3,17),
(1134,227,4,19),
(1135,227,5,17),
(1136,228,1,17),
(1137,228,2,17),
(1138,228,3,17),
(1139,228,4,17),
(1140,228,5,17),
(1141,229,1,17),
(1142,229,2,17),
(1143,229,3,19),
(1144,229,4,17),
(1145,229,5,17),
(1146,230,1,17),
(1147,230,2,17),
(1148,230,3,17),
(1149,230,4,17),
(1150,230,5,17),
(1151,231,1,17),
(1152,231,2,17),
(1153,231,3,17),
(1154,231,4,17),
(1155,231,5,17),
(1156,232,1,17),
(1157,232,2,17),
(1158,232,3,17),
(1159,232,4,17),
(1160,232,5,17),
(1161,233,1,17),
(1162,233,2,17),
(1163,233,3,17),
(1164,233,4,17),
(1165,233,5,17),
(1166,234,1,17),
(1167,234,2,17),
(1168,234,3,17),
(1169,234,4,17),
(1170,234,5,17),
(1171,235,1,17),
(1172,235,2,17),
(1173,235,3,17),
(1174,235,4,17),
(1175,235,5,17),
(1176,236,1,17),
(1177,236,2,17),
(1178,236,3,17),
(1179,236,4,17),
(1180,236,5,17),
(1181,237,1,17),
(1182,237,2,17),
(1183,237,3,19),
(1184,237,4,17),
(1185,237,5,17),
(1186,238,1,17),
(1187,238,2,17),
(1188,238,3,17),
(1189,238,4,17),
(1190,238,5,17),
(1191,239,1,17),
(1192,239,2,17),
(1193,239,3,17),
(1194,239,4,17),
(1195,239,5,17),
(1196,240,1,17),
(1197,240,2,17),
(1198,240,3,17),
(1199,240,4,17),
(1200,240,5,17),
(1201,241,1,17),
(1202,241,2,19),
(1203,241,3,17),
(1204,241,4,19),
(1205,241,5,17),
(1206,242,1,17),
(1207,242,2,17),
(1208,242,3,17),
(1209,242,4,17),
(1210,242,5,19),
(1211,243,1,17),
(1212,243,2,17),
(1213,243,3,17),
(1214,243,4,17),
(1215,243,5,17),
(1216,244,1,17),
(1217,244,2,17),
(1218,244,3,17),
(1219,244,4,17),
(1220,244,5,17),
(1221,245,1,17),
(1222,245,2,17),
(1223,245,3,17),
(1224,245,4,17),
(1225,245,5,17),
(1226,246,1,17),
(1227,246,2,17),
(1228,246,3,17),
(1229,246,4,17),
(1230,246,5,17),
(1231,247,1,17),
(1232,247,2,19),
(1233,247,3,17),
(1234,247,4,19),
(1235,247,5,17),
(1236,248,1,17),
(1237,248,2,17),
(1238,248,3,17),
(1239,248,4,17),
(1240,248,5,17),
(1241,249,1,17),
(1242,249,2,17),
(1243,249,3,17),
(1244,249,4,17),
(1245,249,5,17),
(1246,250,1,17),
(1247,250,2,17),
(1248,250,3,17),
(1249,250,4,17),
(1250,250,5,17),
(1251,251,1,17),
(1252,251,2,17),
(1253,251,3,17),
(1254,251,4,17),
(1255,251,5,17),
(1256,252,1,17),
(1257,252,2,17),
(1258,252,3,17),
(1259,252,4,17),
(1260,252,5,17),
(1261,253,1,17),
(1262,253,2,17),
(1263,253,3,17),
(1264,253,4,17),
(1265,253,5,17),
(1266,254,1,17),
(1267,254,2,17),
(1268,254,3,17),
(1269,254,4,17),
(1270,254,5,17),
(1271,255,1,17),
(1272,255,2,17),
(1273,255,3,17),
(1274,255,4,17),
(1275,255,5,19),
(1276,256,1,17),
(1277,256,2,17),
(1278,256,3,17),
(1279,256,4,17),
(1280,256,5,17),
(1281,257,1,17),
(1282,257,2,17),
(1283,257,3,17),
(1284,257,4,17),
(1285,257,5,17),
(1286,258,1,17),
(1287,258,2,17),
(1288,258,3,17),
(1289,258,4,17),
(1290,258,5,17),
(1291,259,1,17),
(1292,259,2,17),
(1293,259,3,17),
(1294,259,4,17),
(1295,259,5,17),
(1296,260,1,17),
(1297,260,2,17),
(1298,260,3,17),
(1299,260,4,17),
(1300,260,5,17),
(1301,261,1,17),
(1302,261,2,17),
(1303,261,3,17),
(1304,261,4,17),
(1305,261,5,17),
(1306,262,1,17),
(1307,262,2,17),
(1308,262,3,17),
(1309,262,4,17),
(1310,262,5,17),
(1311,263,1,19),
(1312,263,2,17),
(1313,263,3,17),
(1314,263,4,17),
(1315,263,5,17),
(1316,264,1,17),
(1317,264,2,17),
(1318,264,3,19),
(1319,264,4,17),
(1320,264,5,17),
(1321,265,1,17),
(1322,265,2,17),
(1323,265,3,17),
(1324,265,4,17),
(1325,265,5,17),
(1326,266,1,17),
(1327,266,2,19),
(1328,266,3,17),
(1329,266,4,17),
(1330,266,5,17),
(1331,267,1,17),
(1332,267,2,17),
(1333,267,3,17),
(1334,267,4,17),
(1335,267,5,17),
(1336,268,1,17),
(1337,268,2,17),
(1338,268,3,17),
(1339,268,4,17),
(1340,268,5,17),
(1341,269,1,17),
(1342,269,2,17),
(1343,269,3,17),
(1344,269,4,17),
(1345,269,5,17),
(1346,270,1,17),
(1347,270,2,17),
(1348,270,3,17),
(1349,270,4,17),
(1350,270,5,17),
(1351,271,1,17),
(1352,271,2,17),
(1353,271,3,17),
(1354,271,4,17),
(1355,271,5,17),
(1356,272,1,17),
(1357,272,2,17),
(1358,272,3,17),
(1359,272,4,17),
(1360,272,5,17),
(1361,273,1,19),
(1362,273,2,17),
(1363,273,3,17),
(1364,273,4,17),
(1365,273,5,19),
(1366,274,1,17),
(1367,274,2,17),
(1368,274,3,19),
(1369,274,4,17),
(1370,274,5,17),
(1371,275,1,17),
(1372,275,2,17),
(1373,275,3,17),
(1374,275,4,17),
(1375,275,5,17),
(1376,276,1,17),
(1377,276,2,17),
(1378,276,3,17),
(1379,276,4,17),
(1380,276,5,17),
(1381,277,1,17),
(1382,277,2,17),
(1383,277,3,17),
(1384,277,4,17),
(1385,277,5,17),
(1386,278,1,17),
(1387,278,2,17),
(1388,278,3,17),
(1389,278,4,17),
(1390,278,5,17),
(1391,279,1,17),
(1392,279,2,17),
(1393,279,3,17),
(1394,279,4,17),
(1395,279,5,17),
(1396,280,1,17),
(1397,280,2,17),
(1398,280,3,17),
(1399,280,4,17),
(1400,280,5,17),
(1401,281,1,17),
(1402,281,2,17),
(1403,281,3,17),
(1404,281,4,17),
(1405,281,5,19),
(1406,282,1,17),
(1407,282,2,17),
(1408,282,3,17),
(1409,282,4,19),
(1410,282,5,17),
(1411,283,1,17),
(1412,283,2,17),
(1413,283,3,19),
(1414,283,4,17),
(1415,283,5,17),
(1416,284,1,17),
(1417,284,2,17),
(1418,284,3,17),
(1419,284,4,17),
(1420,284,5,17),
(1421,285,1,17),
(1422,285,2,19),
(1423,285,3,17),
(1424,285,4,17),
(1425,285,5,17),
(1426,286,1,17),
(1427,286,2,17),
(1428,286,3,17),
(1429,286,4,17),
(1430,286,5,17),
(1431,287,1,17),
(1432,287,2,17),
(1433,287,3,17),
(1434,287,4,17),
(1435,287,5,17),
(1436,288,1,17),
(1437,288,2,17),
(1438,288,3,17),
(1439,288,4,17),
(1440,288,5,17),
(1441,289,1,17),
(1442,289,2,17),
(1443,289,3,17),
(1444,289,4,17),
(1445,289,5,17),
(1446,290,1,17),
(1447,290,2,17),
(1448,290,3,17),
(1449,290,4,17),
(1450,290,5,17),
(1451,291,1,17),
(1452,291,2,17),
(1453,291,3,17),
(1454,291,4,17),
(1455,291,5,17),
(1456,292,1,17),
(1457,292,2,17),
(1458,292,3,17),
(1459,292,4,17),
(1460,292,5,19),
(1461,293,1,17),
(1462,293,2,17),
(1463,293,3,17),
(1464,293,4,17),
(1465,293,5,17),
(1466,294,1,17),
(1467,294,2,17),
(1468,294,3,17),
(1469,294,4,17),
(1470,294,5,17),
(1471,295,1,17),
(1472,295,2,17),
(1473,295,3,17),
(1474,295,4,17),
(1475,295,5,17),
(1476,296,1,17),
(1477,296,2,17),
(1478,296,3,17),
(1479,296,4,17),
(1480,296,5,17),
(1481,297,1,17),
(1482,297,2,17),
(1483,297,3,17),
(1484,297,4,17),
(1485,297,5,17),
(1486,298,1,17),
(1487,298,2,17),
(1488,298,3,17),
(1489,298,4,17),
(1490,298,5,17),
(1491,299,1,17),
(1492,299,2,17),
(1493,299,3,19),
(1494,299,4,17),
(1495,299,5,17),
(1496,300,1,19),
(1497,300,2,17),
(1498,300,3,17),
(1499,300,4,17),
(1500,300,5,17);
/*!40000 ALTER TABLE `product_state` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table products
# ------------------------------------------------------------
DROP TABLE IF EXISTS `products`;
CREATE TABLE `products` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`uuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`camera_id` int unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `products_uuid_unique` (`uuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
INSERT INTO `products` (`id`, `name`, `slug`, `uuid`, `camera_id`)
VALUES
(1,'Product 1','product-1','518d31ca-9c85-3274-aebd-72102f176649',3),
(2,'Product 2','product-2','f6eb2886-c223-3097-bc47-5247140174e6',2),
(3,'Product 3','product-3','5a6e4863-90a5-3494-ae66-f2e6cc43b1e9',2),
(4,'Product 4','product-4','d7b4d45c-1358-3869-ab91-0c7db97af017',1),
(5,'Product 5','product-5','b16f9c6c-049a-39f7-b073-1a3e09866214',3),
(6,'Product 6','product-6','2e1fb724-d74d-39f6-b434-d3a7cd96f6ac',2),
(7,'Product 7','product-7','e750dcd3-ec09-36ad-a96b-38045fc2a6f1',1),
(8,'Product 8','product-8','d340640c-f3a2-381f-8d00-607551ca0383',2),
(9,'Product 9','product-9','98addd7c-88e0-380e-bef4-d85164fa5d85',1),
(10,'Product 10','product-10','328d9e4e-61cd-3824-979c-ad9b1c654159',3),
(11,'Product 11','product-11','be93a71a-84d1-3ca3-8a12-6455450a875f',2),
(12,'Product 12','product-12','46c40c7d-4fd8-32db-97b1-085f8c5fee2f',3),
(13,'Product 13','product-13','30889ac5-fb04-30d5-b1ad-e0a0faf2db16',2),
(14,'Product 14','product-14','c98361fd-27cd-3c66-8d4a-90de14fd6e11',3),
(15,'Product 15','product-15','9b60c61b-5886-3c7d-a22c-215486140307',2),
(16,'Product 16','product-16','3701f2a7-067b-3e37-ad7d-0472122f2ec1',2),
(17,'Product 17','product-17','ae0b6d1a-7192-364c-87ca-9b9907505591',1),
(18,'Product 18','product-18','7e5c80ed-e975-3dc5-8556-255327aa50b5',2),
(19,'Product 19','product-19','c4f6c189-1efb-3c7f-aabc-870754f05b82',2),
(20,'Product 20','product-20','c38d290a-4a21-3028-afc5-5fb587706e8e',2),
(21,'Product 21','product-21','8ec52482-69f4-385d-92c1-cb80e0eafad1',1),
(22,'Product 22','product-22','ac64e707-f3f2-3efe-9001-d24e7e741c72',1),
(23,'Product 23','product-23','83a1aba0-2ce9-3d94-860a-d740962a4861',2),
(24,'Product 24','product-24','3e18f9e1-a44a-3f4a-b05f-fde02432d71d',2),
(25,'Product 25','product-25','650139a6-e8af-3916-b849-71d6c1843e3c',1),
(26,'Product 26','product-26','db08ca62-3664-30c5-a9f8-6538a8b1b9e0',2),
(27,'Product 27','product-27','543ce9eb-2d1d-3873-b911-9f846dd82ce5',3),
(28,'Product 28','product-28','9dbebbc6-a687-3f23-a85c-c211a2d14b19',1),
(29,'Product 29','product-29','0151ccaf-7328-3ac5-bb4c-f3bc81da965f',1),
(30,'Product 30','product-30','5ac114f0-9477-3fde-b30f-ed48d6198516',3),
(31,'Product 31','product-31','023bee32-f980-34d6-b6c3-7045c8ab4faa',1),
(32,'Product 32','product-32','692a6a67-d3d7-353a-8d79-80f35b05ca67',1),
(33,'Product 33','product-33','b93237a8-51de-3eca-a95c-37d1b6e9cca9',1),
(34,'Product 34','product-34','dc64fef2-9682-3ac2-ab8c-c3badbfd6ced',3),
(35,'Product 35','product-35','35a57f02-6d3c-3e74-8bf8-47037b54dcd5',2),
(36,'Product 36','product-36','5db07b7f-9dde-3c85-9c84-1652c0e5f828',2),
(37,'Product 37','product-37','f9eb95e3-1fd6-39b6-b6a5-cd1e6568213b',1),
(38,'Product 38','product-38','027f387c-318b-35c9-9c64-ccef80b175f8',2),
(39,'Product 39','product-39','c1269666-482c-3842-aa56-7963fdf437fe',3),
(40,'Product 40','product-40','42c4b376-a05b-356e-8fa4-62f810bb7786',2),
(41,'Product 41','product-41','4946ed79-bdfd-3a79-bd46-26c9a63a165d',1),
(42,'Product 42','product-42','19318d59-0f6c-3990-8652-d81bb0b34cab',1),
(43,'Product 43','product-43','a498bf18-d9e2-3d2f-925c-1f5af5bd62d2',3),
(44,'Product 44','product-44','89735f3b-acb3-334f-b3d0-3ee23fb09ea6',3),
(45,'Product 45','product-45','b1398c9d-b10c-35b3-817a-1f758743c667',3),
(46,'Product 46','product-46','5b9c2daa-0a89-35b0-b184-f4f8a1cb86f0',3),
(47,'Product 47','product-47','ab484221-cf7f-3704-bc97-bb43ae26f191',1),
(48,'Product 48','product-48','66a0774d-966c-3c1e-bf17-a63380cf62ba',2),
(49,'Product 49','product-49','8ce5f99a-9178-38ad-8331-3ecc4567df8d',3),
(50,'Product 50','product-50','c86504c0-1e19-380b-86b8-fedcae9dffe2',2),
(51,'Product 51','product-51','a3c0aed1-8ea5-31a9-9a9c-45613615a70d',3),
(52,'Product 52','product-52','205c4556-790d-3ee4-9f33-4ce38afdaa56',1),
(53,'Product 53','product-53','d36d34ac-c669-36e2-907d-e8d61ee27b8b',1),
(54,'Product 54','product-54','39b8e326-1e0d-36d9-ac57-2b63b332cc52',3),
(55,'Product 55','product-55','f6030fb2-7f22-3865-b2c5-bac6d65531f3',3),
(56,'Product 56','product-56','e80acb58-93da-3d99-abad-4748619bdc23',1),
(57,'Product 57','product-57','e5e4e6f2-ed9b-32f9-999a-b2c421ac2dca',3),
(58,'Product 58','product-58','dfca9232-98da-3728-8fa2-016b3cf3a437',2),
(59,'Product 59','product-59','f7d768d8-7c32-36fd-9e6e-7eb64b352379',2),
(60,'Product 60','product-60','c5303839-e5f5-30b7-b2f6-fdaf2a113e54',2),
(61,'Product 61','product-61','7c8a590f-dc27-3ece-bef5-b8b0da9dd869',3),
(62,'Product 62','product-62','b9f06605-2e9c-3244-a581-b404a19bc61e',3),
(63,'Product 63','product-63','63387d68-efba-385d-aed5-23529ce2df6d',1),
(64,'Product 64','product-64','d7c76f6e-1545-3a7d-a045-e66f2cdcb9f7',1),
(65,'Product 65','product-65','e0977a5e-d1db-324d-87ff-309e28050ae4',1),
(66,'Product 66','product-66','3ec901d0-8e50-3873-a767-d4de9fb260a6',1),
(67,'Product 67','product-67','2556f04c-5183-340b-9a4b-4231eab0a813',3),
(68,'Product 68','product-68','d324d759-e065-345f-8185-1b9db2c7a64a',2),
(69,'Product 69','product-69','2c435962-4faa-369e-8528-06bcf2092768',1),
(70,'Product 70','product-70','af70dfea-b1b2-33a1-8b53-7855a49f15e9',3),
(71,'Product 71','product-71','c215747b-5c07-3173-9026-c517cded0739',1),
(72,'Product 72','product-72','2348cbc0-7e1f-3e88-a0a2-a8b428b7055f',2),
(73,'Product 73','product-73','4e0bda3a-5353-3d6c-a11f-cefdb5959e08',3),
(74,'Product 74','product-74','6a54f31d-b0b9-3760-bc41-a0722580a1e6',3),
(75,'Product 75','product-75','ffc98d09-7fd9-3e67-a700-8df448a0b935',3),
(76,'Product 76','product-76','2902a978-5576-3089-99c2-06b03f8551d8',3),
(77,'Product 77','product-77','b4993b09-1b92-3e9f-9977-6af04edf62e6',2),
(78,'Product 78','product-78','2dfbb3c1-1626-395d-b396-01ce4ff5074f',2),
(79,'Product 79','product-79','7725d895-ce92-313c-b83a-a48af0314821',3),
(80,'Product 80','product-80','f22b8342-708f-33f6-b863-2e47b56d8e4f',1),
(81,'Product 81','product-81','1513d179-36b0-3860-9758-815ff9a53357',3),
(82,'Product 82','product-82','252ecbec-3fb8-31f5-8aa6-21bfdac79dd5',2),
(83,'Product 83','product-83','b063abac-0227-3b67-adaf-d95b0eac5b59',1),
(84,'Product 84','product-84','398cf9ca-1921-39ca-8c55-9127b587cd69',1),
(85,'Product 85','product-85','e32135b7-5ff5-3185-b5e1-537693caa156',3),
(86,'Product 86','product-86','a9b26052-ce95-31f9-86b6-a5099d5cb0ae',3),
(87,'Product 87','product-87','eb6a6983-f70a-305d-9525-24afa2801941',2),
(88,'Product 88','product-88','bacdba59-cf50-388e-b856-84814f982409',3),
(89,'Product 89','product-89','1459f289-e8f2-336d-8f4e-65e0fb2149cc',2),
(90,'Product 90','product-90','841539f0-9e1d-3a54-8d6a-1b1b782085f1',1),
(91,'Product 91','product-91','90ec730b-8551-30c4-af2b-057a54c31990',1),
(92,'Product 92','product-92','07b8ab10-573b-33dd-a978-81439626cc65',1),
(93,'Product 93','product-93','07a329a0-762f-3d69-8d9c-a9b9bfb99bd4',1),
(94,'Product 94','product-94','6e845407-bb92-362b-88fa-a078dcb6910b',2),
(95,'Product 95','product-95','e14fd007-5d82-3e95-921a-2e45a93d0226',1),
(96,'Product 96','product-96','db79f6dd-7171-346c-b589-6878e193d8f6',1),
(97,'Product 97','product-97','50d8b120-bf2c-3dc0-9fe7-181d4abf0f47',3),
(98,'Product 98','product-98','9256fb8e-63b8-3609-a291-6cc369c16730',2),
(99,'Product 99','product-99','35318298-6ed9-36b2-9fbf-72c1b279a551',1),
(100,'Product 100','product-100','c2c5a483-4b6a-33e9-89ac-68d9c24b215b',1),
(101,'Product 101','product-101','be5bf71c-7d6b-33bd-aa50-e07332f7ff2d',2),
(102,'Product 102','product-102','a58e7b72-d696-3b9a-8f94-a0dbe3b2f85c',3),
(103,'Product 103','product-103','51a8494f-a4bb-3d8d-b580-d64c5efe706f',1),
(104,'Product 104','product-104','b90d8e7e-0fb2-378c-a10a-7e0bf1dd12ff',1),
(105,'Product 105','product-105','0c7f9735-0726-35c0-b197-3fd798735b9d',2),
(106,'Product 106','product-106','76bfc8b2-8e82-32ee-9089-f3d9058f2142',2),
(107,'Product 107','product-107','ef2f0384-1d6e-34a1-a34a-872b2b7bf4e9',3),
(108,'Product 108','product-108','bfed6f9c-3a2c-3a69-9d86-b076a7f0b15b',3),
(109,'Product 109','product-109','f225e41d-47bb-34aa-8cf8-d640e0ffe205',3),
(110,'Product 110','product-110','7cdae9ed-96bb-37ba-8a50-ff6799b33eef',1),
(111,'Product 111','product-111','14d0077b-fc3b-390c-a1c6-bfb5bb4e2eae',2),
(112,'Product 112','product-112','e5537c59-954e-3bb0-b824-ffbcb33f42ec',1),
(113,'Product 113','product-113','d82711b3-45a8-3844-a261-f02433874911',1),
(114,'Product 114','product-114','6bd623e8-c4a1-34b3-a296-9e5d5d95605c',3),
(115,'Product 115','product-115','aaddc67c-1f08-3852-804b-44f72e3c2324',1),
(116,'Product 116','product-116','73dafcef-3915-3095-93dc-e28a5b62c0fc',2),
(117,'Product 117','product-117','55b1252d-4989-3a2d-9b70-b85cca3ed46c',3),
(118,'Product 118','product-118','b3cdbbd4-f670-3a33-9ec2-d4f6ed557ef8',1),
(119,'Product 119','product-119','ddc8e43a-69c7-328a-94c1-6344a4ae1655',3),
(120,'Product 120','product-120','d4dfc17e-0042-359c-ad13-c20ef26d32b1',1),
(121,'Product 121','product-121','35db90ff-96e6-3478-8730-4f7e8382c9e5',3),
(122,'Product 122','product-122','6d1d375f-edf4-3196-9211-0e782943c256',3),
(123,'Product 123','product-123','2b14869b-ac50-3d47-9983-b0efbe6ac221',1),
(124,'Product 124','product-124','a0c7ab4c-006c-39db-95ab-f85dba3a977f',3),
(125,'Product 125','product-125','d78f5c7c-b3a3-381c-9a95-7b2319109601',2),
(126,'Product 126','product-126','7919299f-8e2b-30fc-a960-e72b247f73c4',1),
(127,'Product 127','product-127','dbff5553-c8cc-3126-a8b7-b2ac23bf1dcc',1),
(128,'Product 128','product-128','3996ff09-28fa-3d6a-99d7-10a608efc5a1',3),
(129,'Product 129','product-129','9f356cd4-3f97-30d8-a25f-5f45af08b8ef',3),
(130,'Product 130','product-130','0c0f4419-378b-3ae3-862b-920ee26743c0',2),
(131,'Product 131','product-131','2535443c-4729-3e65-91bd-6abd0f6e2b7b',2),
(132,'Product 132','product-132','34d2b335-557d-3831-8068-2c8f4920eba7',1),
(133,'Product 133','product-133','d5037fa4-8849-3811-aa78-a5e01d9c4493',2),
(134,'Product 134','product-134','68d16ea0-c9f3-35f3-ac43-f88757f1d7f7',1),
(135,'Product 135','product-135','0aa7eab7-f343-35f9-9dd7-11fdd3bb62f3',3),
(136,'Product 136','product-136','5917065c-dbac-3562-a90f-4bdce64c300a',3),
(137,'Product 137','product-137','046b618d-cd01-360d-9cdf-d1f9d4f311b1',2),
(138,'Product 138','product-138','85b3252b-8d0c-3f02-a5bf-02f0b8d81e86',2),
(139,'Product 139','product-139','fa6f5ee1-9c8d-3694-91d4-dfd2fec9341f',1),
(140,'Product 140','product-140','12335598-02db-3422-998f-e7f8045b73d2',3),
(141,'Product 141','product-141','da5df9ee-afcf-30fa-aa51-a52823bd0f1b',3),
(142,'Product 142','product-142','176ca0fa-0be3-3eac-8fce-a64282604ee3',2),
(143,'Product 143','product-143','d1a058c8-ef27-32c5-a861-7610b837a520',3),
(144,'Product 144','product-144','53aeb321-adda-3a5c-a5ef-f0adde748e96',1),
(145,'Product 145','product-145','093d7e00-0c6b-309d-97f8-b5d60a5905ee',1),
(146,'Product 146','product-146','3def6d08-e66e-3897-a7bd-22b6a7c6b781',3),
(147,'Product 147','product-147','f55e0a7c-66a9-3eec-8470-1f3acff5ea73',2),
(148,'Product 148','product-148','ff565659-2ca3-3ccc-879a-b4a4c28c65fa',1),
(149,'Product 149','product-149','e9f155b7-7afb-38f2-b952-fae79cc63209',3),
(150,'Product 150','product-150','34319c24-0896-3ff0-ad6f-8b29ec6336e0',3),
(151,'Product 151','product-151','ebf885cd-8112-3a00-a3a0-4fe32392bec0',1),
(152,'Product 152','product-152','e5cf9195-16d5-364c-90ea-330f250cec4f',1),
(153,'Product 153','product-153','0086d241-2399-3102-9005-4d93303eee52',3),
(154,'Product 154','product-154','da8e5d6a-3cc6-3231-9d96-bd5623fe96ed',2),
(155,'Product 155','product-155','f807d33e-c0ac-3d04-bb3d-9cf9d3a275d6',3),
(156,'Product 156','product-156','30dac562-4c5e-3702-a0c6-820532da7abb',1),
(157,'Product 157','product-157','c334ce35-1708-3576-868a-07d014e6c4d6',2),
(158,'Product 158','product-158','9e000884-ecde-388a-8e98-25c0d0f6142f',2),
(159,'Product 159','product-159','7d6c0318-168d-3c15-ab80-9b312c4b4923',1),
(160,'Product 160','product-160','5c1eafdd-0f4e-391b-b20b-453ec8c3838f',3),
(161,'Product 161','product-161','cbb56790-36e6-306e-8461-7a103344c87f',2),
(162,'Product 162','product-162','c887390b-2a66-3c53-a873-6bf2a17c9b0e',2),
(163,'Product 163','product-163','283fb771-0e5b-30a5-badf-f3d5ffb42291',3),
(164,'Product 164','product-164','b2e27fb9-4009-3310-baf9-a2ffbf306ac7',2),
(165,'Product 165','product-165','a42050d8-0d03-3535-8289-49bd72843987',1),
(166,'Product 166','product-166','d886238e-f707-3e47-bdbd-17847fae0fb6',2),
(167,'Product 167','product-167','b1e5f3c9-81d0-3748-b408-e5653fc71fe5',2),
(168,'Product 168','product-168','9ec89c5a-4fde-3736-b797-96afa59fdb91',1),
(169,'Product 169','product-169','eca86e61-a57c-3aa3-b353-70c85374676f',2),
(170,'Product 170','product-170','c2123340-02cf-3a4a-9b35-32f88f93c316',1),
(171,'Product 171','product-171','cbbeca51-f1e1-342f-a6ee-e27e489d3d69',2),
(172,'Product 172','product-172','4b2fec1e-5a9f-3584-b85c-a32b4a8ce4bd',2),
(173,'Product 173','product-173','756537c5-b1f1-3bbe-b656-53d8e677f892',2),
(174,'Product 174','product-174','2c7bc134-f0ba-3fa8-832f-7717fa4d74be',3),
(175,'Product 175','product-175','192654c7-f8a5-36b7-b1fd-623f32670e75',2),
(176,'Product 176','product-176','6e771db4-f08f-3783-ab83-d1217db626f5',3),
(177,'Product 177','product-177','c318f93b-ac9b-34f4-b6cf-622691703517',3),
(178,'Product 178','product-178','9f25a9e3-dfcf-3c57-9a87-eb7ec60e1eed',2),
(179,'Product 179','product-179','cd5f9761-543d-33bb-ae80-d9870cf165ff',1),
(180,'Product 180','product-180','c460cbf8-2a5a-3d7f-8db3-b5a7f8aedf06',1),
(181,'Product 181','product-181','60826d55-bc97-3b8e-8efe-9a7d04a44e6b',3),
(182,'Product 182','product-182','59c8e4dc-3050-3e5a-bf0d-d99f2fd55d17',1),
(183,'Product 183','product-183','f66be429-0958-346b-845c-09f6c86537a3',1),
(184,'Product 184','product-184','31473d1f-3acb-3d10-a9fb-0d3784411de0',1),
(185,'Product 185','product-185','1303769d-eb68-3572-bcea-97b62a7fde97',2),
(186,'Product 186','product-186','e8d19dc3-b41f-36a2-8f7f-f59c17fc5f61',1),
(187,'Product 187','product-187','35f02d4a-b4bd-396f-9404-b03852b306ef',2),
(188,'Product 188','product-188','a8962092-98cb-3515-a49b-b9fc9fb90fbf',3),
(189,'Product 189','product-189','51ff8e20-82a7-3f65-b7e2-ba22a214eac3',3),
(190,'Product 190','product-190','8b39d32f-18b0-3c5b-9309-db38bf5151f4',1),
(191,'Product 191','product-191','87f1f46f-01ef-383f-b6d0-05c94dfdf263',2),
(192,'Product 192','product-192','8fef0f8f-a525-3f45-8646-680f8a95966a',2),
(193,'Product 193','product-193','2fcc7870-371e-3589-b031-c49f9def65eb',2),
(194,'Product 194','product-194','8a2bbd71-c232-3a7e-ae50-6b5615388ba8',2),
(195,'Product 195','product-195','5ce9dc59-67e0-3364-9cff-d1c4f9f3ea78',1),
(196,'Product 196','product-196','d55c86cd-d64a-337a-92b0-e62534415a14',2),
(197,'Product 197','product-197','dc752308-ba30-3534-b6ed-85cc4d4607a5',3),
(198,'Product 198','product-198','5efec9bf-97de-3a7b-9345-c4460e1e07e7',2),
(199,'Product 199','product-199','5514dae2-0254-3a8e-a30f-193b235286e0',2),
(200,'Product 200','product-200','1265706b-4e0b-3a21-acf0-e2d19bd0e183',3),
(201,'Product 201','product-201','7ed86d7e-f50c-3dd3-8434-0c450531edbc',2),
(202,'Product 202','product-202','3acc6e1b-cac3-3434-9548-f3d2ebb4cf22',1),
(203,'Product 203','product-203','bc0241c5-8847-3b72-9586-fcb32683097e',1),
(204,'Product 204','product-204','375109be-cf86-34fe-a064-35660b4a72ce',1),
(205,'Product 205','product-205','2fd85e8b-da77-39ad-93f8-c62beebd42af',1),
(206,'Product 206','product-206','1e5982d9-cfef-3975-aea3-a10652a948c2',1),
(207,'Product 207','product-207','de362936-e40b-3c7e-bc24-86516f342fcd',2),
(208,'Product 208','product-208','da070b0c-bdf0-39da-bec5-2468998a88c3',3),
(209,'Product 209','product-209','ab3e90d5-c7cd-3b55-93be-674701e7cfda',1),
(210,'Product 210','product-210','ba511cbd-1bc5-324d-99e8-65d1e62d9cfa',2),
(211,'Product 211','product-211','e9ada09a-34d5-33f6-a9cc-ec506590c163',1),
(212,'Product 212','product-212','fa6364db-e736-3474-a713-a74cb6c302a4',1),
(213,'Product 213','product-213','dcd61a8b-88d0-3062-a495-b5b58fdbcdf5',3),
(214,'Product 214','product-214','1362d5e1-33d0-360d-9605-23f972d5523c',1),
(215,'Product 215','product-215','8919c659-1d00-354c-8ef5-75b9192b05ee',1),
(216,'Product 216','product-216','cdc94fef-acb2-383c-a2e0-c2e30c5a5022',2),
(217,'Product 217','product-217','a9a3807c-15a8-3c93-9ed8-cd3b33c25c46',3),
(218,'Product 218','product-218','c30ce709-bb16-375c-98f3-49145faf3d8d',3),
(219,'Product 219','product-219','ad42e170-b48a-3643-b9f5-aa9ff6e3b424',1),
(220,'Product 220','product-220','83549543-8dda-3cdf-b603-66b5e1a5abdc',1),
(221,'Product 221','product-221','580d56a6-85b7-366d-97b9-84228a75cd75',3),
(222,'Product 222','product-222','b1f03811-d49b-3fe6-9e2f-06f231fc4fd5',1),
(223,'Product 223','product-223','1fcab016-20cc-3f72-9eb1-a4ab770050c8',2),
(224,'Product 224','product-224','3c373cd0-7d2d-3500-836b-8f6dcbdc47b9',2),
(225,'Product 225','product-225','f71165a1-f77d-30a0-9a3a-cef66a2b9042',1),
(226,'Product 226','product-226','050a5ee5-b104-31f7-a9b1-7ed4c1bf3fc3',1),
(227,'Product 227','product-227','c5c4ca95-f00c-3aa7-ba32-c47ac18d1395',2),
(228,'Product 228','product-228','b7e138c9-e372-36d9-b36e-9334b82dbb75',3),
(229,'Product 229','product-229','20b1d13e-0e10-3239-93fd-1b2d078b69ae',2),
(230,'Product 230','product-230','c5281a9a-4996-3daf-ba4b-133613f5d864',1),
(231,'Product 231','product-231','2ab5bc14-0283-3232-8258-7145e205e9e6',1),
(232,'Product 232','product-232','b60ae8ed-1da9-395e-874e-6a08265766aa',1),
(233,'Product 233','product-233','bad4eec8-1edc-348e-a808-ffcb07b788dc',1),
(234,'Product 234','product-234','5f356627-b683-3ee7-bcf3-d29482fb8b1e',1),
(235,'Product 235','product-235','aef47762-0d5e-3a86-8963-0ef9888e12be',2),
(236,'Product 236','product-236','7fd9f3eb-8663-3c8d-8c83-0b52527e472f',2),
(237,'Product 237','product-237','83dfbf96-335b-3432-9344-1462fbb600c5',1),
(238,'Product 238','product-238','c1fff0aa-0cd8-37f7-8836-4f8fedf21f73',2),
(239,'Product 239','product-239','c7fc6c54-b3b0-3cca-883a-fa24349a4805',2),
(240,'Product 240','product-240','89cc2d89-c9ae-3bf9-a10d-41c256d0d329',2),
(241,'Product 241','product-241','6f08a94a-2971-3029-8001-f0a837b828dc',1),
(242,'Product 242','product-242','e4cae2b1-abd2-376f-a0bb-d836e7bcf77e',2),
(243,'Product 243','product-243','6e769ca2-e1a6-3082-83e4-02ffd56626b8',1),
(244,'Product 244','product-244','326e56c2-de7c-3609-8c05-15536619f565',1),
(245,'Product 245','product-245','eb215794-eb79-3f2f-b7a2-d7253341e3bf',1),
(246,'Product 246','product-246','a3874498-4830-3b36-91f7-625711929b70',3),
(247,'Product 247','product-247','0d88b1dc-9d30-3f99-a1bf-aee37c0f025a',3),
(248,'Product 248','product-248','0d185f3a-44d4-3832-b055-a4a2def4f6f0',1),
(249,'Product 249','product-249','244823a8-7562-3dd6-913f-44c61ef650ca',2),
(250,'Product 250','product-250','963ca9f3-433b-3301-ac08-becbd37eb466',3),
(251,'Product 251','product-251','af9b1463-ac85-3cf0-8f93-ab7088f595d0',1),
(252,'Product 252','product-252','445c0c60-117e-3eb3-acba-8f3cff8e3f3e',3),
(253,'Product 253','product-253','364c9a41-6077-3156-8b31-ed10bcd0de54',2),
(254,'Product 254','product-254','9ae0ff2f-8473-3fb3-a3cd-0d180a0b9ad9',3),
(255,'Product 255','product-255','39b5a28e-394c-3908-8173-1083f981ff21',2),
(256,'Product 256','product-256','3aa9f4d7-60ba-3921-82f6-b110470658e1',1),
(257,'Product 257','product-257','98fed5d4-4c0d-347c-9a0f-e9859ecbb3af',1),
(258,'Product 258','product-258','97e78966-f59a-36c4-8453-2685e24fe1ea',3),
(259,'Product 259','product-259','ec808b4a-e907-3270-93bd-454313dd6100',2),
(260,'Product 260','product-260','fbbb37e1-e6e5-3e99-beb2-1e79efbd6527',3),
(261,'Product 261','product-261','00b680b1-f920-33a0-a2f7-b0829a9c7af0',1),
(262,'Product 262','product-262','793743ee-907d-3944-b456-f17333929992',1),
(263,'Product 263','product-263','3781851e-9fca-3f47-b81c-f98bf748dca3',1),
(264,'Product 264','product-264','2c050ac9-52ba-3182-8525-8bb5badc166c',2),
(265,'Product 265','product-265','4a20440c-b90d-3869-8a9e-b9983e2297fe',1),
(266,'Product 266','product-266','cd83ac7d-a0f0-31d5-b37c-08c54ce8eca2',1),
(267,'Product 267','product-267','7ac46a6b-437d-3a06-b885-62202cfa3702',3),
(268,'Product 268','product-268','894b516b-d7d4-3e8c-9aeb-b94dc896bdd2',3),
(269,'Product 269','product-269','47db71ee-9146-3e8e-b832-09e306922dba',3),
(270,'Product 270','product-270','4246a114-afee-38fb-ae48-3f4c2d0c1de0',1),
(271,'Product 271','product-271','c8574c6f-75b1-3c95-96fd-c99fdd958b70',1),
(272,'Product 272','product-272','a7b6bfea-f278-36d0-ad79-e9d5bd8ac256',3),
(273,'Product 273','product-273','82a76e27-0764-3c08-84c4-dd61454b0beb',3),
(274,'Product 274','product-274','f6e5e7a0-e963-32d3-bd25-411350e70811',2),
(275,'Product 275','product-275','bee76d59-e818-3975-87fc-2987b06ef6e9',3),
(276,'Product 276','product-276','ef91a99f-5481-38c1-b606-81196a8fde71',2),
(277,'Product 277','product-277','050ca0b7-9818-3c3a-a9c3-0ba7cdb3fc0b',1),
(278,'Product 278','product-278','06045366-f529-33ce-a667-9c94d1d6c19a',1),
(279,'Product 279','product-279','cd74b2f9-18ae-3232-aa6f-1f95e1047c4b',2),
(280,'Product 280','product-280','c77e31a6-286a-3044-8740-5bb319972fec',3),
(281,'Product 281','product-281','e62d0e71-4bd8-3867-8739-28fec4d82a97',2),
(282,'Product 282','product-282','8359abd6-9937-3b84-bfc1-df369612639f',3),
(283,'Product 283','product-283','40c9d94a-22b4-3d29-acf0-b462f523ebdc',1),
(284,'Product 284','product-284','512bc0be-6d71-33b5-98f9-824177e7d2f4',1),
(285,'Product 285','product-285','d131173c-6952-3f21-9aa9-d5810905db0b',3),
(286,'Product 286','product-286','17305888-6bee-37ac-86c6-dd04e9260cca',1),
(287,'Product 287','product-287','1c8e51ff-e827-34cb-9a21-37eff45f4103',3),
(288,'Product 288','product-288','8240d5e3-5b29-3ca9-9bc0-a816b4868f82',1),
(289,'Product 289','product-289','f1e2e950-5c3c-3684-bbb0-d7797dc07e87',2),
(290,'Product 290','product-290','f0edcfe3-9ad4-3ecc-93f3-e5f3ae2d08a4',2),
(291,'Product 291','product-291','6af74b81-74b7-3e88-9f47-7b291f811c59',1),
(292,'Product 292','product-292','c0f08acf-2d62-3666-93c4-b008c962d6b1',3),
(293,'Product 293','product-293','51e0505a-e24a-3860-a580-1e51faacf1b1',2),
(294,'Product 294','product-294','b72ef8e9-81b5-318f-b79b-1bd609f7c1bd',2),
(295,'Product 295','product-295','96be569e-405a-30c1-979a-5221c1b45a1d',2),
(296,'Product 296','product-296','7f7fcda8-13e7-386a-9ccc-5d94e0f49da4',2),
(297,'Product 297','product-297','7a2137ce-501a-3c60-a6bb-27386514617b',3),
(298,'Product 298','product-298','b86228ae-faff-3fbd-a4d0-a17ead1bdf84',3),
(299,'Product 299','product-299','2db85288-0f6f-329b-9cf3-74a96ae7bf6a',2),
(300,'Product 300','product-300','2e6281b0-2052-34fe-8438-da79176c77e0',2);
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table sets
# ------------------------------------------------------------
DROP TABLE IF EXISTS `sets`;
CREATE TABLE `sets` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`uuid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status_id` int unsigned DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `sets` WRITE;
/*!40000 ALTER TABLE `sets` DISABLE KEYS */;
INSERT INTO `sets` (`id`, `name`, `slug`, `uuid`, `status_id`)
VALUES
(1,'Set 1','set-1','f5bd87d1-b15d-3f65-bc5a-b10bfade0927',50),
(2,'Set 2','set-2','a9c9f241-725a-38fc-993d-ec416540ec40',50),
(3,'Set 3','set-3','e211bd92-f163-3bf9-ac0c-b287b4497b47',50),
(4,'Set 4','set-4','9841fde7-0c4c-3c51-a4ef-fd84919c00d6',50),
(5,'Set 5','set-5','068accb1-9721-3ea6-9bd6-2382599bb77b',50),
(6,'Set 6','set-6','875a7bb5-8082-310a-8161-af19665fab37',50),
(7,'Set 7','set-7','29e885e4-1332-3439-96d1-a27df1fed765',50),
(8,'Set 8','set-8','016d1645-84ee-3c06-af11-77017356bbd1',50),
(9,'Set 9','set-9','c80e8357-d9f4-3bf7-9103-c77cfa80d332',50),
(10,'Set 10','set-10','958cfe97-8832-3c8f-a3cf-493da7f76652',50),
(11,'Set 11','set-11','13f42e29-51ac-353a-9186-926a391c63a6',50),
(12,'Set 12','set-12','9cd6b2b5-fa95-389c-b73a-715e7c70542b',50),
(13,'Set 13','set-13','3ead4dde-1e20-3281-87b9-d9488017e1bb',50),
(14,'Set 14','set-14','77f6bed2-1273-3e87-b4fb-732861b91c9d',50),
(15,'Set 15','set-15','45bca258-c984-3695-bca2-6babd01f151d',50),
(16,'Set 16','set-16','1dd8009d-6163-3001-a1f7-666abd0c56a4',50),
(17,'Set 17','set-17','4651daee-c3ce-35df-bf54-40df5fa34965',50),
(18,'Set 18','set-18','9a540836-c18d-3996-9536-615f21509337',50),
(19,'Set 19','set-19','9ae5bbc7-9552-386f-b603-e4a761b4ef13',50),
(20,'Set 20','set-20','4b457d99-5cd8-36fd-8bce-49c3a2a4c128',50);
/*!40000 ALTER TABLE `sets` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table states
# ------------------------------------------------------------
DROP TABLE IF EXISTS `states`;
CREATE TABLE `states` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`order` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `states_name_unique` (`name`),
UNIQUE KEY `states_slug_unique` (`slug`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `states` WRITE;
/*!40000 ALTER TABLE `states` DISABLE KEYS */;
INSERT INTO `states` (`id`, `name`, `slug`, `order`)
VALUES
(1,'State 1','state-1',1),
(2,'State 2','state-2',2),
(3,'State 3','state-3',3),
(4,'State 4','state-4',4),
(5,'State 5','state-5',5);
/*!40000 ALTER TABLE `states` ENABLE KEYS */;
UNLOCK TABLES;
# Dump of table statuses
# ------------------------------------------------------------
DROP TABLE IF EXISTS `statuses`;
CREATE TABLE `statuses` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
LOCK TABLES `statuses` WRITE;
/*!40000 ALTER TABLE `statuses` DISABLE KEYS */;
INSERT INTO `statuses` (`id`, `name`, `slug`)
VALUES
(1,'Status 1','status-1'),
(2,'Status 2','status-2'),
(3,'Status 3','status-3'),
(4,'Status 4','status-4'),
(5,'Status 5','status-5'),
(6,'Status 17','status-17'),
(7,'Status 50','status-50');
/*!40000 ALTER TABLE `statuses` ENABLE KEYS */;
UNLOCK TABLES;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment